/** * @public * * AlLocationContext defines the context in which a specific location or set of locations may exist. * - environment - development, integration, production? * - residency - US or EMEA (or default)? * - insightLocationId - insight-us-virginia, insight-eu-ireland, defender-us-ashburn, defender-us-denver, defender-uk-newport * - accessible - a list of accessible insight location IDs */ export interface AlLocationContext { environment?: string; residency?: string; insightLocationId?: string; path?: string; accessible?: string[]; } /** * @public * * Describes a location */ export interface AlLocationDescriptor { locTypeId: string; insightLocationId?: string; uri: string; residency?: string; environment?: string; aliases?: string[]; external?: boolean; data?: any; magmaRedirectPath?: string; }