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

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FileContentBuffer

Returns a new instance of FileContentBuffer.



9449
9450
9451
# File 'lib/google/apis/compute_alpha/classes.rb', line 9449

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)


9442
9443
9444
# File 'lib/google/apis/compute_alpha/classes.rb', line 9442

def content
  @content
end

#file_typeString

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

Returns:

  • (String)


9447
9448
9449
# File 'lib/google/apis/compute_alpha/classes.rb', line 9447

def file_type
  @file_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9454
9455
9456
9457
# File 'lib/google/apis/compute_alpha/classes.rb', line 9454

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