Initializes a new instance of the AppConfigurationClient class.
Connection string needed for a client to connect to Azure.
Add a setting into the Azure App Configuration service, failing if it already exists.
Example usage:
const result = await client.addConfigurationSetting({ key: "MyKey", label: "MyLabel", value: "MyValue" });
A configuration setting.
Optional parameters for the request.
Makes the key's value writable again
The id of the configuration setting to make writable.
Delete a setting from the Azure App Configuration service
Example usage:
const deletedSetting = await client.deleteConfigurationSetting({ key: "MyKey", label: "MyLabel" });
The id of the configuration setting to delete.
Optional parameters for the request (ex: etag, label)
Gets a setting from the Azure App Configuration service.
Example code:
const setting = await client.getConfigurationSetting({ key: "MyKey", label: "MyLabel" });
The id of the configuration setting to get.
Optional parameters for the request.
Lists settings from the Azure App Configuration service, optionally filtered by key names, labels and accept datetime.
Example code:
const allSettingsWithLabel = await client.listConfigurationSettings({ labels: [ "MyLabel" ] });
Optional parameters for the request.
Lists revisions of a set of keys, optionally filtered by key names, labels and accept datetime.
Example code:
const revisionsIterator = await client.listRevisions({ keys: ["MyKey"] });
Optional parameters for the request.
Sets the value of a key in the Azure App Configuration service, allowing for an optional etag.
A configuration value.
Optional parameters for the request.
Example code:
await client.setConfigurationSetting({ key: "MyKey", value: "MyValue" });
Sets a key's value to read only
The id of the configuration setting to set to read-only.
Generated using TypeDoc
Client for the Azure App Configuration service.