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
| 656 657 658 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 656 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
This is always sql#demoteMasterConfiguration.
Corresponds to the JSON property kind
| 649 650 651 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 649 def kind @kind end | 
#mysql_replica_configuration ⇒ Google::Apis::SqladminV1beta4::DemoteMasterMySqlReplicaConfiguration
Read-replica configuration specific to MySQL databases.
Corresponds to the JSON property mysqlReplicaConfiguration
| 654 655 656 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 654 def mysql_replica_configuration @mysql_replica_configuration end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 661 662 663 664 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 661 def update!(**args) @kind = args[:kind] if args.key?(:kind) @mysql_replica_configuration = args[:mysql_replica_configuration] if args.key?(:mysql_replica_configuration) end |