Reputation: 167
Considering the Azure ML API and how to manage models with it, I've got the following problem.
{
"api": "https://germanywestcentral.api.azureml.ms",
"catalog": "https://catalog.cortanaanalytics.com",
"experimentation": "https://germanywestcentral.api.azureml.ms",
"gallery": "https://gallery.cortanaintelligence.com/project",
"history": "https://germanywestcentral.api.azureml.ms",
"hyperdrive": "https://germanywestcentral.api.azureml.ms",
"labeling": "https://germanywestcentral.api.azureml.ms",
"modelmanagement": "https://germanywestcentral.api.azureml.ms",
"pipelines": "https://germanywestcentral.aether.ms",
"studio": "https://ml.azure.com"
}
{
"api": "https://eastus.api.azureml.ms",
"catalog": "https://catalog.cortanaanalytics.com",
"experimentation": "https://eastus.experiments.azureml.net",
"gallery": "https://gallery.cortanaintelligence.com/project",
"history": "https://eastus.experiments.azureml.net",
"hyperdrive": "https://eastus.experiments.azureml.net",
"labeling": "https://eastus.experiments.azureml.net",
"modelmanagement": "https://eastus.modelmanagement.azureml.net",
"pipelines": "https://eastus.aether.ms",
"studio": "https://ml.azure.com"
}
(well fine, that should not be an issue)
GET https://germanywestcentral.api.azureml.ms/api/subscriptions/{{SubscriptionId}}/resourceGroups/{{resourceGroupName}}/providers/Microsoft.MachineLearningServices/workspaces/{{workspaceName}}/services?api-version=2018-03-01-preview&count=100 returns a 530 ERROR with "unknown to the cluster" in the body of the response
Any idea or hints on why this and how to get around this issue ?
Upvotes: 0
Views: 200
Reputation: 498
Error 530 is kind of authentication error as far as I know. Please check the input var your used for below bugged URL
Upvotes: 0