KosmoKrator

productivity

Argo CD CLI for AI Agents

Use the Argo CD CLI from KosmoKrator to call Argo CD tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

Argo CD CLI Setup

Argo CD can be configured headlessly with `kosmokrator integrations:configure argocd`.

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 argocd --enable --read allow --write ask --json
kosmokrator integrations:doctor argocd --json
kosmokrator integrations:status --json

Credentials

Authentication type: Bearer token bearer_token. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

No credentials are required.

Command Patterns

The generic command is stable across every integration. The provider shortcut is shorter for humans.

Generic CLI call
kosmo integrations:call argocd.argocd_account_list_accounts '{}' --json
Provider shortcut
kosmo integrations:argocd argocd_account_list_accounts '{}' --json

Discovery

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

Discovery commands
kosmo integrations:docs argocd --json
kosmo integrations:docs argocd.argocd_account_list_accounts --json
kosmo integrations:schema argocd.argocd_account_list_accounts --json
kosmo integrations:search "Argo CD" --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.

argocd.argocd_account_list_accounts

ListAccounts returns the list of accounts

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

argocd.argocd_account_can_i

CanI checks if the current account has permission to perform an action

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

argocd.argocd_account_update_password

UpdatePassword updates an account's password to a new value

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

argocd.argocd_account_get_account

GetAccount returns an account

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

argocd.argocd_account_create_token

CreateToken creates a token

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

argocd.argocd_account_delete_token

DeleteToken deletes a token

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

argocd.argocd_list_applications

List returns list of applications

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

argocd.argocd_create_application

Create creates an application

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

argocd.argocd_application_get_manifests_with_files

GetManifestsWithFiles returns application manifests using provided files to generate them

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

argocd.argocd_application_server_side_diff

ServerSideDiff performs server-side diff calculation using dry-run apply

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

argocd.argocd_application_update

Update updates an application

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

argocd.argocd_application_managed_resources

ManagedResources returns list of managed resources

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

argocd.argocd_application_resource_tree

ResourceTree returns resource tree

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

argocd.argocd_get_application

Get returns an application by name

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

argocd.argocd_application_delete

Delete deletes an application

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

argocd.argocd_application_patch

Patch patch an application

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

argocd.argocd_application_list_resource_events

ListResourceEvents returns a list of event resources

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

argocd.argocd_application_list_links

ListLinks returns the list of all application deep links

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

argocd.argocd_application_pod_logs2

PodLogs returns stream of log entries for the specified pod. Pod

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

argocd.argocd_application_get_manifests

GetManifests returns application manifests

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

argocd.argocd_application_terminate_operation

TerminateOperation terminates the currently running operation

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

argocd.argocd_application_pod_logs

PodLogs returns stream of log entries for the specified pod. Pod

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

argocd.argocd_application_get_resource

GetResource returns single application resource

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

argocd.argocd_application_patch_resource

PatchResource patch single application resource

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

argocd.argocd_application_delete_resource

DeleteResource deletes a single application resource

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

argocd.argocd_application_list_resource_actions

ListResourceActions returns list of resource actions

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

argocd.argocd_application_run_resource_action

Deprecated: use RunResourceActionV2 instead. This version does not support resource action parameters but is maintained for backward compatibility. It will be removed in a future release.

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

argocd.argocd_application_run_resource_action_v2

RunResourceActionV2 runs a resource action with parameters

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

argocd.argocd_application_list_resource_links

ListResourceLinks returns the list of all resource deep links

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

argocd.argocd_application_revision_chart_details

Get the chart metadata description, maintainers, home for a specific revision of the application

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

argocd.argocd_application_revision_metadata

Get the meta-data author, date, tags, message for a specific revision of the application

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

argocd.argocd_application_get_o_c_i_metadata

Get the chart metadata description, maintainers, home for a specific revision of the application

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

argocd.argocd_application_rollback

Rollback syncs an application to its target state

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

argocd.argocd_application_update_spec

UpdateSpec updates an application spec

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

argocd.argocd_application_sync

Sync syncs an application to its target state

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

argocd.argocd_application_get_application_sync_windows

Get returns sync windows of the application

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

argocd.argocd_application_set_list

List returns list of applicationset

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

argocd.argocd_application_set_create

Create creates an applicationset

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

argocd.argocd_application_set_generate

Generate generates

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

argocd.argocd_application_set_get

Get returns an applicationset by name

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

argocd.argocd_application_set_delete

Delete deletes an application set

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

argocd.argocd_application_set_list_resource_events

ListResourceEvents returns a list of event resources

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

argocd.argocd_application_set_resource_tree

ResourceTree returns resource tree

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

argocd.argocd_certificate_list_certificates

List all available repository certificates

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

argocd.argocd_certificate_create_certificate

Creates repository certificates on the server

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

argocd.argocd_certificate_delete_certificate

Delete the certificates that match the RepositoryCertificateQuery

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

argocd.argocd_cluster_list

List returns list of clusters

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

argocd.argocd_cluster_create

Create creates a cluster

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

argocd.argocd_cluster_get

Get returns a cluster by server address

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

argocd.argocd_cluster_update

Update updates a cluster

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

argocd.argocd_cluster_delete

Delete deletes a cluster

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

argocd.argocd_cluster_invalidate_cache

InvalidateCache invalidates cluster cache

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

argocd.argocd_cluster_rotate_auth

RotateAuth rotates the bearer token used for a cluster

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

argocd.argocd_g_p_g_key_list

List all available repository certificates

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

argocd.argocd_g_p_g_key_create

Create one or more GPG public keys in the server's configuration

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

argocd.argocd_g_p_g_key_delete

Delete specified GPG public key from the server's configuration

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

argocd.argocd_g_p_g_key_get

Get information about specified GPG public key from the server

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

argocd.argocd_notification_list_services

List returns list of services

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

argocd.argocd_notification_list_templates

List returns list of templates

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

argocd.argocd_notification_list_triggers

List returns list of triggers

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

argocd.argocd_list_projects

List returns list of projects

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

argocd.argocd_project_create

Create a new project

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

argocd.argocd_get_project

Get returns a project by name

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

argocd.argocd_project_delete

Delete deletes a project

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

argocd.argocd_project_get_detailed_project

GetDetailedProject returns a project that include project, global project and scoped resources by name

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

argocd.argocd_project_list_events

ListEvents returns a list of project events

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

argocd.argocd_project_get_global_projects

Get returns a virtual project by name

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

argocd.argocd_project_list_links

ListLinks returns all deep links for the particular project

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

argocd.argocd_project_get_sync_windows_state

GetSchedulesState returns true if there are any active sync syncWindows

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

argocd.argocd_project_update

Update updates a project

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

argocd.argocd_project_create_token

Create a new project token

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

argocd.argocd_project_delete_token

Delete a new project token

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

argocd.argocd_repo_creds_list_repository_credentials

ListRepositoryCredentials gets a list of all configured repository credential sets

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

argocd.argocd_repo_creds_create_repository_credentials

CreateRepositoryCredentials creates a new repository credential set

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

argocd.argocd_repo_creds_update_repository_credentials

UpdateRepositoryCredentials updates a repository credential set

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

argocd.argocd_repo_creds_delete_repository_credentials

DeleteRepositoryCredentials deletes a repository credential set from the configuration

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

argocd.argocd_list_repositories

ListRepositories gets a list of all configured repositories

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

argocd.argocd_repository_create_repository

CreateRepository creates a new repository configuration

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

argocd.argocd_repository_update_repository

UpdateRepository updates a repository configuration

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

argocd.argocd_repository_get

Get returns a repository or its credentials

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

argocd.argocd_repository_delete_repository

DeleteRepository deletes a repository from the configuration

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

argocd.argocd_repository_list_apps

ListApps returns list of apps in the repo

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

argocd.argocd_repository_get_helm_charts

GetHelmCharts returns list of helm charts in the specified repository

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

argocd.argocd_repository_list_o_c_i_tags

RepositoryServiceListOCITags

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

argocd.argocd_repository_list_refs

RepositoryServiceListRefs

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

argocd.argocd_repository_validate_access

ValidateAccess validates access to a repository with given parameters

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

argocd.argocd_repository_get_app_details

GetAppDetails returns application details by given path

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

argocd.argocd_session_create

Create a new JWT for authentication and set a cookie if using HTTP

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

argocd.argocd_session_delete

Delete an existing JWT cookie if using HTTP

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

argocd.argocd_get_current_user

Get the current user's info

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

argocd.argocd_settings_get

Get returns Argo CD settings

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

argocd.argocd_settings_get_plugins

Get returns Argo CD plugins

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

argocd.argocd_application_watch

Watch returns stream of application change events

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

argocd.argocd_application_watch_resource_tree

Watch returns stream of application resource tree

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

argocd.argocd_application_set_watch

ApplicationSetServiceWatch

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

argocd.argocd_repo_creds_list_write_repository_credentials

ListWriteRepositoryCredentials gets a list of all configured repository credential sets that have write access

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

argocd.argocd_repo_creds_create_write_repository_credentials

CreateWriteRepositoryCredentials creates a new repository credential set with write access

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

argocd.argocd_repo_creds_update_write_repository_credentials

UpdateWriteRepositoryCredentials updates a repository credential set with write access

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

argocd.argocd_repo_creds_delete_write_repository_credentials

DeleteWriteRepositoryCredentials deletes a repository credential set with write access from the configuration

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

argocd.argocd_repository_list_write_repositories

ListWriteRepositories gets a list of all configured write repositories

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

argocd.argocd_repository_create_write_repository

CreateWriteRepository creates a new write repository configuration

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

argocd.argocd_repository_update_write_repository

UpdateWriteRepository updates a write repository configuration

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

argocd.argocd_repository_get_write

GetWrite returns a repository or its write credentials

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

argocd.argocd_repository_delete_write_repository

DeleteWriteRepository deletes a write repository from the configuration

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

argocd.argocd_repository_validate_write_access

ValidateWriteAccess validates write access to a repository with given parameters

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

argocd.argocd_version_version

Version returns version information of the API server

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

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

argocd.argocd_account_list_accounts 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_account_list_accounts --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_account_can_i 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_account_can_i --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_account_update_password 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_account_update_password --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_account_get_account 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_account_get_account --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_account_create_token 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_account_create_token --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_account_delete_token 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_account_delete_token --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_list_applications 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_list_applications --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_create_application 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_create_application --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_get_manifests_with_files 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_get_manifests_with_files --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_server_side_diff 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_server_side_diff --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_update 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_update --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_managed_resources 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_managed_resources --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_resource_tree 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_resource_tree --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_get_application 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_get_application --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_delete 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_delete --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_patch 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_patch --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_list_resource_events 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_list_resource_events --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_pod_logs2 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_pod_logs2 --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_get_manifests 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_get_manifests --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_terminate_operation 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_terminate_operation --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_pod_logs 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_pod_logs --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_get_resource 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_get_resource --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_patch_resource 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_patch_resource --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_delete_resource 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_delete_resource --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_list_resource_actions 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_list_resource_actions --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_run_resource_action 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_run_resource_action --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_run_resource_action_v2 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_run_resource_action_v2 --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_revision_chart_details 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_revision_chart_details --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_revision_metadata 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_revision_metadata --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_get_o_c_i_metadata 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_get_o_c_i_metadata --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_rollback 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_rollback --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_update_spec 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_update_spec --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_sync 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_sync --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_get_application_sync_windows 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_get_application_sync_windows --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_set_list 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_set_list --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_set_create 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_set_create --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_set_generate 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_set_generate --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_set_get 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_set_get --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_set_delete 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_set_delete --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_set_list_resource_events 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_set_list_resource_events --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_set_resource_tree 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_set_resource_tree --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_certificate_list_certificates 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_certificate_list_certificates --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_certificate_create_certificate 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_certificate_create_certificate --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_certificate_delete_certificate 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_certificate_delete_certificate --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_cluster_list 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_cluster_list --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_cluster_create 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_cluster_create --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_cluster_get 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_cluster_get --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_cluster_update 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_cluster_update --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_cluster_delete 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_cluster_delete --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_cluster_invalidate_cache 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_cluster_invalidate_cache --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_cluster_rotate_auth 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_cluster_rotate_auth --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_g_p_g_key_list 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_g_p_g_key_list --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_g_p_g_key_create 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_g_p_g_key_create --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_g_p_g_key_delete 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_g_p_g_key_delete --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_g_p_g_key_get 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_g_p_g_key_get --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_notification_list_services 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_notification_list_services --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_notification_list_templates 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_notification_list_templates --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_notification_list_triggers 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_notification_list_triggers --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_list_projects 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_list_projects --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_project_create 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_project_create --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_get_project 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_get_project --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_project_delete 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_project_delete --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_project_get_detailed_project 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_project_get_detailed_project --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_project_list_events 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_project_list_events --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_project_get_global_projects 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_project_get_global_projects --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_project_get_sync_windows_state 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_project_get_sync_windows_state --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_project_update 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_project_update --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_project_create_token 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_project_create_token --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_project_delete_token 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_project_delete_token --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repo_creds_list_repository_credentials 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repo_creds_list_repository_credentials --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repo_creds_create_repository_credentials 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repo_creds_create_repository_credentials --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repo_creds_update_repository_credentials 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repo_creds_update_repository_credentials --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repo_creds_delete_repository_credentials 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repo_creds_delete_repository_credentials --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_list_repositories 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_list_repositories --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repository_create_repository 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repository_create_repository --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repository_update_repository 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repository_update_repository --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repository_get 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repository_get --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repository_delete_repository 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repository_delete_repository --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repository_list_apps 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repository_list_apps --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repository_get_helm_charts 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repository_get_helm_charts --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repository_list_o_c_i_tags 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repository_list_o_c_i_tags --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repository_list_refs 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repository_list_refs --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repository_validate_access 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repository_validate_access --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repository_get_app_details 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repository_get_app_details --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_session_create 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_session_create --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_session_delete 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_session_delete --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_get_current_user 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_get_current_user --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_settings_get 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_settings_get --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_settings_get_plugins 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_settings_get_plugins --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_watch 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_watch --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_watch_resource_tree 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_watch_resource_tree --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_application_set_watch 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_application_set_watch --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repo_creds_list_write_repository_credentials 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repo_creds_list_write_repository_credentials --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repo_creds_create_write_repository_credentials 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repo_creds_create_write_repository_credentials --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repo_creds_update_write_repository_credentials 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repo_creds_update_write_repository_credentials --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repo_creds_delete_write_repository_credentials 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repo_creds_delete_write_repository_credentials --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repository_list_write_repositories 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repository_list_write_repositories --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repository_create_write_repository 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repository_create_write_repository --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repository_update_write_repository 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repository_update_write_repository --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repository_get_write 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repository_get_write --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repository_delete_write_repository 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repository_delete_write_repository --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_repository_validate_write_access 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_repository_validate_write_access --json
ParameterTypeRequiredDescription
No parameters.
argocd.argocd_version_version 0 parameters
Schema command
kosmo integrations:schema argocd.argocd_version_version --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.