class Google::Apis::NetworksecurityV1beta1::ListAuthorizationPoliciesResponse

Response returned by the ListAuthorizationPolicies method.

Attributes

authorization_policies[RW]

List of AuthorizationPolicies resources. Corresponds to the JSON property `authorizationPolicies` @return [Array<Google::Apis::NetworksecurityV1beta1::AuthorizationPolicy>]

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_v1beta1/classes.rb, line 726
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 731
def update!(**args)
  @authorization_policies = args[:authorization_policies] if args.key?(:authorization_policies)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end