Skip to content

Commit d902235

Browse files
authored
Merge pull request #256158 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents bd10d62 + 20759ed commit d902235

File tree

6 files changed

+101
-15
lines changed

6 files changed

+101
-15
lines changed

articles/event-grid/includes/schema-app-configuration.md

Lines changed: 89 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ Event Grid uses [event subscriptions](../concepts.md#event-subscriptions) to rou
1818
| ---------- | ----------- |
1919
| Microsoft.AppConfiguration.KeyValueModified | Raised when a key-value is created or replaced. |
2020
| Microsoft.AppConfiguration.KeyValueDeleted | Raised when a key-value is deleted. |
21+
| Microsoft.AppConfiguration.SnapshotCreated | Raised when a snapshot is created. |
22+
| Microsoft.AppConfiguration.SnapshotModified | Raised when a snapshot is modified. |
2123

2224
## Event schema
2325

@@ -54,11 +56,22 @@ An event has the following top-level data:
5456

5557
The data object has the following properties:
5658

59+
### Key-value event
60+
5761
| Property | Type | Description |
5862
| -------- | ---- | ----------- |
5963
| `key` | string | The key of the key-value that was modified or deleted. |
6064
| `label` | string | The label, if any, of the key-value that was modified or deleted. |
6165
| `etag` | string | For `KeyValueModified` the etag of the new key-value. For `KeyValueDeleted` the etag of the key-value that was deleted. |
66+
| `syncToken` | string | The sync token representing the server state after the key-value event. |
67+
68+
### Snapshot event
69+
70+
| Property | Type | Description |
71+
| -------- | ---- | ----------- |
72+
| `name` | string | The name of the snapshot that was created or modified. |
73+
| `etag` | string | For `SnapshotCreated` the etag of the new snapshot. For `SnapshotModified` the etag of the snapshot that was modified. |
74+
| `syncToken` | string | The sync token representing the server state after the snapshot event. |
6275

6376
## Example event
6477

@@ -82,7 +95,7 @@ The following example shows the schema of a key-value modified event:
8295
}]
8396
```
8497

85-
The schema for a key-value deleted event is similar:
98+
The following example shows the schema of a key-value deleted event:
8699

87100
```json
88101
[{
@@ -100,6 +113,45 @@ The schema for a key-value deleted event is similar:
100113
"metadataVersion": "1"
101114
}]
102115
```
116+
117+
The following example shows the schema of a snapshot created event:
118+
119+
```json
120+
[{
121+
"id": "84e17ea4-66db-4b54-8050-df8f7763f87b",
122+
"topic": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/microsoft.appconfiguration/configurationstores/contoso",
123+
"subject": "https://contoso.azconfig.io/snapshots/Foo",
124+
"data": {
125+
"Name": "Foo",
126+
"etag": "FnUExLaj2moIi4tJX9AXn9sakm0",
127+
"syncToken": "zAJw6V16=Njo1IzUxNjQ2NzM=;sn=5164673"
128+
},
129+
"eventType": "Microsoft.AppConfiguration.SnapshotCreated",
130+
"eventTime": "2023-09-02T20:05:03Z",
131+
"dataVersion": "1",
132+
"metadataVersion": "1"
133+
}]
134+
```
135+
136+
The following example shows the schema of a snapshot modified event:
137+
138+
```json
139+
[{
140+
"id": "84e17ea4-66db-4b54-8050-df8f7763f87b",
141+
"topic": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/microsoft.appconfiguration/configurationstores/contoso",
142+
"subject": "https://contoso.azconfig.io/snapshots/Foo",
143+
"data": {
144+
"name": "Foo",
145+
"label": "FizzBuzz",
146+
"etag": "FnUExLaj2moIi4tJX9AXn9sakm0",
147+
"syncToken": "zAJw6V16=Njo1IzUxNjQ2NzM=;sn=5164673"
148+
},
149+
"eventType": "Microsoft.AppConfiguration.SnapshotModified",
150+
"eventTime": "2023-09-03T20:05:03Z",
151+
"dataVersion": "1",
152+
"metadataVersion": "1"
153+
}]
154+
```
103155
# [Cloud event schema](#tab/cloud-event-schema)
104156

105157
The following example shows the schema of a key-value modified event:
@@ -120,7 +172,7 @@ The following example shows the schema of a key-value modified event:
120172
}]
121173
```
122174

123-
The schema for a key-value deleted event is similar:
175+
The following example shows the schema of a key-value deleted event:
124176

125177
```json
126178
[{
@@ -138,6 +190,41 @@ The schema for a key-value deleted event is similar:
138190
}]
139191
```
140192

193+
The following example shows the schema of a snapshot created event:
194+
195+
```json
196+
[{
197+
"source": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/microsoft.appconfiguration/configurationstores/contoso",
198+
"subject": "https://contoso.azconfig.io/kvsnapshots/Foo",
199+
"type": "Microsoft.AppConfiguration.SnapshotCreated",
200+
"time": "2023-09-02T20:05:03.0000000Z",
201+
"id": "84e17ea4-66db-4b54-8050-df8f7763f87b",
202+
"data": {
203+
"name": "Foo",
204+
"etag": "FnUExLaj2moIi4tJX9AXn9sakm0",
205+
"syncToken": "zAJw6V16=Njo1IzUxNjQ2NzM=;sn=5164673"
206+
},
207+
"specversion": "1.0"
208+
}]
209+
```
210+
211+
The following example shows the schema of a snapshot modified event:
212+
213+
```json
214+
[{
215+
"source": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/microsoft.appconfiguration/configurationstores/contoso",
216+
"subject": "https://contoso.azconfig.io/snapshots/Foo",
217+
"type": "Microsoft.AppConfiguration.SnapshotModified",
218+
"time": "2023-09-03T20:05:03.0000000Z",
219+
"id": "84e17ea4-66db-4b54-8050-df8f7763f87b",
220+
"data": {
221+
"name": "Foo",
222+
"etag": "FnUExLaj2moIi4tJX9AXn9sakm0",
223+
"syncToken": "zAJw6V16=Njo1IzUxNjQ2NzM=;sn=5164673"
224+
},
225+
"specversion": "1.0"
226+
}]
227+
```
141228
---
142229

143230

articles/event-grid/mqtt-routing-filtering.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ If you send a non-JSON payload that is still UFT-8, it will be serialized as a J
5959
You can use the following filter to filter all the messages that include the word “Contoso”:
6060
```azurecli-interactive
6161
"advancedFilters": [{
62-
"operatorType": "`StringContains` ",
62+
"operatorType": "StringContains",
6363
"key": "data",
64-
"value": Contoso
64+
"value": "Contoso"
6565
}]
6666
```
6767

@@ -82,9 +82,9 @@ You can use the following filter to filter all the messages coming from your cli
8282

8383
```azurecli-interactive
8484
"advancedFilters": [{"
85-
operatorType": "`StringContains` ",
86-
"key": "`clienttype`",
87-
"value": sensor
85+
operatorType": "StringContains",
86+
"key": "clienttype",
87+
"value": "sensor"
8888
}]
8989
```
9090

articles/hdinsight/selective-logging-analysis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ For instructions on how to create an HDInsight cluster, see [Get started with Az
4141

4242
## Enable or disable logs by using a script action for multiple tables and log types
4343

44-
1. Go to **Script actions** in your cluster and select **Submit now** to start the process of creating a script action.
44+
1. Go to **Script actions** in your cluster and select **Submit new** to start the process of creating a script action.
4545

4646
:::image type="content" source="./media/hdinsight-hadoop-oms-selective-log-analytics-tutorial/select-submit-script-action.png" alt-text="Screenshot that shows the button for starting the process of creating a script action.":::
4747

articles/load-balancer/load-balancer-outbound-connections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ A public IP assigned to a VM is a 1:1 relationship (rather than 1: many) and imp
8585
In Azure, virtual machines created in a virtual network without explicit outbound connectivity defined are assigned a default outbound public IP address. This IP address enables outbound connectivity from the resources to the Internet. This access is referred to as [default outbound access](../virtual-network/ip-services/default-outbound-access.md). This method of access is **not recommended** as it is insecure and the IP addresses are subject to change.
8686

8787
>[!Important]
88-
>On September 30, 2025, default outbound access for new deployments will be retired. For more information, see the [official announcement](https://azure.microsoft.com/updates/upgrade-to-standard-sku-public-ip-addresses-in-azure-by-30-september-2025-basic-sku-will-be-retired/). It is reccomended to use one the explict forms of connectivity as shown in options 1-3 above.
88+
>On September 30, 2025, default outbound access for new deployments will be retired. For more information, see the [official announcement](https://azure.microsoft.com/updates/upgrade-to-standard-sku-public-ip-addresses-in-azure-by-30-september-2025-basic-sku-will-be-retired/). It is recommended to use one the explict forms of connectivity as shown in options 1-3 above.
8989
9090
### What are SNAT ports?
9191

articles/machine-learning/how-to-authenticate-batch-endpoint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ In this case, we want to execute a batch endpoint using a service principal alre
131131
132132
# [Azure CLI](#tab/cli)
133133
134-
1. Create a secret to use for authentication as explained at [Option 32: Create a new client secret](../active-directory/develop/howto-create-service-principal-portal.md#option-3-create-a-new-client-secret).
134+
1. Create a secret to use for authentication as explained at [Option 3: Create a new client secret](../active-directory/develop/howto-create-service-principal-portal.md#option-3-create-a-new-client-secret).
135135
1. To authenticate using a service principal, use the following command. For more details see [Sign in with Azure CLI](/cli/azure/authenticate-azure-cli).
136136
137137
```azurecli

articles/machine-learning/how-to-mltable.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ You can choose to save the MLTable yaml file to a cloud storage, or you can also
209209
```python
210210
# save the data loading steps in an MLTable file to a cloud storage
211211
# NOTE: the tbl object was defined in the previous snippet.
212-
tbl.save(save_path_dirc= "azureml://subscriptions/<subid>/resourcegroups/<rgname>/workspaces/<wsname>/datastores/<name>/paths/titanic", collocated=True, show_progress=True, allow_copy_errors=False, overwrite=True)
212+
tbl.save(path="azureml://subscriptions/<subid>/resourcegroups/<rgname>/workspaces/<wsname>/datastores/<name>/paths/titanic", colocated=True, show_progress=True, overwrite=True)
213213
```
214214

215215
```python
@@ -219,10 +219,9 @@ tbl.save("./titanic")
219219
```
220220

221221
> [!IMPORTANT]
222-
> - If collocated == True, then we will copy the data to the same folder with MLTable yaml file if they are not currently collocated, and we will use relative paths in MLTable yaml.
223-
> - If collocated == False, we will not move the data and we will use absolute paths for cloud data and use relative paths for local data.
224-
> - We don’t support this parameter combination: data is in local, collocated == False, `save_path_dirc` is a cloud directory. Please upload your local data to cloud and use the cloud data paths for MLTable instead.
225-
> - Parameters `show_progress` (default as True), `allow_copy_errors` (default as False), `overwrite`(default as True) are optional.
222+
> - If colocated == True, then we will copy the data to the same folder with MLTable yaml file if they are not currently colocated, and we will use relative paths in MLTable yaml.
223+
> - If colocated == False, we will not move the data and we will use absolute paths for cloud data and use relative paths for local data.
224+
> - We don’t support this parameter combination: data is in local, colocated == False, `path` targets a cloud directory. Please upload your local data to cloud and use the cloud data paths for MLTable instead.
226225
>
227226
228227

0 commit comments

Comments
 (0)