Class: Azure::ServiceFabric::V6_3_0_9::Models::ChaosParametersDictionaryItem
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::V6_3_0_9::Models::ChaosParametersDictionaryItem
- Includes:
- MsRestAzure
- Defined in:
- lib/6.3.0.9/generated/azure_service_fabric/models/chaos_parameters_dictionary_item.rb
Overview
Defines an item in ChaosParametersDictionary of the Chaos Schedule.
Instance Attribute Summary collapse
-
#key ⇒ String
dictionary.
-
#value ⇒ ChaosParameters
Chaos run.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ChaosParametersDictionaryItem class as Ruby Hash.
Instance Attribute Details
#key ⇒ String
dictionary. This key is referenced by Chaos Schedule Jobs.
17 18 19 |
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/chaos_parameters_dictionary_item.rb', line 17 def key @key end |
#value ⇒ ChaosParameters
Chaos run.
21 22 23 |
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/chaos_parameters_dictionary_item.rb', line 21 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for ChaosParametersDictionaryItem class as Ruby Hash. This will be used for serialization/deserialization.
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/chaos_parameters_dictionary_item.rb', line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ChaosParametersDictionaryItem', type: { name: 'Composite', class_name: 'ChaosParametersDictionaryItem', model_properties: { key: { client_side_validation: true, required: true, serialized_name: 'Key', type: { name: 'String' } }, value: { client_side_validation: true, required: true, serialized_name: 'Value', type: { name: 'Composite', class_name: 'ChaosParameters' } } } } } end |