class Google::Apis::NetworkservicesV1beta1::ListEndpointPoliciesResponse
Response returned by the ListEndpointPolicies method.
Attributes
endpoint_policies[RW]
List of EndpointPolicy
resources. Corresponds to the JSON property `endpointPolicies` @return [Array<Google::Apis::NetworkservicesV1beta1::EndpointPolicy>]
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/networkservices_v1beta1/classes.rb, line 385 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/networkservices_v1beta1/classes.rb, line 390 def update!(**args) @endpoint_policies = args[:endpoint_policies] if args.key?(:endpoint_policies) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end