Class: Azure::Security::Mgmt::V2020_01_01::Models::SecuritySolution
- Inherits:
-
Object
- Object
- Azure::Security::Mgmt::V2020_01_01::Models::SecuritySolution
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-01-01/generated/azure_mgmt_security/models/security_solution.rb
Overview
Model object.
Instance Attribute Summary collapse
-
#id ⇒ String
Resource Id.
-
#location ⇒ String
Location where the resource is stored.
-
#name ⇒ String
Resource name.
-
#protection_status ⇒ String
The security solutions’ status.
-
#provisioning_state ⇒ ProvisioningState
Possible values include: ‘Succeeded’, ‘Failed’, ‘Updating’.
-
#security_family ⇒ SecurityFamily
Possible values include: ‘Waf’, ‘Ngfw’, ‘SaasWaf’, ‘Va’.
-
#template ⇒ String
The security solutions’ template.
-
#type ⇒ String
Resource type.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SecuritySolution class as Ruby Hash.
Instance Attribute Details
#id ⇒ String
Returns Resource Id.
17 18 19 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/security_solution.rb', line 17 def id @id end |
#location ⇒ String
Returns Location where the resource is stored.
26 27 28 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/security_solution.rb', line 26 def location @location end |
#name ⇒ String
Returns Resource name.
20 21 22 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/security_solution.rb', line 20 def name @name end |
#protection_status ⇒ String
Returns The security solutions’ status.
40 41 42 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/security_solution.rb', line 40 def protection_status @protection_status end |
#provisioning_state ⇒ ProvisioningState
Possible values include: ‘Succeeded’, ‘Failed’, ‘Updating’
34 35 36 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/security_solution.rb', line 34 def provisioning_state @provisioning_state end |
#security_family ⇒ SecurityFamily
Possible values include: ‘Waf’, ‘Ngfw’, ‘SaasWaf’, ‘Va’
30 31 32 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/security_solution.rb', line 30 def security_family @security_family end |
#template ⇒ String
Returns The security solutions’ template.
37 38 39 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/security_solution.rb', line 37 def template @template end |
#type ⇒ String
Returns Resource type.
23 24 25 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/security_solution.rb', line 23 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for SecuritySolution class as Ruby Hash. This will be used for serialization/deserialization.
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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/security_solution.rb', line 47 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SecuritySolution', type: { name: 'Composite', class_name: 'SecuritySolution', 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' } }, security_family: { client_side_validation: true, required: true, serialized_name: 'properties.securityFamily', type: { name: 'String' } }, provisioning_state: { client_side_validation: true, required: true, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, template: { client_side_validation: true, required: true, serialized_name: 'properties.template', type: { name: 'String' } }, protection_status: { client_side_validation: true, required: true, serialized_name: 'properties.protectionStatus', type: { name: 'String' } } } } } end |