Class: Google::Apis::DatastoreV1beta3::ReserveIdsRequest

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 request for Datastore.ReserveIds.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReserveIdsRequest

Returns a new instance of ReserveIdsRequest.



2053
2054
2055
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 2053

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

Instance Attribute Details

#database_idString

The ID of the database against which to make the request. '(default)' is not allowed; please use empty string '' to refer the default database. Corresponds to the JSON property databaseId

Returns:

  • (String)


2045
2046
2047
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 2045

def database_id
  @database_id
end

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

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



2051
2052
2053
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 2051

def keys
  @keys
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2058
2059
2060
2061
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 2058

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