class Google::Apis::CloudassetV1::SearchAllIamPoliciesResponse
Search all IAM policies response.
Attributes
next_page_token[RW]
Set if there are more results than those appearing in this response; to get the next set of results, call this method again, using this value as the ` page_token`. Corresponds to the JSON property `nextPageToken` @return [String]
results[RW]
A list of IamPolicy that match the search query. Related information such as the associated resource is returned along with the policy. Corresponds to the JSON property `results` @return [Array<Google::Apis::CloudassetV1::IamPolicySearchResult>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudasset_v1/classes.rb, line 4164 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudasset_v1/classes.rb, line 4169 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @results = args[:results] if args.key?(:results) end