labels
Creates, updates, deletes, gets or lists a labels resource.
Overview
| Name | labels |
| Type | Resource |
| Id | azure.app_configuration_dataplane.labels |
Fields
The following fields are returned by SELECT queries:
- get_labels
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the label. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_labels | select | config_store_name | name, Sync-Token, After, Accept-Datetime, $Select | Gets a list of labels. Gets a list of labels. |
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.
| Name | Datatype | Description |
|---|---|---|
config_store_name | string | App Configuration store name. (default: ) |
$Select | array | Used to select what fields are present in the returned resource(s). Default value is None. |
Accept-Datetime | string | Requests the server to respond with the state of the resource at the specified time. Default value is None. |
After | string | Instructs the server to return elements that appear after the element referred to by the specified token. Default value is None. |
Sync-Token | string | Used to guarantee real-time consistency between requests. Default value is None. |
name | string | A filter for the name of the returned labels. Default value is None. |
SELECT examples
- get_labels
Gets a list of labels. Gets a list of labels.
SELECT
name
FROM azure.app_configuration_dataplane.labels
WHERE config_store_name = '{{ config_store_name }}' -- required
AND name = '{{ name }}'
AND Sync-Token = '{{ Sync-Token }}'
AND After = '{{ After }}'
AND Accept-Datetime = '{{ Accept-Datetime }}'
AND $Select = '{{ $Select }}'
;