Class: Google::Apis::SqladminV1beta3::InstancesImportResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SqladminV1beta3::InstancesImportResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sqladmin_v1beta3/classes.rb,
 generated/google/apis/sqladmin_v1beta3/representations.rb,
 generated/google/apis/sqladmin_v1beta3/representations.rb
Overview
Database instance import response.
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    This is always sql#instancesImport. 
- 
  
    
      #operation  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An identifier that uniquely identifies the operation. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InstancesImportResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of InstancesImportResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ InstancesImportResponse
Returns a new instance of InstancesImportResponse
| 851 852 853 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 851 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
This is always sql#instancesImport.
Corresponds to the JSON property kind
| 842 843 844 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 842 def kind @kind end | 
#operation ⇒ String
An identifier that uniquely identifies the operation. You can use this
identifier to retrieve the Operations resource that has information about the
operation.
Corresponds to the JSON property operation
| 849 850 851 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 849 def operation @operation end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 856 857 858 859 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 856 def update!(**args) @kind = args[:kind] if args.key?(:kind) @operation = args[:operation] if args.key?(:operation) end |