Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.hotglue.com/llms.txt

Use this file to discover all available pages before exploring further.

Manage a flow’s job schedule for a tenant.

Schedules Get

Description

Fetches the current schedule for a tenant and flow.

Sample

hotglue schedules get --tenant tenant123 --flow d2dzyCFnS --json

Parameters

OptionDefaultDescription
--tenantTenant ID
--flowFlow ID
--env -eEnvironment ID
--job-typeJob type: read or write
--jsonOutput as JSON

Schedules Put

Description

Creates or replaces a schedule for a tenant and flow. Defaults state to ENABLED.

Sample

hotglue schedules put --tenant tenant123 --flow d2dzyCFnS --schedule-expression 'cron(0 5 * * *)'

Parameters

OptionDefaultDescription
--tenantTenant ID
--flowFlow ID
--schedule-expressionCron expression, e.g. cron(0 5 * * *)
--env -eEnvironment ID
--job-typeJob type: read or write
--stateENABLEDSchedule state: ENABLED or DISABLED
--schedule-jitter-minutesJitter in minutes (1–720). Only allowed when --tenant is default

Schedules Disable

Description

Disables the current schedule for a tenant and flow.

Sample

hotglue schedules disable --tenant tenant123 --flow d2dzyCFnS

Parameters

OptionDefaultDescription
--tenantTenant ID
--flowFlow ID
--env -eEnvironment ID
--job-typeJob type: read or write