Class: Google::Apis::ComputeBeta::FileContentBuffer

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FileContentBuffer

Returns a new instance of FileContentBuffer.



7272
7273
7274
# File 'generated/google/apis/compute_beta/classes.rb', line 7272

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#contentString

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.

Returns:

  • (String)


7265
7266
7267
# File 'generated/google/apis/compute_beta/classes.rb', line 7265

def content
  @content
end

#file_typeString

The file type of source file. Corresponds to the JSON property fileType

Returns:

  • (String)


7270
7271
7272
# File 'generated/google/apis/compute_beta/classes.rb', line 7270

def file_type
  @file_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7277
7278
7279
7280
# File 'generated/google/apis/compute_beta/classes.rb', line 7277

def update!(**args)
  @content = args[:content] if args.key?(:content)
  @file_type = args[:file_type] if args.key?(:file_type)
end