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

Constructor Details

#initialize(**args) ⇒ ObjectPreconditions

Returns a new instance of ObjectPreconditions.



1054
1055
1056
# File 'generated/google/apis/storage_v1/classes.rb', line 1054

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)


1052
1053
1054
# File 'generated/google/apis/storage_v1/classes.rb', line 1052

def if_generation_match
  @if_generation_match
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1059
1060
1061
# File 'generated/google/apis/storage_v1/classes.rb', line 1059

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