Skip to main content

linkers

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

Overview

Namelinkers
TypeResource
Idazure.service_linker.linkers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. # pylint: disable=line-too-long
namestringThe name of the resource.
operationPreviewsarraythe preview of the operations for creation.
parametersobjectThe parameters of the dryrun.
prerequisiteResultsarraythe result of the dryrun.
provisioningStatestringThe provisioning state.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_dryrunselectresource_uri, dryrun_nameget a dryrun job.
list_dryrunselectresource_urilist dryrun jobs.
list_dapr_configurationsexecresource_uriList the dapr configuration supported by Service Connector.
create_dryrunexecresource_uri, dryrun_namecreate a dryrun job to do necessary check before actual creation.
update_dryrunexecresource_uri, dryrun_nameadd a dryrun job to do necessary check before actual creation.
delete_dryrunexecresource_uri, dryrun_namedelete a dryrun job.
generate_configurationsexecresource_uri, linker_nameGenerate 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.

NameDatatypeDescription
dryrun_namestringThe name of dryrun. Required.
linker_namestringThe name Linker resource. Required.
resource_uristringThe fully qualified Azure Resource manager identifier of the resource to be connected. Required.

SELECT examples

get a dryrun job.

SELECT
id,
name,
operationPreviews,
parameters,
prerequisiteResults,
provisioningState,
systemData,
type
FROM azure.service_linker.linkers
WHERE resource_uri = '{{ resource_uri }}' -- required
AND dryrun_name = '{{ dryrun_name }}' -- required
;

Lifecycle Methods

List the dapr configuration supported by Service Connector.

EXEC azure.service_linker.linkers.list_dapr_configurations 
@resource_uri='{{ resource_uri }}' --required
;