Class: Google::Apis::DatastoreV1::AllocateIdsRequest

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

Overview

The request for Datastore.AllocateIds.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AllocateIdsRequest

Returns a new instance of AllocateIdsRequest.



35
36
37
# File 'generated/google/apis/datastore_v1/classes.rb', line 35

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

Instance Attribute Details

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

Required. A list of keys with incomplete key paths for which to allocate IDs. No key may be reserved/read-only. Corresponds to the JSON property keys

Returns:



33
34
35
# File 'generated/google/apis/datastore_v1/classes.rb', line 33

def keys
  @keys
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



40
41
42
# File 'generated/google/apis/datastore_v1/classes.rb', line 40

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