Class: Google::Apis::SqladminV1::DemoteMasterContext
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1::DemoteMasterContext
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/sqladmin_v1/classes.rb,
lib/google/apis/sqladmin_v1/representations.rb,
lib/google/apis/sqladmin_v1/representations.rb
Overview
Database instance demote primary instance context.
Instance Attribute Summary collapse
-
#kind ⇒ String
This is always sql#demoteMasterContext.
-
#master_instance_name ⇒ String
The name of the instance which will act as on-premises primary instance in the replication setup.
-
#replica_configuration ⇒ Google::Apis::SqladminV1::DemoteMasterConfiguration
Read-replica configuration for connecting to the on-premises primary instance.
-
#skip_replication_setup ⇒ Boolean
(also: #skip_replication_setup?)
Flag to skip replication setup on the instance.
-
#verify_gtid_consistency ⇒ Boolean
(also: #verify_gtid_consistency?)
Verify GTID consistency for demote operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DemoteMasterContext
constructor
A new instance of DemoteMasterContext.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DemoteMasterContext
Returns a new instance of DemoteMasterContext.
966 967 968 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 966 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
This is always sql#demoteMasterContext.
Corresponds to the JSON property kind
936 937 938 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 936 def kind @kind end |
#master_instance_name ⇒ String
The name of the instance which will act as on-premises primary instance in the
replication setup.
Corresponds to the JSON property masterInstanceName
942 943 944 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 942 def master_instance_name @master_instance_name end |
#replica_configuration ⇒ Google::Apis::SqladminV1::DemoteMasterConfiguration
Read-replica configuration for connecting to the on-premises primary instance.
Corresponds to the JSON property replicaConfiguration
947 948 949 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 947 def replica_configuration @replica_configuration end |
#skip_replication_setup ⇒ Boolean Also known as: skip_replication_setup?
Flag to skip replication setup on the instance.
Corresponds to the JSON property skipReplicationSetup
952 953 954 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 952 def skip_replication_setup @skip_replication_setup end |
#verify_gtid_consistency ⇒ Boolean Also known as: verify_gtid_consistency?
Verify GTID consistency for demote operation. Default value: True. Setting
this flag to false enables you to bypass GTID consistency check between on-
premises primary instance and Cloud SQL instance during the demotion operation
but also exposes you to the risk of future replication failures. Change the
value only if you know the reason for the GTID divergence and are confident
that doing so will not cause any replication issues.
Corresponds to the JSON property verifyGtidConsistency
963 964 965 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 963 def verify_gtid_consistency @verify_gtid_consistency end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
971 972 973 974 975 976 977 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 971 def update!(**args) @kind = args[:kind] if args.key?(:kind) @master_instance_name = args[:master_instance_name] if args.key?(:master_instance_name) @replica_configuration = args[:replica_configuration] if args.key?(:replica_configuration) @skip_replication_setup = args[:skip_replication_setup] if args.key?(:skip_replication_setup) @verify_gtid_consistency = args[:verify_gtid_consistency] if args.key?(:verify_gtid_consistency) end |