Class: Google::Apis::DatastoreV1::ReserveIdsRequest

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.ReserveIds.

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) ⇒ ReserveIdsRequest

Returns a new instance of ReserveIdsRequest



1835
1836
1837
# File 'generated/google/apis/datastore_v1/classes.rb', line 1835

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

Instance Attribute Details

#database_idString

If not empty, the ID of the database against which to make the request. Corresponds to the JSON property databaseId

Returns:

  • (String)


1827
1828
1829
# File 'generated/google/apis/datastore_v1/classes.rb', line 1827

def database_id
  @database_id
end

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

A list of keys with complete key paths whose numeric IDs should not be auto-allocated. Corresponds to the JSON property keys

Returns:



1833
1834
1835
# File 'generated/google/apis/datastore_v1/classes.rb', line 1833

def keys
  @keys
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1840
1841
1842
1843
# File 'generated/google/apis/datastore_v1/classes.rb', line 1840

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