Class: Azure::PolicyInsights::Mgmt::V2018_07_01_preview::Models::OperationsListResults
- Inherits:
-
Object
- Object
- Azure::PolicyInsights::Mgmt::V2018_07_01_preview::Models::OperationsListResults
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/models/operations_list_results.rb
Overview
List of available operations.
Instance Attribute Summary collapse
-
#odatacount ⇒ Integer
operations returned.
-
#value ⇒ Array<Operation>
List of available operations.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for OperationsListResults class as Ruby Hash.
Instance Attribute Details
#odatacount ⇒ Integer
operations returned.
17 18 19 |
# File 'lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/models/operations_list_results.rb', line 17 def odatacount @odatacount end |
#value ⇒ Array<Operation>
Returns List of available operations.
20 21 22 |
# File 'lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/models/operations_list_results.rb', line 20 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for OperationsListResults class as Ruby Hash. This will be used for serialization/deserialization.
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 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/models/operations_list_results.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OperationsListResults', type: { name: 'Composite', class_name: 'OperationsListResults', model_properties: { odatacount: { client_side_validation: true, required: false, serialized_name: '@odata\\.count', constraints: { InclusiveMinimum: 1 }, type: { name: 'Number' } }, value: { client_side_validation: true, required: false, serialized_name: 'value', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'OperationElementType', type: { name: 'Composite', class_name: 'Operation' } } } } } } } end |