class Google::Apis::NetworksecurityV1::ListClientTlsPoliciesResponse
Response returned by the ListClientTlsPolicies method.
Attributes
client_tls_policies[RW]
List of ClientTlsPolicy
resources. Corresponds to the JSON property `clientTlsPolicies` @return [Array<Google::Apis::NetworksecurityV1::ClientTlsPolicy>]
next_page_token[RW]
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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/networksecurity_v1/classes.rb, line 753 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/networksecurity_v1/classes.rb, line 758 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