Intelligence6
Intelligence6

Reputation: 131

Any recommendation on republish an endpoint to remain same

For AzureML we’re using the REST api provided in published pipelines to launch them as part of scheduled jobs.

It looks like if we republish an endpoint the GUID at the end of the URL changes. Do you have any recommendations for how to alias this so the URL can remain the same for a caller or keep it constant?

Upvotes: 1

Views: 253

Answers (1)

Ram
Ram

Reputation: 2754

These are static, unique URLs that can be associated with multiple published pipeline versions (you can make one pipeline the default).

Pipeline Endpoints:azureml.pipeline.core.PipelineEndpoint class - Azure Machine Learning Python | Microsoft Docs

Upvotes: 2

Related Questions