class Google::Apis::StorageV1::ComposeRequest

A Compose request.

Attributes

destination[RW]

An object. Corresponds to the JSON property `destination` @return [Google::Apis::StorageV1::Object]

kind[RW]

The kind of item this is. Corresponds to the JSON property `kind` @return [String]

source_objects[RW]

The list of source objects that will be concatenated into a single object. Corresponds to the JSON property `sourceObjects` @return [Array<Google::Apis::StorageV1::ComposeRequest::SourceObject>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/storage_v1/classes.rb, line 1009
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/storage_v1/classes.rb, line 1014
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