Class: Google::Apis::VaultV1::UserInfo
- Inherits:
-
Object
- Object
- Google::Apis::VaultV1::UserInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/vault_v1/classes.rb,
generated/google/apis/vault_v1/representations.rb,
generated/google/apis/vault_v1/representations.rb
Overview
User's information.
Instance Attribute Summary collapse
-
#display_name ⇒ String
The displayed name of the user.
-
#email ⇒ String
The email address of the user.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UserInfo
constructor
A new instance of UserInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UserInfo
Returns a new instance of UserInfo
1449 1450 1451 |
# File 'generated/google/apis/vault_v1/classes.rb', line 1449 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The displayed name of the user.
Corresponds to the JSON property displayName
1442 1443 1444 |
# File 'generated/google/apis/vault_v1/classes.rb', line 1442 def display_name @display_name end |
#email ⇒ String
The email address of the user.
Corresponds to the JSON property email
1447 1448 1449 |
# File 'generated/google/apis/vault_v1/classes.rb', line 1447 def email @email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1454 1455 1456 1457 |
# File 'generated/google/apis/vault_v1/classes.rb', line 1454 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @email = args[:email] if args.key?(:email) end |