Class: Google::Apis::SqladminV1::InstancesListServerCertificatesResponse
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1::InstancesListServerCertificatesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/sqladmin_v1/classes.rb,
lib/google/apis/sqladmin_v1/representations.rb,
lib/google/apis/sqladmin_v1/representations.rb
Overview
Instances ListServerCertificates response.
Instance Attribute Summary collapse
-
#active_version ⇒ String
The
sha1_fingerprintof the active certificate fromserver_certs. -
#ca_certs ⇒ Array<Google::Apis::SqladminV1::SslCert>
List of server CA certificates for the instance.
-
#kind ⇒ String
This is always
sql#instancesListServerCertificates. -
#server_certs ⇒ Array<Google::Apis::SqladminV1::SslCert>
List of server certificates for the instance, signed by the corresponding CA from the
ca_certslist.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstancesListServerCertificatesResponse
constructor
A new instance of InstancesListServerCertificatesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstancesListServerCertificatesResponse
Returns a new instance of InstancesListServerCertificatesResponse.
2622 2623 2624 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2622 def initialize(**args) update!(**args) end |
Instance Attribute Details
#active_version ⇒ String
The sha1_fingerprint of the active certificate from server_certs.
Corresponds to the JSON property activeVersion
2604 2605 2606 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2604 def active_version @active_version end |
#ca_certs ⇒ Array<Google::Apis::SqladminV1::SslCert>
List of server CA certificates for the instance.
Corresponds to the JSON property caCerts
2609 2610 2611 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2609 def ca_certs @ca_certs end |
#kind ⇒ String
This is always sql#instancesListServerCertificates.
Corresponds to the JSON property kind
2614 2615 2616 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2614 def kind @kind end |
#server_certs ⇒ Array<Google::Apis::SqladminV1::SslCert>
List of server certificates for the instance, signed by the corresponding CA
from the ca_certs list.
Corresponds to the JSON property serverCerts
2620 2621 2622 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2620 def server_certs @server_certs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2627 2628 2629 2630 2631 2632 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2627 def update!(**args) @active_version = args[:active_version] if args.key?(:active_version) @ca_certs = args[:ca_certs] if args.key?(:ca_certs) @kind = args[:kind] if args.key?(:kind) @server_certs = args[:server_certs] if args.key?(:server_certs) end |