Class: Azure::Appconfiguration::Mgmt::V2019_11_01_preview::Models::ConfigurationStoreUpdateParameters
- Inherits:
-
Object
- Object
- Azure::Appconfiguration::Mgmt::V2019_11_01_preview::Models::ConfigurationStoreUpdateParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-11-01-preview/generated/azure_mgmt_appconfiguration/models/configuration_store_update_parameters.rb
Overview
The parameters for updating a configuration store.
Instance Attribute Summary collapse
-
#encryption ⇒ EncryptionProperties
configuration store.
-
#identity ⇒ ResourceIdentity
configuration store.
-
#sku ⇒ Sku
The SKU of the configuration store.
-
#tags ⇒ Hash{String => String}
The ARM resource tags.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ConfigurationStoreUpdateParameters class as Ruby Hash.
Instance Attribute Details
#encryption ⇒ EncryptionProperties
configuration store.
17 18 19 |
# File 'lib/2019-11-01-preview/generated/azure_mgmt_appconfiguration/models/configuration_store_update_parameters.rb', line 17 def encryption @encryption end |
#identity ⇒ ResourceIdentity
configuration store.
21 22 23 |
# File 'lib/2019-11-01-preview/generated/azure_mgmt_appconfiguration/models/configuration_store_update_parameters.rb', line 21 def identity @identity end |
#sku ⇒ Sku
Returns The SKU of the configuration store.
24 25 26 |
# File 'lib/2019-11-01-preview/generated/azure_mgmt_appconfiguration/models/configuration_store_update_parameters.rb', line 24 def sku @sku end |
#tags ⇒ Hash{String => String}
Returns The ARM resource tags.
27 28 29 |
# File 'lib/2019-11-01-preview/generated/azure_mgmt_appconfiguration/models/configuration_store_update_parameters.rb', line 27 def end |
Class Method Details
.mapper ⇒ Object
Mapper for ConfigurationStoreUpdateParameters class as Ruby Hash. This will be used for serialization/deserialization.
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/2019-11-01-preview/generated/azure_mgmt_appconfiguration/models/configuration_store_update_parameters.rb', line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ConfigurationStoreUpdateParameters', type: { name: 'Composite', class_name: 'ConfigurationStoreUpdateParameters', model_properties: { encryption: { client_side_validation: true, required: false, serialized_name: 'properties.encryption', type: { name: 'Composite', class_name: 'EncryptionProperties' } }, identity: { client_side_validation: true, required: false, serialized_name: 'identity', type: { name: 'Composite', class_name: 'ResourceIdentity' } }, sku: { client_side_validation: true, required: false, serialized_name: 'sku', type: { name: 'Composite', class_name: 'Sku' } }, tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end |