chaos_schedules
Creates, updates, deletes, gets or lists a chaos_schedules resource.
Overview
| Name | chaos_schedules |
| Type | Resource |
| Id | azure.service_fabric_dataplane.chaos_schedules |
Fields
The following fields are returned by SELECT queries:
- get_chaos_schedule
| Name | Datatype | Description |
|---|---|---|
Schedule | object | Defines the schedule used by Chaos. |
Version | integer |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_chaos_schedule | select | endpoint | timeout | 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. |
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 |
|---|---|---|
endpoint | string | The service endpoint host (no scheme). (default: ) |
timeout | integer (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_chaos_schedule
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 }}'
;