@contio/partner-sdk - v1.7.1
    Preparing search index...

    Interface UpdateToolkitRequest

    interface UpdateToolkitRequest {
        auto_install_on_new_workspaces?: boolean;
        auto_propagate?: boolean;
        description?: string;
        is_active?: boolean;
        manifest?: ToolkitManifest;
        name?: string;
        version?: string;
    }
    Index

    Properties

    auto_install_on_new_workspaces?: boolean

    Whether the toolkit is automatically installed when a new workspace connects.

    auto_propagate?: boolean

    Whether new published versions are automatically propagated to connected workspaces.

    description?: string
    is_active?: boolean
    manifest?: ToolkitManifest

    Use the toolkit versioning API instead. Create a new draft version (POST /v1/partner/admin/toolkits/{id}/versions), update the draft (PATCH /v1/partner/admin/toolkits/{id}/versions/{versionId}), then publish it (POST /v1/partner/admin/toolkits/{id}/versions/{versionId}/publish). Passing this field to UpdateToolkit will return a 409 Conflict error.

    name?: string
    version?: string

    Use the toolkit versioning API instead. Create a new draft version (POST /v1/partner/admin/toolkits/{id}/versions), update the draft (PATCH /v1/partner/admin/toolkits/{id}/versions/{versionId}), then publish it (POST /v1/partner/admin/toolkits/{id}/versions/{versionId}/publish). Passing this field to UpdateToolkit will return a 409 Conflict error.