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.



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

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)


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

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



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

def trust_configs
  @trust_configs
end

#unreachableArray<String>

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

Returns:

  • (Array<String>)


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

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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