import { GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link SecretEnterpriseSsoConnectorRelation} for the original type. */ export type CreateSecretEnterpriseSsoConnectorRelation = { tenantId?: string; secretId: string; /** SSO connector ID foreign reference. Only present for secrets that store SSO connector tokens. Note: avoid directly cascading deletes here, need to delete the secrets first. */ ssoConnectorId: string; /** User SSO connector issuer. Only present for secrets that store SSO connector tokens. */ issuer: string; /** User SSO identity ID. Only present for secrets that store SSO identity tokens. */ identityId: string; }; export type SecretEnterpriseSsoConnectorRelation = { tenantId: string; secretId: string; /** SSO connector ID foreign reference. Only present for secrets that store SSO connector tokens. Note: avoid directly cascading deletes here, need to delete the secrets first. */ ssoConnectorId: string; /** User SSO connector issuer. Only present for secrets that store SSO connector tokens. */ issuer: string; /** User SSO identity ID. Only present for secrets that store SSO identity tokens. */ identityId: string; }; export type SecretEnterpriseSsoConnectorRelationKeys = 'tenantId' | 'secretId' | 'ssoConnectorId' | 'issuer' | 'identityId'; export declare const SecretEnterpriseSsoConnectorRelations: GeneratedSchema;