Skip to content

Commit

Permalink
Merge pull request Azure#34 from libc16/fix_modelvalidation_mlc
Browse files Browse the repository at this point in the history
[MLC] fix ModelValidation Errors of MachineLearningCompute
  • Loading branch information
zhaomuzhi authored Jan 18, 2022
2 parents 398055c + 6c9f541 commit 48fd07c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@
"osType": "Windows",
"virtualMachineImage": null,
"isolatedNetwork": false,
"subnet": "test-subnet-resource-id",
"subnet": {
"id": "test-subnet-resource-id"
},
"scaleSettings": {
"maxNodeCount": 1,
"minNodeCount": 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
"computeType": "ComputeInstance",
"properties": {
"vmSize": "STANDARD_NC6",
"subnet": "test-subnet-resource-id",
"subnet": {
"id": "test-subnet-resource-id"
},
"applicationSharingPolicy": "Personal",
"sshSettings": {
"sshPublicAccess": "Disabled"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
"osType": "Windows",
"virtualMachineImage": null,
"isolatedNetwork": false,
"subnet": "test-subnet-resource-id",
"subnet": {
"id": "test-subnet-resource-id"
},
"scaleSettings": {
"maxNodeCount": 1,
"minNodeCount": 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@
"provisioningState": "Succeeded",
"properties": {
"vmSize": "STANDARD_NC6",
"subnet": "test-subnet-resource-id",
"subnet": {
"id": "test-subnet-resource-id"
},
"applicationSharingPolicy": "Shared",
"sshSettings": {
"sshPublicAccess": "Enabled",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3479,7 +3479,6 @@
"type": "object",
"properties": {
"vmSize": {
"readOnly": true,
"description": "Virtual Machine Size",
"type": "string"
},
Expand Down

0 comments on commit 48fd07c

Please sign in to comment.