Skip to main content

chaos_schedules

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

Overview

Namechaos_schedules
TypeResource
Idazure.service_fabric_dataplane.chaos_schedules

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
ScheduleobjectDefines the schedule used by Chaos.
Versioninteger

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_chaos_scheduleselectendpointtimeoutGet the Chaos Schedule defining when and how to run Chaos. Gets the version of the Chaos Schedule in use and the Chaos Schedule that defines when and how to run Chaos.

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
endpointstringThe service endpoint host (no scheme). (default: )
timeoutinteger (int64)The server timeout for performing the operation in seconds. This timeout specifies the time duration that the client is willing to wait for the requested operation to complete. The default value for this parameter is 60 seconds.

SELECT examples

Get the Chaos Schedule defining when and how to run Chaos. Gets the version of the Chaos Schedule in use and the Chaos Schedule that defines when and how to run Chaos.

SELECT
Schedule,
Version
FROM azure.service_fabric_dataplane.chaos_schedules
WHERE endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;