class Google::Apis::NetworksecurityV1beta1::ListServerTlsPoliciesResponse
Response returned by the ListServerTlsPolicies method.
Attributes
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]
server_tls_policies[RW]
List of ServerTlsPolicy
resources. Corresponds to the JSON property `serverTlsPolicies` @return [Array<Google::Apis::NetworksecurityV1beta1::ServerTlsPolicy>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/networksecurity_v1beta1/classes.rb, line 830 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_v1beta1/classes.rb, line 835 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @server_tls_policies = args[:server_tls_policies] if args.key?(:server_tls_policies) end