The new web service does not store any information about the experimental or workspace that has been deployed (not all new web services are deployed from the experiment).
Here are the options available to track the relationship between the experiment and the new web service.
last deployment
However, the experiment tracks the new last web service that was deployed from the experiment. each deployment to a new web service overwrites this value.
The value is saved on the experiment graph. One way to get a graph is to use the powershell amlps module
Export-AmlExperimentGraph -ExperimentId <Experiment Id> -OutputFile e.json
e.json
{ "ExperimentId":"<Experiment Id>", // . . . "WebService":{ // . . . "ArmWebServiceId":"<Arm Id>" }, // . . . }
azure resource tags
The tag feature for Azure resources is supported by new web services. Installing tag software on a web service programmatically, using powershell, or through the azure UX portal can be used to store links to an experiment in a new web service.
Kirk Shoop
source share