Class: Google::Apis::AdminDirectoryV1::Role::RolePrivilege
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::Role::RolePrivilege
- 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
-
#privilege_name ⇒ String
The name of the privilege.
-
#service_id ⇒ String
The obfuscated ID of the service this privilege is for.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RolePrivilege
constructor
A new instance of RolePrivilege.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RolePrivilege
Returns a new instance of RolePrivilege.
3403 3404 3405 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3403 def initialize(**args) update!(**args) end |
Instance Attribute Details
#privilege_name ⇒ String
The name of the privilege.
Corresponds to the JSON property privilegeName
3395 3396 3397 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3395 def privilege_name @privilege_name end |
#service_id ⇒ String
The obfuscated ID of the service this privilege is for. This value is returned
with Privileges.list().
Corresponds to the JSON property serviceId
3401 3402 3403 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3401 def service_id @service_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3408 3409 3410 3411 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3408 def update!(**args) @privilege_name = args[:privilege_name] if args.key?(:privilege_name) @service_id = args[:service_id] if args.key?(:service_id) end |