Class: Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::PipelineRunQueryResponse
- Inherits:
-
Object
- Object
- Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::PipelineRunQueryResponse
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/pipeline_run_query_response.rb
Overview
A list pipeline runs.
Instance Attribute Summary collapse
-
#continuation_token ⇒ String
results, if any remaining results exist, null otherwise.
-
#value ⇒ Array<PipelineRun>
List of pipeline runs.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for PipelineRunQueryResponse class as Ruby Hash.
Instance Attribute Details
#continuation_token ⇒ String
results, if any remaining results exist, null otherwise.
20 21 22 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/pipeline_run_query_response.rb', line 20 def continuation_token @continuation_token end |
#value ⇒ Array<PipelineRun>
Returns List of pipeline runs.
16 17 18 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/pipeline_run_query_response.rb', line 16 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for PipelineRunQueryResponse 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 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/pipeline_run_query_response.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PipelineRunQueryResponse', type: { name: 'Composite', class_name: 'PipelineRunQueryResponse', model_properties: { value: { client_side_validation: true, required: true, serialized_name: 'value', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'PipelineRunElementType', type: { name: 'Composite', class_name: 'PipelineRun' } } } }, continuation_token: { client_side_validation: true, required: false, serialized_name: 'continuationToken', type: { name: 'String' } } } } } end |