Skip to main content

source_control_sync_job_streams

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

Overview

Namesource_control_sync_job_streams
TypeResource
Idazure.automation.source_control_sync_job_streams

Fields

NameDatatypeDescription
idtextResource id.
automationAccountNametextfield from the properties object
resourceGroupNametextfield from the properties object
sourceControlNametextfield from the properties object
sourceControlSyncJobIdtextfield from the properties object
source_control_sync_job_stream_idtextfield from the properties object
streamIdtextfield from the properties object
stream_texttextfield from the properties object
stream_typetextfield from the properties object
subscriptionIdtextfield from the properties object
summarytextfield from the properties object
timetextfield from the properties object
valuetextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTautomationAccountName, resourceGroupName, sourceControlName, sourceControlSyncJobId, streamId, subscriptionIdRetrieve a sync job stream identified by stream id.
list_by_sync_jobSELECTautomationAccountName, resourceGroupName, sourceControlName, sourceControlSyncJobId, subscriptionIdRetrieve a list of sync job streams identified by sync job id.

SELECT examples

Retrieve a list of sync job streams identified by sync job id.

SELECT
id,
automationAccountName,
resourceGroupName,
sourceControlName,
sourceControlSyncJobId,
source_control_sync_job_stream_id,
streamId,
stream_text,
stream_type,
subscriptionId,
summary,
time,
value
FROM azure.automation.vw_source_control_sync_job_streams
WHERE automationAccountName = '{{ automationAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND sourceControlName = '{{ sourceControlName }}'
AND sourceControlSyncJobId = '{{ sourceControlSyncJobId }}'
AND subscriptionId = '{{ subscriptionId }}';