Class: Google::Apis::AdminDirectoryV1::RoleAssignments
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AdminDirectoryV1::RoleAssignments
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/admin_directory_v1/classes.rb,
 generated/google/apis/admin_directory_v1/representations.rb,
 generated/google/apis/admin_directory_v1/representations.rb
Overview
JSON response template for List roleAssignments operation in Directory API.
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    ETag of the resource. 
- 
  
    
      #items  ⇒ Array<Google::Apis::AdminDirectoryV1::RoleAssignment> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of RoleAssignment resources. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of the API resource. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property nextPageToken.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ RoleAssignments 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of RoleAssignments. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RoleAssignments
Returns a new instance of RoleAssignments
| 2464 2465 2466 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2464 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
| 2447 2448 2449 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2447 def etag @etag end | 
#items ⇒ Array<Google::Apis::AdminDirectoryV1::RoleAssignment>
A list of RoleAssignment resources.
Corresponds to the JSON property items
| 2452 2453 2454 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2452 def items @items end | 
#kind ⇒ String
The type of the API resource. This is always admin#directory#roleAssignments.
Corresponds to the JSON property kind
| 2457 2458 2459 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2457 def kind @kind end | 
#next_page_token ⇒ String
Corresponds to the JSON property nextPageToken
| 2462 2463 2464 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2462 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2469 2470 2471 2472 2473 2474 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2469 def update!(**args) @etag = args[:etag] if args.key?(:etag) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |