Class: Azure::ARM::SQL::Models::TransparentDataEncryptionActivity
- Inherits:
-
SubResource
- Object
- MsRestAzure::SubResource
- SubResource
- Azure::ARM::SQL::Models::TransparentDataEncryptionActivity
- 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
-
#percent_complete ⇒ Float
scan for a database.
-
#status ⇒ TransparentDataEncryptionActivityStatus
database.
Attributes inherited from SubResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for TransparentDataEncryptionActivity class as Ruby Hash.
Instance Attribute Details
#percent_complete ⇒ Float
scan for a database.
22 23 24 |
# File 'lib/generated/azure_mgmt_sql/models/transparent_data_encryption_activity.rb', line 22 def percent_complete @percent_complete end |
#status ⇒ TransparentDataEncryptionActivityStatus
database. Possible values include: ‘Encrypting’, ‘Decrypting’
18 19 20 |
# File 'lib/generated/azure_mgmt_sql/models/transparent_data_encryption_activity.rb', line 18 def status @status end |
Class Method Details
.mapper ⇒ Object
Mapper for TransparentDataEncryptionActivity class as Ruby Hash. This will be used for serialization/deserialization.
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 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/generated/azure_mgmt_sql/models/transparent_data_encryption_activity.rb', line 29 def self.mapper() { required: false, serialized_name: 'TransparentDataEncryptionActivity', type: { name: 'Composite', class_name: 'TransparentDataEncryptionActivity', 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, 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 |