Skip to main content

student_labs

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

Overview

Namestudent_labs
TypeResource
Idazure_extras.education.student_labs

Fields

The following fields are returned by SELECT queries:

Lab details.

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
namestringThe name of the resource
propertiesobjectStudent lab properties.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectstudentLabNameGet the details for a specified lab associated with the student lab.
list_allselectGet a list of all labs associated with the caller of the API.

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
studentLabNamestringThe ID that uniquely identifies a student lab.

SELECT examples

Get the details for a specified lab associated with the student lab.

SELECT
id,
name,
properties,
systemData,
type
FROM azure_extras.education.student_labs
WHERE studentLabName = '{{ studentLabName }}' -- required
;