Skip to content

Commit

Permalink
Adding SubscriptionId and ResourceGroup for Azure Datastore (#25289)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunyuMSFT authored Aug 23, 2023
1 parent 74483be commit c9dfd1b
Showing 1 changed file with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9390,6 +9390,9 @@
"description": "Azure Blob datastore configuration.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/AzureDatastore"
},
{
"$ref": "#/definitions/Datastore"
}
Expand Down Expand Up @@ -9453,6 +9456,9 @@
],
"type": "object",
"allOf": [
{
"$ref": "#/definitions/AzureDatastore"
},
{
"$ref": "#/definitions/Datastore"
}
Expand Down Expand Up @@ -9489,6 +9495,9 @@
],
"type": "object",
"allOf": [
{
"$ref": "#/definitions/AzureDatastore"
},
{
"$ref": "#/definitions/Datastore"
}
Expand Down Expand Up @@ -9547,6 +9556,23 @@
"x-ms-discriminator-value": "AzureDataLakeGen2",
"additionalProperties": false
},
"AzureDatastore": {
"description": "Base definition for Azure datastore contents configuration.",
"type": "object",
"properties": {
"resourceGroup": {
"description": "Azure Resource Group name",
"type": "string",
"x-nullable": true
},
"subscriptionId": {
"description": "Azure Subscription Id",
"type": "string",
"x-nullable": true
}
},
"additionalProperties": false
},
"AzureFileDatastore": {
"description": "Azure File datastore configuration.",
"required": [
Expand All @@ -9555,6 +9581,9 @@
],
"type": "object",
"allOf": [
{
"$ref": "#/definitions/AzureDatastore"
},
{
"$ref": "#/definitions/Datastore"
}
Expand Down

0 comments on commit c9dfd1b

Please sign in to comment.