Class: Google::Apis::AdminDirectoryV1::Roles
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AdminDirectoryV1::Roles
 
- 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 roles operation in Directory API.
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    ETag of the resource. 
- 
  
    
      #items  ⇒ Array<Google::Apis::AdminDirectoryV1::Role> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of Role 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)  ⇒ Roles 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Roles. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Roles
Returns a new instance of Roles
| 2501 2502 2503 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2501 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
| 2484 2485 2486 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2484 def etag @etag end | 
#items ⇒ Array<Google::Apis::AdminDirectoryV1::Role>
A list of Role resources.
Corresponds to the JSON property items
| 2489 2490 2491 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2489 def items @items end | 
#kind ⇒ String
The type of the API resource. This is always admin#directory#roles.
Corresponds to the JSON property kind
| 2494 2495 2496 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2494 def kind @kind end | 
#next_page_token ⇒ String
Corresponds to the JSON property nextPageToken
| 2499 2500 2501 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2499 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2506 2507 2508 2509 2510 2511 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2506 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 |