-
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.
Adding Inference Pools, Groups and Endpoints
- Loading branch information
Raushan Kumar
committed
Sep 15, 2023
1 parent
d97207a
commit 1fca1a3
Showing
20 changed files
with
5,872 additions
and
2,545 deletions.
There are no files selected for viewing
81 changes: 81 additions & 0 deletions
81
...vices/preview/2023-08-01-preview/examples/Workspace/InferenceEndpoint/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,81 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "test-rg", | ||
"workspaceName": "my-aml-workspace", | ||
"poolName": "string", | ||
"groupName": "string", | ||
"name": "string", | ||
"api-version": "2023-08-01-preview", | ||
"body": { | ||
"properties": { | ||
"description": "string", | ||
"properties": { | ||
"string": "string" | ||
}, | ||
"authMode": "AAD" | ||
}, | ||
"tags": {}, | ||
"location": "string", | ||
"kind": "string" | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"id": "string", | ||
"name": "string", | ||
"type": "string", | ||
"properties": { | ||
"description": "string", | ||
"properties": { | ||
"string": "string" | ||
}, | ||
"provisioningState": "Failed", | ||
"authMode": "AAD", | ||
"endpointUri": "https://www.contoso.com/example" | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-01-01T12:34:56.999+00:32", | ||
"createdBy": "string", | ||
"createdByType": "ManagedIdentity", | ||
"lastModifiedAt": "2020-01-01T12:34:56.999+00:32", | ||
"lastModifiedBy": "string", | ||
"lastModifiedByType": "Key" | ||
}, | ||
"tags": {}, | ||
"location": "string", | ||
"kind": "string" | ||
} | ||
}, | ||
"201": { | ||
"headers": {}, | ||
"body": { | ||
"id": "string", | ||
"name": "string", | ||
"type": "string", | ||
"properties": { | ||
"description": "string", | ||
"properties": { | ||
"string": "string" | ||
}, | ||
"provisioningState": "Deleting", | ||
"authMode": "AAD", | ||
"endpointUri": "https://www.contoso.com/example" | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-01-01T12:34:56.999+00:32", | ||
"createdBy": "string", | ||
"createdByType": "Key", | ||
"lastModifiedAt": "2020-01-01T12:34:56.999+00:32", | ||
"lastModifiedBy": "string", | ||
"lastModifiedByType": "Application" | ||
}, | ||
"tags": {}, | ||
"location": "string", | ||
"kind": "string" | ||
} | ||
} | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
...rningServices/preview/2023-08-01-preview/examples/Workspace/InferenceEndpoint/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,20 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "test-rg", | ||
"workspaceName": "my-aml-workspace", | ||
"poolName": "string", | ||
"groupName": "string", | ||
"name": "string", | ||
"api-version": "2023-08-01-preview" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": { | ||
"headers": { | ||
"location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/prefix:F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0" | ||
} | ||
}, | ||
"204": {} | ||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
...LearningServices/preview/2023-08-01-preview/examples/Workspace/InferenceEndpoint/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,41 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "test-rg", | ||
"workspaceName": "my-aml-workspace", | ||
"poolName": "string", | ||
"groupName": "string", | ||
"name": "string", | ||
"api-version": "2023-08-01-preview" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"id": "string", | ||
"name": "string", | ||
"type": "string", | ||
"properties": { | ||
"description": "string", | ||
"properties": { | ||
"string": "string" | ||
}, | ||
"provisioningState": "Updating", | ||
"authMode": "AAD", | ||
"endpointUri": "https://www.contoso.com/example" | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-01-01T12:34:56.999+00:32", | ||
"createdBy": "string", | ||
"createdByType": "Key", | ||
"lastModifiedAt": "2020-01-01T12:34:56.999+00:32", | ||
"lastModifiedBy": "string", | ||
"lastModifiedByType": "Key" | ||
}, | ||
"tags": {}, | ||
"location": "string", | ||
"kind": "string" | ||
} | ||
} | ||
} | ||
} |
50 changes: 50 additions & 0 deletions
50
...earningServices/preview/2023-08-01-preview/examples/Workspace/InferenceEndpoint/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,50 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "test-rg", | ||
"workspaceName": "my-aml-workspace", | ||
"poolName": "string", | ||
"groupName": "string", | ||
"api-version": "2023-08-01-preview", | ||
"$skipToken": "string", | ||
"count": 1, | ||
"tags": "string", | ||
"properties": "string", | ||
"orderBy": "CreatedAtAsc" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "string", | ||
"name": "string", | ||
"type": "string", | ||
"properties": { | ||
"description": "string", | ||
"properties": { | ||
"string": "string" | ||
}, | ||
"provisioningState": "Updating", | ||
"authMode": "AAD", | ||
"endpointUri": "https://www.contoso.com/example" | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-01-01T12:34:56.999+00:33", | ||
"createdBy": "string", | ||
"createdByType": "Application", | ||
"lastModifiedAt": "2020-01-01T12:34:56.999+00:33", | ||
"lastModifiedBy": "string", | ||
"lastModifiedByType": "Application" | ||
}, | ||
"tags": {}, | ||
"location": "string", | ||
"kind": "string" | ||
} | ||
], | ||
"nextLink": "string" | ||
} | ||
} | ||
} | ||
} |
49 changes: 49 additions & 0 deletions
49
...rningServices/preview/2023-08-01-preview/examples/Workspace/InferenceEndpoint/update.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,49 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "test-rg", | ||
"workspaceName": "my-aml-workspace", | ||
"poolName": "string", | ||
"groupName": "string", | ||
"name": "string", | ||
"api-version": "2023-08-01-preview", | ||
"body": { | ||
"tags": {} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"id": "string", | ||
"name": "string", | ||
"type": "string", | ||
"properties": { | ||
"description": "string", | ||
"properties": { | ||
"string": "string" | ||
}, | ||
"provisioningState": "Succeeded", | ||
"authMode": "AAD", | ||
"endpointUri": "https://www.contoso.com/example" | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-01-01T12:34:56.999+00:33", | ||
"createdBy": "string", | ||
"createdByType": "Application", | ||
"lastModifiedAt": "2020-01-01T12:34:56.999+00:33", | ||
"lastModifiedBy": "string", | ||
"lastModifiedByType": "Application" | ||
}, | ||
"tags": {}, | ||
"location": "string", | ||
"kind": "string" | ||
} | ||
}, | ||
"202": { | ||
"headers": { | ||
"location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/prefix:F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0" | ||
} | ||
} | ||
} | ||
} |
105 changes: 105 additions & 0 deletions
105
...Services/preview/2023-08-01-preview/examples/Workspace/InferenceGroup/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,105 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "test-rg", | ||
"workspaceName": "my-aml-workspace", | ||
"poolName": "string", | ||
"name": "string", | ||
"api-version": "2023-08-01-preview", | ||
"body": { | ||
"properties": { | ||
"description": "string", | ||
"properties": { | ||
"string": "string" | ||
}, | ||
"priority": 1, | ||
"bonusExtraCapacity": 1, | ||
"data": "string" | ||
}, | ||
"tags": {}, | ||
"location": "string", | ||
"kind": "string", | ||
"sku": { | ||
"name": "string", | ||
"tier": "Basic", | ||
"size": "string", | ||
"family": "string", | ||
"capacity": 1 | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"id": "string", | ||
"name": "string", | ||
"type": "string", | ||
"properties": { | ||
"description": "string", | ||
"properties": { | ||
"string": "string" | ||
}, | ||
"provisioningState": "Canceled", | ||
"priority": 1, | ||
"bonusExtraCapacity": 1, | ||
"data": "string" | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-01-01T12:34:56.999+00:31", | ||
"createdBy": "string", | ||
"createdByType": "User", | ||
"lastModifiedAt": "2020-01-01T12:34:56.999+00:31", | ||
"lastModifiedBy": "string", | ||
"lastModifiedByType": "Application" | ||
}, | ||
"tags": {}, | ||
"location": "string", | ||
"kind": "string", | ||
"sku": { | ||
"name": "string", | ||
"tier": "Standard", | ||
"size": "string", | ||
"family": "string", | ||
"capacity": 1 | ||
} | ||
} | ||
}, | ||
"201": { | ||
"headers": {}, | ||
"body": { | ||
"id": "string", | ||
"name": "string", | ||
"type": "string", | ||
"properties": { | ||
"description": "string", | ||
"properties": { | ||
"string": "string" | ||
}, | ||
"provisioningState": "Deleting", | ||
"priority": 1, | ||
"bonusExtraCapacity": 1, | ||
"data": "string" | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-01-01T12:34:56.999+00:31", | ||
"createdBy": "string", | ||
"createdByType": "User", | ||
"lastModifiedAt": "2020-01-01T12:34:56.999+00:31", | ||
"lastModifiedBy": "string", | ||
"lastModifiedByType": "ManagedIdentity" | ||
}, | ||
"tags": {}, | ||
"location": "string", | ||
"kind": "string", | ||
"sku": { | ||
"name": "string", | ||
"tier": "Standard", | ||
"size": "string", | ||
"family": "string", | ||
"capacity": 1 | ||
} | ||
} | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
...LearningServices/preview/2023-08-01-preview/examples/Workspace/InferenceGroup/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,19 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "test-rg", | ||
"workspaceName": "my-aml-workspace", | ||
"poolName": "string", | ||
"name": "string", | ||
"api-version": "2023-08-01-preview" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": { | ||
"headers": { | ||
"location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/prefix:F0C6B8EC-0D53-432C-913B-1CD9E8CDE3A0" | ||
} | ||
}, | ||
"204": {} | ||
} | ||
} |
Oops, something went wrong.