class Google::Apis::IamV1::QueryTestablePermissionsResponse
The response containing permissions which can be tested on a resource.
Attributes
next_page_token[RW]
To retrieve the next page of results, set `QueryTestableRolesRequest. page_token` to this value. Corresponds to the JSON property `nextPageToken` @return [String]
permissions[RW]
The Permissions testable on the requested resource. Corresponds to the JSON property `permissions` @return [Array<Google::Apis::IamV1::Permission>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/iam_v1/classes.rb, line 1245 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/iam_v1/classes.rb, line 1250 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @permissions = args[:permissions] if args.key?(:permissions) end