student_labs
Creates, updates, deletes, gets or lists a student_labs
resource.
Overview
Name | student_labs |
Type | Resource |
Id | azure_extras.education.student_labs |
Fields
The following fields are returned by SELECT
queries:
- get
- list_all
Lab details.
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | string | The name of the resource |
properties | object | Student lab properties. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Lab details.
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | string | The name of the resource |
properties | object | Student lab properties. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | studentLabName | Get the details for a specified lab associated with the student lab. | |
list_all | select | Get 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.
Name | Datatype | Description |
---|---|---|
studentLabName | string | The ID that uniquely identifies a student lab. |
SELECT
examples
- get
- list_all
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
;
Get a list of all labs associated with the caller of the API.
SELECT
id,
name,
properties,
systemData,
type
FROM azure_extras.education.student_labs
;