Class: Azure::Appconfiguration::Mgmt::V2020_06_01::Models::ListKeyValueParameters
- Inherits:
-
Object
- Object
- Azure::Appconfiguration::Mgmt::V2020_06_01::Models::ListKeyValueParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-06-01/generated/azure_mgmt_appconfiguration/models/list_key_value_parameters.rb
Overview
The parameters used to list a configuration store key-value
Instance Attribute Summary collapse
-
#key ⇒ String
The key to retrieve.
-
#label ⇒ String
The label of the key.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ListKeyValueParameters class as Ruby Hash.
Instance Attribute Details
#key ⇒ String
Returns The key to retrieve.
16 17 18 |
# File 'lib/2020-06-01/generated/azure_mgmt_appconfiguration/models/list_key_value_parameters.rb', line 16 def key @key end |
#label ⇒ String
Returns The label of the key.
19 20 21 |
# File 'lib/2020-06-01/generated/azure_mgmt_appconfiguration/models/list_key_value_parameters.rb', line 19 def label @label end |
Class Method Details
.mapper ⇒ Object
Mapper for ListKeyValueParameters class as Ruby Hash. This will be used for serialization/deserialization.
26 27 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 |
# File 'lib/2020-06-01/generated/azure_mgmt_appconfiguration/models/list_key_value_parameters.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ListKeyValueParameters', type: { name: 'Composite', class_name: 'ListKeyValueParameters', model_properties: { key: { client_side_validation: true, required: true, serialized_name: 'key', type: { name: 'String' } }, label: { client_side_validation: true, required: false, serialized_name: 'label', type: { name: 'String' } } } } } end |