Class: Google::Apis::PrivatecaV1beta1::ListCertificateAuthoritiesResponse

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.ListCertificateAuthorities.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListCertificateAuthoritiesResponse

Returns a new instance of ListCertificateAuthoritiesResponse.



1301
1302
1303
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1301

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

Instance Attribute Details

#certificate_authoritiesArray<Google::Apis::PrivatecaV1beta1::CertificateAuthority>

The list of CertificateAuthorities. Corresponds to the JSON property certificateAuthorities



1287
1288
1289
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1287

def certificate_authorities
  @certificate_authorities
end

#next_page_tokenString

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

Returns:

  • (String)


1294
1295
1296
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1294

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


1299
1300
1301
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1299

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1306
1307
1308
1309
1310
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1306

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