Class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration
- Inherits:
-
Object
- Object
- Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/alloydb_v1/classes.rb,
lib/google/apis/alloydb_v1/representations.rb,
lib/google/apis/alloydb_v1/representations.rb
Overview
Configuration for availability of database instance
Instance Attribute Summary collapse
-
#availability_type ⇒ String
Availability type.
-
#external_replica_configured ⇒ Boolean
(also: #external_replica_configured?)
Corresponds to the JSON property
externalReplicaConfigured
. -
#promotable_replica_configured ⇒ Boolean
(also: #promotable_replica_configured?)
Corresponds to the JSON property
promotableReplicaConfigured
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration
constructor
A new instance of StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration
Returns a new instance of StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration.
1993 1994 1995 |
# File 'lib/google/apis/alloydb_v1/classes.rb', line 1993 def initialize(**args) update!(**args) end |
Instance Attribute Details
#availability_type ⇒ String
Availability type. Potential values: * ZONAL
: The instance serves data from
only one zone. Outages in that zone affect data accessibility. * REGIONAL
:
The instance can serve data from more than one zone in a region (it is highly
available).
Corresponds to the JSON property availabilityType
1979 1980 1981 |
# File 'lib/google/apis/alloydb_v1/classes.rb', line 1979 def availability_type @availability_type end |
#external_replica_configured ⇒ Boolean Also known as: external_replica_configured?
Corresponds to the JSON property externalReplicaConfigured
1984 1985 1986 |
# File 'lib/google/apis/alloydb_v1/classes.rb', line 1984 def external_replica_configured @external_replica_configured end |
#promotable_replica_configured ⇒ Boolean Also known as: promotable_replica_configured?
Corresponds to the JSON property promotableReplicaConfigured
1990 1991 1992 |
# File 'lib/google/apis/alloydb_v1/classes.rb', line 1990 def promotable_replica_configured @promotable_replica_configured end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1998 1999 2000 2001 2002 |
# File 'lib/google/apis/alloydb_v1/classes.rb', line 1998 def update!(**args) @availability_type = args[:availability_type] if args.key?(:availability_type) @external_replica_configured = args[:external_replica_configured] if args.key?(:external_replica_configured) @promotable_replica_configured = args[:promotable_replica_configured] if args.key?(:promotable_replica_configured) end |