Class: Google::Apis::ComputeAlpha::FileContentBuffer

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ FileContentBuffer

Returns a new instance of FileContentBuffer.



7055
7056
7057
# File 'generated/google/apis/compute_alpha/classes.rb', line 7055

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)


7048
7049
7050
# File 'generated/google/apis/compute_alpha/classes.rb', line 7048

def content
  @content
end

#file_typeString

Corresponds to the JSON property fileType

Returns:

  • (String)


7053
7054
7055
# File 'generated/google/apis/compute_alpha/classes.rb', line 7053

def file_type
  @file_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7060
7061
7062
7063
# File 'generated/google/apis/compute_alpha/classes.rb', line 7060

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