Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
PR fixes
  • Loading branch information
laurent-mic committed Oct 10, 2021
commit 1ef0199d5aaf9779c74d54f9a201678f5578268c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"azsdktest2@microsoft.com"
]
},
"mode": "Gen2"
"mode": "Gen2",
"provisioningState": "Provisioning",
"state": "Provisioning"
},
Expand All @@ -57,7 +57,7 @@
"azsdktest2@microsoft.com"
]
},
"mode": "Gen2"
"mode": "Gen2",
"provisioningState": "Provisioning",
"state": "Provisioning"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,9 @@
"x-ms-examples": {
"Update capacity parameters": {
"$ref": "./examples/updateCapacity.json"
},
"Update capacity to Generation 2": {
"$ref": "./examples/updateToGen2.json"
}
},
"tags": [
Expand Down Expand Up @@ -845,9 +848,16 @@
"description": "A collection of Dedicated capacity administrators"
},
"mode": {
"description": "Indicates the Power BI Embedded capacity generation. 'Gen1' for the legacy generation and 'Gen2' for the latest generation of Power BI Embedded. If no value is specified, the default is Gen2. [Learn More](https://docs.microsoft.com/power-bi/developer/embedded/power-bi-embedded-generation-2)",
"description": "Specifies the generation of the Power BI Embedded capacity. If no value is specified, the default value 'Gen2' is used. [Learn More](https://docs.microsoft.com/power-bi/developer/embedded/power-bi-embedded-generation-2)",
"type": "string",
"readOnly": true
"enum": [
"Gen1",
"Gen2"
],
"x-ms-enum": {
"name": "Mode",
"modelAsString": true
}
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,9 @@
"x-ms-examples": {
"Update capacity parameters": {
"$ref": "./examples/updateCapacity.json"
},
"Update capacity to Generation 2": {
"$ref": "./examples/updateToGen2.json"
}
},
"tags": [
Expand Down Expand Up @@ -857,7 +860,7 @@
"description": "A collection of Dedicated capacity administrators"
},
"mode": {
"description": "Indicates the Power BI Embedded capacity generation. 'Gen1' for the legacy generation and 'Gen2' for the latest generation of Power BI Embedded. If no value is specified, the default is Gen2. [Learn More](https://docs.microsoft.com/power-bi/developer/embedded/power-bi-embedded-generation-2)",
"description": "Specifies the generation of the Power BI Embedded capacity. If no value is specified, the default value 'Gen2' is used. [Learn More](https://docs.microsoft.com/power-bi/developer/embedded/power-bi-embedded-generation-2)",
"type": "string",
"enum": [
"Gen1",
Expand Down