Skip to content

Commit e12b9c1

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs#121382
Changes made in line no 255 & 265 From az rest --method PUT --uri "https://management.azure.com$accountId/sqlDatabases/$databaseName/containers/$materializedViewName?api-version=2022-11-15-preview" --body @definition.json --headers content-type=application/json To az rest --method PUT --uri "https://management.azure.com$accountId/sqlDatabases/$databaseName/containers/$materializedViewName?api-version=2022-11-15-preview" --body @definition.json --headers content-type=application/json From az rest --method GET --uri "https://management.azure.com$accountId/sqlDatabases/"; "$databaseName/containers/$materializedViewName?api-version=2022-11-15-preview" --headers content-type=application/json --query "{mvCreateStatus: properties.Status}" To az rest --method GET --uri "https://management.azure.com$accountId/sqlDatabases/$databaseName/containers/$materializedViewName?api-version=2022-11-15-preview" --headers content-type=application/json --query "{mvCreateStatus: properties.Status}"
1 parent d6de85d commit e12b9c1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/cosmos-db/nosql/materialized-views.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -252,8 +252,8 @@ After your account and the materialized view builder are set up, you should be a
252252
```azurecli
253253
az rest \
254254
--method PUT \
255-
--uri "https://management.azure.com$accountId/sqlDatabases/";\
256-
"$databaseName/containers/$materializedViewName?api-version=2022-11-15-preview" \
255+
--uri "https://management.azure.com$accountId/sqlDatabases/
256+
$databaseName/containers/$materializedViewName?api-version=2022-11-15-preview" \
257257
--body @definition.json \
258258
--headers content-type=application/json
259259
```
@@ -263,8 +263,8 @@ After your account and the materialized view builder are set up, you should be a
263263
```azurecli
264264
az rest \
265265
--method GET \
266-
--uri "https://management.azure.com$accountId/sqlDatabases/";\
267-
"$databaseName/containers/$materializedViewName?api-version=2022-11-15-preview" \
266+
--uri "https://management.azure.com$accountId/sqlDatabases/
267+
$databaseName/containers/$materializedViewName?api-version=2022-11-15-preview" \
268268
--headers content-type=application/json \
269269
--query "{mvCreateStatus: properties.Status}"
270270
```

0 commit comments

Comments
 (0)