windmill-api 1.727.0

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Documentation
# GetKafkaTrigger200Response

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**kafka_resource_path** | **String** | Path to the Kafka resource containing connection configuration | 
**group_id** | **String** | Kafka consumer group ID for this trigger | 
**topics** | **Vec<String>** | Array of Kafka topic names to subscribe to | 
**filters** | [**Vec<serde_json::Value>**]serde_json::Value.md |  | 
**filter_logic** | Option<**String**> | Logic to apply when evaluating filters. 'and' requires all filters to match, 'or' requires any filter to match. | [optional][default to And]
**auto_offset_reset** | Option<**String**> | Initial offset behavior when consumer group has no committed offset. 'latest' starts from new messages only, 'earliest' starts from the beginning. | [optional][default to Latest]
**auto_commit** | Option<**bool**> | When true (default), offsets are committed automatically after receiving each message. When false, you must manually commit offsets using the commit_offsets endpoint. | [optional][default to true]
**server_id** | Option<**String**> | ID of the server currently handling this trigger (internal) | [optional]
**last_server_ping** | Option<**String**> | Timestamp of last server heartbeat (internal) | [optional]
**error** | Option<**String**> | Last error message if the trigger failed | [optional]
**error_handler_path** | Option<**String**> | Path to a script or flow to run when the triggered job fails | [optional]
**error_handler_args** | Option<[**std::collections::HashMap<String, serde_json::Value>**]serde_json::Value.md> | The arguments to pass to the script or flow | [optional]
**retry** | Option<[**models::Retry**]Retry.md> |  | [optional]
**path** | **String** | The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path. | 
**script_path** | **String** | Path to the script or flow to execute when triggered | 
**permissioned_as** | **String** | The user or group this trigger runs as (permissioned_as) | 
**extra_perms** | **std::collections::HashMap<String, bool>** | Additional permissions for this trigger | 
**workspace_id** | **String** | The workspace this trigger belongs to | 
**edited_by** | **String** | Username of the last person who edited this trigger | 
**edited_at** | **String** | Timestamp of the last edit | 
**is_flow** | **bool** | True if script_path points to a flow, false if it points to a script | 
**mode** | [**models::TriggerMode**]TriggerMode.md |  | 
**labels** | Option<**Vec<String>**> |  | [optional][default to []]
**draft_only** | Option<**bool**> | True when this row is a per-user draft with no deployed trigger at the same path. Set by list endpoints when `include_draft_only=true` synthesizes the row from the draft. Frontend renders a \"Draft\" badge.  | [optional]
**is_draft** | **bool** |  | 
**draft_saved_at** | Option<**String**> |  | [optional]
**no_deployed** | Option<**bool**> |  | [optional]
**draft** | Option<[**std::collections::HashMap<String, serde_json::Value>**]serde_json::Value.md> |  | [optional]
**other_drafts_users** | Option<[**Vec<models::UserDraftOverlayOtherDraftsUsersInner>**]UserDraftOverlay_other_drafts_users_inner.md> | Other workspace users (and the legacy NULL-email row, if any) with a saved draft at the same path. Populated only on the authed user's \"get by path\" responses for kinds the editor surfaces a fork banner for (script, flow, app, raw_app). Empty / omitted for kinds without that UI.  | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)