Class: Google::Apis::PrivatecaV1::ListCaPoolsResponse

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

Overview

Response message for CertificateAuthorityService.ListCaPools.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListCaPoolsResponse

Returns a new instance of ListCaPoolsResponse.



1605
1606
1607
# File 'lib/google/apis/privateca_v1/classes.rb', line 1605

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

Instance Attribute Details

#ca_poolsArray<Google::Apis::PrivatecaV1::CaPool>

The list of CaPools. Corresponds to the JSON property caPools



1591
1592
1593
# File 'lib/google/apis/privateca_v1/classes.rb', line 1591

def ca_pools
  @ca_pools
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)


1598
1599
1600
# File 'lib/google/apis/privateca_v1/classes.rb', line 1598

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


1603
1604
1605
# File 'lib/google/apis/privateca_v1/classes.rb', line 1603

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1610
1611
1612
1613
1614
# File 'lib/google/apis/privateca_v1/classes.rb', line 1610

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