Class: Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::OperationListResponse
- Inherits:
-
Object
- Object
- Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::OperationListResponse
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/operation_list_response.rb
Overview
A list of operations that can be performed by the Data Factory service.
Instance Attribute Summary collapse
-
#next_link ⇒ String
results exist.
-
#value ⇒ Array<Operation>
the Data Factory resource provider.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for OperationListResponse class as Ruby Hash.
Instance Attribute Details
#next_link ⇒ String
results exist.
21 22 23 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/operation_list_response.rb', line 21 def next_link @next_link end |
#value ⇒ Array<Operation>
the Data Factory resource provider.
17 18 19 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/operation_list_response.rb', line 17 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for OperationListResponse class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/operation_list_response.rb', line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OperationListResponse', type: { name: 'Composite', class_name: 'OperationListResponse', model_properties: { 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' } } } }, next_link: { client_side_validation: true, required: false, serialized_name: 'nextLink', type: { name: 'String' } } } } } end |