Skip to content

Commit b9b2554

Browse files
committed
Resolve comments
1 parent 0ebc073 commit b9b2554

File tree

7 files changed

+27
-22
lines changed

7 files changed

+27
-22
lines changed

articles/azure-app-configuration/rest-api-key-value.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: malev
66
ms.service: azure-app-configuration
77
ms.topic: reference
88
ms.date: 08/02/2024
9-
zone_pivot_groups: data-plane-api-version
9+
zone_pivot_groups: appconfig-data-plane-api-version
1010

1111
---
1212
:::zone target="docs" pivot="v1,v23-10,v23-11"
@@ -259,7 +259,7 @@ GET /kv?key={key}&label={label}&tags={tagFilter1}&tags={tagFilter2}&api-version=
259259
|Label filter|Effect|
260260
|--|--|
261261
|`label` is omitted or `label=*`|Matches **any** label|
262-
|`label=%00`|Matches KV without label|
262+
|`label=%00`|Matches key-values with no label|
263263
|`label=prod`|Matches the label **prod**|
264264
|`label=prod*`|Matches labels that start with **prod**|
265265
|`label=prod,test`|Matches labels **prod** or **test** (limited to 5 CSV)|
@@ -270,10 +270,10 @@ GET /kv?key={key}&label={label}&tags={tagFilter1}&tags={tagFilter2}&api-version=
270270
|Tags filter|Effect|
271271
|--|--|
272272
|`tags` is omitted or `tags=` |Matches **any** tag|
273-
|`tags=group=app1`|Matches KV where the tag name is `group` and tag value is `app1`|
274-
|`tags=group=app1&tags=env=prod`|Matches KV that have a tag named `group` with value `app1` and a tag named `env` with value `prod`(limited to 5 tag filters)|
275-
|`tags=tag1=%00`|Matches KV where the tag name is `tag1` and tag value is `null`|
276-
|`tags=tag1=`|Matches KV where the tag name is `tag1` and tag value is empty|
273+
|`tags=group=app1`|Matches key-values that have a tag named `group` with value `app1`|
274+
|`tags=group=app1&tags=env=prod`|Matches key-values that have a tag named `group` with value `app1` and a tag named `env` with value `prod`(limited to 5 tag filters)|
275+
|`tags=tag1=%00`|Matches key-values that have a tag named `tag1` with value `null`|
276+
|`tags=tag1=`|Matches key-values that have a tag named `tag1` empty value|
277277

278278
:::zone-end
279279
:::zone target="docs" pivot="v1,v23-10,v23-11"

articles/azure-app-configuration/rest-api-keys.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: malev
66
ms.service: azure-app-configuration
77
ms.topic: reference
88
ms.date: 08/02/2024
9-
zone_pivot_groups: data-plane-api-version
9+
zone_pivot_groups: appconfig-data-plane-api-version
1010

1111
---
1212
:::zone target="docs" pivot="v1,v23-10,v23-11"

articles/azure-app-configuration/rest-api-labels.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: malev
66
ms.service: azure-app-configuration
77
ms.topic: reference
88
ms.date: 08/02/2024
9-
zone_pivot_groups: data-plane-api-version
9+
zone_pivot_groups: appconfig-data-plane-api-version
1010

1111
---
1212
:::zone target="docs" pivot="v1,v23-10,v23-11"

articles/azure-app-configuration/rest-api-locks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: malev
66
ms.service: azure-app-configuration
77
ms.topic: reference
88
ms.date: 08/02/2024
9-
zone_pivot_groups: data-plane-api-version
9+
zone_pivot_groups: appconfig-data-plane-api-version
1010

1111
---
1212
:::zone target="docs" pivot="v1,v23-10,v23-11"

articles/azure-app-configuration/rest-api-revisions.md

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: malev
66
ms.service: azure-app-configuration
77
ms.topic: reference
88
ms.date: 08/02/2024
9-
zone_pivot_groups: data-plane-api-version
9+
zone_pivot_groups: appconfig-data-plane-api-version
1010

1111
---
1212
:::zone target="docs" pivot="v1,v23-10,v23-11"
@@ -100,13 +100,22 @@ Content-Range: items 0-2/80
100100

101101
## Filtering
102102

103+
:::zone-end
104+
:::zone target="docs" pivot="v1,v23-10"
105+
103106
A combination of `key` and `label` filtering is supported.
104107
Use the optional `key` and `label` query string parameters.
105108

109+
```http
110+
GET /revisions?key={key}&label={label}&api-version={api-version}
111+
```
112+
106113
:::zone-end
107114
:::zone target="docs" pivot="v23-11"
108115

109-
For API Versions greater than `2023-11-01`, filtering by`tags` is also supported. Multiple tag filters can be provided as query string parameters in the `tagName=tagValue` format. Tag filters must be an exact match.
116+
A combination of `key`, `label` and `tags` filtering is supported.
117+
Use the optional `key`, `label` and `tags` query string parameters.
118+
Multiple tag filters can be provided as query string parameters in the `tagName=tagValue` format. Tag filters must be an exact match.
110119

111120
```http
112121
GET /revisions?key={key}&label={label}&tags={tagFilter1}&tags={tagFilter2}&api-version={api-version}
@@ -115,10 +124,6 @@ GET /revisions?key={key}&label={label}&tags={tagFilter1}&tags={tagFilter2}&api-v
115124
:::zone-end
116125
:::zone target="docs" pivot="v1,v23-10,v23-11"
117126

118-
```http
119-
GET /revisions?key={key}&label={label}&api-version={api-version}
120-
```
121-
122127
### Supported filters
123128

124129
|Key filter|Effect|
@@ -132,7 +137,7 @@ GET /revisions?key={key}&label={label}&api-version={api-version}
132137

133138
|Label filter|Effect|
134139
|--|--|
135-
|`label` is omitted or `label=`|Matches entry without label|
140+
|`label` is omitted or `label=`|Matches key-values with no label|
136141
|`label=*`|Matches **any** label|
137142
|`label=prod`|Matches the label **prod**|
138143
|`label=prod*`|Matches labels that start with **prod**|
@@ -146,10 +151,10 @@ GET /revisions?key={key}&label={label}&api-version={api-version}
146151
|Tags filter|Effect|
147152
|--|--|
148153
|`tags` is omitted or `tags=` |Matches **any** tag|
149-
|`tags=group=app1`|Matches KV where the tag name is `group` and tag value is `app1`|
150-
|`tags=group=app1&tags=env=prod`|Matches KV which contain at least 2 tags, where the tag names are `group` and `env` and tag values are `app1` and `prod` respectively (limited to 5 tag filters)|
151-
|`tags=tag1=%00`|Matches KV where the tag name is `tag1` and tag value is `null`|
152-
|`tags=tag1=`|Matches KV where the tag name is `tag1` and tag value is empty|
154+
|`tags=group=app1`|Matches key-values that have a tag named `group` with value `app1`|
155+
|`tags=group=app1&tags=env=prod`|Matches key-values that have a tag named `group` with value `app1` and a tag named `env` with value `prod`(limited to 5 tag filters)|
156+
|`tags=tag1=%00`|Matches key-values that have a tag named `tag1` with value `null`|
157+
|`tags=tag1=`|Matches key-values that have a tag named `tag1` empty value|
153158

154159
:::zone-end
155160
:::zone target="docs" pivot="v1,v23-10,v23-11"

articles/azure-app-configuration/rest-api-snapshot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: jimmyca
66
ms.service: azure-app-configuration
77
ms.topic: reference
88
ms.date: 08/02/2024
9-
zone_pivot_groups: data-plane-api-version
9+
zone_pivot_groups: appconfig-data-plane-api-version
1010

1111
---
1212
:::zone target="docs" pivot="v1,v23-10,v23-11"

articles/zone-pivot-groups.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2915,7 +2915,7 @@ groups:
29152915
- id: preview-version
29162916
title: Preview release
29172917
# Owner: avanigupta
2918-
- id: data-plane-api-version
2918+
- id: appconfig-data-plane-api-version
29192919
title: API version pivots
29202920
prompt: Choose an API version
29212921
pivots:

0 commit comments

Comments
 (0)