Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Provider ¶
func Provider() terraform.ResourceProvider
Types ¶
type Job ¶
type Job struct { Name string `json:"name"` Schedule string `json:"schedule"` Owner string `json:"owner"` OwnerEmail string `json:"owner_email"` Disabled bool `json:"disabled"` Tags map[string]interface{} `json:"tags"` Retries int `json:"retries"` Processors interface{} `json:"processors"` Concurrency string `json:"concurrency"` Executor string `json:"executor"` ExecutorConfig struct { Command string `json:"command"` } `json:"executor_config"` }
type JobResponse ¶
type JobResponse struct { Name string `json:"name"` Timezone string `json:"timezone"` Schedule string `json:"schedule"` Owner string `json:"owner"` OwnerEmail string `json:"owner_email"` SuccessCount int `json:"success_count"` ErrorCount int `json:"error_count"` LastSuccess time.Time `json:"last_success"` LastError time.Time `json:"last_error"` Disabled bool `json:"disabled"` Tags map[string]interface{} `json:"tags"` Retries int `json:"retries"` DependentJobs interface{} `json:"dependent_jobs"` ParentJob string `json:"parent_job"` Processors interface{} `json:"processors"` Concurrency string `json:"concurrency"` Executor string `json:"executor"` ExecutorConfig struct { Command string `json:"command"` } `json:"executor_config"` Status string `json:"status"` }
Click to show internal directories.
Click to hide internal directories.