Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the scheduler. |
| project_id | integer | The nOps AWS Project ID to associate with. |
| schedule | object | Schedule configuration for the scheduler. |
| resources | array | List of resources to manage with this scheduler. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SchedulerCreateRequest",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the scheduler."
},
"project_id": {
"type": "integer",
"description": "The nOps AWS Project ID to associate with."
},
"schedule": {
"type": "object",
"description": "Schedule configuration for the scheduler."
},
"resources": {
"type": "array",
"description": "List of resources to manage with this scheduler."
}
}
}