Class: Google::Apis::DatastoreV1beta3::AllocateIdsResponse

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

Overview

The response for Datastore.AllocateIds.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AllocateIdsResponse

Returns a new instance of AllocateIdsResponse.



173
174
175
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 173

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

Instance Attribute Details

#keysArray<Google::Apis::DatastoreV1beta3::Key>

The keys specified in the request (in the same order), each with its key path completed with a newly allocated ID. Corresponds to the JSON property keys



171
172
173
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 171

def keys
  @keys
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



178
179
180
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 178

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