Class: Google::Apis::DatamigrationV1::CloudSqlConnectionProfile
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DatamigrationV1::CloudSqlConnectionProfile
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datamigration_v1/classes.rb,
 lib/google/apis/datamigration_v1/representations.rb,
 lib/google/apis/datamigration_v1/representations.rb
Overview
Specifies required connection parameters, and, optionally, the parameters required to create a Cloud SQL destination database instance.
Instance Attribute Summary collapse
- 
  
    
      #additional_public_ip  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #cloud_sql_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #private_ip  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #public_ip  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #settings  ⇒ Google::Apis::DatamigrationV1::CloudSqlSettings 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Settings for creating a Cloud SQL database instance. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CloudSqlConnectionProfile 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CloudSqlConnectionProfile. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ CloudSqlConnectionProfile
Returns a new instance of CloudSqlConnectionProfile.
| 486 487 488 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 486 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#additional_public_ip ⇒ String
Output only. The Cloud SQL database instance's additional (outgoing) public IP.
Used when the Cloud SQL database availability type is REGIONAL (i.e. multiple
zones / highly available).
Corresponds to the JSON property additionalPublicIp
| 463 464 465 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 463 def additional_public_ip @additional_public_ip end | 
#cloud_sql_id ⇒ String
Output only. The Cloud SQL instance ID that this connection profile is
associated with.
Corresponds to the JSON property cloudSqlId
| 469 470 471 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 469 def cloud_sql_id @cloud_sql_id end | 
#private_ip ⇒ String
Output only. The Cloud SQL database instance's private IP.
Corresponds to the JSON property privateIp
| 474 475 476 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 474 def private_ip @private_ip end | 
#public_ip ⇒ String
Output only. The Cloud SQL database instance's public IP.
Corresponds to the JSON property publicIp
| 479 480 481 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 479 def public_ip @public_ip end | 
#settings ⇒ Google::Apis::DatamigrationV1::CloudSqlSettings
Settings for creating a Cloud SQL database instance.
Corresponds to the JSON property settings
| 484 485 486 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 484 def settings @settings end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 491 492 493 494 495 496 497 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 491 def update!(**args) @additional_public_ip = args[:additional_public_ip] if args.key?(:additional_public_ip) @cloud_sql_id = args[:cloud_sql_id] if args.key?(:cloud_sql_id) @private_ip = args[:private_ip] if args.key?(:private_ip) @public_ip = args[:public_ip] if args.key?(:public_ip) @settings = args[:settings] if args.key?(:settings) end |