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.
Constructor Details
#initialize(**args) ⇒ UserInfo
Returns a new instance of UserInfo.
1809 1810 1811 |
# File 'generated/google/apis/vault_v1/classes.rb', line 1809 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The displayed name of the user.
Corresponds to the JSON property displayName
1802 1803 1804 |
# File 'generated/google/apis/vault_v1/classes.rb', line 1802 def display_name @display_name end |
#email ⇒ String
The email address of the user.
Corresponds to the JSON property email
1807 1808 1809 |
# File 'generated/google/apis/vault_v1/classes.rb', line 1807 def email @email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1814 1815 1816 1817 |
# File 'generated/google/apis/vault_v1/classes.rb', line 1814 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @email = args[:email] if args.key?(:email) end |