Class: Google::Apis::SpannerV1::InstanceConfig
- Inherits:
-
Object
- Object
- Google::Apis::SpannerV1::InstanceConfig
- 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
A possible configuration for a Cloud Spanner instance. Configurations define the geographic placement of nodes and their replication.
Instance Attribute Summary collapse
-
#display_name ⇒ String
The name of this instance configuration as it appears in UIs.
-
#name ⇒ String
A unique identifier for the instance configuration.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstanceConfig
constructor
A new instance of InstanceConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ InstanceConfig
Returns a new instance of InstanceConfig
2423 2424 2425 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 2423 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The name of this instance configuration as it appears in UIs.
Corresponds to the JSON property displayName
2421 2422 2423 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 2421 def display_name @display_name end |
#name ⇒ String
A unique identifier for the instance configuration. Values
are of the form
projects/<project>/instanceConfigs/a-z*
Corresponds to the JSON property name
2416 2417 2418 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 2416 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2428 2429 2430 2431 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 2428 def update!(**args) @name = args[:name] if args.key?(:name) @display_name = args[:display_name] if args.key?(:display_name) end |