Skip to main content

projects

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

Overview

Nameprojects
TypeResource
Idazure.developer_devcenter.projects

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringName of the project. Required.
descriptionstringDescription of the project.
maxDevBoxesPerUserintegerWhen specified, indicates the maximum number of Dev Boxes a single user can create across all pools in the project.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_projectselectproject_name, endpointGets a project.
list_projectsselectendpointLists all projects.

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
endpointstringThe service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client endpoint parameter. (default: )
project_namestringName of the project. Required.

SELECT examples

Gets a project.

SELECT
name,
description,
maxDevBoxesPerUser
FROM azure.developer_devcenter.projects
WHERE project_name = '{{ project_name }}' -- required
AND endpoint = '{{ endpoint }}' -- required
;