Class: Google::Apis::SqladminV1beta4::InstanceReference
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SqladminV1beta4::InstanceReference
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/sqladmin_v1beta4/classes.rb,
lib/google/apis/sqladmin_v1beta4/representations.rb,
lib/google/apis/sqladmin_v1beta4/representations.rb 
Overview
Reference to another Cloud SQL instance.
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the Cloud SQL instance being referenced.
 - 
  
    
      #project  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The project ID of the Cloud SQL instance being referenced.
 - 
  
    
      #region  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The region of the Cloud SQL instance being referenced.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InstanceReference 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of InstanceReference.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ InstanceReference
Returns a new instance of InstanceReference.
      2303 2304 2305  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 2303 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#name ⇒ String
The name of the Cloud SQL instance being referenced. This does not include the
project ID.
Corresponds to the JSON property name
      2290 2291 2292  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 2290 def name @name end  | 
  
#project ⇒ String
The project ID of the Cloud SQL instance being referenced. The default is the
same project ID as the instance references it.
Corresponds to the JSON property project
      2296 2297 2298  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 2296 def project @project end  | 
  
#region ⇒ String
The region of the Cloud SQL instance being referenced.
Corresponds to the JSON property region
      2301 2302 2303  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 2301 def region @region end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2308 2309 2310 2311 2312  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 2308 def update!(**args) @name = args[:name] if args.key?(:name) @project = args[:project] if args.key?(:project) @region = args[:region] if args.key?(:region) end  |