hatchet-sdk 0.0.0 → 0.1.0.pre.alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -2
- data/CLAUDE.md +61 -4
- data/INTEGRATION_TESTING.md +176 -0
- data/LICENSE.txt +1 -1
- data/REST_API_GENERATION.md +257 -0
- data/Rakefile +9 -0
- data/Rakefile.rest +133 -0
- data/config/openapi_generator_config.json +31 -0
- data/lib/hatchet/clients/rest/.gitignore +39 -0
- data/lib/hatchet/clients/rest/.gitlab-ci.yml +26 -0
- data/lib/hatchet/clients/rest/.openapi-generator/FILES +420 -0
- data/lib/hatchet/clients/rest/.openapi-generator/VERSION +1 -0
- data/lib/hatchet/clients/rest/.openapi-generator-ignore +23 -0
- data/lib/hatchet/clients/rest/.rspec +2 -0
- data/lib/hatchet/clients/rest/.rubocop.yml +148 -0
- data/lib/hatchet/clients/rest/.travis.yml +11 -0
- data/lib/hatchet/clients/rest/Gemfile +9 -0
- data/lib/hatchet/clients/rest/README.md +420 -0
- data/lib/hatchet/clients/rest/Rakefile +10 -0
- data/lib/hatchet/clients/rest/docs/APIError.md +24 -0
- data/lib/hatchet/clients/rest/docs/APIErrors.md +18 -0
- data/lib/hatchet/clients/rest/docs/APIMeta.md +30 -0
- data/lib/hatchet/clients/rest/docs/APIMetaAuth.md +18 -0
- data/lib/hatchet/clients/rest/docs/APIMetaIntegration.md +20 -0
- data/lib/hatchet/clients/rest/docs/APIMetaPosthog.md +20 -0
- data/lib/hatchet/clients/rest/docs/APIResourceMeta.md +22 -0
- data/lib/hatchet/clients/rest/docs/APIToken.md +22 -0
- data/lib/hatchet/clients/rest/docs/APITokenApi.md +235 -0
- data/lib/hatchet/clients/rest/docs/AcceptInviteRequest.md +18 -0
- data/lib/hatchet/clients/rest/docs/BulkCreateEventRequest.md +18 -0
- data/lib/hatchet/clients/rest/docs/CancelEventRequest.md +18 -0
- data/lib/hatchet/clients/rest/docs/ConcurrencyLimitStrategy.md +15 -0
- data/lib/hatchet/clients/rest/docs/CreateAPITokenRequest.md +20 -0
- data/lib/hatchet/clients/rest/docs/CreateAPITokenResponse.md +18 -0
- data/lib/hatchet/clients/rest/docs/CreateCronWorkflowTriggerRequest.md +26 -0
- data/lib/hatchet/clients/rest/docs/CreateEventRequest.md +26 -0
- data/lib/hatchet/clients/rest/docs/CreatePullRequestFromStepRun.md +18 -0
- data/lib/hatchet/clients/rest/docs/CreateSNSIntegrationRequest.md +18 -0
- data/lib/hatchet/clients/rest/docs/CreateTenantAlertEmailGroupRequest.md +18 -0
- data/lib/hatchet/clients/rest/docs/CreateTenantInviteRequest.md +20 -0
- data/lib/hatchet/clients/rest/docs/CreateTenantRequest.md +24 -0
- data/lib/hatchet/clients/rest/docs/CronWorkflows.md +40 -0
- data/lib/hatchet/clients/rest/docs/CronWorkflowsList.md +20 -0
- data/lib/hatchet/clients/rest/docs/CronWorkflowsMethod.md +15 -0
- data/lib/hatchet/clients/rest/docs/CronWorkflowsOrderByField.md +15 -0
- data/lib/hatchet/clients/rest/docs/DefaultApi.md +602 -0
- data/lib/hatchet/clients/rest/docs/Event.md +28 -0
- data/lib/hatchet/clients/rest/docs/EventApi.md +809 -0
- data/lib/hatchet/clients/rest/docs/EventData.md +18 -0
- data/lib/hatchet/clients/rest/docs/EventKeyList.md +20 -0
- data/lib/hatchet/clients/rest/docs/EventList.md +20 -0
- data/lib/hatchet/clients/rest/docs/EventOrderByDirection.md +15 -0
- data/lib/hatchet/clients/rest/docs/EventOrderByField.md +15 -0
- data/lib/hatchet/clients/rest/docs/EventUpdateCancel200Response.md +18 -0
- data/lib/hatchet/clients/rest/docs/EventWorkflowRunSummary.md +28 -0
- data/lib/hatchet/clients/rest/docs/Events.md +20 -0
- data/lib/hatchet/clients/rest/docs/FilterApi.md +402 -0
- data/lib/hatchet/clients/rest/docs/GetStepRunDiffResponse.md +18 -0
- data/lib/hatchet/clients/rest/docs/GithubApi.md +73 -0
- data/lib/hatchet/clients/rest/docs/HealthcheckApi.md +129 -0
- data/lib/hatchet/clients/rest/docs/InfoGetVersion200Response.md +18 -0
- data/lib/hatchet/clients/rest/docs/Job.md +30 -0
- data/lib/hatchet/clients/rest/docs/JobRun.md +48 -0
- data/lib/hatchet/clients/rest/docs/JobRunStatus.md +15 -0
- data/lib/hatchet/clients/rest/docs/ListAPITokensResponse.md +20 -0
- data/lib/hatchet/clients/rest/docs/ListPullRequestsResponse.md +18 -0
- data/lib/hatchet/clients/rest/docs/ListSNSIntegrations.md +20 -0
- data/lib/hatchet/clients/rest/docs/ListSlackWebhooks.md +20 -0
- data/lib/hatchet/clients/rest/docs/LogApi.md +171 -0
- data/lib/hatchet/clients/rest/docs/LogLine.md +22 -0
- data/lib/hatchet/clients/rest/docs/LogLineLevel.md +15 -0
- data/lib/hatchet/clients/rest/docs/LogLineList.md +20 -0
- data/lib/hatchet/clients/rest/docs/LogLineOrderByDirection.md +15 -0
- data/lib/hatchet/clients/rest/docs/LogLineOrderByField.md +15 -0
- data/lib/hatchet/clients/rest/docs/MetadataApi.md +203 -0
- data/lib/hatchet/clients/rest/docs/PaginationResponse.md +22 -0
- data/lib/hatchet/clients/rest/docs/PullRequest.md +32 -0
- data/lib/hatchet/clients/rest/docs/PullRequestState.md +15 -0
- data/lib/hatchet/clients/rest/docs/QueueMetrics.md +22 -0
- data/lib/hatchet/clients/rest/docs/RateLimit.md +28 -0
- data/lib/hatchet/clients/rest/docs/RateLimitList.md +20 -0
- data/lib/hatchet/clients/rest/docs/RateLimitOrderByDirection.md +15 -0
- data/lib/hatchet/clients/rest/docs/RateLimitOrderByField.md +15 -0
- data/lib/hatchet/clients/rest/docs/RateLimitsApi.md +94 -0
- data/lib/hatchet/clients/rest/docs/RecentStepRuns.md +30 -0
- data/lib/hatchet/clients/rest/docs/RejectInviteRequest.md +18 -0
- data/lib/hatchet/clients/rest/docs/ReplayEventRequest.md +18 -0
- data/lib/hatchet/clients/rest/docs/ReplayWorkflowRunsRequest.md +18 -0
- data/lib/hatchet/clients/rest/docs/ReplayWorkflowRunsResponse.md +18 -0
- data/lib/hatchet/clients/rest/docs/RerunStepRunRequest.md +18 -0
- data/lib/hatchet/clients/rest/docs/SNSApi.md +235 -0
- data/lib/hatchet/clients/rest/docs/SNSIntegration.md +24 -0
- data/lib/hatchet/clients/rest/docs/ScheduleWorkflowRunRequest.md +24 -0
- data/lib/hatchet/clients/rest/docs/ScheduledRunStatus.md +15 -0
- data/lib/hatchet/clients/rest/docs/ScheduledWorkflows.md +44 -0
- data/lib/hatchet/clients/rest/docs/ScheduledWorkflowsList.md +20 -0
- data/lib/hatchet/clients/rest/docs/ScheduledWorkflowsMethod.md +15 -0
- data/lib/hatchet/clients/rest/docs/ScheduledWorkflowsOrderByField.md +15 -0
- data/lib/hatchet/clients/rest/docs/SemaphoreSlots.md +28 -0
- data/lib/hatchet/clients/rest/docs/SlackApi.md +156 -0
- data/lib/hatchet/clients/rest/docs/SlackWebhook.md +28 -0
- data/lib/hatchet/clients/rest/docs/Step.md +32 -0
- data/lib/hatchet/clients/rest/docs/StepRun.md +68 -0
- data/lib/hatchet/clients/rest/docs/StepRunApi.md +560 -0
- data/lib/hatchet/clients/rest/docs/StepRunArchive.md +50 -0
- data/lib/hatchet/clients/rest/docs/StepRunArchiveList.md +20 -0
- data/lib/hatchet/clients/rest/docs/StepRunDiff.md +22 -0
- data/lib/hatchet/clients/rest/docs/StepRunEvent.md +36 -0
- data/lib/hatchet/clients/rest/docs/StepRunEventList.md +20 -0
- data/lib/hatchet/clients/rest/docs/StepRunEventReason.md +15 -0
- data/lib/hatchet/clients/rest/docs/StepRunEventSeverity.md +15 -0
- data/lib/hatchet/clients/rest/docs/StepRunStatus.md +15 -0
- data/lib/hatchet/clients/rest/docs/TaskApi.md +566 -0
- data/lib/hatchet/clients/rest/docs/Tenant.md +30 -0
- data/lib/hatchet/clients/rest/docs/TenantAlertEmailGroup.md +20 -0
- data/lib/hatchet/clients/rest/docs/TenantAlertEmailGroupList.md +20 -0
- data/lib/hatchet/clients/rest/docs/TenantAlertingSettings.md +30 -0
- data/lib/hatchet/clients/rest/docs/TenantApi.md +1362 -0
- data/lib/hatchet/clients/rest/docs/TenantInvite.md +28 -0
- data/lib/hatchet/clients/rest/docs/TenantInviteList.md +20 -0
- data/lib/hatchet/clients/rest/docs/TenantList.md +20 -0
- data/lib/hatchet/clients/rest/docs/TenantMember.md +24 -0
- data/lib/hatchet/clients/rest/docs/TenantMemberList.md +20 -0
- data/lib/hatchet/clients/rest/docs/TenantMemberRole.md +15 -0
- data/lib/hatchet/clients/rest/docs/TenantQueueMetrics.md +22 -0
- data/lib/hatchet/clients/rest/docs/TenantResource.md +15 -0
- data/lib/hatchet/clients/rest/docs/TenantResourceLimit.md +30 -0
- data/lib/hatchet/clients/rest/docs/TenantResourcePolicy.md +18 -0
- data/lib/hatchet/clients/rest/docs/TenantStepRunQueueMetrics.md +18 -0
- data/lib/hatchet/clients/rest/docs/TenantUIVersion.md +15 -0
- data/lib/hatchet/clients/rest/docs/TenantVersion.md +15 -0
- data/lib/hatchet/clients/rest/docs/TriggerWorkflowRunRequest.md +20 -0
- data/lib/hatchet/clients/rest/docs/UpdateTenantAlertEmailGroupRequest.md +18 -0
- data/lib/hatchet/clients/rest/docs/UpdateTenantInviteRequest.md +18 -0
- data/lib/hatchet/clients/rest/docs/UpdateTenantRequest.md +34 -0
- data/lib/hatchet/clients/rest/docs/UpdateWorkerRequest.md +18 -0
- data/lib/hatchet/clients/rest/docs/User.md +28 -0
- data/lib/hatchet/clients/rest/docs/UserApi.md +805 -0
- data/lib/hatchet/clients/rest/docs/UserChangePasswordRequest.md +20 -0
- data/lib/hatchet/clients/rest/docs/UserLoginRequest.md +20 -0
- data/lib/hatchet/clients/rest/docs/UserRegisterRequest.md +22 -0
- data/lib/hatchet/clients/rest/docs/UserTenantMembershipsList.md +20 -0
- data/lib/hatchet/clients/rest/docs/UserTenantPublic.md +20 -0
- data/lib/hatchet/clients/rest/docs/V1CancelTaskRequest.md +20 -0
- data/lib/hatchet/clients/rest/docs/V1CancelledTasks.md +18 -0
- data/lib/hatchet/clients/rest/docs/V1CreateFilterRequest.md +24 -0
- data/lib/hatchet/clients/rest/docs/V1DagChildren.md +20 -0
- data/lib/hatchet/clients/rest/docs/V1Event.md +36 -0
- data/lib/hatchet/clients/rest/docs/V1EventList.md +20 -0
- data/lib/hatchet/clients/rest/docs/V1EventTriggeredRun.md +20 -0
- data/lib/hatchet/clients/rest/docs/V1EventWorkflowRunSummary.md +26 -0
- data/lib/hatchet/clients/rest/docs/V1Filter.md +28 -0
- data/lib/hatchet/clients/rest/docs/V1FilterList.md +20 -0
- data/lib/hatchet/clients/rest/docs/V1LogLine.md +28 -0
- data/lib/hatchet/clients/rest/docs/V1LogLineLevel.md +15 -0
- data/lib/hatchet/clients/rest/docs/V1LogLineList.md +20 -0
- data/lib/hatchet/clients/rest/docs/V1ReplayTaskRequest.md +20 -0
- data/lib/hatchet/clients/rest/docs/V1ReplayedTasks.md +18 -0
- data/lib/hatchet/clients/rest/docs/V1TaskEvent.md +38 -0
- data/lib/hatchet/clients/rest/docs/V1TaskEventList.md +20 -0
- data/lib/hatchet/clients/rest/docs/V1TaskEventType.md +15 -0
- data/lib/hatchet/clients/rest/docs/V1TaskFilter.md +26 -0
- data/lib/hatchet/clients/rest/docs/V1TaskPointMetric.md +22 -0
- data/lib/hatchet/clients/rest/docs/V1TaskPointMetrics.md +18 -0
- data/lib/hatchet/clients/rest/docs/V1TaskRunMetric.md +20 -0
- data/lib/hatchet/clients/rest/docs/V1TaskRunStatus.md +15 -0
- data/lib/hatchet/clients/rest/docs/V1TaskStatus.md +15 -0
- data/lib/hatchet/clients/rest/docs/V1TaskSummary.md +72 -0
- data/lib/hatchet/clients/rest/docs/V1TaskSummaryList.md +20 -0
- data/lib/hatchet/clients/rest/docs/V1TaskTiming.md +46 -0
- data/lib/hatchet/clients/rest/docs/V1TaskTimingList.md +20 -0
- data/lib/hatchet/clients/rest/docs/V1TriggerWorkflowRunRequest.md +24 -0
- data/lib/hatchet/clients/rest/docs/V1UpdateFilterRequest.md +22 -0
- data/lib/hatchet/clients/rest/docs/V1WorkflowRun.md +46 -0
- data/lib/hatchet/clients/rest/docs/V1WorkflowRunDetails.md +26 -0
- data/lib/hatchet/clients/rest/docs/V1WorkflowRunDisplayName.md +20 -0
- data/lib/hatchet/clients/rest/docs/V1WorkflowRunDisplayNameList.md +20 -0
- data/lib/hatchet/clients/rest/docs/V1WorkflowType.md +15 -0
- data/lib/hatchet/clients/rest/docs/WebhookWorker.md +22 -0
- data/lib/hatchet/clients/rest/docs/WebhookWorkerCreateRequest.md +22 -0
- data/lib/hatchet/clients/rest/docs/WebhookWorkerCreateResponse.md +18 -0
- data/lib/hatchet/clients/rest/docs/WebhookWorkerCreated.md +24 -0
- data/lib/hatchet/clients/rest/docs/WebhookWorkerListResponse.md +20 -0
- data/lib/hatchet/clients/rest/docs/WebhookWorkerRequest.md +22 -0
- data/lib/hatchet/clients/rest/docs/WebhookWorkerRequestListResponse.md +18 -0
- data/lib/hatchet/clients/rest/docs/WebhookWorkerRequestMethod.md +15 -0
- data/lib/hatchet/clients/rest/docs/Worker.md +48 -0
- data/lib/hatchet/clients/rest/docs/WorkerApi.md +234 -0
- data/lib/hatchet/clients/rest/docs/WorkerLabel.md +22 -0
- data/lib/hatchet/clients/rest/docs/WorkerList.md +20 -0
- data/lib/hatchet/clients/rest/docs/WorkerRuntimeInfo.md +26 -0
- data/lib/hatchet/clients/rest/docs/WorkerRuntimeSDKs.md +15 -0
- data/lib/hatchet/clients/rest/docs/WorkerType.md +15 -0
- data/lib/hatchet/clients/rest/docs/Workflow.md +32 -0
- data/lib/hatchet/clients/rest/docs/WorkflowApi.md +1480 -0
- data/lib/hatchet/clients/rest/docs/WorkflowConcurrency.md +22 -0
- data/lib/hatchet/clients/rest/docs/WorkflowKind.md +15 -0
- data/lib/hatchet/clients/rest/docs/WorkflowList.md +22 -0
- data/lib/hatchet/clients/rest/docs/WorkflowMetrics.md +20 -0
- data/lib/hatchet/clients/rest/docs/WorkflowRun.md +48 -0
- data/lib/hatchet/clients/rest/docs/WorkflowRunApi.md +477 -0
- data/lib/hatchet/clients/rest/docs/WorkflowRunList.md +20 -0
- data/lib/hatchet/clients/rest/docs/WorkflowRunOrderByDirection.md +15 -0
- data/lib/hatchet/clients/rest/docs/WorkflowRunOrderByField.md +15 -0
- data/lib/hatchet/clients/rest/docs/WorkflowRunShape.md +50 -0
- data/lib/hatchet/clients/rest/docs/WorkflowRunShapeItemForWorkflowRunDetails.md +24 -0
- data/lib/hatchet/clients/rest/docs/WorkflowRunStatus.md +15 -0
- data/lib/hatchet/clients/rest/docs/WorkflowRunTriggeredBy.md +26 -0
- data/lib/hatchet/clients/rest/docs/WorkflowRunsApi.md +572 -0
- data/lib/hatchet/clients/rest/docs/WorkflowRunsCancelRequest.md +18 -0
- data/lib/hatchet/clients/rest/docs/WorkflowRunsMetrics.md +18 -0
- data/lib/hatchet/clients/rest/docs/WorkflowRunsMetricsCounts.md +28 -0
- data/lib/hatchet/clients/rest/docs/WorkflowTag.md +20 -0
- data/lib/hatchet/clients/rest/docs/WorkflowTriggerCronRef.md +20 -0
- data/lib/hatchet/clients/rest/docs/WorkflowTriggerEventRef.md +20 -0
- data/lib/hatchet/clients/rest/docs/WorkflowTriggers.md +26 -0
- data/lib/hatchet/clients/rest/docs/WorkflowUpdateRequest.md +18 -0
- data/lib/hatchet/clients/rest/docs/WorkflowVersion.md +40 -0
- data/lib/hatchet/clients/rest/docs/WorkflowVersionDefinition.md +18 -0
- data/lib/hatchet/clients/rest/docs/WorkflowVersionMeta.md +26 -0
- data/lib/hatchet/clients/rest/docs/WorkflowWorkersCount.md +22 -0
- data/lib/hatchet/clients/rest/git_push.sh +57 -0
- data/lib/hatchet/clients/rest/hatchet-sdk-rest.gemspec +41 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/api_token_api.rb +242 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/default_api.rb +622 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/event_api.rb +836 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/filter_api.rb +449 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/github_api.rb +107 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/healthcheck_api.rb +132 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/log_api.rb +182 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/metadata_api.rb +193 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/rate_limits_api.rb +108 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/slack_api.rb +164 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/sns_api.rb +242 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/step_run_api.rb +615 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/task_api.rb +599 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/tenant_api.rb +1327 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/user_api.rb +729 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/worker_api.rb +246 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/workflow_api.rb +1654 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/workflow_run_api.rb +540 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api/workflow_runs_api.rb +614 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api_client.rb +437 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/api_error.rb +58 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/configuration.rb +399 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/accept_invite_request.rb +255 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/api_error.rb +268 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/api_errors.rb +239 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/api_meta.rb +279 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/api_meta_auth.rb +223 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/api_meta_integration.rb +265 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/api_meta_posthog.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/api_resource_meta.rb +310 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/api_token.rb +300 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/bulk_create_event_request.rb +239 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/cancel_event_request.rb +239 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/concurrency_limit_strategy.rb +42 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/create_api_token_request.rb +257 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/create_api_token_response.rb +238 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/create_cron_workflow_trigger_request.rb +352 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/create_event_request.rb +295 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/create_pull_request_from_step_run.rb +237 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/create_sns_integration_request.rb +238 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/create_tenant_alert_email_group_request.rb +240 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/create_tenant_invite_request.rb +287 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/create_tenant_request.rb +307 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/cron_workflows.rb +509 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/cron_workflows_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/cron_workflows_method.rb +40 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/cron_workflows_order_by_field.rb +40 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/event.rb +321 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/event_data.rb +238 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/event_key_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/event_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/event_order_by_direction.rb +40 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/event_order_by_field.rb +39 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/event_update_cancel200_response.rb +222 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/event_workflow_run_summary.rb +271 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/events.rb +266 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/get_step_run_diff_response.rb +239 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/info_get_version200_response.rb +237 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/job.rb +363 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/job_run.rb +464 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/job_run_status.rb +44 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/list_api_tokens_response.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/list_pull_requests_response.rb +239 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/list_slack_webhooks.rb +265 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/list_sns_integrations.rb +265 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/log_line.rb +292 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/log_line_level.rb +42 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/log_line_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/log_line_order_by_direction.rb +40 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/log_line_order_by_field.rb +39 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/pagination_response.rb +241 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/pull_request.rb +441 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/pull_request_state.rb +40 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/queue_metrics.rb +292 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/rate_limit.rb +373 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/rate_limit_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/rate_limit_order_by_direction.rb +40 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/rate_limit_order_by_field.rb +41 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/recent_step_runs.rb +365 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/reject_invite_request.rb +255 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/replay_event_request.rb +239 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/replay_workflow_runs_request.rb +239 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/replay_workflow_runs_response.rb +239 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/rerun_step_run_request.rb +237 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/schedule_workflow_run_request.rb +326 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/scheduled_run_status.rb +45 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/scheduled_workflows.rb +538 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/scheduled_workflows_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/scheduled_workflows_method.rb +40 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/scheduled_workflows_order_by_field.rb +40 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/semaphore_slots.rb +343 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/slack_webhook.rb +372 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/sns_integration.rb +301 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/step.rb +374 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/step_run.rb +556 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/step_run_archive.rb +432 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/step_run_archive_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/step_run_diff.rb +289 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/step_run_event.rb +442 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/step_run_event_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/step_run_event_reason.rb +55 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/step_run_event_severity.rb +41 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/step_run_status.rb +47 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/tenant.rb +370 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/tenant_alert_email_group.rb +266 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/tenant_alert_email_group_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/tenant_alerting_settings.rb +314 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/tenant_invite.rb +377 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/tenant_invite_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/tenant_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/tenant_member.rb +323 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/tenant_member_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/tenant_member_role.rb +41 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/tenant_queue_metrics.rb +243 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/tenant_resource.rb +45 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/tenant_resource_limit.rb +370 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/tenant_resource_policy.rb +240 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/tenant_step_run_queue_metrics.rb +220 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/tenant_ui_version.rb +40 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/tenant_version.rb +40 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/trigger_workflow_run_request.rb +246 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/update_tenant_alert_email_group_request.rb +240 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/update_tenant_invite_request.rb +260 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/update_tenant_request.rb +323 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/update_worker_request.rb +221 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/user.rb +321 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/user_change_password_request.rb +265 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/user_login_request.rb +265 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/user_register_request.rb +292 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/user_tenant_memberships_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/user_tenant_public.rb +248 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_cancel_task_request.rb +232 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_cancelled_tasks.rb +223 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_create_filter_request.rb +320 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_dag_children.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_event.rb +380 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_event_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_event_triggered_run.rb +266 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_event_workflow_run_summary.rb +346 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_filter.rb +390 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_filter_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_log_line.rb +344 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_log_line_level.rb +42 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_log_line_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_replay_task_request.rb +232 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_replayed_tasks.rb +223 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_task_event.rb +419 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_task_event_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_task_event_type.rb +58 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_task_filter.rb +279 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_task_point_metric.rb +289 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_task_point_metrics.rb +222 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_task_run_metric.rb +285 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_task_run_status.rb +43 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_task_status.rb +43 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_task_summary.rb +812 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_task_summary_list.rb +266 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_task_timing.rb +581 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_task_timing_list.rb +266 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_trigger_workflow_run_request.rb +283 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_update_filter_request.rb +241 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_workflow_run.rb +544 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_workflow_run_details.rb +331 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_workflow_run_display_name.rb +263 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_workflow_run_display_name_list.rb +266 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/v1_workflow_type.rb +40 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/webhook_worker.rb +291 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/webhook_worker_create_request.rb +294 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/webhook_worker_create_response.rb +220 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/webhook_worker_created.rb +318 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/webhook_worker_list_response.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/webhook_worker_request.rb +314 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/webhook_worker_request_list_response.rb +223 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/webhook_worker_request_method.rb +41 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/worker.rb +489 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/worker_label.rb +274 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/worker_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/worker_runtime_info.rb +278 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/worker_runtime_sdks.rb +41 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/worker_type.rb +41 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow.rb +346 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_concurrency.rb +314 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_kind.rb +41 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_list.rb +240 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_metrics.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_run.rb +524 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_run_list.rb +231 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_run_order_by_direction.rb +40 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_run_order_by_field.rb +42 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_run_shape.rb +533 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_run_shape_item_for_workflow_run_details.rb +353 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_run_status.rb +45 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_run_triggered_by.rb +273 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_runs_cancel_request.rb +239 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_runs_metrics.rb +220 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_runs_metrics_counts.rb +265 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_tag.rb +265 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_trigger_cron_ref.rb +229 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_trigger_event_ref.rb +229 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_triggers.rb +260 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_update_request.rb +221 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_version.rb +392 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_version_definition.rb +238 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_version_meta.rb +325 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/models/workflow_workers_count.rb +238 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest/version.rb +15 -0
- data/lib/hatchet/clients/rest/lib/hatchet-sdk-rest.rb +241 -0
- data/lib/hatchet/clients/rest/spec/spec_helper.rb +111 -0
- data/lib/hatchet/clients/rest.rb +126 -0
- data/lib/hatchet/clients.rb +71 -0
- data/lib/hatchet/config.rb +482 -0
- data/lib/hatchet/features/events.rb +265 -0
- data/lib/hatchet/features/runs.rb +423 -0
- data/lib/hatchet/version.rb +1 -1
- data/lib/hatchet-sdk.rb +74 -3
- data/scripts/generate.sh +167 -0
- data/scripts/generate_api.rb +174 -0
- data/sig/hatchet-sdk.rbs +525 -1
- metadata +491 -1
|
@@ -0,0 +1,809 @@
|
|
|
1
|
+
# HatchetSdkRest::EventApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *http://localhost*
|
|
4
|
+
|
|
5
|
+
| Method | HTTP request | Description |
|
|
6
|
+
| ------ | ------------ | ----------- |
|
|
7
|
+
| [**event_create**](EventApi.md#event_create) | **POST** /api/v1/tenants/{tenant}/events | Create event |
|
|
8
|
+
| [**event_create_bulk**](EventApi.md#event_create_bulk) | **POST** /api/v1/tenants/{tenant}/events/bulk | Bulk Create events |
|
|
9
|
+
| [**event_data_get**](EventApi.md#event_data_get) | **GET** /api/v1/events/{event}/data | Get event data |
|
|
10
|
+
| [**event_get**](EventApi.md#event_get) | **GET** /api/v1/events/{event} | Get event data |
|
|
11
|
+
| [**event_key_list**](EventApi.md#event_key_list) | **GET** /api/v1/tenants/{tenant}/events/keys | List event keys |
|
|
12
|
+
| [**event_list**](EventApi.md#event_list) | **GET** /api/v1/tenants/{tenant}/events | List events |
|
|
13
|
+
| [**event_update_cancel**](EventApi.md#event_update_cancel) | **POST** /api/v1/tenants/{tenant}/events/cancel | Replay events |
|
|
14
|
+
| [**event_update_replay**](EventApi.md#event_update_replay) | **POST** /api/v1/tenants/{tenant}/events/replay | Replay events |
|
|
15
|
+
| [**v1_event_key_list**](EventApi.md#v1_event_key_list) | **GET** /api/v1/stable/tenants/{tenant}/events/keys | List event keys |
|
|
16
|
+
| [**v1_event_list**](EventApi.md#v1_event_list) | **GET** /api/v1/stable/tenants/{tenant}/events | List events |
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
## event_create
|
|
20
|
+
|
|
21
|
+
> <Event> event_create(tenant, create_event_request)
|
|
22
|
+
|
|
23
|
+
Create event
|
|
24
|
+
|
|
25
|
+
Creates a new event.
|
|
26
|
+
|
|
27
|
+
### Examples
|
|
28
|
+
|
|
29
|
+
```ruby
|
|
30
|
+
require 'time'
|
|
31
|
+
require 'hatchet-sdk-rest'
|
|
32
|
+
# setup authorization
|
|
33
|
+
HatchetSdkRest.configure do |config|
|
|
34
|
+
# Configure API key authorization: cookieAuth
|
|
35
|
+
config.api_key['hatchet'] = 'YOUR API KEY'
|
|
36
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
37
|
+
# config.api_key_prefix['hatchet'] = 'Bearer'
|
|
38
|
+
|
|
39
|
+
# Configure Bearer authorization: bearerAuth
|
|
40
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
api_instance = HatchetSdkRest::EventApi.new
|
|
44
|
+
tenant = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # String | The tenant id
|
|
45
|
+
create_event_request = HatchetSdkRest::CreateEventRequest.new({key: 'key_example', data: 3.56}) # CreateEventRequest | The event to create
|
|
46
|
+
|
|
47
|
+
begin
|
|
48
|
+
# Create event
|
|
49
|
+
result = api_instance.event_create(tenant, create_event_request)
|
|
50
|
+
p result
|
|
51
|
+
rescue HatchetSdkRest::ApiError => e
|
|
52
|
+
puts "Error when calling EventApi->event_create: #{e}"
|
|
53
|
+
end
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
#### Using the event_create_with_http_info variant
|
|
57
|
+
|
|
58
|
+
This returns an Array which contains the response data, status code and headers.
|
|
59
|
+
|
|
60
|
+
> <Array(<Event>, Integer, Hash)> event_create_with_http_info(tenant, create_event_request)
|
|
61
|
+
|
|
62
|
+
```ruby
|
|
63
|
+
begin
|
|
64
|
+
# Create event
|
|
65
|
+
data, status_code, headers = api_instance.event_create_with_http_info(tenant, create_event_request)
|
|
66
|
+
p status_code # => 2xx
|
|
67
|
+
p headers # => { ... }
|
|
68
|
+
p data # => <Event>
|
|
69
|
+
rescue HatchetSdkRest::ApiError => e
|
|
70
|
+
puts "Error when calling EventApi->event_create_with_http_info: #{e}"
|
|
71
|
+
end
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
### Parameters
|
|
75
|
+
|
|
76
|
+
| Name | Type | Description | Notes |
|
|
77
|
+
| ---- | ---- | ----------- | ----- |
|
|
78
|
+
| **tenant** | **String** | The tenant id | |
|
|
79
|
+
| **create_event_request** | [**CreateEventRequest**](CreateEventRequest.md) | The event to create | |
|
|
80
|
+
|
|
81
|
+
### Return type
|
|
82
|
+
|
|
83
|
+
[**Event**](Event.md)
|
|
84
|
+
|
|
85
|
+
### Authorization
|
|
86
|
+
|
|
87
|
+
[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)
|
|
88
|
+
|
|
89
|
+
### HTTP request headers
|
|
90
|
+
|
|
91
|
+
- **Content-Type**: application/json
|
|
92
|
+
- **Accept**: application/json
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
## event_create_bulk
|
|
96
|
+
|
|
97
|
+
> <Events> event_create_bulk(tenant, bulk_create_event_request)
|
|
98
|
+
|
|
99
|
+
Bulk Create events
|
|
100
|
+
|
|
101
|
+
Bulk creates new events.
|
|
102
|
+
|
|
103
|
+
### Examples
|
|
104
|
+
|
|
105
|
+
```ruby
|
|
106
|
+
require 'time'
|
|
107
|
+
require 'hatchet-sdk-rest'
|
|
108
|
+
# setup authorization
|
|
109
|
+
HatchetSdkRest.configure do |config|
|
|
110
|
+
# Configure API key authorization: cookieAuth
|
|
111
|
+
config.api_key['hatchet'] = 'YOUR API KEY'
|
|
112
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
113
|
+
# config.api_key_prefix['hatchet'] = 'Bearer'
|
|
114
|
+
|
|
115
|
+
# Configure Bearer authorization: bearerAuth
|
|
116
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
api_instance = HatchetSdkRest::EventApi.new
|
|
120
|
+
tenant = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # String | The tenant id
|
|
121
|
+
bulk_create_event_request = HatchetSdkRest::BulkCreateEventRequest.new({events: [HatchetSdkRest::CreateEventRequest.new({key: 'key_example', data: 3.56})]}) # BulkCreateEventRequest | The events to create
|
|
122
|
+
|
|
123
|
+
begin
|
|
124
|
+
# Bulk Create events
|
|
125
|
+
result = api_instance.event_create_bulk(tenant, bulk_create_event_request)
|
|
126
|
+
p result
|
|
127
|
+
rescue HatchetSdkRest::ApiError => e
|
|
128
|
+
puts "Error when calling EventApi->event_create_bulk: #{e}"
|
|
129
|
+
end
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
#### Using the event_create_bulk_with_http_info variant
|
|
133
|
+
|
|
134
|
+
This returns an Array which contains the response data, status code and headers.
|
|
135
|
+
|
|
136
|
+
> <Array(<Events>, Integer, Hash)> event_create_bulk_with_http_info(tenant, bulk_create_event_request)
|
|
137
|
+
|
|
138
|
+
```ruby
|
|
139
|
+
begin
|
|
140
|
+
# Bulk Create events
|
|
141
|
+
data, status_code, headers = api_instance.event_create_bulk_with_http_info(tenant, bulk_create_event_request)
|
|
142
|
+
p status_code # => 2xx
|
|
143
|
+
p headers # => { ... }
|
|
144
|
+
p data # => <Events>
|
|
145
|
+
rescue HatchetSdkRest::ApiError => e
|
|
146
|
+
puts "Error when calling EventApi->event_create_bulk_with_http_info: #{e}"
|
|
147
|
+
end
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
### Parameters
|
|
151
|
+
|
|
152
|
+
| Name | Type | Description | Notes |
|
|
153
|
+
| ---- | ---- | ----------- | ----- |
|
|
154
|
+
| **tenant** | **String** | The tenant id | |
|
|
155
|
+
| **bulk_create_event_request** | [**BulkCreateEventRequest**](BulkCreateEventRequest.md) | The events to create | |
|
|
156
|
+
|
|
157
|
+
### Return type
|
|
158
|
+
|
|
159
|
+
[**Events**](Events.md)
|
|
160
|
+
|
|
161
|
+
### Authorization
|
|
162
|
+
|
|
163
|
+
[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)
|
|
164
|
+
|
|
165
|
+
### HTTP request headers
|
|
166
|
+
|
|
167
|
+
- **Content-Type**: application/json
|
|
168
|
+
- **Accept**: application/json
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
## event_data_get
|
|
172
|
+
|
|
173
|
+
> <EventData> event_data_get(event)
|
|
174
|
+
|
|
175
|
+
Get event data
|
|
176
|
+
|
|
177
|
+
Get the data for an event.
|
|
178
|
+
|
|
179
|
+
### Examples
|
|
180
|
+
|
|
181
|
+
```ruby
|
|
182
|
+
require 'time'
|
|
183
|
+
require 'hatchet-sdk-rest'
|
|
184
|
+
# setup authorization
|
|
185
|
+
HatchetSdkRest.configure do |config|
|
|
186
|
+
# Configure API key authorization: cookieAuth
|
|
187
|
+
config.api_key['hatchet'] = 'YOUR API KEY'
|
|
188
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
189
|
+
# config.api_key_prefix['hatchet'] = 'Bearer'
|
|
190
|
+
|
|
191
|
+
# Configure Bearer authorization: bearerAuth
|
|
192
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
api_instance = HatchetSdkRest::EventApi.new
|
|
196
|
+
event = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # String | The event id
|
|
197
|
+
|
|
198
|
+
begin
|
|
199
|
+
# Get event data
|
|
200
|
+
result = api_instance.event_data_get(event)
|
|
201
|
+
p result
|
|
202
|
+
rescue HatchetSdkRest::ApiError => e
|
|
203
|
+
puts "Error when calling EventApi->event_data_get: #{e}"
|
|
204
|
+
end
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
#### Using the event_data_get_with_http_info variant
|
|
208
|
+
|
|
209
|
+
This returns an Array which contains the response data, status code and headers.
|
|
210
|
+
|
|
211
|
+
> <Array(<EventData>, Integer, Hash)> event_data_get_with_http_info(event)
|
|
212
|
+
|
|
213
|
+
```ruby
|
|
214
|
+
begin
|
|
215
|
+
# Get event data
|
|
216
|
+
data, status_code, headers = api_instance.event_data_get_with_http_info(event)
|
|
217
|
+
p status_code # => 2xx
|
|
218
|
+
p headers # => { ... }
|
|
219
|
+
p data # => <EventData>
|
|
220
|
+
rescue HatchetSdkRest::ApiError => e
|
|
221
|
+
puts "Error when calling EventApi->event_data_get_with_http_info: #{e}"
|
|
222
|
+
end
|
|
223
|
+
```
|
|
224
|
+
|
|
225
|
+
### Parameters
|
|
226
|
+
|
|
227
|
+
| Name | Type | Description | Notes |
|
|
228
|
+
| ---- | ---- | ----------- | ----- |
|
|
229
|
+
| **event** | **String** | The event id | |
|
|
230
|
+
|
|
231
|
+
### Return type
|
|
232
|
+
|
|
233
|
+
[**EventData**](EventData.md)
|
|
234
|
+
|
|
235
|
+
### Authorization
|
|
236
|
+
|
|
237
|
+
[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)
|
|
238
|
+
|
|
239
|
+
### HTTP request headers
|
|
240
|
+
|
|
241
|
+
- **Content-Type**: Not defined
|
|
242
|
+
- **Accept**: application/json
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
## event_get
|
|
246
|
+
|
|
247
|
+
> <Event> event_get(event)
|
|
248
|
+
|
|
249
|
+
Get event data
|
|
250
|
+
|
|
251
|
+
Get an event.
|
|
252
|
+
|
|
253
|
+
### Examples
|
|
254
|
+
|
|
255
|
+
```ruby
|
|
256
|
+
require 'time'
|
|
257
|
+
require 'hatchet-sdk-rest'
|
|
258
|
+
# setup authorization
|
|
259
|
+
HatchetSdkRest.configure do |config|
|
|
260
|
+
# Configure API key authorization: cookieAuth
|
|
261
|
+
config.api_key['hatchet'] = 'YOUR API KEY'
|
|
262
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
263
|
+
# config.api_key_prefix['hatchet'] = 'Bearer'
|
|
264
|
+
|
|
265
|
+
# Configure Bearer authorization: bearerAuth
|
|
266
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
267
|
+
end
|
|
268
|
+
|
|
269
|
+
api_instance = HatchetSdkRest::EventApi.new
|
|
270
|
+
event = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # String | The event id
|
|
271
|
+
|
|
272
|
+
begin
|
|
273
|
+
# Get event data
|
|
274
|
+
result = api_instance.event_get(event)
|
|
275
|
+
p result
|
|
276
|
+
rescue HatchetSdkRest::ApiError => e
|
|
277
|
+
puts "Error when calling EventApi->event_get: #{e}"
|
|
278
|
+
end
|
|
279
|
+
```
|
|
280
|
+
|
|
281
|
+
#### Using the event_get_with_http_info variant
|
|
282
|
+
|
|
283
|
+
This returns an Array which contains the response data, status code and headers.
|
|
284
|
+
|
|
285
|
+
> <Array(<Event>, Integer, Hash)> event_get_with_http_info(event)
|
|
286
|
+
|
|
287
|
+
```ruby
|
|
288
|
+
begin
|
|
289
|
+
# Get event data
|
|
290
|
+
data, status_code, headers = api_instance.event_get_with_http_info(event)
|
|
291
|
+
p status_code # => 2xx
|
|
292
|
+
p headers # => { ... }
|
|
293
|
+
p data # => <Event>
|
|
294
|
+
rescue HatchetSdkRest::ApiError => e
|
|
295
|
+
puts "Error when calling EventApi->event_get_with_http_info: #{e}"
|
|
296
|
+
end
|
|
297
|
+
```
|
|
298
|
+
|
|
299
|
+
### Parameters
|
|
300
|
+
|
|
301
|
+
| Name | Type | Description | Notes |
|
|
302
|
+
| ---- | ---- | ----------- | ----- |
|
|
303
|
+
| **event** | **String** | The event id | |
|
|
304
|
+
|
|
305
|
+
### Return type
|
|
306
|
+
|
|
307
|
+
[**Event**](Event.md)
|
|
308
|
+
|
|
309
|
+
### Authorization
|
|
310
|
+
|
|
311
|
+
[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)
|
|
312
|
+
|
|
313
|
+
### HTTP request headers
|
|
314
|
+
|
|
315
|
+
- **Content-Type**: Not defined
|
|
316
|
+
- **Accept**: application/json
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
## event_key_list
|
|
320
|
+
|
|
321
|
+
> <EventKeyList> event_key_list(tenant)
|
|
322
|
+
|
|
323
|
+
List event keys
|
|
324
|
+
|
|
325
|
+
Lists all event keys for a tenant.
|
|
326
|
+
|
|
327
|
+
### Examples
|
|
328
|
+
|
|
329
|
+
```ruby
|
|
330
|
+
require 'time'
|
|
331
|
+
require 'hatchet-sdk-rest'
|
|
332
|
+
# setup authorization
|
|
333
|
+
HatchetSdkRest.configure do |config|
|
|
334
|
+
# Configure API key authorization: cookieAuth
|
|
335
|
+
config.api_key['hatchet'] = 'YOUR API KEY'
|
|
336
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
337
|
+
# config.api_key_prefix['hatchet'] = 'Bearer'
|
|
338
|
+
|
|
339
|
+
# Configure Bearer authorization: bearerAuth
|
|
340
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
341
|
+
end
|
|
342
|
+
|
|
343
|
+
api_instance = HatchetSdkRest::EventApi.new
|
|
344
|
+
tenant = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # String | The tenant id
|
|
345
|
+
|
|
346
|
+
begin
|
|
347
|
+
# List event keys
|
|
348
|
+
result = api_instance.event_key_list(tenant)
|
|
349
|
+
p result
|
|
350
|
+
rescue HatchetSdkRest::ApiError => e
|
|
351
|
+
puts "Error when calling EventApi->event_key_list: #{e}"
|
|
352
|
+
end
|
|
353
|
+
```
|
|
354
|
+
|
|
355
|
+
#### Using the event_key_list_with_http_info variant
|
|
356
|
+
|
|
357
|
+
This returns an Array which contains the response data, status code and headers.
|
|
358
|
+
|
|
359
|
+
> <Array(<EventKeyList>, Integer, Hash)> event_key_list_with_http_info(tenant)
|
|
360
|
+
|
|
361
|
+
```ruby
|
|
362
|
+
begin
|
|
363
|
+
# List event keys
|
|
364
|
+
data, status_code, headers = api_instance.event_key_list_with_http_info(tenant)
|
|
365
|
+
p status_code # => 2xx
|
|
366
|
+
p headers # => { ... }
|
|
367
|
+
p data # => <EventKeyList>
|
|
368
|
+
rescue HatchetSdkRest::ApiError => e
|
|
369
|
+
puts "Error when calling EventApi->event_key_list_with_http_info: #{e}"
|
|
370
|
+
end
|
|
371
|
+
```
|
|
372
|
+
|
|
373
|
+
### Parameters
|
|
374
|
+
|
|
375
|
+
| Name | Type | Description | Notes |
|
|
376
|
+
| ---- | ---- | ----------- | ----- |
|
|
377
|
+
| **tenant** | **String** | The tenant id | |
|
|
378
|
+
|
|
379
|
+
### Return type
|
|
380
|
+
|
|
381
|
+
[**EventKeyList**](EventKeyList.md)
|
|
382
|
+
|
|
383
|
+
### Authorization
|
|
384
|
+
|
|
385
|
+
[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)
|
|
386
|
+
|
|
387
|
+
### HTTP request headers
|
|
388
|
+
|
|
389
|
+
- **Content-Type**: Not defined
|
|
390
|
+
- **Accept**: application/json
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
## event_list
|
|
394
|
+
|
|
395
|
+
> <EventList> event_list(tenant, opts)
|
|
396
|
+
|
|
397
|
+
List events
|
|
398
|
+
|
|
399
|
+
Lists all events for a tenant.
|
|
400
|
+
|
|
401
|
+
### Examples
|
|
402
|
+
|
|
403
|
+
```ruby
|
|
404
|
+
require 'time'
|
|
405
|
+
require 'hatchet-sdk-rest'
|
|
406
|
+
# setup authorization
|
|
407
|
+
HatchetSdkRest.configure do |config|
|
|
408
|
+
# Configure API key authorization: cookieAuth
|
|
409
|
+
config.api_key['hatchet'] = 'YOUR API KEY'
|
|
410
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
411
|
+
# config.api_key_prefix['hatchet'] = 'Bearer'
|
|
412
|
+
|
|
413
|
+
# Configure Bearer authorization: bearerAuth
|
|
414
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
415
|
+
end
|
|
416
|
+
|
|
417
|
+
api_instance = HatchetSdkRest::EventApi.new
|
|
418
|
+
tenant = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # String | The tenant id
|
|
419
|
+
opts = {
|
|
420
|
+
offset: 789, # Integer | The number to skip
|
|
421
|
+
limit: 789, # Integer | The number to limit by
|
|
422
|
+
keys: ['inner_example'], # Array<String> | A list of keys to filter by
|
|
423
|
+
workflows: ['inner_example'], # Array<String> | A list of workflow IDs to filter by
|
|
424
|
+
statuses: [HatchetSdkRest::WorkflowRunStatus::PENDING], # Array<WorkflowRunStatus> | A list of workflow run statuses to filter by
|
|
425
|
+
search: 'search_example', # String | The search query to filter for
|
|
426
|
+
order_by_field: HatchetSdkRest::EventOrderByField::CREATED_AT, # EventOrderByField | What to order by
|
|
427
|
+
order_by_direction: HatchetSdkRest::EventOrderByDirection::ASC, # EventOrderByDirection | The order direction
|
|
428
|
+
additional_metadata: ['inner_example'], # Array<String> | A list of metadata key value pairs to filter by
|
|
429
|
+
event_ids: ['inner_example'] # Array<String> | A list of event ids to filter by
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
begin
|
|
433
|
+
# List events
|
|
434
|
+
result = api_instance.event_list(tenant, opts)
|
|
435
|
+
p result
|
|
436
|
+
rescue HatchetSdkRest::ApiError => e
|
|
437
|
+
puts "Error when calling EventApi->event_list: #{e}"
|
|
438
|
+
end
|
|
439
|
+
```
|
|
440
|
+
|
|
441
|
+
#### Using the event_list_with_http_info variant
|
|
442
|
+
|
|
443
|
+
This returns an Array which contains the response data, status code and headers.
|
|
444
|
+
|
|
445
|
+
> <Array(<EventList>, Integer, Hash)> event_list_with_http_info(tenant, opts)
|
|
446
|
+
|
|
447
|
+
```ruby
|
|
448
|
+
begin
|
|
449
|
+
# List events
|
|
450
|
+
data, status_code, headers = api_instance.event_list_with_http_info(tenant, opts)
|
|
451
|
+
p status_code # => 2xx
|
|
452
|
+
p headers # => { ... }
|
|
453
|
+
p data # => <EventList>
|
|
454
|
+
rescue HatchetSdkRest::ApiError => e
|
|
455
|
+
puts "Error when calling EventApi->event_list_with_http_info: #{e}"
|
|
456
|
+
end
|
|
457
|
+
```
|
|
458
|
+
|
|
459
|
+
### Parameters
|
|
460
|
+
|
|
461
|
+
| Name | Type | Description | Notes |
|
|
462
|
+
| ---- | ---- | ----------- | ----- |
|
|
463
|
+
| **tenant** | **String** | The tenant id | |
|
|
464
|
+
| **offset** | **Integer** | The number to skip | [optional] |
|
|
465
|
+
| **limit** | **Integer** | The number to limit by | [optional] |
|
|
466
|
+
| **keys** | [**Array<String>**](String.md) | A list of keys to filter by | [optional] |
|
|
467
|
+
| **workflows** | [**Array<String>**](String.md) | A list of workflow IDs to filter by | [optional] |
|
|
468
|
+
| **statuses** | [**Array<WorkflowRunStatus>**](WorkflowRunStatus.md) | A list of workflow run statuses to filter by | [optional] |
|
|
469
|
+
| **search** | **String** | The search query to filter for | [optional] |
|
|
470
|
+
| **order_by_field** | [**EventOrderByField**](.md) | What to order by | [optional] |
|
|
471
|
+
| **order_by_direction** | [**EventOrderByDirection**](.md) | The order direction | [optional] |
|
|
472
|
+
| **additional_metadata** | [**Array<String>**](String.md) | A list of metadata key value pairs to filter by | [optional] |
|
|
473
|
+
| **event_ids** | [**Array<String>**](String.md) | A list of event ids to filter by | [optional] |
|
|
474
|
+
|
|
475
|
+
### Return type
|
|
476
|
+
|
|
477
|
+
[**EventList**](EventList.md)
|
|
478
|
+
|
|
479
|
+
### Authorization
|
|
480
|
+
|
|
481
|
+
[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)
|
|
482
|
+
|
|
483
|
+
### HTTP request headers
|
|
484
|
+
|
|
485
|
+
- **Content-Type**: Not defined
|
|
486
|
+
- **Accept**: application/json
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
## event_update_cancel
|
|
490
|
+
|
|
491
|
+
> <EventUpdateCancel200Response> event_update_cancel(tenant, cancel_event_request)
|
|
492
|
+
|
|
493
|
+
Replay events
|
|
494
|
+
|
|
495
|
+
Cancels all runs for a list of events.
|
|
496
|
+
|
|
497
|
+
### Examples
|
|
498
|
+
|
|
499
|
+
```ruby
|
|
500
|
+
require 'time'
|
|
501
|
+
require 'hatchet-sdk-rest'
|
|
502
|
+
# setup authorization
|
|
503
|
+
HatchetSdkRest.configure do |config|
|
|
504
|
+
# Configure API key authorization: cookieAuth
|
|
505
|
+
config.api_key['hatchet'] = 'YOUR API KEY'
|
|
506
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
507
|
+
# config.api_key_prefix['hatchet'] = 'Bearer'
|
|
508
|
+
|
|
509
|
+
# Configure Bearer authorization: bearerAuth
|
|
510
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
511
|
+
end
|
|
512
|
+
|
|
513
|
+
api_instance = HatchetSdkRest::EventApi.new
|
|
514
|
+
tenant = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # String | The tenant id
|
|
515
|
+
cancel_event_request = HatchetSdkRest::CancelEventRequest.new({event_ids: ['bb214807-246e-43a5-a25d-41761d1cff9e']}) # CancelEventRequest | The event ids to replay
|
|
516
|
+
|
|
517
|
+
begin
|
|
518
|
+
# Replay events
|
|
519
|
+
result = api_instance.event_update_cancel(tenant, cancel_event_request)
|
|
520
|
+
p result
|
|
521
|
+
rescue HatchetSdkRest::ApiError => e
|
|
522
|
+
puts "Error when calling EventApi->event_update_cancel: #{e}"
|
|
523
|
+
end
|
|
524
|
+
```
|
|
525
|
+
|
|
526
|
+
#### Using the event_update_cancel_with_http_info variant
|
|
527
|
+
|
|
528
|
+
This returns an Array which contains the response data, status code and headers.
|
|
529
|
+
|
|
530
|
+
> <Array(<EventUpdateCancel200Response>, Integer, Hash)> event_update_cancel_with_http_info(tenant, cancel_event_request)
|
|
531
|
+
|
|
532
|
+
```ruby
|
|
533
|
+
begin
|
|
534
|
+
# Replay events
|
|
535
|
+
data, status_code, headers = api_instance.event_update_cancel_with_http_info(tenant, cancel_event_request)
|
|
536
|
+
p status_code # => 2xx
|
|
537
|
+
p headers # => { ... }
|
|
538
|
+
p data # => <EventUpdateCancel200Response>
|
|
539
|
+
rescue HatchetSdkRest::ApiError => e
|
|
540
|
+
puts "Error when calling EventApi->event_update_cancel_with_http_info: #{e}"
|
|
541
|
+
end
|
|
542
|
+
```
|
|
543
|
+
|
|
544
|
+
### Parameters
|
|
545
|
+
|
|
546
|
+
| Name | Type | Description | Notes |
|
|
547
|
+
| ---- | ---- | ----------- | ----- |
|
|
548
|
+
| **tenant** | **String** | The tenant id | |
|
|
549
|
+
| **cancel_event_request** | [**CancelEventRequest**](CancelEventRequest.md) | The event ids to replay | |
|
|
550
|
+
|
|
551
|
+
### Return type
|
|
552
|
+
|
|
553
|
+
[**EventUpdateCancel200Response**](EventUpdateCancel200Response.md)
|
|
554
|
+
|
|
555
|
+
### Authorization
|
|
556
|
+
|
|
557
|
+
[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)
|
|
558
|
+
|
|
559
|
+
### HTTP request headers
|
|
560
|
+
|
|
561
|
+
- **Content-Type**: application/json
|
|
562
|
+
- **Accept**: application/json
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
## event_update_replay
|
|
566
|
+
|
|
567
|
+
> <EventList> event_update_replay(tenant, replay_event_request)
|
|
568
|
+
|
|
569
|
+
Replay events
|
|
570
|
+
|
|
571
|
+
Replays a list of events.
|
|
572
|
+
|
|
573
|
+
### Examples
|
|
574
|
+
|
|
575
|
+
```ruby
|
|
576
|
+
require 'time'
|
|
577
|
+
require 'hatchet-sdk-rest'
|
|
578
|
+
# setup authorization
|
|
579
|
+
HatchetSdkRest.configure do |config|
|
|
580
|
+
# Configure API key authorization: cookieAuth
|
|
581
|
+
config.api_key['hatchet'] = 'YOUR API KEY'
|
|
582
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
583
|
+
# config.api_key_prefix['hatchet'] = 'Bearer'
|
|
584
|
+
|
|
585
|
+
# Configure Bearer authorization: bearerAuth
|
|
586
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
587
|
+
end
|
|
588
|
+
|
|
589
|
+
api_instance = HatchetSdkRest::EventApi.new
|
|
590
|
+
tenant = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # String | The tenant id
|
|
591
|
+
replay_event_request = HatchetSdkRest::ReplayEventRequest.new({event_ids: ['bb214807-246e-43a5-a25d-41761d1cff9e']}) # ReplayEventRequest | The event ids to replay
|
|
592
|
+
|
|
593
|
+
begin
|
|
594
|
+
# Replay events
|
|
595
|
+
result = api_instance.event_update_replay(tenant, replay_event_request)
|
|
596
|
+
p result
|
|
597
|
+
rescue HatchetSdkRest::ApiError => e
|
|
598
|
+
puts "Error when calling EventApi->event_update_replay: #{e}"
|
|
599
|
+
end
|
|
600
|
+
```
|
|
601
|
+
|
|
602
|
+
#### Using the event_update_replay_with_http_info variant
|
|
603
|
+
|
|
604
|
+
This returns an Array which contains the response data, status code and headers.
|
|
605
|
+
|
|
606
|
+
> <Array(<EventList>, Integer, Hash)> event_update_replay_with_http_info(tenant, replay_event_request)
|
|
607
|
+
|
|
608
|
+
```ruby
|
|
609
|
+
begin
|
|
610
|
+
# Replay events
|
|
611
|
+
data, status_code, headers = api_instance.event_update_replay_with_http_info(tenant, replay_event_request)
|
|
612
|
+
p status_code # => 2xx
|
|
613
|
+
p headers # => { ... }
|
|
614
|
+
p data # => <EventList>
|
|
615
|
+
rescue HatchetSdkRest::ApiError => e
|
|
616
|
+
puts "Error when calling EventApi->event_update_replay_with_http_info: #{e}"
|
|
617
|
+
end
|
|
618
|
+
```
|
|
619
|
+
|
|
620
|
+
### Parameters
|
|
621
|
+
|
|
622
|
+
| Name | Type | Description | Notes |
|
|
623
|
+
| ---- | ---- | ----------- | ----- |
|
|
624
|
+
| **tenant** | **String** | The tenant id | |
|
|
625
|
+
| **replay_event_request** | [**ReplayEventRequest**](ReplayEventRequest.md) | The event ids to replay | |
|
|
626
|
+
|
|
627
|
+
### Return type
|
|
628
|
+
|
|
629
|
+
[**EventList**](EventList.md)
|
|
630
|
+
|
|
631
|
+
### Authorization
|
|
632
|
+
|
|
633
|
+
[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)
|
|
634
|
+
|
|
635
|
+
### HTTP request headers
|
|
636
|
+
|
|
637
|
+
- **Content-Type**: application/json
|
|
638
|
+
- **Accept**: application/json
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
## v1_event_key_list
|
|
642
|
+
|
|
643
|
+
> <EventKeyList> v1_event_key_list(tenant)
|
|
644
|
+
|
|
645
|
+
List event keys
|
|
646
|
+
|
|
647
|
+
Lists all event keys for a tenant.
|
|
648
|
+
|
|
649
|
+
### Examples
|
|
650
|
+
|
|
651
|
+
```ruby
|
|
652
|
+
require 'time'
|
|
653
|
+
require 'hatchet-sdk-rest'
|
|
654
|
+
# setup authorization
|
|
655
|
+
HatchetSdkRest.configure do |config|
|
|
656
|
+
# Configure API key authorization: cookieAuth
|
|
657
|
+
config.api_key['hatchet'] = 'YOUR API KEY'
|
|
658
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
659
|
+
# config.api_key_prefix['hatchet'] = 'Bearer'
|
|
660
|
+
|
|
661
|
+
# Configure Bearer authorization: bearerAuth
|
|
662
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
663
|
+
end
|
|
664
|
+
|
|
665
|
+
api_instance = HatchetSdkRest::EventApi.new
|
|
666
|
+
tenant = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # String | The tenant id
|
|
667
|
+
|
|
668
|
+
begin
|
|
669
|
+
# List event keys
|
|
670
|
+
result = api_instance.v1_event_key_list(tenant)
|
|
671
|
+
p result
|
|
672
|
+
rescue HatchetSdkRest::ApiError => e
|
|
673
|
+
puts "Error when calling EventApi->v1_event_key_list: #{e}"
|
|
674
|
+
end
|
|
675
|
+
```
|
|
676
|
+
|
|
677
|
+
#### Using the v1_event_key_list_with_http_info variant
|
|
678
|
+
|
|
679
|
+
This returns an Array which contains the response data, status code and headers.
|
|
680
|
+
|
|
681
|
+
> <Array(<EventKeyList>, Integer, Hash)> v1_event_key_list_with_http_info(tenant)
|
|
682
|
+
|
|
683
|
+
```ruby
|
|
684
|
+
begin
|
|
685
|
+
# List event keys
|
|
686
|
+
data, status_code, headers = api_instance.v1_event_key_list_with_http_info(tenant)
|
|
687
|
+
p status_code # => 2xx
|
|
688
|
+
p headers # => { ... }
|
|
689
|
+
p data # => <EventKeyList>
|
|
690
|
+
rescue HatchetSdkRest::ApiError => e
|
|
691
|
+
puts "Error when calling EventApi->v1_event_key_list_with_http_info: #{e}"
|
|
692
|
+
end
|
|
693
|
+
```
|
|
694
|
+
|
|
695
|
+
### Parameters
|
|
696
|
+
|
|
697
|
+
| Name | Type | Description | Notes |
|
|
698
|
+
| ---- | ---- | ----------- | ----- |
|
|
699
|
+
| **tenant** | **String** | The tenant id | |
|
|
700
|
+
|
|
701
|
+
### Return type
|
|
702
|
+
|
|
703
|
+
[**EventKeyList**](EventKeyList.md)
|
|
704
|
+
|
|
705
|
+
### Authorization
|
|
706
|
+
|
|
707
|
+
[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)
|
|
708
|
+
|
|
709
|
+
### HTTP request headers
|
|
710
|
+
|
|
711
|
+
- **Content-Type**: Not defined
|
|
712
|
+
- **Accept**: application/json
|
|
713
|
+
|
|
714
|
+
|
|
715
|
+
## v1_event_list
|
|
716
|
+
|
|
717
|
+
> <V1EventList> v1_event_list(tenant, opts)
|
|
718
|
+
|
|
719
|
+
List events
|
|
720
|
+
|
|
721
|
+
Lists all events for a tenant.
|
|
722
|
+
|
|
723
|
+
### Examples
|
|
724
|
+
|
|
725
|
+
```ruby
|
|
726
|
+
require 'time'
|
|
727
|
+
require 'hatchet-sdk-rest'
|
|
728
|
+
# setup authorization
|
|
729
|
+
HatchetSdkRest.configure do |config|
|
|
730
|
+
# Configure API key authorization: cookieAuth
|
|
731
|
+
config.api_key['hatchet'] = 'YOUR API KEY'
|
|
732
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
733
|
+
# config.api_key_prefix['hatchet'] = 'Bearer'
|
|
734
|
+
|
|
735
|
+
# Configure Bearer authorization: bearerAuth
|
|
736
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
737
|
+
end
|
|
738
|
+
|
|
739
|
+
api_instance = HatchetSdkRest::EventApi.new
|
|
740
|
+
tenant = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # String | The tenant id
|
|
741
|
+
opts = {
|
|
742
|
+
offset: 789, # Integer | The number to skip
|
|
743
|
+
limit: 789, # Integer | The number to limit by
|
|
744
|
+
keys: ['inner_example'], # Array<String> | A list of keys to filter by
|
|
745
|
+
since: Time.parse('2013-10-20T19:20:30+01:00'), # Time | Consider events that occurred after this time
|
|
746
|
+
_until: Time.parse('2013-10-20T19:20:30+01:00'), # Time | Consider events that occurred before this time
|
|
747
|
+
workflow_ids: ['inner_example'], # Array<String> | Filter to events that are associated with a specific workflow run
|
|
748
|
+
workflow_run_statuses: [HatchetSdkRest::V1TaskStatus::QUEUED], # Array<V1TaskStatus> | Filter to events that are associated with workflow runs matching a certain status
|
|
749
|
+
event_ids: ['inner_example'], # Array<String> | Filter to specific events by their ids
|
|
750
|
+
additional_metadata: ['inner_example'], # Array<String> | Filter by additional metadata on the events
|
|
751
|
+
scopes: ['inner_example'] # Array<String> | The scopes to filter by
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
begin
|
|
755
|
+
# List events
|
|
756
|
+
result = api_instance.v1_event_list(tenant, opts)
|
|
757
|
+
p result
|
|
758
|
+
rescue HatchetSdkRest::ApiError => e
|
|
759
|
+
puts "Error when calling EventApi->v1_event_list: #{e}"
|
|
760
|
+
end
|
|
761
|
+
```
|
|
762
|
+
|
|
763
|
+
#### Using the v1_event_list_with_http_info variant
|
|
764
|
+
|
|
765
|
+
This returns an Array which contains the response data, status code and headers.
|
|
766
|
+
|
|
767
|
+
> <Array(<V1EventList>, Integer, Hash)> v1_event_list_with_http_info(tenant, opts)
|
|
768
|
+
|
|
769
|
+
```ruby
|
|
770
|
+
begin
|
|
771
|
+
# List events
|
|
772
|
+
data, status_code, headers = api_instance.v1_event_list_with_http_info(tenant, opts)
|
|
773
|
+
p status_code # => 2xx
|
|
774
|
+
p headers # => { ... }
|
|
775
|
+
p data # => <V1EventList>
|
|
776
|
+
rescue HatchetSdkRest::ApiError => e
|
|
777
|
+
puts "Error when calling EventApi->v1_event_list_with_http_info: #{e}"
|
|
778
|
+
end
|
|
779
|
+
```
|
|
780
|
+
|
|
781
|
+
### Parameters
|
|
782
|
+
|
|
783
|
+
| Name | Type | Description | Notes |
|
|
784
|
+
| ---- | ---- | ----------- | ----- |
|
|
785
|
+
| **tenant** | **String** | The tenant id | |
|
|
786
|
+
| **offset** | **Integer** | The number to skip | [optional] |
|
|
787
|
+
| **limit** | **Integer** | The number to limit by | [optional] |
|
|
788
|
+
| **keys** | [**Array<String>**](String.md) | A list of keys to filter by | [optional] |
|
|
789
|
+
| **since** | **Time** | Consider events that occurred after this time | [optional] |
|
|
790
|
+
| **_until** | **Time** | Consider events that occurred before this time | [optional] |
|
|
791
|
+
| **workflow_ids** | [**Array<String>**](String.md) | Filter to events that are associated with a specific workflow run | [optional] |
|
|
792
|
+
| **workflow_run_statuses** | [**Array<V1TaskStatus>**](V1TaskStatus.md) | Filter to events that are associated with workflow runs matching a certain status | [optional] |
|
|
793
|
+
| **event_ids** | [**Array<String>**](String.md) | Filter to specific events by their ids | [optional] |
|
|
794
|
+
| **additional_metadata** | [**Array<String>**](String.md) | Filter by additional metadata on the events | [optional] |
|
|
795
|
+
| **scopes** | [**Array<String>**](String.md) | The scopes to filter by | [optional] |
|
|
796
|
+
|
|
797
|
+
### Return type
|
|
798
|
+
|
|
799
|
+
[**V1EventList**](V1EventList.md)
|
|
800
|
+
|
|
801
|
+
### Authorization
|
|
802
|
+
|
|
803
|
+
[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)
|
|
804
|
+
|
|
805
|
+
### HTTP request headers
|
|
806
|
+
|
|
807
|
+
- **Content-Type**: Not defined
|
|
808
|
+
- **Accept**: application/json
|
|
809
|
+
|