Class: Google::Apis::ConnectorsV1::EndUserAuthenticationConfigVariable
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::EndUserAuthenticationConfigVariable
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
EndUserAuthenticationConfigVariable represents a configuration variable present in a EndUserAuthentication.
Instance Attribute Summary collapse
-
#bool_value ⇒ Boolean
(also: #bool_value?)
Value is a bool.
-
#int_value ⇒ Fixnum
Value is an integer Corresponds to the JSON property
intValue. -
#key ⇒ String
Required.
-
#secret_value ⇒ Google::Apis::ConnectorsV1::EuaSecret
EUASecret provides a reference to entries in Secret Manager.
-
#string_value ⇒ String
Value is a string.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EndUserAuthenticationConfigVariable
constructor
A new instance of EndUserAuthenticationConfigVariable.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EndUserAuthenticationConfigVariable
Returns a new instance of EndUserAuthenticationConfigVariable.
2695 2696 2697 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2695 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bool_value ⇒ Boolean Also known as: bool_value?
Value is a bool.
Corresponds to the JSON property boolValue
2672 2673 2674 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2672 def bool_value @bool_value end |
#int_value ⇒ Fixnum
Value is an integer
Corresponds to the JSON property intValue
2678 2679 2680 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2678 def int_value @int_value end |
#key ⇒ String
Required. Key of the config variable.
Corresponds to the JSON property key
2683 2684 2685 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2683 def key @key end |
#secret_value ⇒ Google::Apis::ConnectorsV1::EuaSecret
EUASecret provides a reference to entries in Secret Manager.
Corresponds to the JSON property secretValue
2688 2689 2690 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2688 def secret_value @secret_value end |
#string_value ⇒ String
Value is a string.
Corresponds to the JSON property stringValue
2693 2694 2695 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2693 def string_value @string_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2700 2701 2702 2703 2704 2705 2706 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2700 def update!(**args) @bool_value = args[:bool_value] if args.key?(:bool_value) @int_value = args[:int_value] if args.key?(:int_value) @key = args[:key] if args.key?(:key) @secret_value = args[:secret_value] if args.key?(:secret_value) @string_value = args[:string_value] if args.key?(:string_value) end |