Class: Google::Apis::SpannerV1::CreateInstanceRequest

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

Overview

The request for CreateInstance.

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

Returns a new instance of CreateInstanceRequest.



808
809
810
# File 'generated/google/apis/spanner_v1/classes.rb', line 808

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

Instance Attribute Details

#instanceGoogle::Apis::SpannerV1::Instance

An isolated set of Cloud Spanner resources on which databases can be hosted. Corresponds to the JSON property instance



799
800
801
# File 'generated/google/apis/spanner_v1/classes.rb', line 799

def instance
  @instance
end

#instance_idString

Required. The ID of the instance to create. Valid identifiers are of the form a-z*[a-z0-9] and must be between 2 and 64 characters in length. Corresponds to the JSON property instanceId

Returns:

  • (String)


806
807
808
# File 'generated/google/apis/spanner_v1/classes.rb', line 806

def instance_id
  @instance_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



813
814
815
816
# File 'generated/google/apis/spanner_v1/classes.rb', line 813

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