Class: Azure::Security::Mgmt::V2019_01_01_preview::Models::RegulatoryComplianceStandard
- Inherits:
-
Resource
- Object
- Resource
- Azure::Security::Mgmt::V2019_01_01_preview::Models::RegulatoryComplianceStandard
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-01-01-preview/generated/azure_mgmt_security/models/regulatory_compliance_standard.rb
Overview
Regulatory compliance standard details and state
Instance Attribute Summary collapse
-
#failed_controls ⇒ Integer
controls of the given standard with a failed state.
-
#passed_controls ⇒ Integer
controls of the given standard with a passed state.
-
#skipped_controls ⇒ Integer
controls of the given standard with a skipped state.
-
#state ⇒ State
controls states.
-
#unsupported_controls ⇒ Integer
given standard which are unsupported by automated assessments.
Attributes inherited from Resource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for RegulatoryComplianceStandard class as Ruby Hash.
Methods inherited from Resource
Instance Attribute Details
#failed_controls ⇒ Integer
controls of the given standard with a failed state
26 27 28 |
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security/models/regulatory_compliance_standard.rb', line 26 def failed_controls @failed_controls end |
#passed_controls ⇒ Integer
controls of the given standard with a passed state
22 23 24 |
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security/models/regulatory_compliance_standard.rb', line 22 def passed_controls @passed_controls end |
#skipped_controls ⇒ Integer
controls of the given standard with a skipped state
30 31 32 |
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security/models/regulatory_compliance_standard.rb', line 30 def skipped_controls @skipped_controls end |
#state ⇒ State
controls states. Possible values include: ‘Passed’, ‘Failed’, ‘Skipped’, ‘Unsupported’
18 19 20 |
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security/models/regulatory_compliance_standard.rb', line 18 def state @state end |
#unsupported_controls ⇒ Integer
given standard which are unsupported by automated assessments
34 35 36 |
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security/models/regulatory_compliance_standard.rb', line 34 def unsupported_controls @unsupported_controls end |
Class Method Details
.mapper ⇒ Object
Mapper for RegulatoryComplianceStandard class as Ruby Hash. This will be used for serialization/deserialization.
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 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 |
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security/models/regulatory_compliance_standard.rb', line 41 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RegulatoryComplianceStandard', type: { name: 'Composite', class_name: 'RegulatoryComplianceStandard', 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' } }, state: { client_side_validation: true, required: false, serialized_name: 'properties.state', type: { name: 'String' } }, passed_controls: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.passedControls', type: { name: 'Number' } }, failed_controls: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.failedControls', type: { name: 'Number' } }, skipped_controls: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.skippedControls', type: { name: 'Number' } }, unsupported_controls: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.unsupportedControls', type: { name: 'Number' } } } } } end |