linker_configurations
Creates, updates, deletes, gets or lists a linker_configurations
resource.
Overview
Name | linker_configurations |
Type | Resource |
Id | azure.service_connector.linker_configurations |
Fields
The following fields are returned by SELECT
queries:
- list
OK. The request has succeeded.
Name | Datatype | Description |
---|---|---|
configurations | array | The configuration properties for source resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceUri , linkerName | list source configurations for a Linker. |
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 |
---|---|---|
linkerName | string | The name Linker resource. |
resourceUri | string | The fully qualified Azure Resource manager identifier of the resource to be connected. |
SELECT
examples
- list
list source configurations for a Linker.
SELECT
configurations
FROM azure.service_connector.linker_configurations
WHERE resourceUri = '{{ resourceUri }}' -- required
AND linkerName = '{{ linkerName }}' -- required
;