Class: Google::Apis::ComputeBeta::FileContentBuffer
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::FileContentBuffer
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Instance Attribute Summary collapse
-
#content ⇒ String
The raw content in the secure keys file.
-
#file_type ⇒ String
The file type of source file.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FileContentBuffer
constructor
A new instance of FileContentBuffer.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FileContentBuffer
Returns a new instance of FileContentBuffer.
7533 7534 7535 |
# File 'lib/google/apis/compute_beta/classes.rb', line 7533 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content ⇒ String
The raw content in the secure keys file.
Corresponds to the JSON property content
NOTE: Values are automatically base64 encoded/decoded in the client library.
7526 7527 7528 |
# File 'lib/google/apis/compute_beta/classes.rb', line 7526 def content @content end |
#file_type ⇒ String
The file type of source file.
Corresponds to the JSON property fileType
7531 7532 7533 |
# File 'lib/google/apis/compute_beta/classes.rb', line 7531 def file_type @file_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7538 7539 7540 7541 |
# File 'lib/google/apis/compute_beta/classes.rb', line 7538 def update!(**args) @content = args[:content] if args.key?(:content) @file_type = args[:file_type] if args.key?(:file_type) end |