Class: Azure::ResourceHealth::Mgmt::V2018_07_01::Models::MetadataEntityListResult
- Inherits:
-
Object
- Object
- Azure::ResourceHealth::Mgmt::V2018_07_01::Models::MetadataEntityListResult
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-07-01/generated/azure_mgmt_resource_health/models/metadata_entity_list_result.rb
Overview
The list of metadata entities
Instance Attribute Summary collapse
-
#next_link ⇒ String
The link used to get the next page of metadata.
-
#value ⇒ Array<MetadataEntity>
The list of metadata entities.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for MetadataEntityListResult class as Ruby Hash.
Instance Attribute Details
#next_link ⇒ String
Returns The link used to get the next page of metadata.
19 20 21 |
# File 'lib/2018-07-01/generated/azure_mgmt_resource_health/models/metadata_entity_list_result.rb', line 19 def next_link @next_link end |
#value ⇒ Array<MetadataEntity>
Returns The list of metadata entities.
16 17 18 |
# File 'lib/2018-07-01/generated/azure_mgmt_resource_health/models/metadata_entity_list_result.rb', line 16 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for MetadataEntityListResult 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 55 56 57 58 59 60 61 62 63 |
# File 'lib/2018-07-01/generated/azure_mgmt_resource_health/models/metadata_entity_list_result.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'MetadataEntityListResult', type: { name: 'Composite', class_name: 'MetadataEntityListResult', model_properties: { value: { client_side_validation: true, required: false, serialized_name: 'value', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'MetadataEntityElementType', type: { name: 'Composite', class_name: 'MetadataEntity' } } } }, next_link: { client_side_validation: true, required: false, serialized_name: 'nextLink', type: { name: 'String' } } } } } end |