Skip to content

Commit

Permalink
RecommendationsService: add reportsConnectionString to account resour…
Browse files Browse the repository at this point in the history
…ce (#5070)

* add modelingReportsConnectionString to account resource for PUT and PATCH

* rename to reports instead f modelingReports
  • Loading branch information
aviaoh authored Nov 29, 2021
1 parent 27f5641 commit 0de0504
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"principalType": "User"
}
],
"provisioningState": "Creating"
"provisioningState": "Accepted"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
]
}
],
"reportsConnectionString": "https://storageAccount.blob.core.windows.net/container/root",
"provisioningState": "Succeeded"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
"principalType": "User"
}
],
"reportsConnectionString": "https://storageAccount.blob.core.windows.net/container/root",
"provisioningState": "Succeeded"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
"X-Custom-Header2"
]
}
]
],
"reportsConnectionString": "https://storageAccount.blob.core.windows.net/container/root"
}
}
},
Expand Down Expand Up @@ -81,6 +82,7 @@
]
}
],
"reportsConnectionString": "https://storageAccount.blob.core.windows.net/container/root",
"provisioningState": "Succeeded"
}
}
Expand Down Expand Up @@ -125,7 +127,8 @@
]
}
],
"provisioningState": "Updating"
"reportsConnectionString": "https://storageAccount.blob.core.windows.net/container/root",
"provisioningState": "Accepted"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"inputData": {
"connectionString": "https://storageAccount.blob.core.windows.net/container/root"
},
"provisioningState": "Creating"
"provisioningState": "Accepted"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"inputData": {
"connectionString": "https://storageAccount.blob.core.windows.net/container/root"
},
"provisioningState": "Updating"
"provisioningState": "Accepted"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"preAllocatedCapacity": 100,
"pairedLocation": "East US",
"url": "sampleAccount-s1.microsoft.com",
"provisioningState": "Creating"
"provisioningState": "Accepted"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"preAllocatedCapacity": 100,
"pairedLocation": "East US",
"url": "sampleAccount-s1.microsoft.com",
"provisioningState": "Updating"
"provisioningState": "Accepted"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1089,6 +1089,10 @@
"description": "The list of CORS details.",
"$ref": "#/definitions/CorsRuleList"
},
"reportsConnectionString": {
"description": "Connection string to write Accounts reports to.",
"type": "string"
},
"provisioningState": {
"description": "The resource provisioning state.",
"type": "string",
Expand Down Expand Up @@ -1138,6 +1142,10 @@
"cors": {
"description": "The list of CORS details.",
"$ref": "#/definitions/CorsRuleList"
},
"reportsConnectionString": {
"description": "Connection string to write Accounts reports to.",
"type": "string"
}
}
}
Expand Down

0 comments on commit 0de0504

Please sign in to comment.