Skip to content

Commit a00aab6

Browse files
authored
Merge pull request #125851 from changeworld/patch-46
Fix typo
2 parents df2f847 + f7e624a commit a00aab6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/azure-app-configuration/howto-import-export-data.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Import brings configuration data into an App Configuration store from an existin
2222

2323
This guide shows how to import App Configuration data:
2424

25-
- [from a configuration file in Json, Yaml or Properties](#import-data-from-a-configuration-file)
25+
- [from a configuration file in JSON, YAML or Properties](#import-data-from-a-configuration-file)
2626
- [from an App Configuration store](#import-data-from-an-app-configuration-store)
2727
- [from Azure App Service](#import-data-from-azure-app-service)
2828

@@ -44,7 +44,7 @@ From the Azure portal, follow these steps:
4444

4545
| Parameter | Description | Example |
4646
|--------------|-----------------------------------------------------------------------------------------|----------|
47-
| File type | Select the file type for import: YAML, Properties, or JSON. | *Json* |
47+
| File type | Select the file type for import: YAML, Properties, or JSON. | *JSON* |
4848

4949
1. Click the **Browse** button, and select the file to import.
5050

@@ -53,7 +53,7 @@ From the Azure portal, follow these steps:
5353

5454
| Parameter | Description | Example |
5555
|--------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------|
56-
| File content profile | Select a content profile: Default or KVSet. The *Default* file content profile refers to the conventional configuration file schema widely adopted by existing programming frameworks or systems, supports JSON, Yaml, or Properties file formats. The *KVSet* file content profile refers to a file schema that contains all properties of an App Configuration key-value, including key, value, label, content type, and tags. | *Default* |
56+
| File content profile | Select a content profile: Default or KVSet. The *Default* file content profile refers to the conventional configuration file schema widely adopted by existing programming frameworks or systems, supports JSON, YAML, or Properties file formats. The *KVSet* file content profile refers to a file schema that contains all properties of an App Configuration key-value, including key, value, label, content type, and tags. | *Default* |
5757
| Import mode | The import mode is used to determine whether to ignore identical key-values. With the *Ignore match* option, any key-values in the store that are the same as those in the configuration file are ignored. With the *All* option, all key-values in the configuration file are updated. | *Ignore match* |
5858
| Exclude feature flag | If checked, feature flags will not be imported. | *Unchecked* |
5959
| Strict | If the box is checked, any key-values in the store with the specified prefix and label that are not included in the configuration file are deleted when the File content profile is set to Default. When the File content profile is set to KVSet, any key-values in the store that are not included in the configuration file are deleted. If the box is unchecked, no key-values in the store will be deleted. | *Unchecked* |
@@ -85,7 +85,7 @@ From the Azure CLI, follow the steps below. If you don't have the Azure CLI inst
8585

8686
| Parameter | Description | Example |
8787
|------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
88-
| `--separator` | Optional. The separator is the delimiter for flattening the key-values to Json/Yaml. It's required for exporting hierarchical structure and will be ignored for property files and feature flags. Select one of the following options: `.`, `,`, `:`, `;`, `/`, `-`, `_`, ``. | `;` |
88+
| `--separator` | Optional. The separator is the delimiter for flattening the key-values to JSON/YAML. It's required for exporting hierarchical structure and will be ignored for property files and feature flags. Select one of the following options: `.`, `,`, `:`, `;`, `/`, `-`, `_`, ``. | `;` |
8989
| `--prefix` | Optional. A key prefix is the beginning part of a key. Prefixes can be used to manage groups of key-values in a configuration store. This prefix will be appended to the front of the "key" property of each imported key-value. | `TestApp:` |
9090
| `--label` | Optional. Enter a label that will be assigned to your imported key-values. | `prod` |
9191
| `--content-type` | Optional. Enter `appconfig/kvset` or `application/json` to state that the imported content consists of a Key Vault reference or a JSON file. | `application/json` |
@@ -265,7 +265,7 @@ Export writes configuration data stored in App Configuration to another destinat
265265
266266
This guide shows how to export App Configuration data:
267267
268-
- [to a configuration file in Json, Yaml or Properties](#export-data-to-a-configuration-file)
268+
- [to a configuration file in JSON, YAML or Properties](#export-data-to-a-configuration-file)
269269
- [to an App Configuration store](#export-data-to-an-app-configuration-store)
270270
- [to an Azure App Service resource](#export-data-to-azure-app-service)
271271
@@ -289,7 +289,7 @@ From the [Azure portal](https://portal.azure.com), follow these steps:
289289
| Parameter | Description | Example |
290290
|--------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------|
291291
| File type | Select the file type for export: YAML, Properties, or JSON. | *JSON* |
292-
| File content profile | Select a content profile: Default or KVSet. The *Default* file content profile refers to the conventional configuration file schema widely adopted by existing programming frameworks or systems, supports JSON, Yaml, or Properties file formats. The *KVSet* file content profile refers to a file schema that contains all properties of an App Configuration key-value, including key, value, label, content type, and tags. | *Default* |
292+
| File content profile | Select a content profile: Default or KVSet. The *Default* file content profile refers to the conventional configuration file schema widely adopted by existing programming frameworks or systems, supports JSON, YAML, or Properties file formats. The *KVSet* file content profile refers to a file schema that contains all properties of an App Configuration key-value, including key, value, label, content type, and tags. | *Default* |
293293
| Selection mode | Select whether to export from regular key-values, which is the default option, or from a snapshot. | *Default* |
294294
| Key filter | Used to filter key-values based on the key name for export. If no keys are specified, all keys are eligible. | Starts with *TestApp:* |
295295
| At a specific time | Optional. Fill out this field to export key-values from a specific point in time in the selected configuration store. If left empty, it defaults to the current point in time of the key-values. | *07/28/2022 12:00:00 AM* |
@@ -323,7 +323,7 @@ From the Azure CLI, follow the steps below. If you don't have the Azure CLI inst
323323
324324
| Parameter | Description | Example |
325325
|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------|
326-
| `--separator` | Optional. The separator is the delimiter for flattening the key-values to Json/Yaml. It's required for exporting hierarchical structure and will be ignored for property files and feature flags. Select one of the following options: `.`, `,`, `:`, `;`, `/`, `-`, `_`, `—`. | `;` |
326+
| `--separator` | Optional. The separator is the delimiter for flattening the key-values to JSON/YAML. It's required for exporting hierarchical structure and will be ignored for property files and feature flags. Select one of the following options: `.`, `,`, `:`, `;`, `/`, `-`, `_`, `—`. | `;` |
327327
| `--prefix` | Optional. Prefix to be trimmed from each key-value's "key" property. A key prefix is the beginning part of a key. Prefixes can be used to manage groups of key-values in a configuration store. Prefix will be ignored for feature flags. | `TestApp:` |
328328
329329
Example: export all key-values and feature flags with label "prod" to a JSON file.

0 commit comments

Comments
 (0)