idmesh-api-sdk-java/docs/CronJob.md

47 lines
1.5 KiB
Markdown

// Filename: /Users/liur/work/api-sdk-gen/openapi-generator/src/main/resources/Java/model_doc.mustache
// Filename: /Users/liur/work/api-sdk-gen/openapi-generator/src/main/resources/Java/pojo_doc.mustache
# CronJob
## Properties
| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**id** | **String** | | |
|**developerId** | **String** | | |
|**tenantId** | **String** | | |
|**namespace** | **String** | 定时任务所属的命名空间,也可以当做分组 | |
|**name** | **String** | | |
|**descr** | **String** | | [optional] |
|**tags** | **List<String>** | | |
|**config** | **Object** | json raw | |
|**kind** | **String** | | |
|**from** | **String** | | |
|**execFrequency** | [**ExecFrequencyEnum**](#ExecFrequencyEnum) | | [optional] |
|**execCmd** | **String** | | [optional] |
|**injections** | [**List<Injection>**](Injection.md) | | [optional] |
|**status** | **String** | - running 运行中 - suspended 挂起 | |
|**timeCreated** | **String** | rfc3339 | |
|**timeModified** | **String** | rfc3339 | |
## Enum: ExecFrequencyEnum
| Name | Value |
|---- | -----|
| MONTHLY | "monthly" |
| WEEKLY | "weekly" |
| DAILY | "daily" |
| HOURLY | "hourly" |
| EVERY_12_HOUR | "every_12_hour" |
| EVERY_6_HOUR | "every_6_hour" |
| EVERY_3_HOUR | "every_3_hour" |
| EVERY_2_HOUR | "every_2_hour" |
| EVERY_30_MINUTE | "every_30_minute" |