Class: Azure::ARM::SQL::Models::TransparentDataEncryption

Inherits:
SubResource
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_sql/models/transparent_data_encryption.rb

Overview

Represents a database transparent data encryption configuration.

Instance Attribute Summary collapse

Attributes inherited from SubResource

#name

Class Method Summary collapse

Instance Attribute Details

#statusTransparentDataEncryptionStatus

transparent data encryption. Possible values include: ‘Enabled’, ‘Disabled’

Returns:



19
20
21
# File 'lib/generated/azure_mgmt_sql/models/transparent_data_encryption.rb', line 19

def status
  @status
end

Class Method Details

.mapperObject

Mapper for TransparentDataEncryption 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
55
56
57
58
59
60
61
# File 'lib/generated/azure_mgmt_sql/models/transparent_data_encryption.rb', line 26

def self.mapper()
  {
    required: false,
    serialized_name: 'TransparentDataEncryption',
    type: {
      name: 'Composite',
      class_name: 'TransparentDataEncryption',
      model_properties: {
        name: {
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        id: {
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        status: {
          required: false,
          serialized_name: 'properties.status',
          type: {
            name: 'Enum',
            module: 'TransparentDataEncryptionStatus'
          }
        }
      }
    }
  }
end