Skip to main content

sql_jobs_controllers

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

Overview

Namesql_jobs_controllers
TypeResource
Idazure.migrate.sql_jobs_controllers

Fields

NameDatatypeDescription
activity_idtextfield from the properties object
client_request_idtextfield from the properties object
display_nametextfield from the properties object
end_timetextfield from the properties object
errorstextfield from the properties object
jobNametextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
siteNametextfield from the properties object
sqlSiteNametextfield from the properties object
start_timetextfield from the properties object
statustextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTjobName, resourceGroupName, siteName, sqlSiteName, subscriptionIdGet a SqlJob
list_by_sql_siteSELECTresourceGroupName, siteName, sqlSiteName, subscriptionIdList SqlJob resources by SqlSite

SELECT examples

List SqlJob resources by SqlSite

SELECT
activity_id,
client_request_id,
display_name,
end_time,
errors,
jobName,
provisioning_state,
resourceGroupName,
siteName,
sqlSiteName,
start_time,
status,
subscriptionId
FROM azure.migrate.vw_sql_jobs_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND sqlSiteName = '{{ sqlSiteName }}'
AND subscriptionId = '{{ subscriptionId }}';