Class: Google::Apis::StorageV1::ComposeRequest::SourceObject::ObjectPreconditions

Inherits:
Object
  • Object
show all
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

Conditions that must be met for this operation to execute.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ObjectPreconditions

Returns a new instance of ObjectPreconditions.



1003
1004
1005
# File 'generated/google/apis/storage_v1/classes.rb', line 1003

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#if_generation_matchFixnum

Only perform the composition if the generation of the source object that would be used matches this value. If this value and a generation are both specified, they must be the same value or the call will fail. Corresponds to the JSON property ifGenerationMatch

Returns:

  • (Fixnum)


1001
1002
1003
# File 'generated/google/apis/storage_v1/classes.rb', line 1001

def if_generation_match
  @if_generation_match
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1008
1009
1010
# File 'generated/google/apis/storage_v1/classes.rb', line 1008

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