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
1534 1535 1536 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1534 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
1527 1528 1529 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1527 def items @items end |
#kind ⇒ String
This is always sql#sslCertsList.
Corresponds to the JSON property kind
1532 1533 1534 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1532 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1539 1540 1541 1542 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1539 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end |