Class: Google::Apis::VaultV1::UserInfo
- Inherits:
-
Object
- Object
- Google::Apis::VaultV1::UserInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vault_v1/classes.rb,
lib/google/apis/vault_v1/representations.rb,
lib/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.
1840 1841 1842 |
# File 'lib/google/apis/vault_v1/classes.rb', line 1840 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The displayed name of the user.
Corresponds to the JSON property displayName
1833 1834 1835 |
# File 'lib/google/apis/vault_v1/classes.rb', line 1833 def display_name @display_name end |
#email ⇒ String
The email address of the user.
Corresponds to the JSON property email
1838 1839 1840 |
# File 'lib/google/apis/vault_v1/classes.rb', line 1838 def email @email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1845 1846 1847 1848 |
# File 'lib/google/apis/vault_v1/classes.rb', line 1845 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @email = args[:email] if args.key?(:email) end |