Skip to main content

schedules

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

Overview

Nameschedules
TypeResource
Idazure.lab_services.schedules

Fields

The following fields are returned by SELECT queries:

The request was successful; response contains the lab schedule.

NameDatatypeDescription
propertiesobjectSchedule resource properties
systemDataobjectMetadata pertaining to creation and last modification of the schedule.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectReturns the properties of a lab Schedule.
list_by_labselectReturns a list of all schedules for a lab.
create_or_updateinsertdata__propertiesOperation to create or update a lab schedule.
updateupdateOperation to update a lab schedule.
deletedeleteOperation to delete a schedule resource.

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

SELECT examples

Returns the properties of a lab Schedule.

SELECT
properties,
systemData
FROM azure.lab_services.schedules
;

INSERT examples

Operation to create or update a lab schedule.

INSERT INTO azure.lab_services.schedules (
data__properties
)
SELECT
'{{ properties }}' /* required */
RETURNING
properties,
systemData
;

UPDATE examples

Operation to update a lab schedule.

UPDATE azure.lab_services.schedules
SET
data__properties = '{{ properties }}'
RETURNING
properties,
systemData;

DELETE examples

Operation to delete a schedule resource.

DELETE FROM azure.lab_services.schedules
;