/** * @public * @enum */ export declare const EntityStatusCode: { readonly IMPAIRED: "IMPAIRED"; readonly PENDING: "PENDING"; readonly RESOLVED: "RESOLVED"; readonly UNIMPAIRED: "UNIMPAIRED"; readonly UNKNOWN: "UNKNOWN"; }; /** * @public */ export type EntityStatusCode = (typeof EntityStatusCode)[keyof typeof EntityStatusCode]; /** * @public * @enum */ export declare const EventScopeCode: { readonly ACCOUNT_SPECIFIC: "ACCOUNT_SPECIFIC"; readonly NONE: "NONE"; readonly PUBLIC: "PUBLIC"; }; /** * @public */ export type EventScopeCode = (typeof EventScopeCode)[keyof typeof EventScopeCode]; /** * @public * @enum */ export declare const EventAggregateField: { readonly EventTypeCategory: "eventTypeCategory"; }; /** * @public */ export type EventAggregateField = (typeof EventAggregateField)[keyof typeof EventAggregateField]; /** * @public * @enum */ export declare const EventActionability: { readonly ACTION_MAY_BE_REQUIRED: "ACTION_MAY_BE_REQUIRED"; readonly ACTION_REQUIRED: "ACTION_REQUIRED"; readonly INFORMATIONAL: "INFORMATIONAL"; }; /** * @public */ export type EventActionability = (typeof EventActionability)[keyof typeof EventActionability]; /** * @public * @enum */ export declare const EventStatusCode: { readonly CLOSED: "closed"; readonly OPEN: "open"; readonly UPCOMING: "upcoming"; }; /** * @public */ export type EventStatusCode = (typeof EventStatusCode)[keyof typeof EventStatusCode]; /** * @public * @enum */ export declare const EventTypeCategory: { readonly ACCOUNT_NOTIFICATION: "accountNotification"; readonly INVESTIGATION: "investigation"; readonly ISSUE: "issue"; readonly SCHEDULED_CHANGE: "scheduledChange"; }; /** * @public */ export type EventTypeCategory = (typeof EventTypeCategory)[keyof typeof EventTypeCategory]; /** * @public * @enum */ export declare const EventPersona: { readonly BILLING: "BILLING"; readonly OPERATIONS: "OPERATIONS"; readonly SECURITY: "SECURITY"; }; /** * @public */ export type EventPersona = (typeof EventPersona)[keyof typeof EventPersona]; /** * @public * @enum */ export declare const EventTypeActionability: { readonly ACTION_MAY_BE_REQUIRED: "ACTION_MAY_BE_REQUIRED"; readonly ACTION_REQUIRED: "ACTION_REQUIRED"; readonly INFORMATIONAL: "INFORMATIONAL"; }; /** * @public */ export type EventTypeActionability = (typeof EventTypeActionability)[keyof typeof EventTypeActionability]; /** * @public * @enum */ export declare const EventTypePersona: { readonly BILLING: "BILLING"; readonly OPERATIONS: "OPERATIONS"; readonly SECURITY: "SECURITY"; }; /** * @public */ export type EventTypePersona = (typeof EventTypePersona)[keyof typeof EventTypePersona];