Class: Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::PipelineResource
- Inherits:
-
SubResource
- Object
- SubResource
- Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::PipelineResource
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/pipeline_resource.rb
Overview
Pipeline resource type.
Instance Attribute Summary collapse
-
#activities ⇒ Array<Activity>
List of activities in pipeline.
-
#additional_properties ⇒ Object
collection.
-
#annotations ⇒ Object
List of tags that can be used for describing the Pipeline.
-
#concurrency ⇒ Integer
The max number of concurrent runs for the pipeline.
-
#description ⇒ String
The description of the pipeline.
-
#parameters ⇒ Hash{String => ParameterSpecification}
pipeline.
Attributes inherited from SubResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for PipelineResource class as Ruby Hash.
Instance Attribute Details
#activities ⇒ Array<Activity>
Returns List of activities in pipeline.
23 24 25 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/pipeline_resource.rb', line 23 def activities @activities end |
#additional_properties ⇒ Object
collection
17 18 19 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/pipeline_resource.rb', line 17 def additional_properties @additional_properties end |
#annotations ⇒ Object
Returns List of tags that can be used for describing the Pipeline.
33 34 35 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/pipeline_resource.rb', line 33 def annotations @annotations end |
#concurrency ⇒ Integer
Returns The max number of concurrent runs for the pipeline.
30 31 32 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/pipeline_resource.rb', line 30 def concurrency @concurrency end |
#description ⇒ String
Returns The description of the pipeline.
20 21 22 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/pipeline_resource.rb', line 20 def description @description end |
#parameters ⇒ Hash{String => ParameterSpecification}
pipeline.
27 28 29 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/pipeline_resource.rb', line 27 def parameters @parameters end |
Class Method Details
.mapper ⇒ Object
Mapper for PipelineResource class as Ruby Hash. This will be used for serialization/deserialization.
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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/pipeline_resource.rb', line 40 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PipelineResource', type: { name: 'Composite', class_name: 'PipelineResource', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, etag: { client_side_validation: true, required: false, read_only: true, serialized_name: 'etag', type: { name: 'String' } }, additional_properties: { client_side_validation: true, required: false, type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'ObjectElementType', type: { name: 'Object' } } } }, description: { client_side_validation: true, required: false, serialized_name: 'properties.description', type: { name: 'String' } }, activities: { client_side_validation: true, required: false, serialized_name: 'properties.activities', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ActivityElementType', type: { name: 'Composite', polymorphic_discriminator: 'type', uber_parent: 'Activity', class_name: 'Activity' } } } }, parameters: { client_side_validation: true, required: false, serialized_name: 'properties.parameters', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'ParameterSpecificationElementType', type: { name: 'Composite', class_name: 'ParameterSpecification' } } } }, concurrency: { client_side_validation: true, required: false, serialized_name: 'properties.concurrency', constraints: { InclusiveMinimum: 1 }, type: { name: 'Number' } }, annotations: { client_side_validation: true, required: false, serialized_name: 'properties.annotations', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ObjectElementType', type: { name: 'Object' } } } } } } } end |