Disable Schema Trigger
Disable database trigger.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.database.disableSchemaTrigger({
triggerId: 'trg_3ebvLfuSO3DFb1wLL0Tzaf',
schemaId: 'sch_6q37t61LzEQQBWDaRfJ8JS',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Database.DisableSchemaTriggerAsync(new DisableSchemaTrigger
{
TriggerId = "trg_3ebvLfuSO3DFb1wLL0Tzaf",
SchemaId = "sch_6q37t61LzEQQBWDaRfJ8JS",
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.database.disable_schema_trigger(
triggerId="trg_3ebvLfuSO3DFb1wLL0Tzaf",
schemaId="sch_6q37t61LzEQQBWDaRfJ8JS",
)In the dashboard
API reference
Last updated