class Azure::Appconfiguration::Mgmt::V2020_06_01::Models::KeyVaultProperties

Settings concerning key vault encryption for a configuration store.

Attributes

identity_client_id[RW]

@return [String] The client id of the identity which will be used to access key vault.

key_identifier[RW]

@return [String] The URI of the key vault key used to encrypt data.

Private Class Methods

mapper() click to toggle source

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

# File lib/2020-06-01/generated/azure_mgmt_appconfiguration/models/key_vault_properties.rb, line 27
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'KeyVaultProperties',
    type: {
      name: 'Composite',
      class_name: 'KeyVaultProperties',
      model_properties: {
        key_identifier: {
          client_side_validation: true,
          required: false,
          serialized_name: 'keyIdentifier',
          type: {
            name: 'String'
          }
        },
        identity_client_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'identityClientId',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end