Skip to main content

jobs_executions

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

Overview

Namejobs_executions
TypeResource
Idazure.container_apps.jobs_executions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringJob execution Id.
namestringJob execution Name.
propertiesobjectContainer Apps Job execution specific properties.
typestringJob execution type

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, jobName$filter

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.

NameDatatypeDescription
jobNamestringJob Name
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
$filterstringThe filter to apply on the operation.

SELECT examples

OK

SELECT
id,
name,
properties,
type
FROM azure.container_apps.jobs_executions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND jobName = '{{ jobName }}' -- required
AND $filter = '{{ $filter }}'
;