Class: Google::Apis::IamV1::QueryGrantableRolesRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/iam_v1/classes.rb,
generated/google/apis/iam_v1/representations.rb,
generated/google/apis/iam_v1/representations.rb

Overview

The grantable role query request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ QueryGrantableRolesRequest

Returns a new instance of QueryGrantableRolesRequest



282
283
284
# File 'generated/google/apis/iam_v1/classes.rb', line 282

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#full_resource_nameString

Required. The full resource name to query from the list of grantable roles. 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

Returns:

  • (String)


280
281
282
# File 'generated/google/apis/iam_v1/classes.rb', line 280

def full_resource_name
  @full_resource_name
end

#page_sizeFixnum

Optional limit on the number of roles to include in the response. Corresponds to the JSON property pageSize

Returns:

  • (Fixnum)


272
273
274
# File 'generated/google/apis/iam_v1/classes.rb', line 272

def page_size
  @page_size
end

#page_tokenString

Optional pagination token returned in an earlier QueryGrantableRolesResponse. Corresponds to the JSON property pageToken

Returns:

  • (String)


267
268
269
# File 'generated/google/apis/iam_v1/classes.rb', line 267

def page_token
  @page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



287
288
289
290
291
# File 'generated/google/apis/iam_v1/classes.rb', line 287

def update!(**args)
  @page_token = args[:page_token] if args.key?(:page_token)
  @page_size = args[:page_size] if args.key?(:page_size)
  @full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
end