data
Render CLI for AI Agents
Use the Render CLI from KosmoKrator to call Render tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.Render CLI Setup
Render can be configured headlessly with `kosmokrator integrations:configure render`.
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
# Configure and verify this integration.
kosmokrator integrations:configure render --set api_key="$RENDER_API_KEY" --enable --read allow --write ask --json
kosmokrator integrations:doctor render --json
kosmokrator integrations:status --json Credentials
Authentication type: API key api_key. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.
| Key | Env var | Type | Required | Label |
|---|---|---|---|---|
api_key | RENDER_API_KEY | Secret secret | yes | API Key |
url | RENDER_URL | URL url | no | API Base URL |
Command Patterns
The generic command is stable across every integration. The provider shortcut is shorter for humans.
kosmo integrations:call render.render_list_blueprints '{}' --json kosmo integrations:render render_list_blueprints '{}' --json Discovery
These commands return structured output for coding agents that need to inspect capabilities before choosing a function.
kosmo integrations:docs render --json
kosmo integrations:docs render.render_list_blueprints --json
kosmo integrations:schema render.render_list_blueprints --json
kosmo integrations:search "Render" --json
kosmo integrations:list --json Automation Contexts
The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.
CLI Functions
Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.
render.render_list_blueprints
List Blueprints for the specified workspaces. If no workspaces are provided, returns all Blueprints the API key has access to.
read - Parameters
- none
kosmo integrations:call render.render_list_blueprints '{}' --json kosmo integrations:render render_list_blueprints '{}' --json render.render_validate_blueprint
Validate a `render.yaml` Blueprint file without creating or modifying any resources. This endpoint checks the syntax and structure of the Blueprint, validates that all required fields are present, and returns a plan indicating the resources that would be created. Requests to this endpoint use `Content-Type: multipart/form-data`. The provided Blueprint file cannot exceed 10MB in size.
write - Parameters
- none
kosmo integrations:call render.render_validate_blueprint '{}' --json kosmo integrations:render render_validate_blueprint '{}' --json render.render_update_workspace_member
Update the role of an existing workspace member.
write - Parameters
- none
kosmo integrations:call render.render_update_workspace_member '{}' --json kosmo integrations:render render_update_workspace_member '{}' --json render.render_remove_workspace_member
Remove a user from the specified workspace.
write - Parameters
- none
kosmo integrations:call render.render_remove_workspace_member '{}' --json kosmo integrations:render render_remove_workspace_member '{}' --json render.render_retrieve_blueprint
Retrieve the Blueprint with the provided ID.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_blueprint '{}' --json kosmo integrations:render render_retrieve_blueprint '{}' --json render.render_update_blueprint
Update the Blueprint with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_update_blueprint '{}' --json kosmo integrations:render render_update_blueprint '{}' --json render.render_disconnect_blueprint
Disconnect the Blueprint with the provided ID. Disconnecting a Blueprint stops automatic resource syncing via the associated `render.yaml` file. It does not _delete_ any services or other resources that were managed by the blueprint.
write - Parameters
- none
kosmo integrations:call render.render_disconnect_blueprint '{}' --json kosmo integrations:render render_disconnect_blueprint '{}' --json render.render_list_blueprint_syncs
List syncs for the Blueprint with the provided ID.
read - Parameters
- none
kosmo integrations:call render.render_list_blueprint_syncs '{}' --json kosmo integrations:render render_list_blueprint_syncs '{}' --json render.render_list_disks
List persistent disks matching the provided filters. If no filters are provided, returns all disks you have permissions to view.
read - Parameters
- none
kosmo integrations:call render.render_list_disks '{}' --json kosmo integrations:render render_list_disks '{}' --json render.render_add_disk
Attach a persistent disk to a web service, private service, or background worker. The service must be redeployed for the disk to be attached.
write - Parameters
- none
kosmo integrations:call render.render_add_disk '{}' --json kosmo integrations:render render_add_disk '{}' --json render.render_retrieve_disk
Retrieve the persistent disk with the provided ID.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_disk '{}' --json kosmo integrations:render render_retrieve_disk '{}' --json render.render_update_disk
Update the persistent disk with the provided ID. The disk's associated service must be deployed and active for updates to take effect. When resizing a disk, the new size must be greater than the current size.
write - Parameters
- none
kosmo integrations:call render.render_update_disk '{}' --json kosmo integrations:render render_update_disk '{}' --json render.render_delete_disk
Delete a persistent disk attached to a service. **All data on the disk will be lost.** The disk's associated service will immediately lose access to it.
write - Parameters
- none
kosmo integrations:call render.render_delete_disk '{}' --json kosmo integrations:render render_delete_disk '{}' --json render.render_list_snapshots
List snapshots for the persistent disk with the provided ID. Each snapshot is a point-in-time copy of the disk's data.
read - Parameters
- none
kosmo integrations:call render.render_list_snapshots '{}' --json kosmo integrations:render render_list_snapshots '{}' --json render.render_restore_snapshot
Restore a persistent disk to an available snapshot. **This operation is irreversible.** It will overwrite the current disk data. It might also trigger a service deploy. Snapshot keys returned from the [List snapshots](https://api-docs.render.com/reference/list-snapshots) endpoint expire after 24 hours. If a snapshot key has expired, query the endpoint again for a new key.
write - Parameters
- none
kosmo integrations:call render.render_restore_snapshot '{}' --json kosmo integrations:render render_restore_snapshot '{}' --json render.render_get_current_user
Retrieve the user associated with the provided API key.
read - Parameters
- none
kosmo integrations:call render.render_get_current_user '{}' --json kosmo integrations:render render_get_current_user '{}' --json render.render_list_owners
List the workspaces that your API key has access to, optionally filtered by name or owner email address.
read - Parameters
- none
kosmo integrations:call render.render_list_owners '{}' --json kosmo integrations:render render_list_owners '{}' --json render.render_retrieve_owner
Retrieve the workspace with the provided ID. Workspace IDs start with `tea-`. If you provide a user ID (starts with `own-`), this endpoint returns the user's default workspace.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_owner '{}' --json kosmo integrations:render render_retrieve_owner '{}' --json render.render_retrieve_owner_members
Retrieves the list of users belonging to the workspace with the provided ID.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_owner_members '{}' --json kosmo integrations:render render_retrieve_owner_members '{}' --json render.render_list_owner_audit_logs
Retrieve audit logs for a specific workspace with optional filtering and pagination.
read - Parameters
- none
kosmo integrations:call render.render_list_owner_audit_logs '{}' --json kosmo integrations:render render_list_owner_audit_logs '{}' --json render.render_list_organization_audit_logs
Retrieve audit logs for a specific organization with optional filtering and pagination.
read - Parameters
- none
kosmo integrations:call render.render_list_organization_audit_logs '{}' --json kosmo integrations:render render_list_organization_audit_logs '{}' --json render.render_retrieve_owner_notification_settings
Retrieve notification settings for the owner with the provided ID. Note that you provide an owner ID to this endpoint, not the ID for a particular resource.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_owner_notification_settings '{}' --json kosmo integrations:render render_retrieve_owner_notification_settings '{}' --json render.render_patch_owner_notification_settings
Update notification settings for the owner with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_patch_owner_notification_settings '{}' --json kosmo integrations:render render_patch_owner_notification_settings '{}' --json render.render_list_notification_overrides
List notification overrides matching the provided filters. If no filters are provided, returns all notification overrides for all workspaces the user belongs to.
read - Parameters
- none
kosmo integrations:call render.render_list_notification_overrides '{}' --json kosmo integrations:render render_list_notification_overrides '{}' --json render.render_retrieve_service_notification_overrides
Retrieve the notification override for the service with the provided ID. Note that you provide a service ID to this endpoint, not the ID for a particular override.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_service_notification_overrides '{}' --json kosmo integrations:render render_retrieve_service_notification_overrides '{}' --json render.render_patch_service_notification_overrides
Update the notification override for the service with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_patch_service_notification_overrides '{}' --json kosmo integrations:render render_patch_service_notification_overrides '{}' --json render.render_list_registry_credentials
List registry credentials matching the provided filters. If no filters are provided, returns all registry credentials you have permissions to view.
read - Parameters
- none
kosmo integrations:call render.render_list_registry_credentials '{}' --json kosmo integrations:render render_list_registry_credentials '{}' --json render.render_create_registry_credential
Create a new registry credential.
write - Parameters
- none
kosmo integrations:call render.render_create_registry_credential '{}' --json kosmo integrations:render render_create_registry_credential '{}' --json render.render_retrieve_registry_credential
Retrieve the registry credential with the provided ID.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_registry_credential '{}' --json kosmo integrations:render render_retrieve_registry_credential '{}' --json render.render_update_registry_credential
Update the registry credential with the provided ID. Services that use this credential must be redeployed to use updated values.
write - Parameters
- none
kosmo integrations:call render.render_update_registry_credential '{}' --json kosmo integrations:render render_update_registry_credential '{}' --json render.render_delete_registry_credential
Delete the registry credential with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_delete_registry_credential '{}' --json kosmo integrations:render render_delete_registry_credential '{}' --json render.render_list_services
List services matching the provided filters. If no filters are provided, returns all services you have permissions to view.
read - Parameters
- none
kosmo integrations:call render.render_list_services '{}' --json kosmo integrations:render render_list_services '{}' --json render.render_create_service
Creates a new Render service in the specified workspace with the specified configuration.
write - Parameters
- none
kosmo integrations:call render.render_create_service '{}' --json kosmo integrations:render render_create_service '{}' --json render.render_get_service
Retrieve the service with the provided ID.
read - Parameters
- none
kosmo integrations:call render.render_get_service '{}' --json kosmo integrations:render render_get_service '{}' --json render.render_update_service
Update the service with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_update_service '{}' --json kosmo integrations:render render_update_service '{}' --json render.render_delete_service
Delete the service with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_delete_service '{}' --json kosmo integrations:render render_delete_service '{}' --json render.render_purge_cache
Trigger cache purge for the web service if caching is enabled.
write - Parameters
- none
kosmo integrations:call render.render_purge_cache '{}' --json kosmo integrations:render render_purge_cache '{}' --json render.render_list_deploys
List deploys matching the provided filters. If no filters are provided, all deploys for the service are returned.
read - Parameters
- none
kosmo integrations:call render.render_list_deploys '{}' --json kosmo integrations:render render_list_deploys '{}' --json render.render_create_deploy
Trigger a deploy for the service with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_create_deploy '{}' --json kosmo integrations:render render_create_deploy '{}' --json render.render_get_deploy
Retrieve the details of a particular deploy for a particular service.
read - Parameters
- none
kosmo integrations:call render.render_get_deploy '{}' --json kosmo integrations:render render_get_deploy '{}' --json render.render_cancel_deploy
Cancel an in-progress deploy for a service. Not supported for cron jobs.
write - Parameters
- none
kosmo integrations:call render.render_cancel_deploy '{}' --json kosmo integrations:render render_cancel_deploy '{}' --json render.render_rollback_deploy
Trigger a rollback to a previous deploy of the specified service. Triggering a rollback with this endpoint does not disable autodeploys for the service. This means an autodeploy might restore changes you had intentionally rolled back. You can toggle autodeploys for your service with the [Update service](https://api-docs.render.com/reference/update-service) endpoint or in the Render Dashboard.
write - Parameters
- none
kosmo integrations:call render.render_rollback_deploy '{}' --json kosmo integrations:render render_rollback_deploy '{}' --json render.render_get_env_vars_for_service
List all environment variables for the service with the provided ID.
read - Parameters
- none
kosmo integrations:call render.render_get_env_vars_for_service '{}' --json kosmo integrations:render render_get_env_vars_for_service '{}' --json render.render_update_env_vars_for_service
Replace all environment variables for a service with the provided list of environment variables.
write - Parameters
- none
kosmo integrations:call render.render_update_env_vars_for_service '{}' --json kosmo integrations:render render_update_env_vars_for_service '{}' --json render.render_retrieve_env_var
Retrieve a particular environment variable for a particular service. This only applies to environment variables set directly on the service, not to environment variables in a linked environment group.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_env_var '{}' --json kosmo integrations:render render_retrieve_env_var '{}' --json render.render_update_env_var
Add or update a particular environment variable for a particular service. This only applies to environment variables set directly on the service, not to environment variables in a linked environment group.
write - Parameters
- none
kosmo integrations:call render.render_update_env_var '{}' --json kosmo integrations:render render_update_env_var '{}' --json render.render_delete_env_var
Delete a particular environment variable from a particular service. This only applies to environment variables set directly on the service, not to environment variables in a linked environment group.
write - Parameters
- none
kosmo integrations:call render.render_delete_env_var '{}' --json kosmo integrations:render render_delete_env_var '{}' --json render.render_list_secret_files_for_service
List all secret files for the service with the provided ID.
read - Parameters
- none
kosmo integrations:call render.render_list_secret_files_for_service '{}' --json kosmo integrations:render render_list_secret_files_for_service '{}' --json render.render_update_secret_files_for_service
Replace all secret files for a service with the provided list of secret files. **Any of the service's existing secret files not included in this request will be deleted.** This only applies to secret files set directly on the service, not to secret files in a linked environment group.
write - Parameters
- none
kosmo integrations:call render.render_update_secret_files_for_service '{}' --json kosmo integrations:render render_update_secret_files_for_service '{}' --json render.render_retrieve_secret_file
Retrieve a particular secret file for a particular service. This only applies to secret files set directly on the service, not to secret files in a linked environment group.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_secret_file '{}' --json kosmo integrations:render render_retrieve_secret_file '{}' --json render.render_add_or_update_secret_file
Add or update a particular secret file for a particular service. This only applies to secret files set directly on the service, not to secret files in a linked environment group.
write - Parameters
- none
kosmo integrations:call render.render_add_or_update_secret_file '{}' --json kosmo integrations:render render_add_or_update_secret_file '{}' --json render.render_delete_secret_file
Delete a particular secret file from a particular service. This only applies to secret files set directly on the service, not to secret files in a linked environment group.
write - Parameters
- none
kosmo integrations:call render.render_delete_secret_file '{}' --json kosmo integrations:render render_delete_secret_file '{}' --json render.render_list_events
List recent events that occurred for the service with the provided ID.
read - Parameters
- none
kosmo integrations:call render.render_list_events '{}' --json kosmo integrations:render render_list_events '{}' --json render.render_list_headers
List a particular service's response header rules that match the provided filters. If no filters are provided, all rules for the service are returned.
read - Parameters
- none
kosmo integrations:call render.render_list_headers '{}' --json kosmo integrations:render render_list_headers '{}' --json render.render_add_headers
Add a response header rule to the service with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_add_headers '{}' --json kosmo integrations:render render_add_headers '{}' --json render.render_update_headers
Replace all header rules for a particular service with the provided list. **This deletes all existing header rules for the service that aren't included in the request.**
write - Parameters
- none
kosmo integrations:call render.render_update_headers '{}' --json kosmo integrations:render render_update_headers '{}' --json render.render_delete_header
Delete a particular response header rule for a particular service.
write - Parameters
- none
kosmo integrations:call render.render_delete_header '{}' --json kosmo integrations:render render_delete_header '{}' --json render.render_list_routes
List a particular service's redirect/rewrite rules that match the provided filters. If no filters are provided, all rules for the service are returned.
read - Parameters
- none
kosmo integrations:call render.render_list_routes '{}' --json kosmo integrations:render render_list_routes '{}' --json render.render_add_route
Add redirect/rewrite rules to the service with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_add_route '{}' --json kosmo integrations:render render_add_route '{}' --json render.render_patch_route
Update the priority for a particular redirect/rewrite rule. To apply redirect/rewrite rules to an incoming request, Render starts from the rule with priority `0` and applies the first encountered rule that matches the request's path (if any). Render increments the priority of other rules by `1` as necessary to make space for the updated rule.
write - Parameters
- none
kosmo integrations:call render.render_patch_route '{}' --json kosmo integrations:render render_patch_route '{}' --json render.render_put_routes
Replace all redirect/rewrite rules for a particular service with the provided list. **This deletes all existing redirect/rewrite rules for the service that aren't included in the request.** Rule priority is assigned according to list order (the first rule in the list has the highest priority).
write - Parameters
- none
kosmo integrations:call render.render_put_routes '{}' --json kosmo integrations:render render_put_routes '{}' --json render.render_delete_route
Delete a particular redirect/rewrite rule for a particular service.
write - Parameters
- none
kosmo integrations:call render.render_delete_route '{}' --json kosmo integrations:render render_delete_route '{}' --json render.render_list_custom_domains
List a particular service's custom domains that match the provided filters. If no filters are provided, all custom domains for the service are returned.
read - Parameters
- none
kosmo integrations:call render.render_list_custom_domains '{}' --json kosmo integrations:render render_list_custom_domains '{}' --json render.render_create_custom_domain
Add a custom domain to the service with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_create_custom_domain '{}' --json kosmo integrations:render render_create_custom_domain '{}' --json render.render_retrieve_custom_domain
Retrieve a particular custom domain for a particular service.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_custom_domain '{}' --json kosmo integrations:render render_retrieve_custom_domain '{}' --json render.render_delete_custom_domain
Delete a custom domain for a service given the service id and custom domain id or name.
write - Parameters
- none
kosmo integrations:call render.render_delete_custom_domain '{}' --json kosmo integrations:render render_delete_custom_domain '{}' --json render.render_refresh_custom_domain
Verify the DNS configuration for a custom domain.
write - Parameters
- none
kosmo integrations:call render.render_refresh_custom_domain '{}' --json kosmo integrations:render render_refresh_custom_domain '{}' --json render.render_suspend_service
Suspend the service with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_suspend_service '{}' --json kosmo integrations:render render_suspend_service '{}' --json render.render_resume_service
Resume the service with the provided ID (if it's currently suspended).
write - Parameters
- none
kosmo integrations:call render.render_resume_service '{}' --json kosmo integrations:render render_resume_service '{}' --json render.render_restart_service
Restart the service with the provided ID. Not supported for cron jobs.
write - Parameters
- none
kosmo integrations:call render.render_restart_service '{}' --json kosmo integrations:render render_restart_service '{}' --json render.render_scale_service
[Scale](https://render.com/docs/scaling#manual-scaling) the service with the provided ID to a fixed number of instances. Render ignores this value as long as autoscaling is enabled for the service.
write - Parameters
- none
kosmo integrations:call render.render_scale_service '{}' --json kosmo integrations:render render_scale_service '{}' --json render.render_autoscale_service
Update the [autoscaling](https://render.com/docs/scaling#autoscaling) config for the service with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_autoscale_service '{}' --json kosmo integrations:render render_autoscale_service '{}' --json render.render_delete_autoscaling_config
Delete the autoscaling config for a service given the service id.
write - Parameters
- none
kosmo integrations:call render.render_delete_autoscaling_config '{}' --json kosmo integrations:render render_delete_autoscaling_config '{}' --json render.render_preview_service
Create a preview instance for an image-backed service. The preview uses the settings of the base service (referenced by `serviceId`), except settings overridden via provided parameters. View all active previews from your service's Previews tab in the Render Dashboard. Note that you can't create previews for Git-backed services using the Render API.
write - Parameters
- none
kosmo integrations:call render.render_preview_service '{}' --json kosmo integrations:render render_preview_service '{}' --json render.render_list_jobs
List jobs for the provided service that match the provided filters. If no filters are provided, all jobs for the service are returned.
read - Parameters
- none
kosmo integrations:call render.render_list_jobs '{}' --json kosmo integrations:render render_list_jobs '{}' --json render.render_post_job
Create a one-off job using the provided service. For details, see [One-Off Jobs](https://render.com/docs/one-off-jobs).
write - Parameters
- none
kosmo integrations:call render.render_post_job '{}' --json kosmo integrations:render render_post_job '{}' --json render.render_retrieve_job
Retrieve the details of a particular one-off job for a particular service.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_job '{}' --json kosmo integrations:render render_retrieve_job '{}' --json render.render_cancel_job
Cancel a particular one-off job for a particular service.
write - Parameters
- none
kosmo integrations:call render.render_cancel_job '{}' --json kosmo integrations:render render_cancel_job '{}' --json render.render_list_instances
List instances for the provided service.
read - Parameters
- none
kosmo integrations:call render.render_list_instances '{}' --json kosmo integrations:render render_list_instances '{}' --json render.render_run_cron_job
Trigger a run for a cron job and cancel any active runs.
write - Parameters
- none
kosmo integrations:call render.render_run_cron_job '{}' --json kosmo integrations:render render_run_cron_job '{}' --json render.render_cancel_cron_job_run
Cancel a currently running cron job.
write - Parameters
- none
kosmo integrations:call render.render_cancel_cron_job_run '{}' --json kosmo integrations:render render_cancel_cron_job_run '{}' --json render.render_retrieve_event
Retrieve the details of a particular event
read - Parameters
- none
kosmo integrations:call render.render_retrieve_event '{}' --json kosmo integrations:render render_retrieve_event '{}' --json render.render_list_logs
List logs matching the provided filters. Logs are paginated by start and end timestamps. There are more logs to fetch if `hasMore` is true in the response. Provide the `nextStartTime` and `nextEndTime` timestamps as the `startTime` and `endTime` query parameters to fetch the next page of logs. You can query for logs across multiple resources, but all resources must be in the same region and bel...
read - Parameters
- none
kosmo integrations:call render.render_list_logs '{}' --json kosmo integrations:render render_list_logs '{}' --json render.render_subscribe_logs
Open a websocket connection to subscribe to logs matching the provided filters. Logs are streamed in real-time as they are generated. You can query for logs across multiple resources, but all resources must be in the same region and belong to the same owner.
read - Parameters
- none
kosmo integrations:call render.render_subscribe_logs '{}' --json kosmo integrations:render render_subscribe_logs '{}' --json render.render_list_logs_values
List all values for a given log label in the logs matching the provided filters.
read - Parameters
- none
kosmo integrations:call render.render_list_logs_values '{}' --json kosmo integrations:render render_list_logs_values '{}' --json render.render_get_owner_log_stream
Returns log stream information for the specified workspace.
read - Parameters
- none
kosmo integrations:call render.render_get_owner_log_stream '{}' --json kosmo integrations:render render_get_owner_log_stream '{}' --json render.render_update_owner_log_stream
Updates log stream information for the specified workspace. All logs for resources owned by this workspace will be sent to this log stream unless overridden by individual resources.
write - Parameters
- none
kosmo integrations:call render.render_update_owner_log_stream '{}' --json kosmo integrations:render render_update_owner_log_stream '{}' --json render.render_delete_owner_log_stream
Removes the log stream for the specified workspace.
write - Parameters
- none
kosmo integrations:call render.render_delete_owner_log_stream '{}' --json kosmo integrations:render render_delete_owner_log_stream '{}' --json render.render_list_resource_log_streams
Lists log stream overrides for the provided workspace that match the provided filters. These overrides take precedence over the workspace's default log stream.
read - Parameters
- none
kosmo integrations:call render.render_list_resource_log_streams '{}' --json kosmo integrations:render render_list_resource_log_streams '{}' --json render.render_get_resource_log_stream
Returns log stream override information for the specified resource. A log stream override takes precedence over a workspace's default log stream.
read - Parameters
- none
kosmo integrations:call render.render_get_resource_log_stream '{}' --json kosmo integrations:render render_get_resource_log_stream '{}' --json render.render_update_resource_log_stream
Updates log stream override information for the specified resource. A log stream override takes precedence over a workspace's default log stream.
write - Parameters
- none
kosmo integrations:call render.render_update_resource_log_stream '{}' --json kosmo integrations:render render_update_resource_log_stream '{}' --json render.render_delete_resource_log_stream
Removes the log stream override for the specified resource. After deletion, the resource will use the workspace's default log stream setting.
write - Parameters
- none
kosmo integrations:call render.render_delete_resource_log_stream '{}' --json kosmo integrations:render render_delete_resource_log_stream '{}' --json render.render_get_owner_metrics_stream
Returns metrics stream information for the specified workspace.
read - Parameters
- none
kosmo integrations:call render.render_get_owner_metrics_stream '{}' --json kosmo integrations:render render_get_owner_metrics_stream '{}' --json render.render_upsert_owner_metrics_stream
Creates or updates the metrics stream for the specified workspace.
write - Parameters
- none
kosmo integrations:call render.render_upsert_owner_metrics_stream '{}' --json kosmo integrations:render render_upsert_owner_metrics_stream '{}' --json render.render_delete_owner_metrics_stream
Deletes the metrics stream for the specified workspace.
write - Parameters
- none
kosmo integrations:call render.render_delete_owner_metrics_stream '{}' --json kosmo integrations:render render_delete_owner_metrics_stream '{}' --json render.render_get_cpu
Get CPU usage for one or more resources.
read - Parameters
- none
kosmo integrations:call render.render_get_cpu '{}' --json kosmo integrations:render render_get_cpu '{}' --json render.render_get_cpu_limit
Get the CPU limit for one or more resources.
read - Parameters
- none
kosmo integrations:call render.render_get_cpu_limit '{}' --json kosmo integrations:render render_get_cpu_limit '{}' --json render.render_get_cpu_target
Get CPU target for one or more resources.
read - Parameters
- none
kosmo integrations:call render.render_get_cpu_target '{}' --json kosmo integrations:render render_get_cpu_target '{}' --json render.render_get_memory
Get memory usage for one or more resources.
read - Parameters
- none
kosmo integrations:call render.render_get_memory '{}' --json kosmo integrations:render render_get_memory '{}' --json render.render_get_memory_limit
Get the memory limit for one or more resources.
read - Parameters
- none
kosmo integrations:call render.render_get_memory_limit '{}' --json kosmo integrations:render render_get_memory_limit '{}' --json render.render_get_memory_target
Get memory target for one or more resources.
read - Parameters
- none
kosmo integrations:call render.render_get_memory_target '{}' --json kosmo integrations:render render_get_memory_target '{}' --json render.render_get_http_requests
Get the HTTP request count for one or more resources.
read - Parameters
- none
kosmo integrations:call render.render_get_http_requests '{}' --json kosmo integrations:render render_get_http_requests '{}' --json render.render_get_http_latency
Get HTTP latency metrics for one or more resources.
read - Parameters
- none
kosmo integrations:call render.render_get_http_latency '{}' --json kosmo integrations:render render_get_http_latency '{}' --json render.render_get_bandwidth
Get bandwidth usage for one or more resources.
read - Parameters
- none
kosmo integrations:call render.render_get_bandwidth '{}' --json kosmo integrations:render render_get_bandwidth '{}' --json render.render_get_bandwidth_sources
Get bandwidth usage for one or more resources broken down by traffic source (HTTP, WebSocket, NAT, PrivateLink). Returns hourly data points with traffic source breakdown. Traffic source data is available from March 9, 2025 onwards. Queries for earlier dates will return a 400 Bad Request error.
read - Parameters
- none
kosmo integrations:call render.render_get_bandwidth_sources '{}' --json kosmo integrations:render render_get_bandwidth_sources '{}' --json render.render_get_disk_usage
Get persistent disk usage for one or more resources.
read - Parameters
- none
kosmo integrations:call render.render_get_disk_usage '{}' --json kosmo integrations:render render_get_disk_usage '{}' --json render.render_get_disk_capacity
Get persistent disk capacity for one or more resources.
read - Parameters
- none
kosmo integrations:call render.render_get_disk_capacity '{}' --json kosmo integrations:render render_get_disk_capacity '{}' --json render.render_get_instance_count
Get the instance count for one or more resources.
read - Parameters
- none
kosmo integrations:call render.render_get_instance_count '{}' --json kosmo integrations:render render_get_instance_count '{}' --json render.render_get_active_connections
Get the number of active connections for one or more Postgres databases or Redis instances.
read - Parameters
- none
kosmo integrations:call render.render_get_active_connections '{}' --json kosmo integrations:render render_get_active_connections '{}' --json render.render_get_replication_lag
Get seconds of replica lag of a Postgres replica.
read - Parameters
- none
kosmo integrations:call render.render_get_replication_lag '{}' --json kosmo integrations:render render_get_replication_lag '{}' --json render.render_list_application_filter_values
List instance values to filter by for one or more resources.
read - Parameters
- none
kosmo integrations:call render.render_list_application_filter_values '{}' --json kosmo integrations:render render_list_application_filter_values '{}' --json render.render_list_http_filter_values
List status codes and host values to filter by for one or more resources.
read - Parameters
- none
kosmo integrations:call render.render_list_http_filter_values '{}' --json kosmo integrations:render render_list_http_filter_values '{}' --json render.render_list_path_filter_values
The path suggestions are based on the most recent 5000 log lines as filtered by the provided filters
read - Parameters
- none
kosmo integrations:call render.render_list_path_filter_values '{}' --json kosmo integrations:render render_list_path_filter_values '{}' --json render.render_get_task_runs_queued
Get the total number of task runs queued for one or more tasks.
read - Parameters
- none
kosmo integrations:call render.render_get_task_runs_queued '{}' --json kosmo integrations:render render_get_task_runs_queued '{}' --json render.render_get_task_runs_completed
Get the total number of task runs completed for one or more tasks. Optionally filter by state (succeeded/failed) or aggregate by state.
read - Parameters
- none
kosmo integrations:call render.render_get_task_runs_completed '{}' --json kosmo integrations:render render_get_task_runs_completed '{}' --json render.render_list_key_value
List Key Value instances matching the provided filters. If no filters are provided, all Key Value instances are returned.
read - Parameters
- none
kosmo integrations:call render.render_list_key_value '{}' --json kosmo integrations:render render_list_key_value '{}' --json render.render_create_key_value
Create a new Key Value instance.
write - Parameters
- none
kosmo integrations:call render.render_create_key_value '{}' --json kosmo integrations:render render_create_key_value '{}' --json render.render_retrieve_key_value
Retrieve a Key Value instance by ID.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_key_value '{}' --json kosmo integrations:render render_retrieve_key_value '{}' --json render.render_update_key_value
Update a Key Value instance by ID.
write - Parameters
- none
kosmo integrations:call render.render_update_key_value '{}' --json kosmo integrations:render render_update_key_value '{}' --json render.render_delete_key_value
Delete a Key Value instance by ID.
write - Parameters
- none
kosmo integrations:call render.render_delete_key_value '{}' --json kosmo integrations:render render_delete_key_value '{}' --json render.render_retrieve_key_value_connection_info
Retrieve connection info for a Key Value instance by ID. Connection info includes sensitive information.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_key_value_connection_info '{}' --json kosmo integrations:render render_retrieve_key_value_connection_info '{}' --json render.render_suspend_key_value
Suspend a Key Value instance by ID.
write - Parameters
- none
kosmo integrations:call render.render_suspend_key_value '{}' --json kosmo integrations:render render_suspend_key_value '{}' --json render.render_resume_key_value
Resume a Key Value instance by ID.
write - Parameters
- none
kosmo integrations:call render.render_resume_key_value '{}' --json kosmo integrations:render render_resume_key_value '{}' --json render.render_list_redis
List Redis instances matching the provided filters. If no filters are provided, all Redis instances are returned. This API is deprecated in favor of the Key Value API.
read - Parameters
- none
kosmo integrations:call render.render_list_redis '{}' --json kosmo integrations:render render_list_redis '{}' --json render.render_create_redis
Create a new Redis instance. This API is deprecated in favor of the Key Value API.
write - Parameters
- none
kosmo integrations:call render.render_create_redis '{}' --json kosmo integrations:render render_create_redis '{}' --json render.render_retrieve_redis
Retrieve a Redis instance by ID. This API is deprecated in favor of the Key Value API.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_redis '{}' --json kosmo integrations:render render_retrieve_redis '{}' --json render.render_update_redis
Update a Redis instance by ID. This API is deprecated in favor of the Key Value API.
write - Parameters
- none
kosmo integrations:call render.render_update_redis '{}' --json kosmo integrations:render render_update_redis '{}' --json render.render_delete_redis
Delete a Redis instance by ID. This API is deprecated in favor of the Key Value API.
write - Parameters
- none
kosmo integrations:call render.render_delete_redis '{}' --json kosmo integrations:render render_delete_redis '{}' --json render.render_retrieve_redis_connection_info
Retrieve connection info for a Redis instance by ID. Connection info includes sensitive information. This API is deprecated in favor of the Key Value API.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_redis_connection_info '{}' --json kosmo integrations:render render_retrieve_redis_connection_info '{}' --json render.render_list_postgres
List Postgres instances matching the provided filters. If no filters are provided, all Postgres instances are returned.
read - Parameters
- none
kosmo integrations:call render.render_list_postgres '{}' --json kosmo integrations:render render_list_postgres '{}' --json render.render_create_postgres
Create a new Postgres instance.
write - Parameters
- none
kosmo integrations:call render.render_create_postgres '{}' --json kosmo integrations:render render_create_postgres '{}' --json render.render_retrieve_postgres
Retrieve a Postgres instance by ID.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_postgres '{}' --json kosmo integrations:render render_retrieve_postgres '{}' --json render.render_update_postgres
Update a Postgres instance by ID.
write - Parameters
- none
kosmo integrations:call render.render_update_postgres '{}' --json kosmo integrations:render render_update_postgres '{}' --json render.render_delete_postgres
Delete a Postgres instance by ID. This operation is irreversible, and all data will be lost.
write - Parameters
- none
kosmo integrations:call render.render_delete_postgres '{}' --json kosmo integrations:render render_delete_postgres '{}' --json render.render_retrieve_postgres_connection_info
Retrieve connection info for a Postgres instance by ID. Connection info includes sensitive information.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_postgres_connection_info '{}' --json kosmo integrations:render render_retrieve_postgres_connection_info '{}' --json render.render_retrieve_postgres_recovery_info
Retrieve information on the availability of Postgres point-in-time recovery for a Postgres instance by ID.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_postgres_recovery_info '{}' --json kosmo integrations:render render_retrieve_postgres_recovery_info '{}' --json render.render_recover_postgres
Trigger [point-in-time recovery](https://render.com/docs/postgresql-backups) on the Postgres instance with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_recover_postgres '{}' --json kosmo integrations:render render_recover_postgres '{}' --json render.render_suspend_postgres
Suspend a Postgres instance by ID.
write - Parameters
- none
kosmo integrations:call render.render_suspend_postgres '{}' --json kosmo integrations:render render_suspend_postgres '{}' --json render.render_resume_postgres
Resume a Postgres instance by ID.
write - Parameters
- none
kosmo integrations:call render.render_resume_postgres '{}' --json kosmo integrations:render render_resume_postgres '{}' --json render.render_restart_postgres
Restart a Postgres instance by ID.
write - Parameters
- none
kosmo integrations:call render.render_restart_postgres '{}' --json kosmo integrations:render render_restart_postgres '{}' --json render.render_failover_postgres
Failover a [highly available Postgres](https://render.com/docs/postgresql-high-availability) instance.
write - Parameters
- none
kosmo integrations:call render.render_failover_postgres '{}' --json kosmo integrations:render render_failover_postgres '{}' --json render.render_list_postgres_export
List [exports](https://render.com/docs/postgresql-backups#logical-backups) for a Postgres instance by ID. Returns a URL to download the export.
read - Parameters
- none
kosmo integrations:call render.render_list_postgres_export '{}' --json kosmo integrations:render render_list_postgres_export '{}' --json render.render_create_postgres_export
Create an [export](https://render.com/docs/postgresql-backups#logical-backups) of a Postgres instance by ID.
write - Parameters
- none
kosmo integrations:call render.render_create_postgres_export '{}' --json kosmo integrations:render render_create_postgres_export '{}' --json render.render_list_postgres_users
List PostgreSQL users for the Render Postgres instance with the provided ID.
read - Parameters
- none
kosmo integrations:call render.render_list_postgres_users '{}' --json kosmo integrations:render render_list_postgres_users '{}' --json render.render_create_postgres_user
Create a new PostgreSQL user for the Render Postgres instance with the provided ID. This becomes the database's new "default" user.
write - Parameters
- none
kosmo integrations:call render.render_create_postgres_user '{}' --json kosmo integrations:render render_create_postgres_user '{}' --json render.render_delete_postgres_user
Delete a PostgreSQL user from the Render Postgres instance with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_delete_postgres_user '{}' --json kosmo integrations:render render_delete_postgres_user '{}' --json render.render_list_projects
List projects matching the provided filters. If no filters are provided, all projects are returned.
read - Parameters
- none
kosmo integrations:call render.render_list_projects '{}' --json kosmo integrations:render render_list_projects '{}' --json render.render_create_project
Create a new project.
write - Parameters
- none
kosmo integrations:call render.render_create_project '{}' --json kosmo integrations:render render_create_project '{}' --json render.render_retrieve_project
Retrieve the project with the provided ID.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_project '{}' --json kosmo integrations:render render_retrieve_project '{}' --json render.render_update_project
Update the details of a project. To update the details of a particular _environment_ in the project, instead use the [Update environment](https://api-docs.render.com/reference/update-environment) endpoint.
write - Parameters
- none
kosmo integrations:call render.render_update_project '{}' --json kosmo integrations:render render_update_project '{}' --json render.render_delete_project
Delete the project with the provided ID. Requires _all_ of the project's environments to be empty (i.e., they must contain no services or other resources). Otherwise, deletion fails with a `409` response. To delete a non-empty project, do one of the following: - First move or delete all contained services and other resources. - Delete the project in the [Render Dashboard](https://dashboard.rend...
write - Parameters
- none
kosmo integrations:call render.render_delete_project '{}' --json kosmo integrations:render render_delete_project '{}' --json render.render_create_environment
Create a new environment belonging to the project with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_create_environment '{}' --json kosmo integrations:render render_create_environment '{}' --json render.render_list_environments
List a particular project's environments matching the provided filters. If no filters are provided, all environments are returned.
read - Parameters
- none
kosmo integrations:call render.render_list_environments '{}' --json kosmo integrations:render render_list_environments '{}' --json render.render_retrieve_environment
Retrieve the environment with the provided ID.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_environment '{}' --json kosmo integrations:render render_retrieve_environment '{}' --json render.render_update_environment
Update the details of the environment with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_update_environment '{}' --json kosmo integrations:render render_update_environment '{}' --json render.render_delete_environment
Delete the environment with the provided ID. Requires the environment to be empty (i.e., it must contain no services or other resources). Otherwise, deletion fails with a `409` response. To delete a non-empty environment, do one of the following: - First move or delete all contained services and other resources. - Delete the environment in the [Render Dashboard](https://dashboard.render.com).
write - Parameters
- none
kosmo integrations:call render.render_delete_environment '{}' --json kosmo integrations:render render_delete_environment '{}' --json render.render_add_resources_to_environment
Add resources to the environment with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_add_resources_to_environment '{}' --json kosmo integrations:render render_add_resources_to_environment '{}' --json render.render_remove_resources_from_environment
Remove resources from the environment with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_remove_resources_from_environment '{}' --json kosmo integrations:render render_remove_resources_from_environment '{}' --json render.render_list_env_groups
List environment groups matching the provided filters. If no filters are provided, all environment groups are returned.
read - Parameters
- none
kosmo integrations:call render.render_list_env_groups '{}' --json kosmo integrations:render render_list_env_groups '{}' --json render.render_create_env_group
Create a new environment group.
write - Parameters
- none
kosmo integrations:call render.render_create_env_group '{}' --json kosmo integrations:render render_create_env_group '{}' --json render.render_retrieve_env_group
Retrieve an environment group by ID.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_env_group '{}' --json kosmo integrations:render render_retrieve_env_group '{}' --json render.render_update_env_group
Update the attributes of an environment group.
write - Parameters
- none
kosmo integrations:call render.render_update_env_group '{}' --json kosmo integrations:render render_update_env_group '{}' --json render.render_delete_env_group
Delete the environment group with the provided ID, including all environment variables and secret files it contains.
write - Parameters
- none
kosmo integrations:call render.render_delete_env_group '{}' --json kosmo integrations:render render_delete_env_group '{}' --json render.render_link_service_to_env_group
Link a particular service to a particular environment group. The linked service will have access to the environment variables and secret files in the group.
write - Parameters
- none
kosmo integrations:call render.render_link_service_to_env_group '{}' --json kosmo integrations:render render_link_service_to_env_group '{}' --json render.render_unlink_service_from_env_group
Unlink a particular service from a particular environment group. The service will lose access to the environment variables and secret files in the group.
write - Parameters
- none
kosmo integrations:call render.render_unlink_service_from_env_group '{}' --json kosmo integrations:render render_unlink_service_from_env_group '{}' --json render.render_retrieve_env_group_env_var
Retrieve a particular environment variable in a particular environment group.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_env_group_env_var '{}' --json kosmo integrations:render render_retrieve_env_group_env_var '{}' --json render.render_update_env_group_env_var
Add or update a particular environment variable in a particular environment group.
write - Parameters
- none
kosmo integrations:call render.render_update_env_group_env_var '{}' --json kosmo integrations:render render_update_env_group_env_var '{}' --json render.render_delete_env_group_env_var
Remove a particular environment variable from a particular environment group.
write - Parameters
- none
kosmo integrations:call render.render_delete_env_group_env_var '{}' --json kosmo integrations:render render_delete_env_group_env_var '{}' --json render.render_retrieve_env_group_secret_file
Retrieve a particular secret file in a particular environment group.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_env_group_secret_file '{}' --json kosmo integrations:render render_retrieve_env_group_secret_file '{}' --json render.render_update_env_group_secret_file
Add or update a particular secret file in an particular environment group.
write - Parameters
- none
kosmo integrations:call render.render_update_env_group_secret_file '{}' --json kosmo integrations:render render_update_env_group_secret_file '{}' --json render.render_delete_env_group_secret_file
Remove a particular secret file from a particular environment group.
write - Parameters
- none
kosmo integrations:call render.render_delete_env_group_secret_file '{}' --json kosmo integrations:render render_delete_env_group_secret_file '{}' --json render.render_list_maintenance
List scheduled and/or recent maintenance runs for specified resources.
read - Parameters
- none
kosmo integrations:call render.render_list_maintenance '{}' --json kosmo integrations:render render_list_maintenance '{}' --json render.render_retrieve_maintenance
Retrieve the maintenance run with the provided ID.
read - Parameters
- none
kosmo integrations:call render.render_retrieve_maintenance '{}' --json kosmo integrations:render render_retrieve_maintenance '{}' --json render.render_update_maintenance
Update the maintenance run with the provided ID. Updates from this endpoint are asynchronous. To check your update's status, use the [Retrieve maintenance run](https://api-docs.render.com/reference/retrieve-maintenance) endpoint.
write - Parameters
- none
kosmo integrations:call render.render_update_maintenance '{}' --json kosmo integrations:render render_update_maintenance '{}' --json render.render_trigger_maintenance
Trigger the scheduled maintenance run with the provided ID. Triggering maintenance is asynchronous. To check whether maintenance has started, use the [Retrieve maintenance run](https://api-docs.render.com/reference/retrieve-maintenance) endpoint. As maintenance progresses, the run's `state` will change from `scheduled` to other values, such as `in_progress` and `succeeded`.
write - Parameters
- none
kosmo integrations:call render.render_trigger_maintenance '{}' --json kosmo integrations:render render_trigger_maintenance '{}' --json render.render_create_webhook
Create a new webhook.
write - Parameters
- none
kosmo integrations:call render.render_create_webhook '{}' --json kosmo integrations:render render_create_webhook '{}' --json render.render_list_webhooks
List webhooks
read - Parameters
- none
kosmo integrations:call render.render_list_webhooks '{}' --json kosmo integrations:render render_list_webhooks '{}' --json render.render_retrieve_webhook
Retrieve the webhook with the provided ID
read - Parameters
- none
kosmo integrations:call render.render_retrieve_webhook '{}' --json kosmo integrations:render render_retrieve_webhook '{}' --json render.render_update_webhook
Update the webhook with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_update_webhook '{}' --json kosmo integrations:render render_update_webhook '{}' --json render.render_delete_webhook
Delete the webhook with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_delete_webhook '{}' --json kosmo integrations:render render_delete_webhook '{}' --json render.render_list_webhook_events
Retrieve a list of events that have been sent to this webhook, with optional filtering by timestamp.
read - Parameters
- none
kosmo integrations:call render.render_list_webhook_events '{}' --json kosmo integrations:render render_list_webhook_events '{}' --json render.render_list_workflows
List workflows that match the provided filters. If no filters are provided, all workflows accessible by the authenticated user are returned.
read - Parameters
- none
kosmo integrations:call render.render_list_workflows '{}' --json kosmo integrations:render render_list_workflows '{}' --json render.render_create_workflow
Create a new workflow service with the specified configuration.
write - Parameters
- none
kosmo integrations:call render.render_create_workflow '{}' --json kosmo integrations:render render_create_workflow '{}' --json render.render_get_workflow
Retrieve the workflow service with the provided ID.
read - Parameters
- none
kosmo integrations:call render.render_get_workflow '{}' --json kosmo integrations:render render_get_workflow '{}' --json render.render_update_workflow
Update the workflow service with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_update_workflow '{}' --json kosmo integrations:render render_update_workflow '{}' --json render.render_delete_workflow
Delete the workflow service with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_delete_workflow '{}' --json kosmo integrations:render render_delete_workflow '{}' --json render.render_list_workflow_versions
List known versions of the workflow service with the provided ID.
read - Parameters
- none
kosmo integrations:call render.render_list_workflow_versions '{}' --json kosmo integrations:render render_list_workflow_versions '{}' --json render.render_create_workflow_version
Creates and deploys a new version of a workflow.
write - Parameters
- none
kosmo integrations:call render.render_create_workflow_version '{}' --json kosmo integrations:render render_create_workflow_version '{}' --json render.render_get_workflow_version
Retrieve the specific workflow service version with the provided ID.
read - Parameters
- none
kosmo integrations:call render.render_get_workflow_version '{}' --json kosmo integrations:render render_get_workflow_version '{}' --json render.render_list_tasks
List workflow tasks that match the provided filters. If no filters are provided, all task definitions accessible by the authenticated user are returned.
read - Parameters
- none
kosmo integrations:call render.render_list_tasks '{}' --json kosmo integrations:render render_list_tasks '{}' --json render.render_get_task
Retrieve the workflow task with the provided ID.
read - Parameters
- none
kosmo integrations:call render.render_get_task '{}' --json kosmo integrations:render render_get_task '{}' --json render.render_list_task_runs
List task runs that match the provided filters. If no filters are provided, all task runs accessible by the authenticated user are returned.
read - Parameters
- none
kosmo integrations:call render.render_list_task_runs '{}' --json kosmo integrations:render render_list_task_runs '{}' --json render.render_create_task
Kicks off a run of the workflow task with the provided ID, passing the provided input data.
write - Parameters
- none
kosmo integrations:call render.render_create_task '{}' --json kosmo integrations:render render_create_task '{}' --json render.render_stream_task_runs_events
Establishes a unidirectional event stream. The server sends events as lines formatted per the SSE spec. Clients SHOULD set `Accept: text/event-stream` and keep the connection open.
read - Parameters
- none
kosmo integrations:call render.render_stream_task_runs_events '{}' --json kosmo integrations:render render_stream_task_runs_events '{}' --json render.render_get_task_run
Retrieve the workflow task run with the provided ID.
read - Parameters
- none
kosmo integrations:call render.render_get_task_run '{}' --json kosmo integrations:render render_get_task_run '{}' --json render.render_cancel_task_run
Cancel a running task run with the provided ID.
write - Parameters
- none
kosmo integrations:call render.render_cancel_task_run '{}' --json kosmo integrations:render render_cancel_task_run '{}' --json Function Schemas
Use these parameter tables when building CLI payloads without calling integrations:schema first.
render.render_list_blueprints 0 parameters
kosmo integrations:schema render.render_list_blueprints --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_validate_blueprint 0 parameters
kosmo integrations:schema render.render_validate_blueprint --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_workspace_member 0 parameters
kosmo integrations:schema render.render_update_workspace_member --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_remove_workspace_member 0 parameters
kosmo integrations:schema render.render_remove_workspace_member --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_blueprint 0 parameters
kosmo integrations:schema render.render_retrieve_blueprint --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_blueprint 0 parameters
kosmo integrations:schema render.render_update_blueprint --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_disconnect_blueprint 0 parameters
kosmo integrations:schema render.render_disconnect_blueprint --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_blueprint_syncs 0 parameters
kosmo integrations:schema render.render_list_blueprint_syncs --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_disks 0 parameters
kosmo integrations:schema render.render_list_disks --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_add_disk 0 parameters
kosmo integrations:schema render.render_add_disk --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_disk 0 parameters
kosmo integrations:schema render.render_retrieve_disk --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_disk 0 parameters
kosmo integrations:schema render.render_update_disk --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_disk 0 parameters
kosmo integrations:schema render.render_delete_disk --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_snapshots 0 parameters
kosmo integrations:schema render.render_list_snapshots --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_restore_snapshot 0 parameters
kosmo integrations:schema render.render_restore_snapshot --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_current_user 0 parameters
kosmo integrations:schema render.render_get_current_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_owners 0 parameters
kosmo integrations:schema render.render_list_owners --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_owner 0 parameters
kosmo integrations:schema render.render_retrieve_owner --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_owner_members 0 parameters
kosmo integrations:schema render.render_retrieve_owner_members --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_owner_audit_logs 0 parameters
kosmo integrations:schema render.render_list_owner_audit_logs --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_organization_audit_logs 0 parameters
kosmo integrations:schema render.render_list_organization_audit_logs --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_owner_notification_settings 0 parameters
kosmo integrations:schema render.render_retrieve_owner_notification_settings --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_patch_owner_notification_settings 0 parameters
kosmo integrations:schema render.render_patch_owner_notification_settings --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_notification_overrides 0 parameters
kosmo integrations:schema render.render_list_notification_overrides --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_service_notification_overrides 0 parameters
kosmo integrations:schema render.render_retrieve_service_notification_overrides --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_patch_service_notification_overrides 0 parameters
kosmo integrations:schema render.render_patch_service_notification_overrides --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_registry_credentials 0 parameters
kosmo integrations:schema render.render_list_registry_credentials --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_create_registry_credential 0 parameters
kosmo integrations:schema render.render_create_registry_credential --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_registry_credential 0 parameters
kosmo integrations:schema render.render_retrieve_registry_credential --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_registry_credential 0 parameters
kosmo integrations:schema render.render_update_registry_credential --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_registry_credential 0 parameters
kosmo integrations:schema render.render_delete_registry_credential --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_services 0 parameters
kosmo integrations:schema render.render_list_services --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_create_service 0 parameters
kosmo integrations:schema render.render_create_service --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_service 0 parameters
kosmo integrations:schema render.render_get_service --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_service 0 parameters
kosmo integrations:schema render.render_update_service --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_service 0 parameters
kosmo integrations:schema render.render_delete_service --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_purge_cache 0 parameters
kosmo integrations:schema render.render_purge_cache --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_deploys 0 parameters
kosmo integrations:schema render.render_list_deploys --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_create_deploy 0 parameters
kosmo integrations:schema render.render_create_deploy --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_deploy 0 parameters
kosmo integrations:schema render.render_get_deploy --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_cancel_deploy 0 parameters
kosmo integrations:schema render.render_cancel_deploy --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_rollback_deploy 0 parameters
kosmo integrations:schema render.render_rollback_deploy --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_env_vars_for_service 0 parameters
kosmo integrations:schema render.render_get_env_vars_for_service --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_env_vars_for_service 0 parameters
kosmo integrations:schema render.render_update_env_vars_for_service --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_env_var 0 parameters
kosmo integrations:schema render.render_retrieve_env_var --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_env_var 0 parameters
kosmo integrations:schema render.render_update_env_var --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_env_var 0 parameters
kosmo integrations:schema render.render_delete_env_var --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_secret_files_for_service 0 parameters
kosmo integrations:schema render.render_list_secret_files_for_service --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_secret_files_for_service 0 parameters
kosmo integrations:schema render.render_update_secret_files_for_service --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_secret_file 0 parameters
kosmo integrations:schema render.render_retrieve_secret_file --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_add_or_update_secret_file 0 parameters
kosmo integrations:schema render.render_add_or_update_secret_file --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_secret_file 0 parameters
kosmo integrations:schema render.render_delete_secret_file --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_events 0 parameters
kosmo integrations:schema render.render_list_events --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_headers 0 parameters
kosmo integrations:schema render.render_list_headers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_add_headers 0 parameters
kosmo integrations:schema render.render_add_headers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_headers 0 parameters
kosmo integrations:schema render.render_update_headers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_header 0 parameters
kosmo integrations:schema render.render_delete_header --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_routes 0 parameters
kosmo integrations:schema render.render_list_routes --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_add_route 0 parameters
kosmo integrations:schema render.render_add_route --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_patch_route 0 parameters
kosmo integrations:schema render.render_patch_route --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_put_routes 0 parameters
kosmo integrations:schema render.render_put_routes --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_route 0 parameters
kosmo integrations:schema render.render_delete_route --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_custom_domains 0 parameters
kosmo integrations:schema render.render_list_custom_domains --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_create_custom_domain 0 parameters
kosmo integrations:schema render.render_create_custom_domain --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_custom_domain 0 parameters
kosmo integrations:schema render.render_retrieve_custom_domain --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_custom_domain 0 parameters
kosmo integrations:schema render.render_delete_custom_domain --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_refresh_custom_domain 0 parameters
kosmo integrations:schema render.render_refresh_custom_domain --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_suspend_service 0 parameters
kosmo integrations:schema render.render_suspend_service --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_resume_service 0 parameters
kosmo integrations:schema render.render_resume_service --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_restart_service 0 parameters
kosmo integrations:schema render.render_restart_service --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_scale_service 0 parameters
kosmo integrations:schema render.render_scale_service --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_autoscale_service 0 parameters
kosmo integrations:schema render.render_autoscale_service --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_autoscaling_config 0 parameters
kosmo integrations:schema render.render_delete_autoscaling_config --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_preview_service 0 parameters
kosmo integrations:schema render.render_preview_service --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_jobs 0 parameters
kosmo integrations:schema render.render_list_jobs --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_post_job 0 parameters
kosmo integrations:schema render.render_post_job --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_job 0 parameters
kosmo integrations:schema render.render_retrieve_job --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_cancel_job 0 parameters
kosmo integrations:schema render.render_cancel_job --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_instances 0 parameters
kosmo integrations:schema render.render_list_instances --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_run_cron_job 0 parameters
kosmo integrations:schema render.render_run_cron_job --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_cancel_cron_job_run 0 parameters
kosmo integrations:schema render.render_cancel_cron_job_run --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_event 0 parameters
kosmo integrations:schema render.render_retrieve_event --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_logs 0 parameters
kosmo integrations:schema render.render_list_logs --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_subscribe_logs 0 parameters
kosmo integrations:schema render.render_subscribe_logs --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_logs_values 0 parameters
kosmo integrations:schema render.render_list_logs_values --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_owner_log_stream 0 parameters
kosmo integrations:schema render.render_get_owner_log_stream --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_owner_log_stream 0 parameters
kosmo integrations:schema render.render_update_owner_log_stream --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_owner_log_stream 0 parameters
kosmo integrations:schema render.render_delete_owner_log_stream --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_resource_log_streams 0 parameters
kosmo integrations:schema render.render_list_resource_log_streams --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_resource_log_stream 0 parameters
kosmo integrations:schema render.render_get_resource_log_stream --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_resource_log_stream 0 parameters
kosmo integrations:schema render.render_update_resource_log_stream --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_resource_log_stream 0 parameters
kosmo integrations:schema render.render_delete_resource_log_stream --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_owner_metrics_stream 0 parameters
kosmo integrations:schema render.render_get_owner_metrics_stream --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_upsert_owner_metrics_stream 0 parameters
kosmo integrations:schema render.render_upsert_owner_metrics_stream --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_owner_metrics_stream 0 parameters
kosmo integrations:schema render.render_delete_owner_metrics_stream --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_cpu 0 parameters
kosmo integrations:schema render.render_get_cpu --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_cpu_limit 0 parameters
kosmo integrations:schema render.render_get_cpu_limit --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_cpu_target 0 parameters
kosmo integrations:schema render.render_get_cpu_target --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_memory 0 parameters
kosmo integrations:schema render.render_get_memory --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_memory_limit 0 parameters
kosmo integrations:schema render.render_get_memory_limit --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_memory_target 0 parameters
kosmo integrations:schema render.render_get_memory_target --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_http_requests 0 parameters
kosmo integrations:schema render.render_get_http_requests --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_http_latency 0 parameters
kosmo integrations:schema render.render_get_http_latency --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_bandwidth 0 parameters
kosmo integrations:schema render.render_get_bandwidth --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_bandwidth_sources 0 parameters
kosmo integrations:schema render.render_get_bandwidth_sources --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_disk_usage 0 parameters
kosmo integrations:schema render.render_get_disk_usage --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_disk_capacity 0 parameters
kosmo integrations:schema render.render_get_disk_capacity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_instance_count 0 parameters
kosmo integrations:schema render.render_get_instance_count --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_active_connections 0 parameters
kosmo integrations:schema render.render_get_active_connections --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_replication_lag 0 parameters
kosmo integrations:schema render.render_get_replication_lag --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_application_filter_values 0 parameters
kosmo integrations:schema render.render_list_application_filter_values --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_http_filter_values 0 parameters
kosmo integrations:schema render.render_list_http_filter_values --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_path_filter_values 0 parameters
kosmo integrations:schema render.render_list_path_filter_values --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_task_runs_queued 0 parameters
kosmo integrations:schema render.render_get_task_runs_queued --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_task_runs_completed 0 parameters
kosmo integrations:schema render.render_get_task_runs_completed --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_key_value 0 parameters
kosmo integrations:schema render.render_list_key_value --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_create_key_value 0 parameters
kosmo integrations:schema render.render_create_key_value --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_key_value 0 parameters
kosmo integrations:schema render.render_retrieve_key_value --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_key_value 0 parameters
kosmo integrations:schema render.render_update_key_value --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_key_value 0 parameters
kosmo integrations:schema render.render_delete_key_value --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_key_value_connection_info 0 parameters
kosmo integrations:schema render.render_retrieve_key_value_connection_info --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_suspend_key_value 0 parameters
kosmo integrations:schema render.render_suspend_key_value --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_resume_key_value 0 parameters
kosmo integrations:schema render.render_resume_key_value --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_redis 0 parameters
kosmo integrations:schema render.render_list_redis --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_create_redis 0 parameters
kosmo integrations:schema render.render_create_redis --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_redis 0 parameters
kosmo integrations:schema render.render_retrieve_redis --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_redis 0 parameters
kosmo integrations:schema render.render_update_redis --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_redis 0 parameters
kosmo integrations:schema render.render_delete_redis --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_redis_connection_info 0 parameters
kosmo integrations:schema render.render_retrieve_redis_connection_info --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_postgres 0 parameters
kosmo integrations:schema render.render_list_postgres --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_create_postgres 0 parameters
kosmo integrations:schema render.render_create_postgres --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_postgres 0 parameters
kosmo integrations:schema render.render_retrieve_postgres --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_postgres 0 parameters
kosmo integrations:schema render.render_update_postgres --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_postgres 0 parameters
kosmo integrations:schema render.render_delete_postgres --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_postgres_connection_info 0 parameters
kosmo integrations:schema render.render_retrieve_postgres_connection_info --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_postgres_recovery_info 0 parameters
kosmo integrations:schema render.render_retrieve_postgres_recovery_info --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_recover_postgres 0 parameters
kosmo integrations:schema render.render_recover_postgres --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_suspend_postgres 0 parameters
kosmo integrations:schema render.render_suspend_postgres --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_resume_postgres 0 parameters
kosmo integrations:schema render.render_resume_postgres --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_restart_postgres 0 parameters
kosmo integrations:schema render.render_restart_postgres --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_failover_postgres 0 parameters
kosmo integrations:schema render.render_failover_postgres --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_postgres_export 0 parameters
kosmo integrations:schema render.render_list_postgres_export --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_create_postgres_export 0 parameters
kosmo integrations:schema render.render_create_postgres_export --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_postgres_users 0 parameters
kosmo integrations:schema render.render_list_postgres_users --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_create_postgres_user 0 parameters
kosmo integrations:schema render.render_create_postgres_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_postgres_user 0 parameters
kosmo integrations:schema render.render_delete_postgres_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_projects 0 parameters
kosmo integrations:schema render.render_list_projects --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_create_project 0 parameters
kosmo integrations:schema render.render_create_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_project 0 parameters
kosmo integrations:schema render.render_retrieve_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_project 0 parameters
kosmo integrations:schema render.render_update_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_project 0 parameters
kosmo integrations:schema render.render_delete_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_create_environment 0 parameters
kosmo integrations:schema render.render_create_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_environments 0 parameters
kosmo integrations:schema render.render_list_environments --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_environment 0 parameters
kosmo integrations:schema render.render_retrieve_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_environment 0 parameters
kosmo integrations:schema render.render_update_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_environment 0 parameters
kosmo integrations:schema render.render_delete_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_add_resources_to_environment 0 parameters
kosmo integrations:schema render.render_add_resources_to_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_remove_resources_from_environment 0 parameters
kosmo integrations:schema render.render_remove_resources_from_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_env_groups 0 parameters
kosmo integrations:schema render.render_list_env_groups --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_create_env_group 0 parameters
kosmo integrations:schema render.render_create_env_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_env_group 0 parameters
kosmo integrations:schema render.render_retrieve_env_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_env_group 0 parameters
kosmo integrations:schema render.render_update_env_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_env_group 0 parameters
kosmo integrations:schema render.render_delete_env_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_link_service_to_env_group 0 parameters
kosmo integrations:schema render.render_link_service_to_env_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_unlink_service_from_env_group 0 parameters
kosmo integrations:schema render.render_unlink_service_from_env_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_env_group_env_var 0 parameters
kosmo integrations:schema render.render_retrieve_env_group_env_var --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_env_group_env_var 0 parameters
kosmo integrations:schema render.render_update_env_group_env_var --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_env_group_env_var 0 parameters
kosmo integrations:schema render.render_delete_env_group_env_var --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_env_group_secret_file 0 parameters
kosmo integrations:schema render.render_retrieve_env_group_secret_file --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_env_group_secret_file 0 parameters
kosmo integrations:schema render.render_update_env_group_secret_file --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_env_group_secret_file 0 parameters
kosmo integrations:schema render.render_delete_env_group_secret_file --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_maintenance 0 parameters
kosmo integrations:schema render.render_list_maintenance --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_maintenance 0 parameters
kosmo integrations:schema render.render_retrieve_maintenance --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_maintenance 0 parameters
kosmo integrations:schema render.render_update_maintenance --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_trigger_maintenance 0 parameters
kosmo integrations:schema render.render_trigger_maintenance --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_create_webhook 0 parameters
kosmo integrations:schema render.render_create_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_webhooks 0 parameters
kosmo integrations:schema render.render_list_webhooks --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_retrieve_webhook 0 parameters
kosmo integrations:schema render.render_retrieve_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_webhook 0 parameters
kosmo integrations:schema render.render_update_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_webhook 0 parameters
kosmo integrations:schema render.render_delete_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_webhook_events 0 parameters
kosmo integrations:schema render.render_list_webhook_events --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_workflows 0 parameters
kosmo integrations:schema render.render_list_workflows --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_create_workflow 0 parameters
kosmo integrations:schema render.render_create_workflow --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_workflow 0 parameters
kosmo integrations:schema render.render_get_workflow --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_update_workflow 0 parameters
kosmo integrations:schema render.render_update_workflow --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_delete_workflow 0 parameters
kosmo integrations:schema render.render_delete_workflow --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_workflow_versions 0 parameters
kosmo integrations:schema render.render_list_workflow_versions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_create_workflow_version 0 parameters
kosmo integrations:schema render.render_create_workflow_version --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_workflow_version 0 parameters
kosmo integrations:schema render.render_get_workflow_version --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_tasks 0 parameters
kosmo integrations:schema render.render_list_tasks --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_task 0 parameters
kosmo integrations:schema render.render_get_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_list_task_runs 0 parameters
kosmo integrations:schema render.render_list_task_runs --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_create_task 0 parameters
kosmo integrations:schema render.render_create_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_stream_task_runs_events 0 parameters
kosmo integrations:schema render.render_stream_task_runs_events --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_get_task_run 0 parameters
kosmo integrations:schema render.render_get_task_run --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
render.render_cancel_task_run 0 parameters
kosmo integrations:schema render.render_cancel_task_run --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
Permissions
Headless calls still follow the integration read/write permission policy. Configure read/write defaults with
integrations:configure. Add --force only for trusted automation that should bypass that policy.