projects_job_status
Creates, updates, deletes, gets or lists a projects_job_status
resource.
Overview
Name | projects_job_status |
Type | Resource |
Id | azure_extras.visual_studio.projects_job_status |
Fields
The following fields are returned by SELECT
queries:
- get
The operation succeeded. The response contains the details of the newly created team project resource.
Name | Datatype | Description |
---|---|---|
id | string | Unique identifier of the resource. |
name | string | Resource name. |
location | string | Resource location. |
properties | object | Key/value pair of resource properties. |
tags | object | Resource tags. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , subscriptionId , rootResourceName , resourceName , subContainerName , operation | jobId | Gets 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.
Name | Datatype | Description |
---|---|---|
operation | string | The operation type. The only supported value is 'put'. |
resourceGroupName | string | Name of the resource group within the Azure subscription. |
resourceName | string | Name of the Team Services project. |
rootResourceName | string | Name of the Team Services account. |
subContainerName | string | This parameter should be set to the resourceName. |
subscriptionId | string | The Azure subscription identifier. |
jobId | string (uuid) | The job identifier. |
SELECT
examples
- get
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 }}'
;