-
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.
StoragePool GA Swagger Release (#15760)
* initial from 2021-04-01-preview * update version * long running operations description * list skus 1 * First pass -- added rest of the updates. * Fix validation issues * Updated README files * Address team's comments * Avocado errors * Fix Lint diff errors * Review feedback * Updated sku fields level for resource sku api * Fix lint errors * Fix go readme * Fixed go read me * Update specification/storagepool/resource-manager/readme.go.md Co-authored-by: Arcturus <dapzhang@microsoft.com> Co-authored-by: ruyingchen <ruyingchen@microsoft.com> Co-authored-by: Harshitha Akkaraju <hakkaraj@microsoft.com> Co-authored-by: Arcturus <dapzhang@microsoft.com>
- Loading branch information
1 parent
851fac2
commit 2b45143
Showing
22 changed files
with
4,145 additions
and
2 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
...resource-manager/Microsoft.StoragePool/stable/2021-08-01/examples/DiskPoolZones_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,39 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2021-08-01", | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"location": "eastus" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"availabilityZones": [ | ||
"1", | ||
"2", | ||
"3" | ||
], | ||
"sku": { | ||
"tier": "Basic_V1", | ||
"name": "Basic" | ||
}, | ||
"additionalCapabilities": [] | ||
}, | ||
{ | ||
"availabilityZones": [ | ||
"1", | ||
"2" | ||
], | ||
"sku": { | ||
"tier": "Standard_V1", | ||
"name": "Standard" | ||
}, | ||
"additionalCapabilities": [] | ||
} | ||
] | ||
}, | ||
"nextLink": "null" | ||
} | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
...source-manager/Microsoft.StoragePool/stable/2021-08-01/examples/DiskPools_Deallocate.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,12 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2021-08-01", | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"resourceGroupName": "myResourceGroup", | ||
"diskPoolName": "myDiskPool" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": {} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...l/resource-manager/Microsoft.StoragePool/stable/2021-08-01/examples/DiskPools_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,13 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2021-08-01", | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"resourceGroupName": "myResourceGroup", | ||
"diskPoolName": "myDiskPool" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"204": {}, | ||
"202": {} | ||
} | ||
} |
51 changes: 51 additions & 0 deletions
51
...pool/resource-manager/Microsoft.StoragePool/stable/2021-08-01/examples/DiskPools_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,51 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2021-08-01", | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"resourceGroupName": "myResourceGroup", | ||
"diskPoolName": "myDiskPool" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.StoragePool/diskPools/myDiskPool", | ||
"location": "westus2", | ||
"name": "myDiskPool", | ||
"type": "Microsoft.StoragePool/diskPools", | ||
"sku": { | ||
"name": "Basic_V1", | ||
"tier": "Basic" | ||
}, | ||
"managedBy": "/subscriptions/11111111-1111-1111-1111-111111111111/resourceGroups/myResourceGroup/providers/Microsoft.AVS/privateClouds/myPrivateCloud/clusters/Cluster-1/datastores/datastore1", | ||
"managedByExtended": [ | ||
"/subscriptions/11111111-1111-1111-1111-111111111111/resourceGroups/myResourceGroup/providers/Microsoft.AVS/privateClouds/myPrivateCloud/clusters/Cluster-1/datastores/datastore1", | ||
"/subscriptions/11111111-1111-1111-1111-111111111111/resourceGroups/myResourceGroup/providers/Microsoft.AVS/privateClouds/myPrivateCloud/clusters/Cluster-1/datastores/datastore2" | ||
], | ||
"properties": { | ||
"availabilityZones": [ | ||
"1" | ||
], | ||
"subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet", | ||
"provisioningState": "Succeeded", | ||
"status": "Healthy", | ||
"disks": [ | ||
{ | ||
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/myDataDisk_0" | ||
} | ||
] | ||
}, | ||
"systemData": { | ||
"createdAt": "2020-06-24T06:53:57+00:00", | ||
"createdBy": "alias", | ||
"createdByType": "User", | ||
"lastModifiedAt": "2020-06-24T06:53:57+00:00", | ||
"lastModifiedBy": "alias", | ||
"lastModifiedByType": "User" | ||
}, | ||
"tags": { | ||
"env": "int" | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.