configuration_names
Creates, updates, deletes, gets or lists a configuration_names resource.
Overview
| Name | configuration_names |
| Type | Resource |
| Id | azure.service_linker.configuration_names |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
authType | string | The auth type. Known values are: "systemAssignedIdentity", "userAssignedIdentity", "servicePrincipalSecret", "servicePrincipalCertificate", "secret", "accessKey", "userAccount", and "easyAuthMicrosoftEntraID". |
clientType | string | The client type for configuration names. Known values are: "none", "dotnet", "java", "python", "go", "php", "ruby", "django", "nodejs", "springBoot", "kafka-springBoot", "jms-springBoot", and "dapr". |
daprProperties | object | Deprecated, please use #/definitions/DaprConfigurationList instead. |
names | array | The configuration names to be set in compute service environment. |
secretType | string | Indicates where the secrets in configuration from. Used when secrets are from Keyvault. Known values are: "rawValue" and "keyVaultSecret". |
targetService | string | The target service provider name and resource name. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | $filter, $skipToken | Lists the configuration names generated by Service Connector for all target, client types, auth types. |
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 |
|---|---|---|
$filter | string | OData filter options. Default value is None. |
$skipToken | string | OData skipToken option for pagination. Default value is None. |
SELECT examples
- list
Lists the configuration names generated by Service Connector for all target, client types, auth types.
SELECT
authType,
clientType,
daprProperties,
names,
secretType,
targetService
FROM azure.service_linker.configuration_names
WHERE $filter = '{{ $filter }}'
AND $skipToken = '{{ $skipToken }}'
;