source_control_sync_job_streams
Creates, updates, deletes, gets or lists a source_control_sync_job_streams resource.
Overview
| Name | source_control_sync_job_streams |
| Type | Resource |
| Id | azure.automation.source_control_sync_job_streams |
Fields
The following fields are returned by SELECT queries:
- get
- list_by_sync_job
| Name | Datatype | Description |
|---|---|---|
id | string | Resource id. |
properties | object | The properties of the source control sync job stream. |
| Name | Datatype | Description |
|---|---|---|
id | string | Resource id. |
properties | object | The properties of the source control sync job stream. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resourceGroupName, automationAccountName, sourceControlName, sourceControlSyncJobId, streamId, subscriptionId | Retrieve a sync job stream identified by stream id. | |
list_by_sync_job | select | resourceGroupName, automationAccountName, sourceControlName, sourceControlSyncJobId, subscriptionId | $filter | Retrieve a list of sync job streams identified by sync job id. |
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 |
|---|---|---|
automationAccountName | string | The name of the automation account. |
resourceGroupName | string | Name of an Azure Resource group. |
sourceControlName | string | The source control name. |
sourceControlSyncJobId | string (uuid) | The source control sync job id. |
streamId | string | The id of the sync job stream. |
subscriptionId | string | Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
$filter | string | The filter to apply on the operation. |
SELECT examples
- get
- list_by_sync_job
Retrieve a sync job stream identified by stream id.
SELECT
id,
properties
FROM azure.automation.source_control_sync_job_streams
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND automationAccountName = '{{ automationAccountName }}' -- required
AND sourceControlName = '{{ sourceControlName }}' -- required
AND sourceControlSyncJobId = '{{ sourceControlSyncJobId }}' -- required
AND streamId = '{{ streamId }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
Retrieve a list of sync job streams identified by sync job id.
SELECT
id,
properties
FROM azure.automation.source_control_sync_job_streams
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND automationAccountName = '{{ automationAccountName }}' -- required
AND sourceControlName = '{{ sourceControlName }}' -- required
AND sourceControlSyncJobId = '{{ sourceControlSyncJobId }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND $filter = '{{ $filter }}'
;