Class: Google::Apis::CloudidentityV1beta1::Setting
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::Setting
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1beta1/classes.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb
Overview
Setting
Instance Attribute Summary collapse
-
#type ⇒ String
Required.
-
#value ⇒ Hash<String,Object>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Setting
constructor
A new instance of Setting.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Setting
Returns a new instance of Setting.
4441 4442 4443 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 4441 def initialize(**args) update!(**args) end |
Instance Attribute Details
#type ⇒ String
Required. Immutable. The type of the Setting. .
Corresponds to the JSON property type
4434 4435 4436 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 4434 def type @type end |
#value ⇒ Hash<String,Object>
Required. The value of the Setting.
Corresponds to the JSON property value
4439 4440 4441 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 4439 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4446 4447 4448 4449 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 4446 def update!(**args) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end |