Skip to content

Commit

Permalink
[AML] Add PipelineEndpoint with version and DataPathAssignments field…
Browse files Browse the repository at this point in the history
…s in AzureMLExecutePipeline (#12744)

* Update Pipeline.json

Add PipelineEndpoint with version and DataPathAssignments fields in AzureMLExecutePipeline

* update

* update

* nit
  • Loading branch information
kesharma authored Feb 9, 2021
1 parent 42baaf8 commit 01ba174
Showing 1 changed file with 21 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6241,6 +6241,14 @@
"description": "ID of the published Azure ML pipeline. Type: string (or Expression with resultType string).",
"type": "object"
},
"mlPipelineEndpointId": {
"description": "ID of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).",
"type": "object"
},
"version": {
"description": "Version of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).",
"type": "object"
},
"experimentName": {
"description": "Run history experiment name of the pipeline run. This information will be passed in the ExperimentName property of the published pipeline execution request. Type: string (or Expression with resultType string).",
"type": "object"
Expand All @@ -6249,6 +6257,10 @@
"description": "Key,Value pairs to be passed to the published Azure ML pipeline endpoint. Keys must match the names of pipeline parameters defined in the published pipeline. Values will be passed in the ParameterAssignments property of the published pipeline execution request. Type: object with key value pairs (or Expression with resultType object).",
"type": "object"
},
"dataPathAssignments": {
"description": "Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object with key value pairs (or Expression with resultType object).",
"type": "object"
},
"mlParentRunId": {
"description": "The parent Azure ML Service pipeline run id. This information will be passed in the ParentRunId property of the published pipeline execution request. Type: string (or Expression with resultType string).",
"type": "object"
Expand All @@ -6257,10 +6269,7 @@
"description": "Whether to continue execution of other steps in the PipelineRun if a step fails. This information will be passed in the continueOnStepFailure property of the published pipeline execution request. Type: boolean (or Expression with resultType boolean).",
"type": "object"
}
},
"required": [
"mlPipelineId"
]
}
},
"AzureMLPipelineParameters": {
"description": "Key,Value pairs to be passed to the published Azure ML pipeline endpoint. Keys must match the names of pipeline parameters defined in the published pipeline. Values will be passed in the ParameterAssignments property of the published pipeline execution request.",
Expand All @@ -6270,6 +6279,14 @@
"description": "Type: string (or Expression with resultType string)."
}
},
"AzureDataPathAssignments": {
"description": "Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request.",
"type": "object",
"additionalProperties": {
"type": "object",
"description": "Type: string (or Expression with resultType string)."
}
},
"DataLakeAnalyticsUSQLActivity": {
"description": "Data Lake Analytics U-SQL activity.",
"x-ms-discriminator-value": "DataLakeAnalyticsU-SQL",
Expand Down

0 comments on commit 01ba174

Please sign in to comment.