-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added mfe.json preview changes * Added resources to Registries and Workspaces folder * removed unwanted resources * removed unwanted resources * Ran prettier check * removed unwanted resources * removed unwanted resources * Added ManagedOnlineDeployment resource * Added files to OnlineDeplyment * Added Model Validation changes * Added mfe.json changes to handle duplicate operation id changes * Updated mfe to fix underscore error * Update title of mfe.json * Renamed name path parameter * Updated examples * Fixed Semantic validations and examples * Fixed Semantic validations and examples * Fixed Semantic validations and examples * Removed name changes from workspaces * Changes related to Model Validation * Changes related to Model validation * Added consumes amd produces in registries.json * Removed changes from registries * Updated parameter mlFlowAutologger to mlflowAutologger in mfe.json * Changed property name to mlflowAutologger Co-authored-by: maulikjoshi <[email protected]>
- Loading branch information
Showing
94 changed files
with
4,891 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
...ngServices/preview/2022-10-01-preview/examples/Registry/CodeContainer/createOrUpdate.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "testrg123", | ||
"registryName": "testregistry", | ||
"api-version": "2022-10-01-preview", | ||
"codeName": "testContainer", | ||
"body": { | ||
"properties": { | ||
"description": "string", | ||
"tags": { | ||
"tag1": "value1", | ||
"tag2": "value2" | ||
} | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/registries/testregistry/codes/testContainer", | ||
"name": "testContainer", | ||
"type": "Microsoft.MachineLearningServices/registries/codes", | ||
"properties": { | ||
"description": "string", | ||
"tags": { | ||
"property1": "string", | ||
"property2": "string" | ||
} | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-12-01T12:00:00.000Z", | ||
"createdBy": "John Smith", | ||
"createdByType": "User", | ||
"lastModifiedAt": "2020-12-01T12:00:00.000Z", | ||
"lastModifiedBy": "John Smith", | ||
"lastModifiedByType": "User" | ||
} | ||
} | ||
}, | ||
"201": { | ||
"body": { | ||
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/registries/testregistry/codes/testContainer", | ||
"name": "testContainer", | ||
"type": "Microsoft.MachineLearningServices/registries/codes", | ||
"properties": { | ||
"description": "string", | ||
"tags": { | ||
"property1": "string", | ||
"property2": "string" | ||
} | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-12-01T12:00:00.000Z", | ||
"createdBy": "John Smith", | ||
"createdByType": "User", | ||
"lastModifiedAt": "2020-12-01T12:00:00.000Z", | ||
"lastModifiedBy": "John Smith", | ||
"lastModifiedByType": "User" | ||
} | ||
} | ||
} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...neLearningServices/preview/2022-10-01-preview/examples/Registry/CodeContainer/delete.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "testrg123", | ||
"registryName": "testregistry", | ||
"api-version": "2022-10-01-preview", | ||
"codeName": "testContainer" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": {}, | ||
"204": {} | ||
} | ||
} |
33 changes: 33 additions & 0 deletions
33
...chineLearningServices/preview/2022-10-01-preview/examples/Registry/CodeContainer/get.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "testrg123", | ||
"registryName": "testregistry", | ||
"api-version": "2022-10-01-preview", | ||
"codeName": "testContainer" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/registries/testworkspace/codes/testContainer", | ||
"name": "testContainer", | ||
"type": "Microsoft.MachineLearningServices/registries/codes", | ||
"properties": { | ||
"description": "string", | ||
"tags": { | ||
"property1": "string", | ||
"property2": "string" | ||
} | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-12-01T12:00:00.000Z", | ||
"createdBy": "John Smith", | ||
"createdByType": "User", | ||
"lastModifiedAt": "2020-08-01T12:00:00.000Z", | ||
"lastModifiedBy": "John Smith", | ||
"lastModifiedByType": "User" | ||
} | ||
} | ||
} | ||
} | ||
} |
58 changes: 58 additions & 0 deletions
58
...hineLearningServices/preview/2022-10-01-preview/examples/Registry/CodeContainer/list.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "testrg123", | ||
"registryName": "testregistry", | ||
"api-version": "2022-10-01-preview", | ||
"$skipToken": "skiptoken" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/registries/testregistry/codes/testContainer", | ||
"name": "testContainer", | ||
"type": "Microsoft.MachineLearningServices/registries/codes", | ||
"properties": { | ||
"description": "string", | ||
"tags": { | ||
"property1": "string", | ||
"property2": "string" | ||
} | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-08-01T12:00:00.000Z", | ||
"createdBy": "John Smith", | ||
"createdByType": "User", | ||
"lastModifiedAt": "2020-08-01T12:00:00.000Z", | ||
"lastModifiedBy": "John Smith", | ||
"lastModifiedByType": "User" | ||
} | ||
}, | ||
{ | ||
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/registries/testregistry/codes/testContainer2", | ||
"name": "testContainer2", | ||
"type": "Microsoft.MachineLearningServices/registries/codes", | ||
"properties": { | ||
"description": "string", | ||
"tags": { | ||
"property1": "string", | ||
"property2": "string" | ||
} | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-08-01T12:00:00.000Z", | ||
"createdBy": "John Smith", | ||
"createdByType": "User", | ||
"lastModifiedAt": "2020-08-01T12:00:00.000Z", | ||
"lastModifiedBy": "John Smith", | ||
"lastModifiedByType": "User" | ||
} | ||
} | ||
], | ||
"nextLink": "string" | ||
} | ||
} | ||
} | ||
} |
79 changes: 79 additions & 0 deletions
79
...ningServices/preview/2022-10-01-preview/examples/Registry/CodeVersion/createOrUpdate.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "test-rg", | ||
"registryName": "my-aml-registry", | ||
"codeName": "string", | ||
"version": "string", | ||
"api-version": "2022-10-01-preview", | ||
"body": { | ||
"properties": { | ||
"description": "string", | ||
"tags": { | ||
"string": "string" | ||
}, | ||
"properties": { | ||
"string": "string" | ||
}, | ||
"isAnonymous": false, | ||
"codeUri": "https://blobStorage/folderName" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"id": "string", | ||
"name": "string", | ||
"type": "string", | ||
"properties": { | ||
"description": "string", | ||
"tags": { | ||
"string": "string" | ||
}, | ||
"properties": { | ||
"string": "string" | ||
}, | ||
"isAnonymous": false, | ||
"codeUri": "https://blobStorage/folderName" | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-01-01T12:34:56.999Z", | ||
"createdBy": "string", | ||
"createdByType": "User", | ||
"lastModifiedAt": "2020-01-01T12:34:56.999Z", | ||
"lastModifiedBy": "string", | ||
"lastModifiedByType": "User" | ||
} | ||
} | ||
}, | ||
"201": { | ||
"headers": {}, | ||
"body": { | ||
"id": "string", | ||
"name": "string", | ||
"type": "string", | ||
"properties": { | ||
"description": "string", | ||
"tags": { | ||
"string": "string" | ||
}, | ||
"properties": { | ||
"string": "string" | ||
}, | ||
"isAnonymous": false, | ||
"codeUri": "https://blobStorage/folderName" | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-01-01T12:34:56.999Z", | ||
"createdBy": "string", | ||
"createdByType": "User", | ||
"lastModifiedAt": "2020-01-01T12:34:56.999Z", | ||
"lastModifiedBy": "string", | ||
"lastModifiedByType": "User" | ||
} | ||
} | ||
} | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
...hineLearningServices/preview/2022-10-01-preview/examples/Registry/CodeVersion/delete.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "test-rg", | ||
"registryName": "my-aml-registry", | ||
"codeName": "string", | ||
"version": "string", | ||
"api-version": "2022-10-01-preview" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": {}, | ||
"204": {} | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
...MachineLearningServices/preview/2022-10-01-preview/examples/Registry/CodeVersion/get.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "test-rg", | ||
"registryName": "my-aml-registry", | ||
"codeName": "string", | ||
"version": "string", | ||
"api-version": "2022-10-01-preview" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"id": "string", | ||
"name": "string", | ||
"type": "string", | ||
"properties": { | ||
"description": "string", | ||
"tags": { | ||
"string": "string" | ||
}, | ||
"properties": { | ||
"string": "string" | ||
}, | ||
"isAnonymous": false, | ||
"codeUri": "https://blobStorage/folderName" | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-01-01T12:34:56.999Z", | ||
"createdBy": "string", | ||
"createdByType": "User", | ||
"lastModifiedAt": "2020-01-01T12:34:56.999Z", | ||
"lastModifiedBy": "string", | ||
"lastModifiedByType": "User" | ||
} | ||
} | ||
} | ||
} | ||
} |
46 changes: 46 additions & 0 deletions
46
...achineLearningServices/preview/2022-10-01-preview/examples/Registry/CodeVersion/list.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "test-rg", | ||
"registryName": "my-aml-registry", | ||
"codeName": "string", | ||
"api-version": "2022-10-01-preview", | ||
"$orderBy": "string", | ||
"$top": 1, | ||
"$skipToken": "string" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "string", | ||
"name": "string", | ||
"type": "string", | ||
"properties": { | ||
"description": "string", | ||
"tags": { | ||
"string": "string" | ||
}, | ||
"properties": { | ||
"string": "string" | ||
}, | ||
"isAnonymous": false, | ||
"codeUri": "https://blobStorage/folderName" | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-01-01T12:34:56.999Z", | ||
"createdBy": "string", | ||
"createdByType": "User", | ||
"lastModifiedAt": "2020-01-01T12:34:56.999Z", | ||
"lastModifiedBy": "string", | ||
"lastModifiedByType": "User" | ||
} | ||
} | ||
], | ||
"nextLink": "string" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.