Class: Google::Apis::GkehubV1beta::IdentityServiceSimpleBindCredentials
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV1beta::IdentityServiceSimpleBindCredentials
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkehub_v1beta/classes.rb,
lib/google/apis/gkehub_v1beta/representations.rb,
lib/google/apis/gkehub_v1beta/representations.rb
Overview
The structure holds the LDAP simple binding credential.
Instance Attribute Summary collapse
-
#dn ⇒ String
Required.
-
#encrypted_password ⇒ String
Output only.
-
#password ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IdentityServiceSimpleBindCredentials
constructor
A new instance of IdentityServiceSimpleBindCredentials.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IdentityServiceSimpleBindCredentials
Returns a new instance of IdentityServiceSimpleBindCredentials.
3569 3570 3571 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3569 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dn ⇒ String
Required. The distinguished name(DN) of the service account object/user.
Corresponds to the JSON property dn
3556 3557 3558 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3556 def dn @dn end |
#encrypted_password ⇒ String
Output only. The encrypted password of the service account object/user.
Corresponds to the JSON property encryptedPassword
NOTE: Values are automatically base64 encoded/decoded in the client library.
3562 3563 3564 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3562 def encrypted_password @encrypted_password end |
#password ⇒ String
Required. Input only. The password of the service account object/user.
Corresponds to the JSON property password
3567 3568 3569 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3567 def password @password end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3574 3575 3576 3577 3578 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 3574 def update!(**args) @dn = args[:dn] if args.key?(:dn) @encrypted_password = args[:encrypted_password] if args.key?(:encrypted_password) @password = args[:password] if args.key?(:password) end |