export type MessagingServiceScanData = { readonly createdTime?: string; /** * Primary key set by the server. */ readonly id?: string; /** * The ID of the scan. */ readonly scanId?: string; /** * The type of dataCollection this object holds scan data for. */ readonly dataCollectionType?: MessagingServiceScanData.dataCollectionType; /** * The scan data in JSON format. */ readonly data?: string; readonly type?: string; }; export declare namespace MessagingServiceScanData { /** * The type of dataCollection this object holds scan data for. */ enum dataCollectionType { BROKER_CONFIGURATION = "brokerConfiguration", CLUSTER_CONFIGURATION = "clusterConfiguration", CONSUMER_GROUPS = "consumerGroups", CONSUMER_GROUP_CONFIGURATION = "consumerGroupConfiguration", OVERRIDE_TOPIC_CONFIGURATION = "overrideTopicConfiguration", QUEUE_CONFIGURATION = "queueConfiguration", QUEUE_LISTING = "queueListing", SCHEMA = "schema", SUBSCRIPTION_CONFIGURATION = "subscriptionConfiguration", TOPIC_CONFIGURATION = "topicConfiguration", TOPIC_LISTING = "topicListing" } }