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.
3894 3895 3896 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3894 def initialize(**args) update!(**args) end |
Instance Attribute Details
#privilege_name ⇒ String
The name of the privilege.
Corresponds to the JSON property privilegeName
3886 3887 3888 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3886 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
3892 3893 3894 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3892 def service_id @service_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3899 3900 3901 3902 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3899 def update!(**args) @privilege_name = args[:privilege_name] if args.key?(:privilege_name) @service_id = args[:service_id] if args.key?(:service_id) end |