Class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration
- Inherits:
-
Object
- Object
- Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainAvailabilityConfiguration
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/alloydb_v1alpha/classes.rb,
lib/google/apis/alloydb_v1alpha/representations.rb,
lib/google/apis/alloydb_v1alpha/representations.rb
Overview
Configuration for availability of database instance
Instance Attribute Summary collapse
-
#automatic_failover_routing_configured ⇒ Boolean
(also: #automatic_failover_routing_configured?)
Checks for existence of (multi-cluster) routing configuration that allows automatic failover to a different zone/region in case of an outage.
-
#availability_type ⇒ String
Availability type.
-
#cross_region_replica_configured ⇒ Boolean
(also: #cross_region_replica_configured?)
Checks for resources that are configured to have redundancy, and ongoing replication across regions Corresponds to the JSON property
crossRegionReplicaConfigured. -
#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.
2847 2848 2849 |
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 2847 def initialize(**args) update!(**args) end |
Instance Attribute Details
#automatic_failover_routing_configured ⇒ Boolean Also known as: automatic_failover_routing_configured?
Checks for existence of (multi-cluster) routing configuration that allows
automatic failover to a different zone/region in case of an outage. Applicable
to Bigtable resources.
Corresponds to the JSON property automaticFailoverRoutingConfigured
2817 2818 2819 |
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 2817 def automatic_failover_routing_configured @automatic_failover_routing_configured end |
#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
2826 2827 2828 |
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 2826 def availability_type @availability_type end |
#cross_region_replica_configured ⇒ Boolean Also known as: cross_region_replica_configured?
Checks for resources that are configured to have redundancy, and ongoing
replication across regions
Corresponds to the JSON property crossRegionReplicaConfigured
2832 2833 2834 |
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 2832 def cross_region_replica_configured @cross_region_replica_configured end |
#external_replica_configured ⇒ Boolean Also known as: external_replica_configured?
Corresponds to the JSON property externalReplicaConfigured
2838 2839 2840 |
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 2838 def external_replica_configured @external_replica_configured end |
#promotable_replica_configured ⇒ Boolean Also known as: promotable_replica_configured?
Corresponds to the JSON property promotableReplicaConfigured
2844 2845 2846 |
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 2844 def promotable_replica_configured @promotable_replica_configured end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2852 2853 2854 2855 2856 2857 2858 |
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 2852 def update!(**args) @automatic_failover_routing_configured = args[:automatic_failover_routing_configured] if args.key?(:automatic_failover_routing_configured) @availability_type = args[:availability_type] if args.key?(:availability_type) @cross_region_replica_configured = args[:cross_region_replica_configured] if args.key?(:cross_region_replica_configured) @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 |