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
* Specify what key-values to include in the configuration provider. include multiple sets of key-values
13
-
*
14
-
* @property keyFilter:
15
-
* The key filter to apply when querying Azure App Configuration for key-values.
16
-
* An asterisk `*` can be added to the end to return all key-values whose key begins with the key filter.
17
-
* e.g. key filter `abc*` returns all key-values whose key starts with `abc`.
18
-
* A comma `,` can be used to select multiple key-values. Comma separated filters must exactly match a key to select it.
19
-
* Using asterisk to select key-values that begin with a key filter while simultaneously using comma separated key filters is not supported.
20
-
* E.g. the key filter `abc*,def` is not supported. The key filters `abc*` and `abc,def` are supported.
21
-
* For all other cases the characters: asterisk `*`, comma `,`, and backslash `\` are reserved. Reserved characters must be escaped using a backslash (\).
22
-
* e.g. the key filter `a\\b\,\*c*` returns all key-values whose key starts with `a\b,*c`.
23
-
*
24
-
* @property labelFilter:
25
-
* The label filter to apply when querying Azure App Configuration for key-values.
26
-
* By default, the "null label" will be used, matching key-values without a label.
27
-
* The characters asterisk `*` and comma `,` are not supported.
28
-
* Backslash `\` character is reserved and must be escaped using another backslash `\`.
13
+
* Specify what key-values to include in the configuration provider.
14
+
* If no selectors are specified then all key-values with no label will be included.
* SettingSelector is used to select key-values from Azure App Configuration.
6
+
* It is used to filter key-values based on keys and labels.
7
+
*
8
+
* @property keyFilter:
9
+
* The key filter to apply when querying Azure App Configuration for key-values.
10
+
* An asterisk `*` can be added to the end to return all key-values whose key begins with the key filter.
11
+
* e.g. key filter `abc*` returns all key-values whose key starts with `abc`.
12
+
* A comma `,` can be used to select multiple key-values. Comma separated filters must exactly match a key to select it.
13
+
* Using asterisk to select key-values that begin with a key filter while simultaneously using comma separated key filters is not supported.
14
+
* E.g. the key filter `abc*,def` is not supported. The key filters `abc*` and `abc,def` are supported.
15
+
* For all other cases the characters: asterisk `*`, comma `,`, and backslash `\` are reserved. Reserved characters must be escaped using a backslash (\).
16
+
* e.g. the key filter `a\\b\,\*c*` returns all key-values whose key starts with `a\b,*c`.
17
+
*
18
+
* @property labelFilter:
19
+
* The label filter to apply when querying Azure App Configuration for key-values.
20
+
* By default, the "null label" will be used, matching key-values without a label.
21
+
* The characters asterisk `*` and comma `,` are not supported.
22
+
* Backslash `\` character is reserved and must be escaped using another backslash `\`.
0 commit comments