Class: Google::Apis::PrivatecaV1beta1::ListCertificateRevocationListsResponse

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

Overview

Response message for CertificateAuthorityService. ListCertificateRevocationLists.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListCertificateRevocationListsResponse

Returns a new instance of ListCertificateRevocationListsResponse.



1333
1334
1335
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 1333

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

Instance Attribute Details

#certificate_revocation_listsArray<Google::Apis::PrivatecaV1beta1::CertificateRevocationList>

The list of CertificateRevocationLists. Corresponds to the JSON property certificateRevocationLists



1319
1320
1321
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 1319

def certificate_revocation_lists
  @certificate_revocation_lists
end

#next_page_tokenString

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

Returns:

  • (String)


1326
1327
1328
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 1326

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>)


1331
1332
1333
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 1331

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1338
1339
1340
1341
1342
# File 'generated/google/apis/privateca_v1beta1/classes.rb', line 1338

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