Skip to content

Commit

Permalink
StoragePool GA Swagger Release (#15760)
Browse files Browse the repository at this point in the history
* 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
4 people authored Sep 3, 2021
1 parent 851fac2 commit 2b45143
Show file tree
Hide file tree
Showing 22 changed files with 4,145 additions and 2 deletions.
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"
}
}
}
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": {}
}
}
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": {}
}
}
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"
}
}
}
}
}
Loading

0 comments on commit 2b45143

Please sign in to comment.