Class: Azure::ARM::SQL::Models::TransparentDataEncryptionActivity

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

Overview

Represents a database transparent data encryption Scan.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#locationString



17
18
19
# File 'lib/generated/azure_mgmt_sql/models/transparent_data_encryption_activity.rb', line 17

def location
  @location
end

#percent_completeFloat

scan for a database.



25
26
27
# File 'lib/generated/azure_mgmt_sql/models/transparent_data_encryption_activity.rb', line 25

def percent_complete
  @percent_complete
end

#statusTransparentDataEncryptionActivityStatus

database. Possible values include: ‘Encrypting’, ‘Decrypting’



21
22
23
# File 'lib/generated/azure_mgmt_sql/models/transparent_data_encryption_activity.rb', line 21

def status
  @status
end

Class Method Details

.mapperObject

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



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
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
# File 'lib/generated/azure_mgmt_sql/models/transparent_data_encryption_activity.rb', line 32

def self.mapper()
  {
    required: false,
    serialized_name: 'TransparentDataEncryptionActivity',
    type: {
      name: 'Composite',
      class_name: 'TransparentDataEncryptionActivity',
      model_properties: {
        id: {
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        location: {
          required: false,
          read_only: true,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        },
        status: {
          required: false,
          read_only: true,
          serialized_name: 'properties.status',
          type: {
            name: 'String'
          }
        },
        percent_complete: {
          required: false,
          read_only: true,
          serialized_name: 'properties.percentComplete',
          type: {
            name: 'Double'
          }
        }
      }
    }
  }
end