OSS-first docs
These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.
Update metadata or credentials for an integration connection.
Goal
Allow secure rotation of credentials and metadata adjustments.
Context
Supports rotating API keys, toggling status, or updating labels for tenant integrations.
Source Definition
export const UpdateIntegrationConnection = defineCommand({
meta: {
key: 'integrations.connection.update',
title: 'Update Integration Connection',
version: '1.0.0',
description:
'Update metadata or credentials for an integration connection.',
goal: 'Allow secure rotation of credentials and metadata adjustments.',
context:
'Supports rotating API keys, toggling status, or updating labels for tenant integrations.',
owners: ['@platform.integrations'],
tags: ['integration', 'connections'],
stability: 'experimental',
},
io: {
input: UpdateIntegrationConnectionInput,
output: IntegrationConnectionRecord,
},
policy: {
auth: 'admin',
policies: [{ key: 'platform.integration.manage', version: '1.0.0' }],
},
});