-
Notifications
You must be signed in to change notification settings - Fork 5.6k
[READY FOR DESIGN REVIEW] -> MachineLearningServices: Adding new API version and definition for AmlInstance compute type #7323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from 33 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
5996396
Adding version 2019-11-01
vhamine cff591b
Adding definition for AmlInstance compute type
vhamine 9c97737
Modifying examples to use the new API version 2019-11-01
vhamine 0dd6452
Changing readme files to reflect the new API version
vhamine 7c540de
Bug fixes
vhamine bb0c6f6
Bug fix: Adding properties to AmlInstance definitions
vhamine 7e539e7
Bug fix: Adding missing properties in all object types
vhamine 1dc7da5
Bug fix: Adding missing properties in startupScript object
vhamine a49c4ae
Adding POST APIs for start, stop, and restart operations
vhamine 7e83290
Adding state, lastOperation, lastOperationStatus to AmlInstance compu…
vhamine 385cd5f
Adding examples for start, stop, restart post actions
vhamine 4fa488e
Adding support for Windows OS in AmlCompute compute type
vhamine c795cc5
Refactoring AmlInstance compute specific properties into separate def…
vhamine de6aebc
Adding AmlInstance compute updatable properties to ClusterUpdatePrope…
vhamine 9df4d82
Adding examples for creating AmlInstance compute
vhamine e16d41e
Adding example for get AmlInstance
vhamine ce2f9b2
Referring to get AmlInstance example in swagger
vhamine 11f66c4
Adding scriptLogLocation as readOnly to custom scripts and updating e…
vhamine 5b9bb9a
Fixing a bug in latest update
vhamine 18f28ec
Adding connectivityEndpoints and createdBy as readOnly properties to …
vhamine 0ed4a6f
Removing lastOperation and lastOperationStatus properties from AmlIns…
vhamine 492e87e
Adding updateVersion property as string to available SDK updates in A…
vhamine 9d38cc1
Removing scriptLogLocation from AmlInstance custom script properties
vhamine 3c4687b
Addressing code review comments
vhamine f0bdbde
Adding adminUserName as readOnly property to AmlInstanceSshSettings
vhamine fe1846c
Renaming AmlInstance to ComputeInstance
vhamine a39326d
Adding instanceSharing property to ComputeInstance
vhamine bc06bc8
Internal review feedback: Adding sshPort to sshSettings and separatin…
vhamine da577a8
Fixing SpellCheck error
vhamine eb66cb9
Keeping minimal set of properties (for Ignite) in ComputeInstance spec
vhamine 4e3a7bf
Renaming virtualMachineImageId to virtualMachineImage
vhamine 220de67
Addressing ARM review feedback
vhamine 5ad61b9
Making Linux the default OS type in AmlCompute
vhamine 2678804
Updating the ComputeInstance state list
ramagott 0abfa64
Updating return type in examples for CI start, stop and restart opera…
ramagott 9a2ab25
Fixing braces
ramagott File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
400 changes: 400 additions & 0 deletions
400
...urce-manager/Microsoft.MachineLearningServices/stable/2019-11-01/examples/ListUsages.json
Large diffs are not rendered by default.
Oops, something went wrong.
499 changes: 499 additions & 0 deletions
499
...nager/Microsoft.MachineLearningServices/stable/2019-11-01/examples/ListVMSizesResult.json
Large diffs are not rendered by default.
Oops, something went wrong.
415 changes: 415 additions & 0 deletions
415
...oft.MachineLearningServices/stable/2019-11-01/examples/ListWorkspaceQuotasByVMFamily.json
Large diffs are not rendered by default.
Oops, something went wrong.
34 changes: 34 additions & 0 deletions
34
...ger/Microsoft.MachineLearningServices/stable/2019-11-01/examples/amlComputeListNodes.json
This file contains hidden or 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,34 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", | ||
| "resourceGroupName": "testrg123", | ||
| "workspaceName": "workspaces123", | ||
| "computeName": "compute123", | ||
| "api-version": "2019-11-01" | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "computeType": "AmlCompute", | ||
| "nodes": [ | ||
| { | ||
| "nodeId": "tvm-3601533753_1-20170719t162906z", | ||
| "privateIpAddress": "13.84.190.124", | ||
| "publicIpAddress": "13.84.190.134", | ||
| "port": 50000, | ||
| "nodeState": "running", | ||
| "runId": "2f378a44-38f2-443a-9f0d-9909d0b47890" | ||
| }, | ||
| { | ||
| "nodeId": "tvm-3601533753_2-20170719t162906z", | ||
| "privateIpAddress": "13.84.190.124", | ||
| "publicIpAddress": "13.84.190.134", | ||
| "port": 50001, | ||
| "nodeState": "idle" | ||
| } | ||
| ], | ||
| "nextLink": "nextLink" | ||
| } | ||
| } | ||
| } | ||
| } |
44 changes: 44 additions & 0 deletions
44
...r/Microsoft.MachineLearningServices/stable/2019-11-01/examples/createBasicAKSCompute.json
This file contains hidden or 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,44 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", | ||
| "resourceGroupName": "testrg123", | ||
| "workspaceName": "workspaces123", | ||
| "computeName": "compute123", | ||
| "api-version": "2019-11-01", | ||
| "parameters": { | ||
| "location": "eastus", | ||
| "properties": { | ||
| "computeType": "AKS" | ||
| } | ||
| } | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "id": "subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", | ||
| "type": "Microsoft.MachineLearningServices/workspaces/computes", | ||
| "name": "compute123", | ||
| "location": "eastus", | ||
| "properties": { | ||
| "computeType": "AKS", | ||
| "provisioningState": "Creating" | ||
| } | ||
| } | ||
| }, | ||
| "201": { | ||
| "body": { | ||
| "id": "subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", | ||
| "type": "Microsoft.MachineLearningServices/workspaces/computes", | ||
| "name": "compute123", | ||
| "location": "eastus", | ||
| "properties": { | ||
| "computeType": "AKS", | ||
| "provisioningState": "Creating" | ||
| } | ||
| }, | ||
| "headers": { | ||
| "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." | ||
| } | ||
| } | ||
| } | ||
| } |
55 changes: 55 additions & 0 deletions
55
...r/Microsoft.MachineLearningServices/stable/2019-11-01/examples/createBasicAmlCompute.json
This file contains hidden or 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,55 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", | ||
| "resourceGroupName": "testrg123", | ||
| "workspaceName": "workspaces123", | ||
| "computeName": "compute123", | ||
| "api-version": "2019-11-01", | ||
| "parameters": { | ||
| "location": "eastus", | ||
| "properties": { | ||
| "computeType": "AmlCompute", | ||
| "properties": { | ||
| "vmSize": "STANDARD_NC6", | ||
| "osType": "Linux", | ||
| "vmPriority": "Dedicated", | ||
| "scaleSettings": { | ||
| "maxNodeCount": 1, | ||
| "minNodeCount": 0, | ||
| "nodeIdleTimeBeforeScaleDown": "PT5M" | ||
| }, | ||
| "remoteLoginPortPublicAccess": "NotSpecified" | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", | ||
| "type": "Microsoft.MachineLearningServices/workspaces/computes", | ||
| "name": "compute123", | ||
| "location": "eastus", | ||
| "properties": { | ||
| "computeType": "AmlCompute", | ||
| "provisioningState": "Creating" | ||
| } | ||
| } | ||
| }, | ||
| "201": { | ||
| "body": { | ||
| "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", | ||
| "type": "Microsoft.MachineLearningServices/workspaces/computes", | ||
| "name": "compute123", | ||
| "location": "eastus", | ||
| "properties": { | ||
| "computeType": "AmlCompute", | ||
| "provisioningState": "Creating" | ||
| } | ||
| }, | ||
| "headers": { | ||
| "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." | ||
| } | ||
| } | ||
| } | ||
| } |
44 changes: 44 additions & 0 deletions
44
...oft.MachineLearningServices/stable/2019-11-01/examples/createBasicDataFactoryCompute.json
This file contains hidden or 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,44 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", | ||
| "resourceGroupName": "testrg123", | ||
| "workspaceName": "workspaces123", | ||
| "computeName": "compute123", | ||
| "api-version": "2019-11-01", | ||
| "parameters": { | ||
| "location": "eastus", | ||
| "properties": { | ||
| "computeType": "DataFactory" | ||
| } | ||
| } | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", | ||
| "type": "Microsoft.MachineLearningServices/workspaces/computes", | ||
| "name": "compute123", | ||
| "location": "eastus", | ||
| "properties": { | ||
| "computeType": "DataFactory", | ||
| "provisioningState": "Creating" | ||
| } | ||
| } | ||
| }, | ||
| "201": { | ||
| "body": { | ||
| "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", | ||
| "type": "Microsoft.MachineLearningServices/workspaces/computes", | ||
| "name": "compute123", | ||
| "location": "eastus", | ||
| "properties": { | ||
| "computeType": "DataFactory", | ||
| "provisioningState": "Creating" | ||
| } | ||
| }, | ||
| "headers": { | ||
| "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." | ||
| } | ||
| } | ||
| } | ||
| } |
52 changes: 52 additions & 0 deletions
52
...r/Microsoft.MachineLearningServices/stable/2019-11-01/examples/createComputeInstance.json
This file contains hidden or 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,52 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", | ||
| "resourceGroupName": "testrg123", | ||
| "workspaceName": "workspaces123", | ||
| "computeName": "compute123", | ||
| "api-version": "2019-11-01", | ||
| "parameters": { | ||
| "location": "eastus", | ||
| "properties": { | ||
| "computeType": "ComputeInstance", | ||
| "properties": { | ||
| "vmSize": "STANDARD_NC6", | ||
| "subnet": "test-subnet-resource-id", | ||
| "applicationSharingPolicy": "Personal", | ||
| "sshSettings": { | ||
| "sshPublicAccess": "Disabled" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", | ||
| "type": "Microsoft.MachineLearningServices/workspaces/computes", | ||
| "name": "compute123", | ||
| "location": "eastus", | ||
| "properties": { | ||
| "computeType": "ComputeInstance", | ||
| "provisioningState": "Creating" | ||
| } | ||
| } | ||
| }, | ||
| "201": { | ||
| "body": { | ||
| "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", | ||
| "type": "Microsoft.MachineLearningServices/workspaces/computes", | ||
| "name": "compute123", | ||
| "location": "eastus", | ||
| "properties": { | ||
| "computeType": "ComputeInstance", | ||
| "provisioningState": "Creating" | ||
| } | ||
| }, | ||
| "headers": { | ||
| "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." | ||
| } | ||
| } | ||
| } | ||
| } | ||
47 changes: 47 additions & 0 deletions
47
...soft.MachineLearningServices/stable/2019-11-01/examples/createComputeInstanceMinimal.json
This file contains hidden or 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,47 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", | ||
| "resourceGroupName": "testrg123", | ||
| "workspaceName": "workspaces123", | ||
| "computeName": "compute123", | ||
| "api-version": "2019-11-01", | ||
| "parameters": { | ||
| "location": "eastus", | ||
| "properties": { | ||
| "computeType": "ComputeInstance", | ||
| "properties": { | ||
| "vmSize": "STANDARD_NC6" | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", | ||
| "type": "Microsoft.MachineLearningServices/workspaces/computes", | ||
| "name": "compute123", | ||
| "location": "eastus", | ||
| "properties": { | ||
| "computeType": "ComputeInstance", | ||
| "provisioningState": "Creating" | ||
| } | ||
| } | ||
| }, | ||
| "201": { | ||
| "body": { | ||
| "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", | ||
| "type": "Microsoft.MachineLearningServices/workspaces/computes", | ||
| "name": "compute123", | ||
| "location": "eastus", | ||
| "properties": { | ||
| "computeType": "ComputeInstance", | ||
| "provisioningState": "Creating" | ||
| } | ||
| }, | ||
| "headers": { | ||
| "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus..." | ||
| } | ||
| } | ||
| } | ||
| } |
57 changes: 57 additions & 0 deletions
57
...manager/Microsoft.MachineLearningServices/stable/2019-11-01/examples/createWorkspace.json
This file contains hidden or 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,57 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
| "resourceGroupName": "workspace-1234", | ||
| "workspaceName": "testworkspace", | ||
| "api-version": "2019-11-01", | ||
| "parameters": { | ||
| "location": "eastus2euap", | ||
| "properties": { | ||
| "friendlyName": "HelloName", | ||
| "description": "test description", | ||
| "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", | ||
| "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", | ||
| "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", | ||
| "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount" | ||
| } | ||
| } | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", | ||
| "name": "testworkspace", | ||
| "type": "Microsoft.MachineLearningServices/workspaces", | ||
| "location": "eastus2euap", | ||
| "properties": { | ||
| "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", | ||
| "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", | ||
| "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", | ||
| "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", | ||
| "discoveryUrl": "http://example.com", | ||
| "creationTime": "2017-03-01T23:14:37.0707808Z", | ||
| "friendlyName": "HelloName", | ||
| "description": "test description" | ||
| } | ||
| } | ||
| }, | ||
| "201": { | ||
| "body": { | ||
| "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace", | ||
| "name": "testworkspace", | ||
| "type": "Microsoft.MachineLearningServices/workspaces", | ||
| "location": "eastus2euap", | ||
| "properties": { | ||
| "containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry", | ||
| "keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv", | ||
| "applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights", | ||
| "storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount", | ||
| "discoveryUrl": "http://example.com", | ||
| "creationTime": "2017-03-01T23:14:37.0707808Z", | ||
| "friendlyName": "HelloName", | ||
| "description": "test description" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } |
19 changes: 19 additions & 0 deletions
19
...e-manager/Microsoft.MachineLearningServices/stable/2019-11-01/examples/deleteCompute.json
This file contains hidden or 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": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", | ||
| "resourceGroupName": "testrg123", | ||
| "workspaceName": "workspaces123", | ||
| "computeName": "compute123", | ||
| "api-version": "2019-11-01", | ||
| "underlyingResourceAction": "Delete" | ||
| }, | ||
| "responses": { | ||
| "200": {}, | ||
| "202": { | ||
| "headers": { | ||
| "Azure-AsyncOperation": "https://management.azure.com/subscriptions/...pathToOperationStatus...", | ||
| "Location": "https://management.azure.com/subscriptions/...pathToOperationResult..." | ||
| } | ||
| } | ||
| } | ||
| } |
12 changes: 12 additions & 0 deletions
12
...manager/Microsoft.MachineLearningServices/stable/2019-11-01/examples/deleteWorkspace.json
This file contains hidden or 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,12 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
| "resourceGroupName": "workspace-1234", | ||
| "workspaceName": "testworkspace", | ||
| "api-version": "2019-11-01" | ||
| }, | ||
| "responses": { | ||
| "200": {}, | ||
| "204": {} | ||
| } | ||
| } |
25 changes: 25 additions & 0 deletions
25
...e-manager/Microsoft.MachineLearningServices/stable/2019-11-01/examples/getAKSCompute.json
This file contains hidden or 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,25 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", | ||
| "resourceGroupName": "testrg123", | ||
| "workspaceName": "workspaces123", | ||
| "computeName": "compute123", | ||
| "api-version": "2019-11-01" | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123", | ||
| "type": "Microsoft.MachineLearningServices/workspaces/computes", | ||
| "name": "compute123", | ||
| "location": "eastus", | ||
| "properties": { | ||
| "description": "some compute", | ||
| "resourceId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2", | ||
| "computeType": "AKS", | ||
| "provisioningState": "Succeeded" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.