Skip to main content

service_fabrics_applicable_schedules

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

Overview

Nameservice_fabrics_applicable_schedules
TypeResource
Idazure.dev_test_labs.service_fabrics_applicable_schedules

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe identifier of the resource.
namestringThe name of the resource.
locationstringThe location of the resource.
propertiesobjectThe properties of the resource.
tagsobjectThe tags of the resource.
typestringThe type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, labName, userName, nameapi-versionLists the applicable start/stop schedules, if any.

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
labNamestringThe name of the lab.
namestringThe name of the service fabric.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstringThe subscription ID.
userNamestringThe name of the user profile.
api-versionstringClient API version.

SELECT examples

Lists the applicable start/stop schedules, if any.

SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.dev_test_labs.service_fabrics_applicable_schedules
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND labName = '{{ labName }}' -- required
AND userName = '{{ userName }}' -- required
AND name = '{{ name }}' -- required
AND api-version = '{{ api-version }}'
;