start_stop_managed_instance_schedules_by_instances
Creates, updates, deletes, gets or lists a start_stop_managed_instance_schedules_by_instances resource.
Overview
| Name | start_stop_managed_instance_schedules_by_instances |
| Type | Resource |
| Id | azure.sql.start_stop_managed_instance_schedules_by_instances |
Fields
The following fields are returned by SELECT queries:
- list
Successfully retrieved the list of Start/Stop schedules.
| Name | Datatype | Description |
|---|---|---|
properties | object | Resource properties. |
systemData | object | System data of the scheduled resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | resourceGroupName, managedInstanceName, subscriptionId | Lists the managed instance's Start/Stop schedules. |
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 |
|---|---|---|
managedInstanceName | string | The name of the managed instance. |
resourceGroupName | string | The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. |
subscriptionId | string | The subscription ID that identifies an Azure subscription. |
SELECT examples
- list
Lists the managed instance's Start/Stop schedules.
SELECT
properties,
systemData
FROM azure.sql.start_stop_managed_instance_schedules_by_instances
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND managedInstanceName = '{{ managedInstanceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;