Anchorage API reference
    Preparing search index...

    Interface SingleTenantConnectorPoliciesOptions

    Validated inputs for singleTenantConnectorPolicies.

    interface SingleTenantConnectorPoliciesOptions {
        audit: SingleTenantAuditPosture;
        durableStores?: SingleTenantDurableStores;
        egress: NetworkEgressOptions;
        evaluators?: readonly ToolPolicyEvaluator[];
        fetch?: EgressFetchBase;
        idempotencyKeyMigration?: "legacy-writers-drained";
        permissions: SingleTenantPermissionPosture;
        writePermissions?: Omit<
            WritePermissionsPolicy,
            "destructiveRequiresApproval",
        > & { destructiveRequiresApproval?: true };
    }
    Index

    Properties

    Production audit logger or the explicit development-only opt-out.

    D1 stores used when a connector manifest enables the matching control.

    Organization allowlist applied to every connector declaration.

    evaluators?: readonly ToolPolicyEvaluator[]

    Additional deterministic tool-boundary evaluators.

    Optional base fetch used by the connector runtime guard.

    idempotencyKeyMigration?: "legacy-writers-drained"

    Set only after legacy connector writers sharing the D1 store are stopped and drained and existing v1 rows have been inventoried.

    Trusted host permission-projection wiring.

    writePermissions?: Omit<WritePermissionsPolicy, "destructiveRequiresApproval"> & {
        destructiveRequiresApproval?: true;
    }

    Optional organization approval rules. Destructive approval stays on.