Skip to main content

projects_job_status

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

Overview

Nameprojects_job_status
TypeResource
Idazure_extras.visual_studio.projects_job_status

Fields

The following fields are returned by SELECT queries:

The operation succeeded. The response contains the details of the newly created team project resource.

NameDatatypeDescription
idstringUnique identifier of the resource.
namestringResource name.
locationstringResource location.
propertiesobjectKey/value pair of resource properties.
tagsobjectResource tags.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, subscriptionId, rootResourceName, resourceName, subContainerName, operationjobIdGets the status of the project resource creation job.

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
operationstringThe operation type. The only supported value is 'put'.
resourceGroupNamestringName of the resource group within the Azure subscription.
resourceNamestringName of the Team Services project.
rootResourceNamestringName of the Team Services account.
subContainerNamestringThis parameter should be set to the resourceName.
subscriptionIdstringThe Azure subscription identifier.
jobIdstring (uuid)The job identifier.

SELECT examples

Gets the status of the project resource creation job.

SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_extras.visual_studio.projects_job_status
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND rootResourceName = '{{ rootResourceName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND subContainerName = '{{ subContainerName }}' -- required
AND operation = '{{ operation }}' -- required
AND jobId = '{{ jobId }}'
;