Sha256: 673cbc886f8e53a12ee4aa57161f1c160e0e3f9c3639c489a41810d5112aebbe
Contents?: true
Size: 1.69 KB
Versions: 2
Compression:
Stored size: 1.69 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::DataLakeStore module Models # # The encryption configuration for the account. # class EncryptionConfig include MsRestAzure include MsRest::JSONable # @return [EncryptionConfigType] The type of encryption configuration # being used. Currently the only supported types are 'UserManaged' and # 'ServiceManaged'. Possible values include: 'UserManaged', # 'ServiceManaged' attr_accessor :type # @return [KeyVaultMetaInfo] The Key Vault information for connecting to # user managed encryption keys. attr_accessor :key_vault_meta_info # # Mapper for EncryptionConfig class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'EncryptionConfig', type: { name: 'Composite', class_name: 'EncryptionConfig', model_properties: { type: { required: true, serialized_name: 'type', type: { name: 'Enum', module: 'EncryptionConfigType' } }, key_vault_meta_info: { required: false, serialized_name: 'keyVaultMetaInfo', type: { name: 'Composite', class_name: 'KeyVaultMetaInfo' } } } } } end end end end
Version data entries
2 entries across 2 versions & 1 rubygems