Class: Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionActivity
- Inherits:
-
ProxyResource
- Object
- Resource
- ProxyResource
- Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionActivity
- Includes:
- MsRestAzure
- Defined in:
- lib/2014-04-01/generated/azure_mgmt_sql/models/transparent_data_encryption_activity.rb
Overview
Represents a database transparent data encryption Scan.
Instance Attribute Summary collapse
-
#location ⇒ String
Resource location.
-
#percent_complete ⇒ Float
scan for a database.
-
#status ⇒ TransparentDataEncryptionActivityStatus
database.
Attributes inherited from Resource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for TransparentDataEncryptionActivity class as Ruby Hash.
Methods inherited from Resource
Instance Attribute Details
#location ⇒ String
Returns Resource location.
16 17 18 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/transparent_data_encryption_activity.rb', line 16 def location @location end |
#percent_complete ⇒ Float
scan for a database.
24 25 26 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/transparent_data_encryption_activity.rb', line 24 def percent_complete @percent_complete end |
#status ⇒ TransparentDataEncryptionActivityStatus
database. Possible values include: ‘Encrypting’, ‘Decrypting’
20 21 22 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/transparent_data_encryption_activity.rb', line 20 def status @status end |
Class Method Details
.mapper ⇒ Object
Mapper for TransparentDataEncryptionActivity class as Ruby Hash. This will be used for serialization/deserialization.
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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/transparent_data_encryption_activity.rb', line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'TransparentDataEncryptionActivity', type: { name: 'Composite', class_name: 'TransparentDataEncryptionActivity', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, location: { client_side_validation: true, required: false, read_only: true, serialized_name: 'location', type: { name: 'String' } }, status: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.status', type: { name: 'String' } }, percent_complete: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.percentComplete', type: { name: 'Double' } } } } } end |