Class: Google::Apis::IamV1::QueryGrantableRolesRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::IamV1::QueryGrantableRolesRequest
 
- 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
- 
  
    
      #full_resource_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Required. 
- 
  
    
      #page_size  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional limit on the number of roles to include in the response. 
- 
  
    
      #page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional pagination token returned in an earlier QueryGrantableRolesResponse. 
- 
  
    
      #view  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property view.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ QueryGrantableRolesRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of QueryGrantableRolesRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ QueryGrantableRolesRequest
Returns a new instance of QueryGrantableRolesRequest
| 673 674 675 | # File 'generated/google/apis/iam_v1/classes.rb', line 673 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#full_resource_name ⇒ String
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
| 655 656 657 | # File 'generated/google/apis/iam_v1/classes.rb', line 655 def full_resource_name @full_resource_name end | 
#page_size ⇒ Fixnum
Optional limit on the number of roles to include in the response.
Corresponds to the JSON property pageSize
| 660 661 662 | # File 'generated/google/apis/iam_v1/classes.rb', line 660 def page_size @page_size end | 
#page_token ⇒ String
Optional pagination token returned in an earlier
QueryGrantableRolesResponse.
Corresponds to the JSON property pageToken
| 666 667 668 | # File 'generated/google/apis/iam_v1/classes.rb', line 666 def page_token @page_token end | 
#view ⇒ String
Corresponds to the JSON property view
| 671 672 673 | # File 'generated/google/apis/iam_v1/classes.rb', line 671 def view @view end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 678 679 680 681 682 683 | # File 'generated/google/apis/iam_v1/classes.rb', line 678 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 |