class Google::Apis::IamV1::QueryTestablePermissionsRequest
A request to get permissions which can be tested on a resource.
Attributes
Required. The full resource name to query from the list of testable permissions. The name follows the Google
Cloud Platform resource format. For example, a Cloud Platform project with id `my-project` will be named `// cloudresourcemanager.googleapis.com/projects/my-project`. Corresponds to the JSON property `fullResourceName` @return [String]
Optional limit on the number of permissions to include in the response. The default is 100, and the maximum is 1,000. Corresponds to the JSON property `pageSize` @return [Fixnum]
Optional pagination token returned in an earlier QueryTestablePermissionsRequest
. Corresponds to the JSON property `pageToken` @return [String]
Public Class Methods
# File lib/google/apis/iam_v1/classes.rb, line 1218 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/iam_v1/classes.rb, line 1223 def update!(**args) @full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name) @page_size = args[:page_size] if args.key?(:page_size) @page_token = args[:page_token] if args.key?(:page_token) end