Class: Google::Apis::SqladminV1beta3::InstancesInsertResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SqladminV1beta3::InstancesInsertResponse
 
- 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 insert response.
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    This is always sql#instancesInsert. 
- 
  
    
      #operation  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An identifier that uniquely identifies the operation. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InstancesInsertResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of InstancesInsertResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ InstancesInsertResponse
Returns a new instance of InstancesInsertResponse
| 878 879 880 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 878 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
This is always sql#instancesInsert.
Corresponds to the JSON property kind
| 869 870 871 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 869 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
| 876 877 878 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 876 def operation @operation end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 883 884 885 886 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 883 def update!(**args) @kind = args[:kind] if args.key?(:kind) @operation = args[:operation] if args.key?(:operation) end |