Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AML] Add PipelineEndpoint with version and DataPathAssignments fields in AzureMLExecutePipeline #12744

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6237,6 +6237,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 @@ -6245,6 +6253,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 @@ -6253,10 +6265,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 @@ -6266,6 +6275,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