Class: Azure::Appconfiguration::Mgmt::V2020_06_01::Models::ConfigurationStoreUpdateParameters

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-06-01/generated/azure_mgmt_appconfiguration/models/configuration_store_update_parameters.rb

Overview

The parameters for updating a configuration store.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#encryptionEncryptionProperties

configuration store.

Returns:



17
18
19
# File 'lib/2020-06-01/generated/azure_mgmt_appconfiguration/models/configuration_store_update_parameters.rb', line 17

def encryption
  @encryption
end

#identityResourceIdentity

configuration store.

Returns:



26
27
28
# File 'lib/2020-06-01/generated/azure_mgmt_appconfiguration/models/configuration_store_update_parameters.rb', line 26

def identity
  @identity
end

#public_network_accessPublicNetworkAccess

coming from public networks while private endpoint is enabled. Possible values include: ‘Enabled’, ‘Disabled’

Returns:



22
23
24
# File 'lib/2020-06-01/generated/azure_mgmt_appconfiguration/models/configuration_store_update_parameters.rb', line 22

def public_network_access
  @public_network_access
end

#skuSku

Returns The SKU of the configuration store.

Returns:

  • (Sku)

    The SKU of the configuration store.



29
30
31
# File 'lib/2020-06-01/generated/azure_mgmt_appconfiguration/models/configuration_store_update_parameters.rb', line 29

def sku
  @sku
end

#tagsHash{String => String}

Returns The ARM resource tags.

Returns:

  • (Hash{String => String})

    The ARM resource tags.



32
33
34
# File 'lib/2020-06-01/generated/azure_mgmt_appconfiguration/models/configuration_store_update_parameters.rb', line 32

def tags
  @tags
end

Class Method Details

.mapperObject

Mapper for ConfigurationStoreUpdateParameters class as Ruby Hash. This will be used for serialization/deserialization.



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
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/2020-06-01/generated/azure_mgmt_appconfiguration/models/configuration_store_update_parameters.rb', line 39

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'
          }
        },
        public_network_access: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.publicNetworkAccess',
          type: {
            name: 'String'
          }
        },
        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