Skip to main content

keys

Creates, updates, deletes, gets or lists a keys resource.

Overview

Namekeys
TypeResource
Idazure.app_configuration_dataplane.keys

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the key. Required.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_keysselectconfig_store_namename, After, Sync-Token, Accept-DatetimeGets a list of keys. Gets a list of keys.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
config_store_namestringApp Configuration store name. (default: )
Accept-DatetimestringRequests the server to respond with the state of the resource at the specified time. Default value is None.
AfterstringInstructs the server to return elements that appear after the element referred to by the specified token. Default value is None.
Sync-TokenstringUsed to guarantee real-time consistency between requests. Default value is None.
namestringA filter for the name of the returned keys. Default value is None.

SELECT examples

Gets a list of keys. Gets a list of keys.

SELECT
name
FROM azure.app_configuration_dataplane.keys
WHERE config_store_name = '{{ config_store_name }}' -- required
AND name = '{{ name }}'
AND After = '{{ After }}'
AND Sync-Token = '{{ Sync-Token }}'
AND Accept-Datetime = '{{ Accept-Datetime }}'
;