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.
2133 2134 2135 |
# File 'lib/google/apis/vault_v1/classes.rb', line 2133 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The displayed name of the user.
Corresponds to the JSON property displayName
2126 2127 2128 |
# File 'lib/google/apis/vault_v1/classes.rb', line 2126 def display_name @display_name end |
#email ⇒ String
The email address of the user.
Corresponds to the JSON property email
2131 2132 2133 |
# File 'lib/google/apis/vault_v1/classes.rb', line 2131 def email @email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2138 2139 2140 2141 |
# File 'lib/google/apis/vault_v1/classes.rb', line 2138 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @email = args[:email] if args.key?(:email) end |