Class: Google::Apis::ComputeV1::FileContentBuffer

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FileContentBuffer

Returns a new instance of FileContentBuffer.



8622
8623
8624
# File 'lib/google/apis/compute_v1/classes.rb', line 8622

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)


8615
8616
8617
# File 'lib/google/apis/compute_v1/classes.rb', line 8615

def content
  @content
end

#file_typeString

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

Returns:

  • (String)


8620
8621
8622
# File 'lib/google/apis/compute_v1/classes.rb', line 8620

def file_type
  @file_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8627
8628
8629
8630
# File 'lib/google/apis/compute_v1/classes.rb', line 8627

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