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.



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

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)


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

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



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

def trust_configs
  @trust_configs
end

#unreachableArray<String>

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

Returns:

  • (Array<String>)


856
857
858
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 856

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



863
864
865
866
867
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 863

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