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

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

Overview

The grantable role query request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ QueryGrantableRolesRequest

Returns a new instance of QueryGrantableRolesRequest.



1596
1597
1598
# File 'lib/google/apis/iam_v1/classes.rb', line 1596

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)


1578
1579
1580
# File 'lib/google/apis/iam_v1/classes.rb', line 1578

def full_resource_name
  @full_resource_name
end

#page_sizeFixnum

Optional limit on the number of roles to include in the response. The default is 300, and the maximum is 1,000. Corresponds to the JSON property pageSize

Returns:

  • (Fixnum)


1584
1585
1586
# File 'lib/google/apis/iam_v1/classes.rb', line 1584

def page_size
  @page_size
end

#page_tokenString

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

Returns:

  • (String)


1589
1590
1591
# File 'lib/google/apis/iam_v1/classes.rb', line 1589

def page_token
  @page_token
end

#viewString

Corresponds to the JSON property view

Returns:

  • (String)


1594
1595
1596
# File 'lib/google/apis/iam_v1/classes.rb', line 1594

def view
  @view
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1601
1602
1603
1604
1605
1606
# File 'lib/google/apis/iam_v1/classes.rb', line 1601

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)
  @view = args[:view] if args.key?(:view)
end