Class: Google::Apis::NetworksecurityV1::ListClientTlsPoliciesResponse

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

Overview

Response returned by the ListClientTlsPolicies method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListClientTlsPoliciesResponse

Returns a new instance of ListClientTlsPoliciesResponse.



1911
1912
1913
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 1911

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

Instance Attribute Details

#client_tls_policiesArray<Google::Apis::NetworksecurityV1::ClientTlsPolicy>

List of ClientTlsPolicy resources. Corresponds to the JSON property clientTlsPolicies



1902
1903
1904
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 1902

def client_tls_policies
  @client_tls_policies
end

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


1909
1910
1911
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 1909

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1916
1917
1918
1919
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 1916

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