Class: Google::Apis::CertificatemanagerV1::ListTrustConfigsResponse

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

Overview

Response for the ListTrustConfigs method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListTrustConfigsResponse

Returns a new instance of ListTrustConfigsResponse.



853
854
855
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 853

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

Instance Attribute Details

#next_page_tokenString

If there might be more results than those appearing in this response, then next_page_token is included. To get the next set of results, call this method again using the value of next_page_token as page_token. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


841
842
843
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 841

def next_page_token
  @next_page_token
end

#trust_configsArray<Google::Apis::CertificatemanagerV1::TrustConfig>

A list of TrustConfigs for the parent resource. Corresponds to the JSON property trustConfigs



846
847
848
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 846

def trust_configs
  @trust_configs
end

#unreachableArray<String>

Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


851
852
853
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 851

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



858
859
860
861
862
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 858

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