KosmoKrator

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, configure, and verify
# 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.

KeyEnv varTypeRequiredLabel
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.

Generic CLI call
kosmo integrations:call render.render_list_blueprints '{}' --json
Provider shortcut
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.

Discovery commands
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_blueprints '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_validate_blueprint '{}' --json
Shortcut
kosmo integrations:render render_validate_blueprint '{}' --json

render.render_update_workspace_member

Update the role of an existing workspace member.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_update_workspace_member '{}' --json
Shortcut
kosmo integrations:render render_update_workspace_member '{}' --json

render.render_remove_workspace_member

Remove a user from the specified workspace.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_remove_workspace_member '{}' --json
Shortcut
kosmo integrations:render render_remove_workspace_member '{}' --json

render.render_retrieve_blueprint

Retrieve the Blueprint with the provided ID.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_blueprint '{}' --json
Shortcut
kosmo integrations:render render_retrieve_blueprint '{}' --json

render.render_update_blueprint

Update the Blueprint with the provided ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_update_blueprint '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_disconnect_blueprint '{}' --json
Shortcut
kosmo integrations:render render_disconnect_blueprint '{}' --json

render.render_list_blueprint_syncs

List syncs for the Blueprint with the provided ID.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_list_blueprint_syncs '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_disks '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_add_disk '{}' --json
Shortcut
kosmo integrations:render render_add_disk '{}' --json

render.render_retrieve_disk

Retrieve the persistent disk with the provided ID.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_disk '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_update_disk '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_disk '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_snapshots '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_restore_snapshot '{}' --json
Shortcut
kosmo integrations:render render_restore_snapshot '{}' --json

render.render_get_current_user

Retrieve the user associated with the provided API key.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_current_user '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_owners '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_owner '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_owner_members '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_owner_audit_logs '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_organization_audit_logs '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_owner_notification_settings '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_patch_owner_notification_settings '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_notification_overrides '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_service_notification_overrides '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_patch_service_notification_overrides '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_registry_credentials '{}' --json
Shortcut
kosmo integrations:render render_list_registry_credentials '{}' --json

render.render_create_registry_credential

Create a new registry credential.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_create_registry_credential '{}' --json
Shortcut
kosmo integrations:render render_create_registry_credential '{}' --json

render.render_retrieve_registry_credential

Retrieve the registry credential with the provided ID.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_registry_credential '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_update_registry_credential '{}' --json
Shortcut
kosmo integrations:render render_update_registry_credential '{}' --json

render.render_delete_registry_credential

Delete the registry credential with the provided ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_registry_credential '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_services '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_create_service '{}' --json
Shortcut
kosmo integrations:render render_create_service '{}' --json

render.render_get_service

Retrieve the service with the provided ID.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_service '{}' --json
Shortcut
kosmo integrations:render render_get_service '{}' --json

render.render_update_service

Update the service with the provided ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_update_service '{}' --json
Shortcut
kosmo integrations:render render_update_service '{}' --json

render.render_delete_service

Delete the service with the provided ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_service '{}' --json
Shortcut
kosmo integrations:render render_delete_service '{}' --json

render.render_purge_cache

Trigger cache purge for the web service if caching is enabled.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_purge_cache '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_deploys '{}' --json
Shortcut
kosmo integrations:render render_list_deploys '{}' --json

render.render_create_deploy

Trigger a deploy for the service with the provided ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_create_deploy '{}' --json
Shortcut
kosmo integrations:render render_create_deploy '{}' --json

render.render_get_deploy

Retrieve the details of a particular deploy for a particular service.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_deploy '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_cancel_deploy '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_rollback_deploy '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_get_env_vars_for_service '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_update_env_vars_for_service '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_env_var '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_update_env_var '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_env_var '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_secret_files_for_service '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_update_secret_files_for_service '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_secret_file '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_add_or_update_secret_file '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_secret_file '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_events '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_headers '{}' --json
Shortcut
kosmo integrations:render render_list_headers '{}' --json

render.render_add_headers

Add a response header rule to the service with the provided ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_add_headers '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_update_headers '{}' --json
Shortcut
kosmo integrations:render render_update_headers '{}' --json

render.render_delete_header

Delete a particular response header rule for a particular service.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_header '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_routes '{}' --json
Shortcut
kosmo integrations:render render_list_routes '{}' --json

render.render_add_route

Add redirect/rewrite rules to the service with the provided ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_add_route '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_patch_route '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_put_routes '{}' --json
Shortcut
kosmo integrations:render render_put_routes '{}' --json

render.render_delete_route

Delete a particular redirect/rewrite rule for a particular service.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_route '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_custom_domains '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_create_custom_domain '{}' --json
Shortcut
kosmo integrations:render render_create_custom_domain '{}' --json

render.render_retrieve_custom_domain

Retrieve a particular custom domain for a particular service.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_custom_domain '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_custom_domain '{}' --json
Shortcut
kosmo integrations:render render_delete_custom_domain '{}' --json

render.render_refresh_custom_domain

Verify the DNS configuration for a custom domain.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_refresh_custom_domain '{}' --json
Shortcut
kosmo integrations:render render_refresh_custom_domain '{}' --json

render.render_suspend_service

Suspend the service with the provided ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_suspend_service '{}' --json
Shortcut
kosmo integrations:render render_suspend_service '{}' --json

render.render_resume_service

Resume the service with the provided ID (if it's currently suspended).

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_resume_service '{}' --json
Shortcut
kosmo integrations:render render_resume_service '{}' --json

render.render_restart_service

Restart the service with the provided ID. Not supported for cron jobs.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_restart_service '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_scale_service '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_autoscale_service '{}' --json
Shortcut
kosmo integrations:render render_autoscale_service '{}' --json

render.render_delete_autoscaling_config

Delete the autoscaling config for a service given the service id.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_autoscaling_config '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_preview_service '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_jobs '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_post_job '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_job '{}' --json
Shortcut
kosmo integrations:render render_retrieve_job '{}' --json

render.render_cancel_job

Cancel a particular one-off job for a particular service.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_cancel_job '{}' --json
Shortcut
kosmo integrations:render render_cancel_job '{}' --json

render.render_list_instances

List instances for the provided service.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_list_instances '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_run_cron_job '{}' --json
Shortcut
kosmo integrations:render render_run_cron_job '{}' --json

render.render_cancel_cron_job_run

Cancel a currently running cron job.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_cancel_cron_job_run '{}' --json
Shortcut
kosmo integrations:render render_cancel_cron_job_run '{}' --json

render.render_retrieve_event

Retrieve the details of a particular event

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_event '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_logs '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_subscribe_logs '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_logs_values '{}' --json
Shortcut
kosmo integrations:render render_list_logs_values '{}' --json

render.render_get_owner_log_stream

Returns log stream information for the specified workspace.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_owner_log_stream '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_update_owner_log_stream '{}' --json
Shortcut
kosmo integrations:render render_update_owner_log_stream '{}' --json

render.render_delete_owner_log_stream

Removes the log stream for the specified workspace.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_owner_log_stream '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_resource_log_streams '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_get_resource_log_stream '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_update_resource_log_stream '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_resource_log_stream '{}' --json
Shortcut
kosmo integrations:render render_delete_resource_log_stream '{}' --json

render.render_get_owner_metrics_stream

Returns metrics stream information for the specified workspace.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_owner_metrics_stream '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_upsert_owner_metrics_stream '{}' --json
Shortcut
kosmo integrations:render render_upsert_owner_metrics_stream '{}' --json

render.render_delete_owner_metrics_stream

Deletes the metrics stream for the specified workspace.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_owner_metrics_stream '{}' --json
Shortcut
kosmo integrations:render render_delete_owner_metrics_stream '{}' --json

render.render_get_cpu

Get CPU usage for one or more resources.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_cpu '{}' --json
Shortcut
kosmo integrations:render render_get_cpu '{}' --json

render.render_get_cpu_limit

Get the CPU limit for one or more resources.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_cpu_limit '{}' --json
Shortcut
kosmo integrations:render render_get_cpu_limit '{}' --json

render.render_get_cpu_target

Get CPU target for one or more resources.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_cpu_target '{}' --json
Shortcut
kosmo integrations:render render_get_cpu_target '{}' --json

render.render_get_memory

Get memory usage for one or more resources.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_memory '{}' --json
Shortcut
kosmo integrations:render render_get_memory '{}' --json

render.render_get_memory_limit

Get the memory limit for one or more resources.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_memory_limit '{}' --json
Shortcut
kosmo integrations:render render_get_memory_limit '{}' --json

render.render_get_memory_target

Get memory target for one or more resources.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_memory_target '{}' --json
Shortcut
kosmo integrations:render render_get_memory_target '{}' --json

render.render_get_http_requests

Get the HTTP request count for one or more resources.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_http_requests '{}' --json
Shortcut
kosmo integrations:render render_get_http_requests '{}' --json

render.render_get_http_latency

Get HTTP latency metrics for one or more resources.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_http_latency '{}' --json
Shortcut
kosmo integrations:render render_get_http_latency '{}' --json

render.render_get_bandwidth

Get bandwidth usage for one or more resources.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_bandwidth '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_get_bandwidth_sources '{}' --json
Shortcut
kosmo integrations:render render_get_bandwidth_sources '{}' --json

render.render_get_disk_usage

Get persistent disk usage for one or more resources.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_disk_usage '{}' --json
Shortcut
kosmo integrations:render render_get_disk_usage '{}' --json

render.render_get_disk_capacity

Get persistent disk capacity for one or more resources.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_disk_capacity '{}' --json
Shortcut
kosmo integrations:render render_get_disk_capacity '{}' --json

render.render_get_instance_count

Get the instance count for one or more resources.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_instance_count '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_get_active_connections '{}' --json
Shortcut
kosmo integrations:render render_get_active_connections '{}' --json

render.render_get_replication_lag

Get seconds of replica lag of a Postgres replica.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_replication_lag '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_application_filter_values '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_http_filter_values '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_path_filter_values '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_get_task_runs_queued '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_get_task_runs_completed '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_key_value '{}' --json
Shortcut
kosmo integrations:render render_list_key_value '{}' --json

render.render_create_key_value

Create a new Key Value instance.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_create_key_value '{}' --json
Shortcut
kosmo integrations:render render_create_key_value '{}' --json

render.render_retrieve_key_value

Retrieve a Key Value instance by ID.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_key_value '{}' --json
Shortcut
kosmo integrations:render render_retrieve_key_value '{}' --json

render.render_update_key_value

Update a Key Value instance by ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_update_key_value '{}' --json
Shortcut
kosmo integrations:render render_update_key_value '{}' --json

render.render_delete_key_value

Delete a Key Value instance by ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_key_value '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_key_value_connection_info '{}' --json
Shortcut
kosmo integrations:render render_retrieve_key_value_connection_info '{}' --json

render.render_suspend_key_value

Suspend a Key Value instance by ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_suspend_key_value '{}' --json
Shortcut
kosmo integrations:render render_suspend_key_value '{}' --json

render.render_resume_key_value

Resume a Key Value instance by ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_resume_key_value '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_redis '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_create_redis '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_redis '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_update_redis '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_redis '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_redis_connection_info '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_postgres '{}' --json
Shortcut
kosmo integrations:render render_list_postgres '{}' --json

render.render_create_postgres

Create a new Postgres instance.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_create_postgres '{}' --json
Shortcut
kosmo integrations:render render_create_postgres '{}' --json

render.render_retrieve_postgres

Retrieve a Postgres instance by ID.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_postgres '{}' --json
Shortcut
kosmo integrations:render render_retrieve_postgres '{}' --json

render.render_update_postgres

Update a Postgres instance by ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_update_postgres '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_postgres '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_postgres_connection_info '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_postgres_recovery_info '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_recover_postgres '{}' --json
Shortcut
kosmo integrations:render render_recover_postgres '{}' --json

render.render_suspend_postgres

Suspend a Postgres instance by ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_suspend_postgres '{}' --json
Shortcut
kosmo integrations:render render_suspend_postgres '{}' --json

render.render_resume_postgres

Resume a Postgres instance by ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_resume_postgres '{}' --json
Shortcut
kosmo integrations:render render_resume_postgres '{}' --json

render.render_restart_postgres

Restart a Postgres instance by ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_restart_postgres '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_failover_postgres '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_postgres_export '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_create_postgres_export '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_postgres_users '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_create_postgres_user '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_postgres_user '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_projects '{}' --json
Shortcut
kosmo integrations:render render_list_projects '{}' --json

render.render_create_project

Create a new project.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_create_project '{}' --json
Shortcut
kosmo integrations:render render_create_project '{}' --json

render.render_retrieve_project

Retrieve the project with the provided ID.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_project '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_update_project '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_project '{}' --json
Shortcut
kosmo integrations:render render_delete_project '{}' --json

render.render_create_environment

Create a new environment belonging to the project with the provided ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_create_environment '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_environments '{}' --json
Shortcut
kosmo integrations:render render_list_environments '{}' --json

render.render_retrieve_environment

Retrieve the environment with the provided ID.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_environment '{}' --json
Shortcut
kosmo integrations:render render_retrieve_environment '{}' --json

render.render_update_environment

Update the details of the environment with the provided ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_update_environment '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_environment '{}' --json
Shortcut
kosmo integrations:render render_delete_environment '{}' --json

render.render_add_resources_to_environment

Add resources to the environment with the provided ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_add_resources_to_environment '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_remove_resources_from_environment '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_env_groups '{}' --json
Shortcut
kosmo integrations:render render_list_env_groups '{}' --json

render.render_create_env_group

Create a new environment group.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_create_env_group '{}' --json
Shortcut
kosmo integrations:render render_create_env_group '{}' --json

render.render_retrieve_env_group

Retrieve an environment group by ID.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_env_group '{}' --json
Shortcut
kosmo integrations:render render_retrieve_env_group '{}' --json

render.render_update_env_group

Update the attributes of an environment group.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_update_env_group '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_env_group '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_link_service_to_env_group '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_unlink_service_from_env_group '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_env_group_env_var '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_update_env_group_env_var '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_env_group_env_var '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_env_group_secret_file '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_update_env_group_secret_file '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_env_group_secret_file '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_maintenance '{}' --json
Shortcut
kosmo integrations:render render_list_maintenance '{}' --json

render.render_retrieve_maintenance

Retrieve the maintenance run with the provided ID.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_maintenance '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_update_maintenance '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_trigger_maintenance '{}' --json
Shortcut
kosmo integrations:render render_trigger_maintenance '{}' --json

render.render_create_webhook

Create a new webhook.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_create_webhook '{}' --json
Shortcut
kosmo integrations:render render_create_webhook '{}' --json

render.render_list_webhooks

List webhooks

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_list_webhooks '{}' --json
Shortcut
kosmo integrations:render render_list_webhooks '{}' --json

render.render_retrieve_webhook

Retrieve the webhook with the provided ID

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_retrieve_webhook '{}' --json
Shortcut
kosmo integrations:render render_retrieve_webhook '{}' --json

render.render_update_webhook

Update the webhook with the provided ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_update_webhook '{}' --json
Shortcut
kosmo integrations:render render_update_webhook '{}' --json

render.render_delete_webhook

Delete the webhook with the provided ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_webhook '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_webhook_events '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_workflows '{}' --json
Shortcut
kosmo integrations:render render_list_workflows '{}' --json

render.render_create_workflow

Create a new workflow service with the specified configuration.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_create_workflow '{}' --json
Shortcut
kosmo integrations:render render_create_workflow '{}' --json

render.render_get_workflow

Retrieve the workflow service with the provided ID.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_workflow '{}' --json
Shortcut
kosmo integrations:render render_get_workflow '{}' --json

render.render_update_workflow

Update the workflow service with the provided ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_update_workflow '{}' --json
Shortcut
kosmo integrations:render render_update_workflow '{}' --json

render.render_delete_workflow

Delete the workflow service with the provided ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_delete_workflow '{}' --json
Shortcut
kosmo integrations:render render_delete_workflow '{}' --json

render.render_list_workflow_versions

List known versions of the workflow service with the provided ID.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_list_workflow_versions '{}' --json
Shortcut
kosmo integrations:render render_list_workflow_versions '{}' --json

render.render_create_workflow_version

Creates and deploys a new version of a workflow.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_create_workflow_version '{}' --json
Shortcut
kosmo integrations:render render_create_workflow_version '{}' --json

render.render_get_workflow_version

Retrieve the specific workflow service version with the provided ID.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_workflow_version '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_tasks '{}' --json
Shortcut
kosmo integrations:render render_list_tasks '{}' --json

render.render_get_task

Retrieve the workflow task with the provided ID.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_task '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_list_task_runs '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call render.render_create_task '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call render.render_stream_task_runs_events '{}' --json
Shortcut
kosmo integrations:render render_stream_task_runs_events '{}' --json

render.render_get_task_run

Retrieve the workflow task run with the provided ID.

Read read
Parameters
none
Generic call
kosmo integrations:call render.render_get_task_run '{}' --json
Shortcut
kosmo integrations:render render_get_task_run '{}' --json

render.render_cancel_task_run

Cancel a running task run with the provided ID.

Write write
Parameters
none
Generic call
kosmo integrations:call render.render_cancel_task_run '{}' --json
Shortcut
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
Schema command
kosmo integrations:schema render.render_list_blueprints --json
ParameterTypeRequiredDescription
No parameters.
render.render_validate_blueprint 0 parameters
Schema command
kosmo integrations:schema render.render_validate_blueprint --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_workspace_member 0 parameters
Schema command
kosmo integrations:schema render.render_update_workspace_member --json
ParameterTypeRequiredDescription
No parameters.
render.render_remove_workspace_member 0 parameters
Schema command
kosmo integrations:schema render.render_remove_workspace_member --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_blueprint 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_blueprint --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_blueprint 0 parameters
Schema command
kosmo integrations:schema render.render_update_blueprint --json
ParameterTypeRequiredDescription
No parameters.
render.render_disconnect_blueprint 0 parameters
Schema command
kosmo integrations:schema render.render_disconnect_blueprint --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_blueprint_syncs 0 parameters
Schema command
kosmo integrations:schema render.render_list_blueprint_syncs --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_disks 0 parameters
Schema command
kosmo integrations:schema render.render_list_disks --json
ParameterTypeRequiredDescription
No parameters.
render.render_add_disk 0 parameters
Schema command
kosmo integrations:schema render.render_add_disk --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_disk 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_disk --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_disk 0 parameters
Schema command
kosmo integrations:schema render.render_update_disk --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_disk 0 parameters
Schema command
kosmo integrations:schema render.render_delete_disk --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_snapshots 0 parameters
Schema command
kosmo integrations:schema render.render_list_snapshots --json
ParameterTypeRequiredDescription
No parameters.
render.render_restore_snapshot 0 parameters
Schema command
kosmo integrations:schema render.render_restore_snapshot --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_current_user 0 parameters
Schema command
kosmo integrations:schema render.render_get_current_user --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_owners 0 parameters
Schema command
kosmo integrations:schema render.render_list_owners --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_owner 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_owner --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_owner_members 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_owner_members --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_owner_audit_logs 0 parameters
Schema command
kosmo integrations:schema render.render_list_owner_audit_logs --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_organization_audit_logs 0 parameters
Schema command
kosmo integrations:schema render.render_list_organization_audit_logs --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_owner_notification_settings 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_owner_notification_settings --json
ParameterTypeRequiredDescription
No parameters.
render.render_patch_owner_notification_settings 0 parameters
Schema command
kosmo integrations:schema render.render_patch_owner_notification_settings --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_notification_overrides 0 parameters
Schema command
kosmo integrations:schema render.render_list_notification_overrides --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_service_notification_overrides 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_service_notification_overrides --json
ParameterTypeRequiredDescription
No parameters.
render.render_patch_service_notification_overrides 0 parameters
Schema command
kosmo integrations:schema render.render_patch_service_notification_overrides --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_registry_credentials 0 parameters
Schema command
kosmo integrations:schema render.render_list_registry_credentials --json
ParameterTypeRequiredDescription
No parameters.
render.render_create_registry_credential 0 parameters
Schema command
kosmo integrations:schema render.render_create_registry_credential --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_registry_credential 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_registry_credential --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_registry_credential 0 parameters
Schema command
kosmo integrations:schema render.render_update_registry_credential --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_registry_credential 0 parameters
Schema command
kosmo integrations:schema render.render_delete_registry_credential --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_services 0 parameters
Schema command
kosmo integrations:schema render.render_list_services --json
ParameterTypeRequiredDescription
No parameters.
render.render_create_service 0 parameters
Schema command
kosmo integrations:schema render.render_create_service --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_service 0 parameters
Schema command
kosmo integrations:schema render.render_get_service --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_service 0 parameters
Schema command
kosmo integrations:schema render.render_update_service --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_service 0 parameters
Schema command
kosmo integrations:schema render.render_delete_service --json
ParameterTypeRequiredDescription
No parameters.
render.render_purge_cache 0 parameters
Schema command
kosmo integrations:schema render.render_purge_cache --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_deploys 0 parameters
Schema command
kosmo integrations:schema render.render_list_deploys --json
ParameterTypeRequiredDescription
No parameters.
render.render_create_deploy 0 parameters
Schema command
kosmo integrations:schema render.render_create_deploy --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_deploy 0 parameters
Schema command
kosmo integrations:schema render.render_get_deploy --json
ParameterTypeRequiredDescription
No parameters.
render.render_cancel_deploy 0 parameters
Schema command
kosmo integrations:schema render.render_cancel_deploy --json
ParameterTypeRequiredDescription
No parameters.
render.render_rollback_deploy 0 parameters
Schema command
kosmo integrations:schema render.render_rollback_deploy --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_env_vars_for_service 0 parameters
Schema command
kosmo integrations:schema render.render_get_env_vars_for_service --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_env_vars_for_service 0 parameters
Schema command
kosmo integrations:schema render.render_update_env_vars_for_service --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_env_var 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_env_var --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_env_var 0 parameters
Schema command
kosmo integrations:schema render.render_update_env_var --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_env_var 0 parameters
Schema command
kosmo integrations:schema render.render_delete_env_var --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_secret_files_for_service 0 parameters
Schema command
kosmo integrations:schema render.render_list_secret_files_for_service --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_secret_files_for_service 0 parameters
Schema command
kosmo integrations:schema render.render_update_secret_files_for_service --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_secret_file 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_secret_file --json
ParameterTypeRequiredDescription
No parameters.
render.render_add_or_update_secret_file 0 parameters
Schema command
kosmo integrations:schema render.render_add_or_update_secret_file --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_secret_file 0 parameters
Schema command
kosmo integrations:schema render.render_delete_secret_file --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_events 0 parameters
Schema command
kosmo integrations:schema render.render_list_events --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_headers 0 parameters
Schema command
kosmo integrations:schema render.render_list_headers --json
ParameterTypeRequiredDescription
No parameters.
render.render_add_headers 0 parameters
Schema command
kosmo integrations:schema render.render_add_headers --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_headers 0 parameters
Schema command
kosmo integrations:schema render.render_update_headers --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_header 0 parameters
Schema command
kosmo integrations:schema render.render_delete_header --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_routes 0 parameters
Schema command
kosmo integrations:schema render.render_list_routes --json
ParameterTypeRequiredDescription
No parameters.
render.render_add_route 0 parameters
Schema command
kosmo integrations:schema render.render_add_route --json
ParameterTypeRequiredDescription
No parameters.
render.render_patch_route 0 parameters
Schema command
kosmo integrations:schema render.render_patch_route --json
ParameterTypeRequiredDescription
No parameters.
render.render_put_routes 0 parameters
Schema command
kosmo integrations:schema render.render_put_routes --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_route 0 parameters
Schema command
kosmo integrations:schema render.render_delete_route --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_custom_domains 0 parameters
Schema command
kosmo integrations:schema render.render_list_custom_domains --json
ParameterTypeRequiredDescription
No parameters.
render.render_create_custom_domain 0 parameters
Schema command
kosmo integrations:schema render.render_create_custom_domain --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_custom_domain 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_custom_domain --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_custom_domain 0 parameters
Schema command
kosmo integrations:schema render.render_delete_custom_domain --json
ParameterTypeRequiredDescription
No parameters.
render.render_refresh_custom_domain 0 parameters
Schema command
kosmo integrations:schema render.render_refresh_custom_domain --json
ParameterTypeRequiredDescription
No parameters.
render.render_suspend_service 0 parameters
Schema command
kosmo integrations:schema render.render_suspend_service --json
ParameterTypeRequiredDescription
No parameters.
render.render_resume_service 0 parameters
Schema command
kosmo integrations:schema render.render_resume_service --json
ParameterTypeRequiredDescription
No parameters.
render.render_restart_service 0 parameters
Schema command
kosmo integrations:schema render.render_restart_service --json
ParameterTypeRequiredDescription
No parameters.
render.render_scale_service 0 parameters
Schema command
kosmo integrations:schema render.render_scale_service --json
ParameterTypeRequiredDescription
No parameters.
render.render_autoscale_service 0 parameters
Schema command
kosmo integrations:schema render.render_autoscale_service --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_autoscaling_config 0 parameters
Schema command
kosmo integrations:schema render.render_delete_autoscaling_config --json
ParameterTypeRequiredDescription
No parameters.
render.render_preview_service 0 parameters
Schema command
kosmo integrations:schema render.render_preview_service --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_jobs 0 parameters
Schema command
kosmo integrations:schema render.render_list_jobs --json
ParameterTypeRequiredDescription
No parameters.
render.render_post_job 0 parameters
Schema command
kosmo integrations:schema render.render_post_job --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_job 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_job --json
ParameterTypeRequiredDescription
No parameters.
render.render_cancel_job 0 parameters
Schema command
kosmo integrations:schema render.render_cancel_job --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_instances 0 parameters
Schema command
kosmo integrations:schema render.render_list_instances --json
ParameterTypeRequiredDescription
No parameters.
render.render_run_cron_job 0 parameters
Schema command
kosmo integrations:schema render.render_run_cron_job --json
ParameterTypeRequiredDescription
No parameters.
render.render_cancel_cron_job_run 0 parameters
Schema command
kosmo integrations:schema render.render_cancel_cron_job_run --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_event 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_event --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_logs 0 parameters
Schema command
kosmo integrations:schema render.render_list_logs --json
ParameterTypeRequiredDescription
No parameters.
render.render_subscribe_logs 0 parameters
Schema command
kosmo integrations:schema render.render_subscribe_logs --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_logs_values 0 parameters
Schema command
kosmo integrations:schema render.render_list_logs_values --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_owner_log_stream 0 parameters
Schema command
kosmo integrations:schema render.render_get_owner_log_stream --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_owner_log_stream 0 parameters
Schema command
kosmo integrations:schema render.render_update_owner_log_stream --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_owner_log_stream 0 parameters
Schema command
kosmo integrations:schema render.render_delete_owner_log_stream --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_resource_log_streams 0 parameters
Schema command
kosmo integrations:schema render.render_list_resource_log_streams --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_resource_log_stream 0 parameters
Schema command
kosmo integrations:schema render.render_get_resource_log_stream --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_resource_log_stream 0 parameters
Schema command
kosmo integrations:schema render.render_update_resource_log_stream --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_resource_log_stream 0 parameters
Schema command
kosmo integrations:schema render.render_delete_resource_log_stream --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_owner_metrics_stream 0 parameters
Schema command
kosmo integrations:schema render.render_get_owner_metrics_stream --json
ParameterTypeRequiredDescription
No parameters.
render.render_upsert_owner_metrics_stream 0 parameters
Schema command
kosmo integrations:schema render.render_upsert_owner_metrics_stream --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_owner_metrics_stream 0 parameters
Schema command
kosmo integrations:schema render.render_delete_owner_metrics_stream --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_cpu 0 parameters
Schema command
kosmo integrations:schema render.render_get_cpu --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_cpu_limit 0 parameters
Schema command
kosmo integrations:schema render.render_get_cpu_limit --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_cpu_target 0 parameters
Schema command
kosmo integrations:schema render.render_get_cpu_target --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_memory 0 parameters
Schema command
kosmo integrations:schema render.render_get_memory --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_memory_limit 0 parameters
Schema command
kosmo integrations:schema render.render_get_memory_limit --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_memory_target 0 parameters
Schema command
kosmo integrations:schema render.render_get_memory_target --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_http_requests 0 parameters
Schema command
kosmo integrations:schema render.render_get_http_requests --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_http_latency 0 parameters
Schema command
kosmo integrations:schema render.render_get_http_latency --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_bandwidth 0 parameters
Schema command
kosmo integrations:schema render.render_get_bandwidth --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_bandwidth_sources 0 parameters
Schema command
kosmo integrations:schema render.render_get_bandwidth_sources --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_disk_usage 0 parameters
Schema command
kosmo integrations:schema render.render_get_disk_usage --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_disk_capacity 0 parameters
Schema command
kosmo integrations:schema render.render_get_disk_capacity --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_instance_count 0 parameters
Schema command
kosmo integrations:schema render.render_get_instance_count --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_active_connections 0 parameters
Schema command
kosmo integrations:schema render.render_get_active_connections --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_replication_lag 0 parameters
Schema command
kosmo integrations:schema render.render_get_replication_lag --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_application_filter_values 0 parameters
Schema command
kosmo integrations:schema render.render_list_application_filter_values --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_http_filter_values 0 parameters
Schema command
kosmo integrations:schema render.render_list_http_filter_values --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_path_filter_values 0 parameters
Schema command
kosmo integrations:schema render.render_list_path_filter_values --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_task_runs_queued 0 parameters
Schema command
kosmo integrations:schema render.render_get_task_runs_queued --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_task_runs_completed 0 parameters
Schema command
kosmo integrations:schema render.render_get_task_runs_completed --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_key_value 0 parameters
Schema command
kosmo integrations:schema render.render_list_key_value --json
ParameterTypeRequiredDescription
No parameters.
render.render_create_key_value 0 parameters
Schema command
kosmo integrations:schema render.render_create_key_value --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_key_value 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_key_value --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_key_value 0 parameters
Schema command
kosmo integrations:schema render.render_update_key_value --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_key_value 0 parameters
Schema command
kosmo integrations:schema render.render_delete_key_value --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_key_value_connection_info 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_key_value_connection_info --json
ParameterTypeRequiredDescription
No parameters.
render.render_suspend_key_value 0 parameters
Schema command
kosmo integrations:schema render.render_suspend_key_value --json
ParameterTypeRequiredDescription
No parameters.
render.render_resume_key_value 0 parameters
Schema command
kosmo integrations:schema render.render_resume_key_value --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_redis 0 parameters
Schema command
kosmo integrations:schema render.render_list_redis --json
ParameterTypeRequiredDescription
No parameters.
render.render_create_redis 0 parameters
Schema command
kosmo integrations:schema render.render_create_redis --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_redis 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_redis --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_redis 0 parameters
Schema command
kosmo integrations:schema render.render_update_redis --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_redis 0 parameters
Schema command
kosmo integrations:schema render.render_delete_redis --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_redis_connection_info 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_redis_connection_info --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_postgres 0 parameters
Schema command
kosmo integrations:schema render.render_list_postgres --json
ParameterTypeRequiredDescription
No parameters.
render.render_create_postgres 0 parameters
Schema command
kosmo integrations:schema render.render_create_postgres --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_postgres 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_postgres --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_postgres 0 parameters
Schema command
kosmo integrations:schema render.render_update_postgres --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_postgres 0 parameters
Schema command
kosmo integrations:schema render.render_delete_postgres --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_postgres_connection_info 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_postgres_connection_info --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_postgres_recovery_info 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_postgres_recovery_info --json
ParameterTypeRequiredDescription
No parameters.
render.render_recover_postgres 0 parameters
Schema command
kosmo integrations:schema render.render_recover_postgres --json
ParameterTypeRequiredDescription
No parameters.
render.render_suspend_postgres 0 parameters
Schema command
kosmo integrations:schema render.render_suspend_postgres --json
ParameterTypeRequiredDescription
No parameters.
render.render_resume_postgres 0 parameters
Schema command
kosmo integrations:schema render.render_resume_postgres --json
ParameterTypeRequiredDescription
No parameters.
render.render_restart_postgres 0 parameters
Schema command
kosmo integrations:schema render.render_restart_postgres --json
ParameterTypeRequiredDescription
No parameters.
render.render_failover_postgres 0 parameters
Schema command
kosmo integrations:schema render.render_failover_postgres --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_postgres_export 0 parameters
Schema command
kosmo integrations:schema render.render_list_postgres_export --json
ParameterTypeRequiredDescription
No parameters.
render.render_create_postgres_export 0 parameters
Schema command
kosmo integrations:schema render.render_create_postgres_export --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_postgres_users 0 parameters
Schema command
kosmo integrations:schema render.render_list_postgres_users --json
ParameterTypeRequiredDescription
No parameters.
render.render_create_postgres_user 0 parameters
Schema command
kosmo integrations:schema render.render_create_postgres_user --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_postgres_user 0 parameters
Schema command
kosmo integrations:schema render.render_delete_postgres_user --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_projects 0 parameters
Schema command
kosmo integrations:schema render.render_list_projects --json
ParameterTypeRequiredDescription
No parameters.
render.render_create_project 0 parameters
Schema command
kosmo integrations:schema render.render_create_project --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_project 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_project --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_project 0 parameters
Schema command
kosmo integrations:schema render.render_update_project --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_project 0 parameters
Schema command
kosmo integrations:schema render.render_delete_project --json
ParameterTypeRequiredDescription
No parameters.
render.render_create_environment 0 parameters
Schema command
kosmo integrations:schema render.render_create_environment --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_environments 0 parameters
Schema command
kosmo integrations:schema render.render_list_environments --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_environment 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_environment --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_environment 0 parameters
Schema command
kosmo integrations:schema render.render_update_environment --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_environment 0 parameters
Schema command
kosmo integrations:schema render.render_delete_environment --json
ParameterTypeRequiredDescription
No parameters.
render.render_add_resources_to_environment 0 parameters
Schema command
kosmo integrations:schema render.render_add_resources_to_environment --json
ParameterTypeRequiredDescription
No parameters.
render.render_remove_resources_from_environment 0 parameters
Schema command
kosmo integrations:schema render.render_remove_resources_from_environment --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_env_groups 0 parameters
Schema command
kosmo integrations:schema render.render_list_env_groups --json
ParameterTypeRequiredDescription
No parameters.
render.render_create_env_group 0 parameters
Schema command
kosmo integrations:schema render.render_create_env_group --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_env_group 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_env_group --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_env_group 0 parameters
Schema command
kosmo integrations:schema render.render_update_env_group --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_env_group 0 parameters
Schema command
kosmo integrations:schema render.render_delete_env_group --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_env_group_env_var 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_env_group_env_var --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_env_group_env_var 0 parameters
Schema command
kosmo integrations:schema render.render_update_env_group_env_var --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_env_group_env_var 0 parameters
Schema command
kosmo integrations:schema render.render_delete_env_group_env_var --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_env_group_secret_file 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_env_group_secret_file --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_env_group_secret_file 0 parameters
Schema command
kosmo integrations:schema render.render_update_env_group_secret_file --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_env_group_secret_file 0 parameters
Schema command
kosmo integrations:schema render.render_delete_env_group_secret_file --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_maintenance 0 parameters
Schema command
kosmo integrations:schema render.render_list_maintenance --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_maintenance 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_maintenance --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_maintenance 0 parameters
Schema command
kosmo integrations:schema render.render_update_maintenance --json
ParameterTypeRequiredDescription
No parameters.
render.render_trigger_maintenance 0 parameters
Schema command
kosmo integrations:schema render.render_trigger_maintenance --json
ParameterTypeRequiredDescription
No parameters.
render.render_create_webhook 0 parameters
Schema command
kosmo integrations:schema render.render_create_webhook --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_webhooks 0 parameters
Schema command
kosmo integrations:schema render.render_list_webhooks --json
ParameterTypeRequiredDescription
No parameters.
render.render_retrieve_webhook 0 parameters
Schema command
kosmo integrations:schema render.render_retrieve_webhook --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_webhook 0 parameters
Schema command
kosmo integrations:schema render.render_update_webhook --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_webhook 0 parameters
Schema command
kosmo integrations:schema render.render_delete_webhook --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_webhook_events 0 parameters
Schema command
kosmo integrations:schema render.render_list_webhook_events --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_workflows 0 parameters
Schema command
kosmo integrations:schema render.render_list_workflows --json
ParameterTypeRequiredDescription
No parameters.
render.render_create_workflow 0 parameters
Schema command
kosmo integrations:schema render.render_create_workflow --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_workflow 0 parameters
Schema command
kosmo integrations:schema render.render_get_workflow --json
ParameterTypeRequiredDescription
No parameters.
render.render_update_workflow 0 parameters
Schema command
kosmo integrations:schema render.render_update_workflow --json
ParameterTypeRequiredDescription
No parameters.
render.render_delete_workflow 0 parameters
Schema command
kosmo integrations:schema render.render_delete_workflow --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_workflow_versions 0 parameters
Schema command
kosmo integrations:schema render.render_list_workflow_versions --json
ParameterTypeRequiredDescription
No parameters.
render.render_create_workflow_version 0 parameters
Schema command
kosmo integrations:schema render.render_create_workflow_version --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_workflow_version 0 parameters
Schema command
kosmo integrations:schema render.render_get_workflow_version --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_tasks 0 parameters
Schema command
kosmo integrations:schema render.render_list_tasks --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_task 0 parameters
Schema command
kosmo integrations:schema render.render_get_task --json
ParameterTypeRequiredDescription
No parameters.
render.render_list_task_runs 0 parameters
Schema command
kosmo integrations:schema render.render_list_task_runs --json
ParameterTypeRequiredDescription
No parameters.
render.render_create_task 0 parameters
Schema command
kosmo integrations:schema render.render_create_task --json
ParameterTypeRequiredDescription
No parameters.
render.render_stream_task_runs_events 0 parameters
Schema command
kosmo integrations:schema render.render_stream_task_runs_events --json
ParameterTypeRequiredDescription
No parameters.
render.render_get_task_run 0 parameters
Schema command
kosmo integrations:schema render.render_get_task_run --json
ParameterTypeRequiredDescription
No parameters.
render.render_cancel_task_run 0 parameters
Schema command
kosmo integrations:schema render.render_cancel_task_run --json
ParameterTypeRequiredDescription
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.