export declare const $ApplicationDomain: { readonly properties: { readonly createdTime: { readonly type: "string"; readonly isReadOnly: true; }; readonly updatedTime: { readonly type: "string"; readonly isReadOnly: true; }; readonly createdBy: { readonly type: "string"; readonly isReadOnly: true; }; readonly changedBy: { readonly type: "string"; readonly isReadOnly: true; }; readonly id: { readonly type: "string"; readonly isReadOnly: true; }; readonly name: { readonly type: "string"; readonly isRequired: true; readonly maxLength: 255; readonly minLength: 1; }; readonly description: { readonly type: "string"; readonly maxLength: 10000; }; readonly uniqueTopicAddressEnforcementEnabled: { readonly type: "boolean"; readonly description: "Forces all topic addresses within the application domain to be unique."; }; readonly topicDomainEnforcementEnabled: { readonly type: "boolean"; readonly description: "Forces all topic addresses within the application domain to be prefixed with one of the application domain’s configured topic domains."; }; readonly stats: { readonly type: "ApplicationDomainStats"; }; readonly customAttributes: { readonly type: "array"; readonly contains: { readonly type: "CustomAttribute"; }; }; readonly type: { readonly type: "string"; }; }; };