Class: Google::Apis::PrivatecaV1beta1::ListCertificatesResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/privateca_v1beta1/classes.rb,
lib/google/apis/privateca_v1beta1/representations.rb,
lib/google/apis/privateca_v1beta1/representations.rb

Overview

Response message for CertificateAuthorityService.ListCertificates.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListCertificatesResponse

Returns a new instance of ListCertificatesResponse.



2436
2437
2438
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 2436

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#certificatesArray<Google::Apis::PrivatecaV1beta1::Certificate>

The list of Certificates. Corresponds to the JSON property certificates



2423
2424
2425
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 2423

def certificates
  @certificates
end

#next_page_tokenString

A token to retrieve next page of results. Pass this value in ListCertificatesRequest.next_page_token to retrieve the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2429
2430
2431
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 2429

def next_page_token
  @next_page_token
end

#unreachableArray<String>

A list of locations (e.g. "us-west1") that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


2434
2435
2436
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 2434

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2441
2442
2443
2444
2445
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 2441

def update!(**args)
  @certificates = args[:certificates] if args.key?(:certificates)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end