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
- vw_student_labs
- student_labs
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | text | The name of the resource |
description | text | field from the properties object |
budget | text | field from the properties object |
display_name | text | field from the properties object |
effective_date | text | field from the properties object |
expiration_date | text | field from the properties object |
lab_scope | text | field from the properties object |
role | text | field from the properties object |
status | text | field from the properties object |
studentLabName | text | field from the properties object |
subscription_id | text | field from the properties object |
system_data | text | field from the properties object |
type | text | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
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 detail properties |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
Name | Accessible by | Required 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. |
SELECT
examples
Get a list of all labs associated with the caller of the API.
- vw_student_labs
- student_labs
SELECT
id,
name,
description,
budget,
display_name,
effective_date,
expiration_date,
lab_scope,
role,
status,
studentLabName,
subscription_id,
system_data,
type
FROM azure_extras.education.vw_student_labs
;
SELECT
id,
name,
properties,
systemData,
type
FROM azure_extras.education.student_labs
;