Skip to main content

updateInstalledProvider

client.environments.updateInstalledProvider(id: string, data: UpdateInstalledProviderRequest): Promise<InstalledProvider>

Updates the configuration of an installed provider.

Modifies provider settings such as name, credentials, or resource limits.

Parameters

ParameterTypeRequiredDescription
idstringYesThe unique identifier of the installed provider to update
dataUpdateInstalledProviderRequestYesThe fields to update on the provider

Returns

Promise<InstalledProvider> — A promise that resolves to the updated

Example

import { CodeBoltClient } from '@codebolt/clientsdk';

const client = new CodeBoltClient();

const result = await client.environments.updateInstalledProvider('id', /* UpdateInstalledProviderRequest */);
console.log(result);