class Google::Apis::AccesscontextmanagerV1::ListAccessPoliciesResponse
A response to `ListAccessPoliciesRequest`.
Attributes
access_policies[RW]
List of the AccessPolicy
instances. Corresponds to the JSON property `accessPolicies` @return [Array<Google::Apis::AccesscontextmanagerV1::AccessPolicy>]
next_page_token[RW]
The pagination token to retrieve the next page of results. If the value is empty, no further results remain. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/accesscontextmanager_v1/classes.rb, line 854 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/accesscontextmanager_v1/classes.rb, line 859 def update!(**args) @access_policies = args[:access_policies] if args.key?(:access_policies) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end