Class: Google::Apis::AdminDirectoryV1::Roles
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::Roles
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/admin_directory_v1/classes.rb,
lib/google/apis/admin_directory_v1/representations.rb,
lib/google/apis/admin_directory_v1/representations.rb
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.
Constructor Details
#initialize(**args) ⇒ Roles
Returns a new instance of Roles.
4218 4219 4220 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4218 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
4201 4202 4203 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4201 def etag @etag end |
#items ⇒ Array<Google::Apis::AdminDirectoryV1::Role>
A list of Role resources.
Corresponds to the JSON property items
4206 4207 4208 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4206 def items @items end |
#kind ⇒ String
The type of the API resource. This is always admin#directory#roles.
Corresponds to the JSON property kind
4211 4212 4213 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4211 def kind @kind end |
#next_page_token ⇒ String
Corresponds to the JSON property nextPageToken
4216 4217 4218 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4216 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4223 4224 4225 4226 4227 4228 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4223 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 |