Skip to main content

configuration_names

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

Overview

Nameconfiguration_names
TypeResource
Idazure.service_linker.configuration_names

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
authTypestringThe auth type. Known values are: "systemAssignedIdentity", "userAssignedIdentity", "servicePrincipalSecret", "servicePrincipalCertificate", "secret", "accessKey", "userAccount", and "easyAuthMicrosoftEntraID".
clientTypestringThe client type for configuration names. Known values are: "none", "dotnet", "java", "python", "go", "php", "ruby", "django", "nodejs", "springBoot", "kafka-springBoot", "jms-springBoot", and "dapr".
daprPropertiesobjectDeprecated, please use #/definitions/DaprConfigurationList instead.
namesarrayThe configuration names to be set in compute service environment.
secretTypestringIndicates where the secrets in configuration from. Used when secrets are from Keyvault. Known values are: "rawValue" and "keyVaultSecret".
targetServicestringThe target service provider name and resource name.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselect$filter, $skipTokenLists 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.

NameDatatypeDescription
$filterstringOData filter options. Default value is None.
$skipTokenstringOData skipToken option for pagination. Default value is None.

SELECT examples

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 }}'
;