You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/types.ts
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,16 @@ export type SettingSelector = {
30
30
*/
31
31
labelFilter?: string
32
32
33
+
/**
34
+
* The tag filter to apply when querying Azure App Configuration for key-values.
35
+
*
36
+
* @remarks
37
+
* Each tag filter must follow the format "tagName=tagValue". Only those key-values will be loaded whose tags match all the tags provided here.
38
+
* Built in tag filter value is `TagFilter.Null`, which indicates the tag has no value. For example, `tagName=${TagFilter.Null}` will match all key-values with the tag "tagName" that has no value.
39
+
* Up to 5 tag filters can be provided. If no tag filters are provided, key-values will not be filtered based on tags.
40
+
*/
41
+
tagFilters?: string[]
42
+
33
43
/**
34
44
* The name of snapshot to load from App Configuration.
35
45
*
@@ -59,3 +69,13 @@ export enum LabelFilter {
59
69
*/
60
70
Null="\0"
61
71
}
72
+
73
+
/**
74
+
* TagFilter is used to filter key-values based on tags.
0 commit comments