Class: Google::Apis::SqladminV1beta3::SslCertsListResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SqladminV1beta3::SslCertsListResponse
 
- 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
SslCerts list response.
Instance Attribute Summary collapse
- 
  
    
      #items  ⇒ Array<Google::Apis::SqladminV1beta3::SslCert> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of client certificates for the instance. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    This is always sql#sslCertsList. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SslCertsListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SslCertsListResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SslCertsListResponse
Returns a new instance of SslCertsListResponse
| 1551 1552 1553 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1551 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#items ⇒ Array<Google::Apis::SqladminV1beta3::SslCert>
List of client certificates for the instance.
Corresponds to the JSON property items
| 1544 1545 1546 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1544 def items @items end | 
#kind ⇒ String
This is always sql#sslCertsList.
Corresponds to the JSON property kind
| 1549 1550 1551 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1549 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1556 1557 1558 1559 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1556 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end |