forked from Azure/azure-rest-api-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PowerBIDedicated - Add new API Version (Azure#12244)
* Copy existing version to new directory * Update API Version * Introduce new SKU tier enum values * Fix linting issue - introduce required new default property SystemData * Update Readme.md (cherry picked from commit c434161) * update api version to right format * renamed folder * Add swagger file for new resource type Microsoft.PowerBIDedicated/autoScaleVCores * Update powerbidedicated.json Add Mode property * Update powerbidedicated.json Fix words Co-authored-by: Shane Zou <xinzo@microsoft.com>
- Loading branch information
Showing
22 changed files
with
2,329 additions
and
2 deletions.
There are no files selected for viewing
460 changes: 460 additions & 0 deletions
460
...icated/resource-manager/Microsoft.PowerBIdedicated/stable/2021-01-01/autoScaleVCores.json
Large diffs are not rendered by default.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
...-manager/Microsoft.PowerBIdedicated/stable/2021-01-01/examples/checkNameAvailability.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,19 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "613192d7-503f-477a-9cfe-4efc3ee2bd60", | ||
"location": "West US", | ||
"capacityParameters": { | ||
"name": "azsdktest", | ||
"type": "Microsoft.PowerBIDedicated/capacities" | ||
}, | ||
"api-version": "2021-01-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"nameAvailable": true | ||
} | ||
} | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
...e-manager/Microsoft.PowerBIdedicated/stable/2021-01-01/examples/createAutoScaleVCore.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,55 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "613192d7-503f-477a-9cfe-4efc3ee2bd60", | ||
"resourceGroupName": "TestRG", | ||
"vcoreName": "testvcore", | ||
"api-version": "2021-01-01", | ||
"vCoreParameters": { | ||
"sku": { | ||
"name": "AutoScale", | ||
"tier": "AutoScale", | ||
"capacity": 0 | ||
}, | ||
"tags": { | ||
"testKey": "testValue" | ||
}, | ||
"location": "West US", | ||
"properties": { | ||
"capacityObjectId": "a28f00bd-5330-4572-88f1-fa883e074785", | ||
"capacityLimit": 10 | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"id": "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.PowerBIDedicated/autoScaleVCores/testvcore", | ||
"name": "testvcore", | ||
"location": "West US", | ||
"type": "Microsoft.PowerBIDedicated/autoScaleVCores", | ||
"sku": { | ||
"name": "AutoScale", | ||
"tier": "AutoScale", | ||
"capacity": 0 | ||
}, | ||
"properties": { | ||
"capacityObjectId": "a28f00bd-5330-4572-88f1-fa883e074785", | ||
"capacityLimit": 10, | ||
"provisioningState": "Succeeded" | ||
}, | ||
"tags": { | ||
"testKey": "testValue" | ||
}, | ||
"systemData": { | ||
"createdBy": "app1", | ||
"createdByType": "Application", | ||
"createdAt": "2021-01-01T00:00:19.1234567Z", | ||
"lastModifiedBy": "app1", | ||
"lastModifiedByType": "Application", | ||
"lastModifiedAt": "2021-01-01T00:00:19.1234567Z" | ||
} | ||
} | ||
} | ||
} | ||
} |
94 changes: 94 additions & 0 deletions
94
...esource-manager/Microsoft.PowerBIdedicated/stable/2021-01-01/examples/createCapacity.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,94 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "613192d7-503f-477a-9cfe-4efc3ee2bd60", | ||
"resourceGroupName": "TestRG", | ||
"dedicatedCapacityName": "azsdktest", | ||
"api-version": "2021-01-01", | ||
"capacityParameters": { | ||
"sku": { | ||
"name": "A1", | ||
"tier": "PBIE_Azure" | ||
}, | ||
"tags": { | ||
"testKey": "testValue" | ||
}, | ||
"location": "West US", | ||
"properties": { | ||
"administration": { | ||
"members": [ | ||
"azsdktest@microsoft.com", | ||
"azsdktest2@microsoft.com" | ||
] | ||
} | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"id": "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.PowerBIDedicated/capacities/azsdktest", | ||
"location": "West US", | ||
"name": "azsdktest", | ||
"properties": { | ||
"administration": { | ||
"members": [ | ||
"azsdktest@microsoft.com", | ||
"azsdktest2@microsoft.com" | ||
] | ||
}, | ||
"provisioningState": "Provisioning", | ||
"state": "Provisioning" | ||
}, | ||
"sku": { | ||
"name": "A1", | ||
"tier": "PBIE_Azure" | ||
}, | ||
"tags": { | ||
"testKey": "testValue" | ||
}, | ||
"systemData": { | ||
"createdBy": "user1", | ||
"createdByType": "User", | ||
"createdAt": "2021-01-01T00:00:19.1234567Z", | ||
"lastModifiedBy": "user2", | ||
"lastModifiedByType": "User", | ||
"lastModifiedAt": "2021-01-01T00:00:19.1234567Z" | ||
} | ||
} | ||
}, | ||
"201": { | ||
"headers": {}, | ||
"body": { | ||
"id": "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.PowerBIDedicated/servers/azsdktest", | ||
"location": "West US", | ||
"name": "azsdktest", | ||
"properties": { | ||
"administration": { | ||
"members": [ | ||
"azsdktest@microsoft.com", | ||
"azsdktest2@microsoft.com" | ||
] | ||
}, | ||
"provisioningState": "Provisioning", | ||
"state": "Provisioning" | ||
}, | ||
"sku": { | ||
"name": "A1", | ||
"tier": "PBIE_Azure" | ||
}, | ||
"tags": { | ||
"testKey": "testValue" | ||
}, | ||
"systemData": { | ||
"createdBy": "user1", | ||
"createdByType": "User", | ||
"createdAt": "2021-01-01T00:00:19.1234567Z", | ||
"lastModifiedBy": "user2", | ||
"lastModifiedByType": "User", | ||
"lastModifiedAt": "2021-01-01T00:00:19.1234567Z" | ||
} | ||
} | ||
} | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
...e-manager/Microsoft.PowerBIdedicated/stable/2021-01-01/examples/deleteAutoScaleVCore.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,18 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "613192d7-503f-477a-9cfe-4efc3ee2bd60", | ||
"resourceGroupName": "TestRG", | ||
"vcoreName": "testvcore", | ||
"api-version": "2021-01-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"description": "OK." | ||
}, | ||
"204": { | ||
"headers": {}, | ||
"description": "No content." | ||
} | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
...esource-manager/Microsoft.PowerBIdedicated/stable/2021-01-01/examples/deleteCapacity.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,21 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "613192d7-503f-477a-9cfe-4efc3ee2bd60", | ||
"resourceGroupName": "TestRG", | ||
"dedicatedCapacityName": "azsdktest", | ||
"api-version": "2021-01-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"description": "OK." | ||
}, | ||
"202": { | ||
"headers": {}, | ||
"description": "Accepted." | ||
}, | ||
"204": { | ||
"headers": {} | ||
} | ||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
...urce-manager/Microsoft.PowerBIdedicated/stable/2021-01-01/examples/getAutoScaleVCore.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": "613192d7-503f-477a-9cfe-4efc3ee2bd60", | ||
"resourceGroupName": "TestRG", | ||
"vcoreName": "testvcore", | ||
"api-version": "2021-01-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"id": "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.PowerBIDedicated/autoScaleVCores/testvcore", | ||
"name": "testvcore", | ||
"location": "West US", | ||
"type": "Microsoft.PowerBIDedicated/autoScaleVCores", | ||
"sku": { | ||
"name": "AutoScale", | ||
"tier": "AutoScale", | ||
"capacity": 0 | ||
}, | ||
"properties": { | ||
"capacityObjectId": "a28f00bd-5330-4572-88f1-fa883e074785", | ||
"capacityLimit": 10, | ||
"provisioningState": "Succeeded" | ||
}, | ||
"tags": {}, | ||
"systemData": { | ||
"createdBy": "app1", | ||
"createdByType": "Application", | ||
"createdAt": "2021-01-01T00:00:19.1234567Z", | ||
"lastModifiedBy": "app1", | ||
"lastModifiedByType": "Application", | ||
"lastModifiedAt": "2021-01-01T00:00:19.1234567Z" | ||
} | ||
} | ||
} | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
...d/resource-manager/Microsoft.PowerBIdedicated/stable/2021-01-01/examples/getCapacity.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,40 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "613192d7-503f-477a-9cfe-4efc3ee2bd60", | ||
"resourceGroupName": "TestRG", | ||
"dedicatedCapacityName": "azsdktest", | ||
"api-version": "2021-01-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"id": "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.PowerBIDedicated/capacities/azsdktest", | ||
"location": "West US", | ||
"name": "azsdktest", | ||
"properties": { | ||
"administration": { | ||
"members": [ | ||
"azsdktest@microsoft.com" | ||
] | ||
}, | ||
"provisioningState": "Provisioning", | ||
"state": "Provisioning" | ||
}, | ||
"sku": { | ||
"name": "A1", | ||
"tier": "PBIE_Azure" | ||
}, | ||
"tags": {}, | ||
"systemData": { | ||
"createdBy": "user1", | ||
"createdByType": "User", | ||
"createdAt": "2021-01-01T00:00:19.1234567Z", | ||
"lastModifiedBy": "user2", | ||
"lastModifiedByType": "User", | ||
"lastModifiedAt": "2021-01-01T00:00:19.1234567Z" | ||
} | ||
} | ||
} | ||
} | ||
} |
54 changes: 54 additions & 0 deletions
54
...osoft.PowerBIdedicated/stable/2021-01-01/examples/listAutoScaleVCoresInResourceGroup.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,54 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "613192d7-503f-477a-9cfe-4efc3ee2bd60", | ||
"resourceGroupName": "TestRG", | ||
"api-version": "2021-01-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.PowerBIDedicated/autoScaleVCores/testvcore1", | ||
"name": "testvcore1", | ||
"location": "West US", | ||
"type": "Microsoft.PowerBIDedicated/autoScaleVCores", | ||
"sku": { | ||
"name": "AutoScale", | ||
"tier": "AutoScale", | ||
"capacity": 5 | ||
}, | ||
"properties": { | ||
"capacityObjectId": "a28f00bd-5330-4572-88f1-fa883e074785", | ||
"capacityLimit": 10, | ||
"provisioningState": "Succeeded" | ||
}, | ||
"tags": { | ||
"testKey": "testValue" | ||
} | ||
}, | ||
{ | ||
"id": "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.PowerBIDedicated/autoScaleVCores/testvcore2", | ||
"name": "testvcore2", | ||
"location": "West US", | ||
"type": "Microsoft.PowerBIDedicated/autoScaleVCores", | ||
"sku": { | ||
"name": "AutoScale", | ||
"tier": "AutoScale", | ||
"capacity": 0 | ||
}, | ||
"properties": { | ||
"capacityObjectId": "f59f226b-a313-4266-8768-a45961c2edbb", | ||
"capacityLimit": 10, | ||
"provisioningState": "Succeeded" | ||
}, | ||
"tags": { | ||
"testKey": "testValue" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.