Class: Google::Apis::ComputeAlpha::FileContentBuffer
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::FileContentBuffer
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
-
#content ⇒ String
The raw content in the secure keys file.
-
#file_type ⇒ String
Corresponds to the JSON property
fileType
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FileContentBuffer
constructor
A new instance of FileContentBuffer.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ FileContentBuffer
Returns a new instance of FileContentBuffer
6872 6873 6874 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 6872 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.
6865 6866 6867 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 6865 def content @content end |
#file_type ⇒ String
Corresponds to the JSON property fileType
6870 6871 6872 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 6870 def file_type @file_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6877 6878 6879 6880 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 6877 def update!(**args) @content = args[:content] if args.key?(:content) @file_type = args[:file_type] if args.key?(:file_type) end |