Class: Google::Apis::SqladminV1beta4::DemoteMasterConfiguration
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1beta4::DemoteMasterConfiguration
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sqladmin_v1beta4/classes.rb,
generated/google/apis/sqladmin_v1beta4/representations.rb,
generated/google/apis/sqladmin_v1beta4/representations.rb
Overview
Read-replica configuration for connecting to the on-premises master.
Instance Attribute Summary collapse
-
#kind ⇒ String
This is always sql#demoteMasterConfiguration.
-
#mysql_replica_configuration ⇒ Google::Apis::SqladminV1beta4::DemoteMasterMySqlReplicaConfiguration
Read-replica configuration specific to MySQL databases.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DemoteMasterConfiguration
constructor
A new instance of DemoteMasterConfiguration.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DemoteMasterConfiguration
Returns a new instance of DemoteMasterConfiguration
682 683 684 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 682 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
This is always sql#demoteMasterConfiguration.
Corresponds to the JSON property kind
675 676 677 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 675 def kind @kind end |
#mysql_replica_configuration ⇒ Google::Apis::SqladminV1beta4::DemoteMasterMySqlReplicaConfiguration
Read-replica configuration specific to MySQL databases.
Corresponds to the JSON property mysqlReplicaConfiguration
680 681 682 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 680 def mysql_replica_configuration @mysql_replica_configuration end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
687 688 689 690 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 687 def update!(**args) @kind = args[:kind] if args.key?(:kind) @mysql_replica_configuration = args[:mysql_replica_configuration] if args.key?(:mysql_replica_configuration) end |