integration_runtime_starts
Creates, updates, deletes, gets or lists an integration_runtime_starts
resource.
Overview
Name | integration_runtime_starts |
Type | Resource |
Id | azure.synapse.integration_runtime_starts |
Fields
The following fields are returned by SELECT
queries:
- get
OK.
Name | Datatype | Description |
---|---|---|
name | string | The operation name. |
error | string | The operation error message. |
properties | object | The operation properties. |
status | string | status of Start Integrationruntimes. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , workspaceName , integrationRuntimeName , integrationRuntimeOperationId | Get an integration runtime start operation status |
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 |
---|---|---|
integrationRuntimeName | string | Integration runtime name |
integrationRuntimeOperationId | string | Integration runtime Operation Id |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
workspaceName | string | The name of the workspace. |
SELECT
examples
- get
Get an integration runtime start operation status
SELECT
name,
error,
properties,
status
FROM azure.synapse.integration_runtime_starts
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND integrationRuntimeName = '{{ integrationRuntimeName }}' -- required
AND integrationRuntimeOperationId = '{{ integrationRuntimeOperationId }}' -- required
;