Scaleway · Schema
scaleway.functions.v1beta1.Cron
AICloud ComputingContainersDatabaseEuropean CloudInfrastructureKubernetesServerlessStorage
Properties
| Name | Type | Description |
|---|---|---|
| id | string | UUID of the cron. |
| function_id | string | UUID of the function the cron applies to. |
| schedule | string | Schedule of the cron. |
| args | object | Arguments to pass with the cron. |
| status | string | Status of the cron. |
| name | string | Name of the cron. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/scaleway.functions.v1beta1.Cron",
"title": "scaleway.functions.v1beta1.Cron",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "UUID of the cron."
},
"function_id": {
"type": "string",
"description": "UUID of the function the cron applies to."
},
"schedule": {
"type": "string",
"description": "Schedule of the cron."
},
"args": {
"type": "object",
"description": "Arguments to pass with the cron.",
"properties": {
"<fieldKey>": {
"type": "object"
}
}
},
"status": {
"type": "string",
"description": "Status of the cron.",
"enum": [
"unknown",
"ready",
"deleting",
"error",
"locked",
"creating",
"pending"
],
"default": "unknown"
},
"name": {
"type": "string",
"description": "Name of the cron."
}
},
"x-properties-order": [
"id",
"function_id",
"schedule",
"args",
"status",
"name"
]
}