Class: Azure::PolicyInsights::Mgmt::V2019_10_01::Models::ComplianceDetail
- Inherits:
-
Object
- Object
- Azure::PolicyInsights::Mgmt::V2019_10_01::Models::ComplianceDetail
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-10-01/generated/azure_mgmt_policy_insights/models/compliance_detail.rb
Overview
The compliance state rollup.
Instance Attribute Summary collapse
-
#compliance_state ⇒ String
The compliance state.
-
#count ⇒ Integer
Summarized count value for this compliance state.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ComplianceDetail class as Ruby Hash.
Instance Attribute Details
#compliance_state ⇒ String
Returns The compliance state.
16 17 18 |
# File 'lib/2019-10-01/generated/azure_mgmt_policy_insights/models/compliance_detail.rb', line 16 def compliance_state @compliance_state end |
#count ⇒ Integer
Returns Summarized count value for this compliance state.
19 20 21 |
# File 'lib/2019-10-01/generated/azure_mgmt_policy_insights/models/compliance_detail.rb', line 19 def count @count end |
Class Method Details
.mapper ⇒ Object
Mapper for ComplianceDetail class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 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 |
# File 'lib/2019-10-01/generated/azure_mgmt_policy_insights/models/compliance_detail.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ComplianceDetail', type: { name: 'Composite', class_name: 'ComplianceDetail', model_properties: { compliance_state: { client_side_validation: true, required: false, serialized_name: 'complianceState', type: { name: 'String' } }, count: { client_side_validation: true, required: false, serialized_name: 'count', type: { name: 'Number' } } } } } end |