import type { resourceConnectionDetails } from './resourceConnectionDetails'; export type SchemaRegistry = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; /** * Primary key set by the server. */ readonly id?: string; /** * The type of the Schema Registry. */ schemaRegistryType?: SchemaRegistry.schemaRegistryType; /** * The type of the broker used in the event mesh. */ brokerType?: SchemaRegistry.brokerType; messagingServiceIds?: Array; connections?: Array; /** * The type of this payload, schemaRegistry. */ readonly type?: string; }; export declare namespace SchemaRegistry { /** * The type of the Schema Registry. */ enum schemaRegistryType { CONFLUENT = "confluent" } /** * The type of the broker used in the event mesh. */ enum brokerType { KAFKA = "kafka" } }