linkers
Creates, updates, deletes, gets or lists a linkers
resource.
Overview
Name | linkers |
Type | Resource |
Id | azure.service_connector.linkers |
Fields
- vw_linkers
- linkers
Name | Datatype | Description |
---|---|---|
auth_info | text | field from the properties object |
client_type | text | field from the properties object |
configuration_info | text | field from the properties object |
linkerName | text | field from the properties object |
provisioning_state | text | field from the properties object |
public_network_solution | text | field from the properties object |
resourceUri | text | field from the properties object |
scope | text | field from the properties object |
secret_store | text | field from the properties object |
system_data | text | field from the properties object |
target_service | text | field from the properties object |
vnet_solution | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | The properties of the Linker. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | linkerName, resourceUri | Returns Linker resource for a given name. |
list | SELECT | resourceUri | Returns list of Linkers which connects to the resource. which supports to config both application and target service during the resource provision. |
create_or_update | INSERT | linkerName, resourceUri, data__properties | Create or update Linker resource. |
delete | DELETE | linkerName, resourceUri | Delete a Linker. |
update | UPDATE | linkerName, resourceUri | Operation to update an existing Linker. |
generate_configurations | EXEC | linkerName, resourceUri | Generate configurations for a Linker. |
validate | EXEC | linkerName, resourceUri | Validate a Linker. |
SELECT
examples
Returns list of Linkers which connects to the resource. which supports to config both application and target service during the resource provision.
- vw_linkers
- linkers
SELECT
auth_info,
client_type,
configuration_info,
linkerName,
provisioning_state,
public_network_solution,
resourceUri,
scope,
secret_store,
system_data,
target_service,
vnet_solution
FROM azure.service_connector.vw_linkers
WHERE resourceUri = '{{ resourceUri }}';
SELECT
properties,
systemData
FROM azure.service_connector.linkers
WHERE resourceUri = '{{ resourceUri }}';
INSERT
example
Use the following StackQL query and manifest file to create a new linkers
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.service_connector.linkers (
linkerName,
resourceUri,
data__properties,
properties
)
SELECT
'{{ linkerName }}',
'{{ resourceUri }}',
'{{ data__properties }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: targetService
value:
- name: type
value: []
- name: authInfo
value:
- name: authType
value: []
- name: authMode
value: []
- name: clientType
value: []
- name: provisioningState
value: string
- name: vNetSolution
value:
- name: type
value: string
- name: deleteOrUpdateBehavior
value: []
- name: secretStore
value:
- name: keyVaultId
value: string
- name: keyVaultSecretName
value: string
- name: scope
value: string
- name: publicNetworkSolution
value:
- name: action
value: []
- name: firewallRules
value:
- name: ipRanges
value:
- string
- name: azureServices
value: []
- name: configurationInfo
value:
- name: customizedKeys
value: object
- name: daprProperties
value:
- name: version
value: string
- name: componentType
value: string
- name: secretStoreComponent
value: string
- name: metadata
value:
- - name: name
value: string
- name: value
value: string
- name: secretRef
value: string
- name: description
value: string
- name: required
value: string
- name: scopes
value:
- string
- name: runtimeVersion
value: string
- name: bindingComponentDirection
value: string
- name: additionalConfigurations
value: object
- name: additionalConnectionStringProperties
value: object
- name: configurationStore
value:
- name: appConfigurationId
value: string
- name: systemData
value:
- name: createdBy
value: string
- name: createdByType
value: string
- name: createdAt
value: string
- name: lastModifiedBy
value: string
- name: lastModifiedByType
value: string
- name: lastModifiedAt
value: string
UPDATE
example
Updates a linkers
resource.
/*+ update */
UPDATE azure.service_connector.linkers
SET
properties = '{{ properties }}'
WHERE
linkerName = '{{ linkerName }}'
AND resourceUri = '{{ resourceUri }}';
DELETE
example
Deletes the specified linkers
resource.
/*+ delete */
DELETE FROM azure.service_connector.linkers
WHERE linkerName = '{{ linkerName }}'
AND resourceUri = '{{ resourceUri }}';