Class: Google::Apis::StorageV1::ComposeRequest
- Inherits:
-
Object
- Object
- Google::Apis::StorageV1::ComposeRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/storage_v1/classes.rb,
generated/google/apis/storage_v1/representations.rb,
generated/google/apis/storage_v1/representations.rb
Overview
A Compose request.
Defined Under Namespace
Classes: SourceObject
Instance Attribute Summary collapse
-
#destination ⇒ Google::Apis::StorageV1::Object
An object.
-
#kind ⇒ String
The kind of item this is.
-
#source_objects ⇒ Array<Google::Apis::StorageV1::ComposeRequest::SourceObject>
The list of source objects that will be concatenated into a single object.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ComposeRequest
constructor
A new instance of ComposeRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ComposeRequest
Returns a new instance of ComposeRequest
837 838 839 |
# File 'generated/google/apis/storage_v1/classes.rb', line 837 def initialize(**args) update!(**args) end |
Instance Attribute Details
#destination ⇒ Google::Apis::StorageV1::Object
An object.
Corresponds to the JSON property destination
825 826 827 |
# File 'generated/google/apis/storage_v1/classes.rb', line 825 def destination @destination end |
#kind ⇒ String
The kind of item this is.
Corresponds to the JSON property kind
830 831 832 |
# File 'generated/google/apis/storage_v1/classes.rb', line 830 def kind @kind end |
#source_objects ⇒ Array<Google::Apis::StorageV1::ComposeRequest::SourceObject>
The list of source objects that will be concatenated into a single object.
Corresponds to the JSON property sourceObjects
835 836 837 |
# File 'generated/google/apis/storage_v1/classes.rb', line 835 def source_objects @source_objects end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
842 843 844 845 846 |
# File 'generated/google/apis/storage_v1/classes.rb', line 842 def update!(**args) @destination = args[:destination] if args.key?(:destination) @kind = args[:kind] if args.key?(:kind) @source_objects = args[:source_objects] if args.key?(:source_objects) end |