-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added back ProximityPlaceGroup APIs which are missing in 2019-03-01 (#…
- Loading branch information
1 parent
cba23e1
commit 808d08a
Showing
8 changed files
with
589 additions
and
25 deletions.
There are no files selected for viewing
409 changes: 384 additions & 25 deletions
409
specification/compute/resource-manager/Microsoft.Compute/stable/2019-03-01/compute.json
Large diffs are not rendered by default.
Oops, something went wrong.
38 changes: 38 additions & 0 deletions
38
.../Microsoft.Compute/stable/2019-03-01/examples/CreateOrUpdateAProximityPlacementGroup.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,38 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "{subscription-id}", | ||
"resourceGroupName": "myResourceGroup", | ||
"api-version": "2019-03-01", | ||
"proximityPlacementGroupName": "myProximityPlacementGroup", | ||
"parameters": { | ||
"location": "westus", | ||
"properties": { | ||
"proximityPlacementGroupType": "Standard" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "myProximityPlacementGroup", | ||
"properties": { | ||
"proximityPlacementGroupType": "Standard" | ||
}, | ||
"location": "westus", | ||
"type": "Microsoft.Compute/proximityPlacementGroups", | ||
"id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/proximityPlacementGroups/myProximityPlacementGroup" | ||
} | ||
}, | ||
"201": { | ||
"body": { | ||
"name": "myProximityPlacementGroup", | ||
"properties": { | ||
"proximityPlacementGroupType": "Standard" | ||
}, | ||
"location": "westus", | ||
"type": "Microsoft.Compute/proximityPlacementGroups", | ||
"id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/proximityPlacementGroups/myProximityPlacementGroup" | ||
} | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...-manager/Microsoft.Compute/stable/2019-03-01/examples/DeleteAProximityPlacementGroup.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,13 @@ | ||
{ | ||
"parameters":{ | ||
"subscriptionId":"{subscription-id}", | ||
"resourceGroupName":"myResourceGroup", | ||
"api-version":"2019-03-01", | ||
"proximityPlacementGroupName":"myProximityPlacementGroup", | ||
"parameters":{ | ||
} | ||
}, | ||
"responses":{ | ||
"200":{} | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
...rce-manager/Microsoft.Compute/stable/2019-03-01/examples/GetAProximityPlacementGroup.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":"{subscription-id}", | ||
"resourceGroupName":"myResourceGroup", | ||
"api-version":"2019-03-01", | ||
"proximityPlacementGroupName":"myProximityPlacementGroup", | ||
"parameters":{ | ||
|
||
} | ||
}, | ||
"responses":{ | ||
"200":{ | ||
"body":{ | ||
"name":"myProximityPlacementGroup", | ||
"properties":{ | ||
"proximityPlacementGroupType":"Standard", | ||
"virtualMachines":[ | ||
{ | ||
"id":"string" | ||
} | ||
], | ||
"virtualMachineScaleSets":[ | ||
{ | ||
"id":"string" | ||
} | ||
], | ||
"availabilitySets":[ | ||
{ | ||
"id":"string" | ||
} | ||
] | ||
}, | ||
"location":"westus", | ||
"type":"Microsoft.Compute/proximityPlacementGroups", | ||
"id":"/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/proximityPlacementGroups/myProximityPlacementGroup" | ||
} | ||
} | ||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
...soft.Compute/stable/2019-03-01/examples/ListProximityPlacementGroupsInAResourceGroup.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,43 @@ | ||
{ | ||
"parameters":{ | ||
"subscriptionId":"{subscription-id}", | ||
"resourceGroupName":"myResourceGroup", | ||
"api-version":"2019-03-01", | ||
"parameters":{ | ||
|
||
} | ||
}, | ||
"responses":{ | ||
"200":{ | ||
"body":{ | ||
"value":[ | ||
{ | ||
"name":"myProximityPlacementGroup", | ||
"properties":{ | ||
"proximityPlacementGroupType":"Standard", | ||
"virtualMachines":[ | ||
{ | ||
"id":"string" | ||
} | ||
], | ||
"virtualMachineScaleSets":[ | ||
{ | ||
"id":"string" | ||
} | ||
], | ||
"availabilitySets":[ | ||
{ | ||
"id":"string" | ||
} | ||
] | ||
}, | ||
"location":"westus", | ||
"type":"Microsoft.Compute/proximityPlacementGroups", | ||
"id":"/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/proximityPlacementGroups/myProximityPlacementGroup" | ||
} | ||
], | ||
"nextLink":"string" | ||
} | ||
} | ||
} | ||
} |
42 changes: 42 additions & 0 deletions
42
...osoft.Compute/stable/2019-03-01/examples/ListProximityPlacementGroupsInASubscription.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,42 @@ | ||
{ | ||
"parameters":{ | ||
"subscriptionId":"{subscription-id}", | ||
"api-version":"2019-03-01", | ||
"parameters":{ | ||
|
||
} | ||
}, | ||
"responses":{ | ||
"200":{ | ||
"body":{ | ||
"value":[ | ||
{ | ||
"name":"myProximityPlacementGroup", | ||
"properties":{ | ||
"proximityPlacementGroupType":"Standard", | ||
"virtualMachines":[ | ||
{ | ||
"id":"string" | ||
} | ||
], | ||
"virtualMachineScaleSets":[ | ||
{ | ||
"id":"string" | ||
} | ||
], | ||
"availabilitySets":[ | ||
{ | ||
"id":"string" | ||
} | ||
] | ||
}, | ||
"location":"westus", | ||
"type":"Microsoft.Compute/proximityPlacementGroups", | ||
"id":"/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/proximityPlacementGroups/myProximityPlacementGroup" | ||
} | ||
], | ||
"nextLink":"string" | ||
} | ||
} | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
...e-manager/Microsoft.Compute/stable/2019-03-01/examples/PatchAProximityPlacementGroup.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,26 @@ | ||
{ | ||
"parameters":{ | ||
"subscriptionId":"{subscription-id}", | ||
"resourceGroupName":"myResourceGroup", | ||
"api-version":"2019-03-01", | ||
"proximityPlacementGroupName":"myProximityPlacementGroup", | ||
"parameters":{ | ||
"tags":{ | ||
"additionalProp1":"string" | ||
} | ||
} | ||
}, | ||
"responses":{ | ||
"200":{ | ||
"body":{ | ||
"name":"myProximityPlacementGroup", | ||
"properties":{ | ||
"proximityPlacementGroupType":"Standard" | ||
}, | ||
"location":"westus", | ||
"type":"Microsoft.Compute/proximityPlacementGroups", | ||
"id":"/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/proximityPlacementGroups/myProximityPlacementGroup" | ||
} | ||
} | ||
} | ||
} |
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