@dx-do/client 6.3.1 → 6.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +673 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +646 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/src/index.d.ts +13 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/lib/model/maintenance/create.d.ts +137 -0
- package/dist/src/lib/model/maintenance/create.d.ts.map +1 -0
- package/dist/src/lib/model/maintenance/delete.d.ts +17 -0
- package/dist/src/lib/model/maintenance/delete.d.ts.map +1 -0
- package/dist/src/lib/model/maintenance/detail.d.ts +128 -0
- package/dist/src/lib/model/maintenance/detail.d.ts.map +1 -0
- package/dist/src/lib/model/maintenance/filter.d.ts +39 -0
- package/dist/src/lib/model/maintenance/filter.d.ts.map +1 -0
- package/dist/src/lib/model/maintenance/member.d.ts +61 -0
- package/dist/src/lib/model/maintenance/member.d.ts.map +1 -0
- package/dist/src/lib/model/maintenance/preview.d.ts +32 -0
- package/dist/src/lib/model/maintenance/preview.d.ts.map +1 -0
- package/dist/src/lib/model/maintenance/schedule.d.ts +30 -0
- package/dist/src/lib/model/maintenance/schedule.d.ts.map +1 -0
- package/dist/src/lib/model/maintenance/search.d.ts +67 -0
- package/dist/src/lib/model/maintenance/search.d.ts.map +1 -0
- package/dist/src/lib/model/sli/group.d.ts +59 -0
- package/dist/src/lib/model/sli/group.d.ts.map +1 -0
- package/dist/src/lib/model/sli/save.d.ts +54 -0
- package/dist/src/lib/model/sli/save.d.ts.map +1 -0
- package/dist/src/lib/model/sli/search.d.ts +58 -0
- package/dist/src/lib/model/sli/search.d.ts.map +1 -0
- package/dist/src/lib/services/maintenance.service.d.ts +51 -0
- package/dist/src/lib/services/maintenance.service.d.ts.map +1 -0
- package/dist/src/lib/services/service-monolith.d.ts +4 -0
- package/dist/src/lib/services/service-monolith.d.ts.map +1 -1
- package/dist/src/lib/services/sli.service.d.ts +53 -0
- package/dist/src/lib/services/sli.service.d.ts.map +1 -0
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -45872,6 +45872,308 @@ var LogQuery;
|
|
|
45872
45872
|
LogQuery.createLogQueryRequestBody = createLogQueryRequestBody;
|
|
45873
45873
|
})(LogQuery || (LogQuery = {}));
|
|
45874
45874
|
|
|
45875
|
+
/**
|
|
45876
|
+
* One leaf match condition inside a maintenance target filter, e.g.
|
|
45877
|
+
* `{ field: "alarm_name", condition: "starts_with", value: "Rabbit" }`.
|
|
45878
|
+
*/
|
|
45879
|
+
const MaintenanceFilterLeafSchema = z.looseObject({
|
|
45880
|
+
field: z.string().describe('Wire field to match, e.g. "agent", "type", "alarm_name", "name"'),
|
|
45881
|
+
fieldDescription: z
|
|
45882
|
+
.string()
|
|
45883
|
+
.optional()
|
|
45884
|
+
.describe('Human label for the field, e.g. "Agent", "Type", "Alert Name"'),
|
|
45885
|
+
condition: z
|
|
45886
|
+
.string()
|
|
45887
|
+
.describe('Match operator: "regex", "equals", "contains", "starts_with", "ends_with"'),
|
|
45888
|
+
value: z.string().describe('Value to match against the field'),
|
|
45889
|
+
});
|
|
45890
|
+
/**
|
|
45891
|
+
* A maintenance target filter — the nested `and(or(leaf…))` tree shared by
|
|
45892
|
+
* every `*Filter` field on a maintenance schedule (serviceFilter, agentFilter,
|
|
45893
|
+
* deviceFilter, groupFilter, metricPathFilter). Outer AND of inner ORs of leaves.
|
|
45894
|
+
*/
|
|
45895
|
+
const MaintenanceFilterSchema = z.looseObject({
|
|
45896
|
+
and: z.looseObject({
|
|
45897
|
+
expressions: z
|
|
45898
|
+
.array(z.looseObject({
|
|
45899
|
+
or: z.looseObject({
|
|
45900
|
+
expressions: z.array(MaintenanceFilterLeafSchema),
|
|
45901
|
+
}),
|
|
45902
|
+
}))
|
|
45903
|
+
.describe('AND-ed groups; each group is an OR of leaf conditions'),
|
|
45904
|
+
}),
|
|
45905
|
+
});
|
|
45906
|
+
/**
|
|
45907
|
+
* Builds a single-leaf {@link MaintenanceFilter} (the common case: one match
|
|
45908
|
+
* condition wrapped in the required `and(or(…))` envelope). Pass more leaves to
|
|
45909
|
+
* OR them together within the single AND group.
|
|
45910
|
+
*/
|
|
45911
|
+
function maintenanceFilter(...leaves) {
|
|
45912
|
+
return { and: { expressions: [{ or: { expressions: leaves } }] } };
|
|
45913
|
+
}
|
|
45914
|
+
|
|
45915
|
+
/** CI type of a maintenance target member. */
|
|
45916
|
+
const MaintenanceMemberTypeSchema = z
|
|
45917
|
+
.enum(['SERVICE', 'Agent', 'Device', 'Group', 'Interface', 'Application'])
|
|
45918
|
+
.describe('Configuration-item type of the member');
|
|
45919
|
+
/** Source product a maintenance member originates from. */
|
|
45920
|
+
const MaintenanceMemberSourceSchema = z
|
|
45921
|
+
.enum(['OI', 'APM', 'UIM', 'SPECTRUM', 'CAPM', 'CUSTOM', 'NFA', 'ADA'])
|
|
45922
|
+
.describe('Source product of the member');
|
|
45923
|
+
/**
|
|
45924
|
+
* An explicit maintenance target member (as opposed to a `*Filter`). For a
|
|
45925
|
+
* service this is `{ id: <service externalId>, name, type: "SERVICE",
|
|
45926
|
+
* source: "OI", parent: "Y" }`.
|
|
45927
|
+
*/
|
|
45928
|
+
const MaintenanceMemberSchema = z.looseObject({
|
|
45929
|
+
id: z
|
|
45930
|
+
.string()
|
|
45931
|
+
.describe('Resource identifier; for services this is the externalId (SA:<cohort>:<uuid>)'),
|
|
45932
|
+
name: z.string().describe('Display name of the member'),
|
|
45933
|
+
type: MaintenanceMemberTypeSchema,
|
|
45934
|
+
source: MaintenanceMemberSourceSchema.optional(),
|
|
45935
|
+
parent: z
|
|
45936
|
+
.string()
|
|
45937
|
+
.optional()
|
|
45938
|
+
.describe('"Y" when this member is a parent/root (services)'),
|
|
45939
|
+
ciUniqueId: z.string().optional().describe('CI unique id, when applicable'),
|
|
45940
|
+
});
|
|
45941
|
+
/** A member to exclude from an otherwise-matched maintenance target set. */
|
|
45942
|
+
const MaintenanceExcludedMemberSchema = z.looseObject({
|
|
45943
|
+
id: z.string().describe('Excluded member id'),
|
|
45944
|
+
name: z.string().optional().describe('Excluded member name'),
|
|
45945
|
+
type: z.string().optional().describe('CI type of the excluded member'),
|
|
45946
|
+
});
|
|
45947
|
+
|
|
45948
|
+
/** Recurrence pattern code used in the **create** schedule body. */
|
|
45949
|
+
const RecurrencePattern = {
|
|
45950
|
+
Once: 1,
|
|
45951
|
+
Daily: 2,
|
|
45952
|
+
Weekly: 3,
|
|
45953
|
+
Monthly: 4,
|
|
45954
|
+
Yearly: 5,
|
|
45955
|
+
};
|
|
45956
|
+
/**
|
|
45957
|
+
* The `schedule` object of a maintenance create/preview request.
|
|
45958
|
+
*
|
|
45959
|
+
* Note the create-side encoding (differs from search/detail responses):
|
|
45960
|
+
* `recurrencePattern` is numeric (1–5), `startTime`/`endTime` are wall-clock
|
|
45961
|
+
* strings `"YYYY-M-D H:M:S"` interpreted in `timeZone`, and `duration` is minutes.
|
|
45962
|
+
*/
|
|
45963
|
+
const MaintenanceScheduleSchema = z.looseObject({
|
|
45964
|
+
startTime: z
|
|
45965
|
+
.string()
|
|
45966
|
+
.describe('Wall-clock start "YYYY-M-D H:M:S" interpreted in timeZone, e.g. "2026-6-27 6:47:0"'),
|
|
45967
|
+
duration: z.number().describe('Window length in minutes'),
|
|
45968
|
+
endTime: z
|
|
45969
|
+
.string()
|
|
45970
|
+
.nullable()
|
|
45971
|
+
.optional()
|
|
45972
|
+
.describe('Wall-clock end; null/absent = run forever'),
|
|
45973
|
+
timeZone: z.string().describe('IANA timezone, e.g. "America/Los_Angeles"'),
|
|
45974
|
+
recurrencePattern: z
|
|
45975
|
+
.number()
|
|
45976
|
+
.int()
|
|
45977
|
+
.describe('1 Once · 2 Daily · 3 Weekly · 4 Monthly · 5 Yearly'),
|
|
45978
|
+
recurrencePeriod: z
|
|
45979
|
+
.number()
|
|
45980
|
+
.int()
|
|
45981
|
+
.optional()
|
|
45982
|
+
.describe('Repeat every N (daily: N days; monthly: N months)'),
|
|
45983
|
+
recurrenceDaysOfTheWeek: z
|
|
45984
|
+
.string()
|
|
45985
|
+
.optional()
|
|
45986
|
+
.describe('Weekly days, comma-separated 1..7 where 1=Sun..7=Sat, e.g. "2,3"'),
|
|
45987
|
+
recurrenceDayOfTheMonth: z
|
|
45988
|
+
.string()
|
|
45989
|
+
.optional()
|
|
45990
|
+
.describe('Monthly day-of-month (1..31) as a string'),
|
|
45991
|
+
recurrenceInstance: z
|
|
45992
|
+
.number()
|
|
45993
|
+
.int()
|
|
45994
|
+
.optional()
|
|
45995
|
+
.describe('Monthly ordinal week 1..5 (first..last) for "4th Tuesday" style'),
|
|
45996
|
+
});
|
|
45997
|
+
|
|
45998
|
+
/**
|
|
45999
|
+
* Unified request body for `POST /oi/v2/api/maintenance` (create). A single
|
|
46000
|
+
* endpoint covers all target types — the per-target CLI commands each populate
|
|
46001
|
+
* exactly one targeting mechanism (members, or one of the `*Filter`s).
|
|
46002
|
+
*/
|
|
46003
|
+
const MaintenanceCreateRequestSchema = z.looseObject({
|
|
46004
|
+
name: z.string().describe('Schedule name; must be unique per tenant'),
|
|
46005
|
+
description: z.string().optional().describe('Free-text description'),
|
|
46006
|
+
schedule: MaintenanceScheduleSchema,
|
|
46007
|
+
// ----- targeting (combine as needed; commands set one) -----
|
|
46008
|
+
members: z
|
|
46009
|
+
.array(MaintenanceMemberSchema)
|
|
46010
|
+
.optional()
|
|
46011
|
+
.describe('Explicit target CIs (services use this, with externalId ids)'),
|
|
46012
|
+
excludedMembers: z
|
|
46013
|
+
.array(MaintenanceExcludedMemberSchema)
|
|
46014
|
+
.optional()
|
|
46015
|
+
.describe('CIs to exclude from an otherwise-matched set'),
|
|
46016
|
+
serviceFilter: MaintenanceFilterSchema.optional().describe('Filter-based service targeting'),
|
|
46017
|
+
agentFilter: MaintenanceFilterSchema.optional().describe('Agent targeting (regex on field "agent")'),
|
|
46018
|
+
deviceFilter: MaintenanceFilterSchema.optional().describe('Device/entity targeting'),
|
|
46019
|
+
groupFilter: MaintenanceFilterSchema.optional().describe('Group targeting'),
|
|
46020
|
+
metricPathFilter: MaintenanceFilterSchema.optional().describe('Raw-alarm targeting (on field "alarm_name")'),
|
|
46021
|
+
includeSubservices: z
|
|
46022
|
+
.boolean()
|
|
46023
|
+
.optional()
|
|
46024
|
+
.describe('Include child services of targeted services'),
|
|
46025
|
+
selectAllServices: z.boolean().optional(),
|
|
46026
|
+
selectAllAgents: z.boolean().optional(),
|
|
46027
|
+
selectAllGroups: z.boolean().optional(),
|
|
46028
|
+
selectAllDevices: z.boolean().optional(),
|
|
46029
|
+
// ----- behavior -----
|
|
46030
|
+
muteOldAlarms: z
|
|
46031
|
+
.boolean()
|
|
46032
|
+
.optional()
|
|
46033
|
+
.describe('Mute alarms that were already open when the window starts'),
|
|
46034
|
+
alarmsExitOnEnd: z
|
|
46035
|
+
.boolean()
|
|
46036
|
+
.optional()
|
|
46037
|
+
.describe('Clear alarm state when the window ends'),
|
|
46038
|
+
restrictSLOOnMaintenance: z
|
|
46039
|
+
.boolean()
|
|
46040
|
+
.optional()
|
|
46041
|
+
.describe('Exclude the window from SLO calculations'),
|
|
46042
|
+
forceStop: z.boolean().optional(),
|
|
46043
|
+
});
|
|
46044
|
+
/** Response from `POST /oi/v2/api/maintenance`. */
|
|
46045
|
+
const MaintenanceCreateResponseSchema = z.looseObject({
|
|
46046
|
+
message: z.string().describe('Confirmation message'),
|
|
46047
|
+
scheduleId: z.string().describe('UUID of the created schedule'),
|
|
46048
|
+
});
|
|
46049
|
+
|
|
46050
|
+
/** Request body for `POST /oi/v2/api/maintenance/delete?forceStop=…` (bulk). */
|
|
46051
|
+
const MaintenanceDeleteRequestSchema = z.looseObject({
|
|
46052
|
+
scheduleIds: z
|
|
46053
|
+
.array(z.string())
|
|
46054
|
+
.describe('Schedule ids to delete (bulk-capable)'),
|
|
46055
|
+
});
|
|
46056
|
+
/**
|
|
46057
|
+
* Response from the bulk delete endpoint (modeled loosely). Named with a
|
|
46058
|
+
* `BulkDelete` prefix to avoid clashing with the ASM client's generated
|
|
46059
|
+
* `MaintenanceDeleteResponse` in the flattened `@dx-do/client` barrel.
|
|
46060
|
+
*/
|
|
46061
|
+
const MaintenanceBulkDeleteResponseSchema = z.looseObject({
|
|
46062
|
+
message: z.union([z.string(), z.array(z.string())]).optional(),
|
|
46063
|
+
status: z.string().optional(),
|
|
46064
|
+
});
|
|
46065
|
+
|
|
46066
|
+
/**
|
|
46067
|
+
* A single schedule from `GET /oi/v2/api/maintenance/{id}` (detail). Read-side
|
|
46068
|
+
* encoding: `recurrencePattern` numeric, `startTime` a wall-clock string with
|
|
46069
|
+
* `startTimeInMillis`/`endTimeInMillis` epoch companions, plus whichever
|
|
46070
|
+
* `*Filter`/`members` targeting it was created with.
|
|
46071
|
+
*/
|
|
46072
|
+
const MaintenanceDetailSchema = z.looseObject({
|
|
46073
|
+
scheduleId: z.string(),
|
|
46074
|
+
name: z.string().nullable().optional().describe('null for a non-existent id (the GET echoes the id with null fields)'),
|
|
46075
|
+
description: z.string().nullable().optional(),
|
|
46076
|
+
status: z.string().optional().describe('e.g. "SCHEDULED"'),
|
|
46077
|
+
startTime: z.string().optional().describe('Wall-clock start, e.g. "2026-12-25 00:00:00.0"'),
|
|
46078
|
+
startTimeInMillis: z.number().optional(),
|
|
46079
|
+
endTimeInMillis: z.number().nullable().optional(),
|
|
46080
|
+
duration: z.number().optional().describe('Minutes'),
|
|
46081
|
+
timeZone: z.string().optional(),
|
|
46082
|
+
recurrencePattern: z
|
|
46083
|
+
.union([z.number(), z.string()])
|
|
46084
|
+
.optional()
|
|
46085
|
+
.describe('Numeric recurrence code on detail (1..5)'),
|
|
46086
|
+
recurrencePeriod: z.number().optional(),
|
|
46087
|
+
recurrenceDaysOfTheWeek: z.string().optional(),
|
|
46088
|
+
recurrenceDayOfTheMonth: z.string().optional(),
|
|
46089
|
+
recurrenceInstance: z.number().optional(),
|
|
46090
|
+
members: z.array(MaintenanceMemberSchema).optional(),
|
|
46091
|
+
excludedMembers: z.array(MaintenanceExcludedMemberSchema).optional(),
|
|
46092
|
+
serviceFilter: MaintenanceFilterSchema.nullable().optional(),
|
|
46093
|
+
agentFilter: MaintenanceFilterSchema.nullable().optional(),
|
|
46094
|
+
deviceFilter: MaintenanceFilterSchema.nullable().optional(),
|
|
46095
|
+
groupFilter: MaintenanceFilterSchema.nullable().optional(),
|
|
46096
|
+
metricPathFilter: MaintenanceFilterSchema.nullable().optional(),
|
|
46097
|
+
includeSubservices: z.boolean().optional(),
|
|
46098
|
+
muteOldAlarms: z.boolean().optional(),
|
|
46099
|
+
alarmsExitOnEnd: z.boolean().optional(),
|
|
46100
|
+
restrictSLOOnMaintenance: z.boolean().optional(),
|
|
46101
|
+
});
|
|
46102
|
+
|
|
46103
|
+
/**
|
|
46104
|
+
* Request body for `POST /oi/v2/api/maintenance/get-next-windows-preview` —
|
|
46105
|
+
* a (proposed or existing) schedule; the server returns its upcoming windows.
|
|
46106
|
+
*/
|
|
46107
|
+
const MaintenancePreviewRequestSchema = z.looseObject({
|
|
46108
|
+
name: z.string().optional(),
|
|
46109
|
+
description: z.string().optional(),
|
|
46110
|
+
schedule: MaintenanceScheduleSchema,
|
|
46111
|
+
});
|
|
46112
|
+
/**
|
|
46113
|
+
* Response from `get-next-windows-preview`: `startTime` is an array of upcoming
|
|
46114
|
+
* window-start wall-clock strings ("yyyy-MM-dd HH:mm:ss.S") in the schedule's
|
|
46115
|
+
* timezone; each window runs for `schedule.duration` minutes.
|
|
46116
|
+
*/
|
|
46117
|
+
const MaintenancePreviewResponseSchema = z.looseObject({
|
|
46118
|
+
scheduleId: z.string().nullable().optional(),
|
|
46119
|
+
startTime: z
|
|
46120
|
+
.array(z.string())
|
|
46121
|
+
.optional()
|
|
46122
|
+
.describe('Upcoming window start times (wall-clock, in the schedule timezone)'),
|
|
46123
|
+
});
|
|
46124
|
+
|
|
46125
|
+
/** Request body for `POST /oi/v2/api/maintenance/_search` (list). */
|
|
46126
|
+
const MaintenanceSearchRequestSchema = z.looseObject({
|
|
46127
|
+
pageNumber: z.number().int().describe('Zero-based page index'),
|
|
46128
|
+
pageSize: z.number().int().describe('Page size'),
|
|
46129
|
+
sortColDir: z
|
|
46130
|
+
.array(z.string())
|
|
46131
|
+
.optional()
|
|
46132
|
+
.describe('Sort spec, e.g. ["creationDate;desc"]'),
|
|
46133
|
+
includeCompletedSchedules: z
|
|
46134
|
+
.boolean()
|
|
46135
|
+
.optional()
|
|
46136
|
+
.describe('Include schedules whose windows have all passed'),
|
|
46137
|
+
customFilter: z.array(z.unknown()).optional().describe('Optional server-side filters'),
|
|
46138
|
+
});
|
|
46139
|
+
/**
|
|
46140
|
+
* One schedule as summarized by `_search`. Note the response-side encoding:
|
|
46141
|
+
* `recurrencePattern` is a label string ("Daily"), `recurrencePattern_1` the
|
|
46142
|
+
* numeric code, and times are epoch ms (contrast the create body).
|
|
46143
|
+
*/
|
|
46144
|
+
const MaintenanceSummarySchema = z.looseObject({
|
|
46145
|
+
scheduleId: z.string(),
|
|
46146
|
+
scheduleName: z.string().describe('Schedule name (may be padded with spaces)'),
|
|
46147
|
+
description: z.string().nullable().optional(),
|
|
46148
|
+
startTime: z.number().optional().describe('Start, epoch ms'),
|
|
46149
|
+
duration: z.number().optional().describe('Window length, minutes'),
|
|
46150
|
+
recurrencePattern: z.string().optional().describe('Recurrence label, e.g. "Daily"'),
|
|
46151
|
+
recurrencePattern_1: z.number().optional().describe('Numeric recurrence code (1..5)'),
|
|
46152
|
+
recurrencePeriod: z.number().optional(),
|
|
46153
|
+
timezone: z.string().optional(),
|
|
46154
|
+
status: z.string().optional().describe('e.g. "SCHEDULED"'),
|
|
46155
|
+
createdBy: z.string().nullable().optional(),
|
|
46156
|
+
creationDate: z.number().optional(),
|
|
46157
|
+
lastUpdatedBy: z.string().nullable().optional(),
|
|
46158
|
+
lastUpdateDate: z.number().optional(),
|
|
46159
|
+
windowTime: z
|
|
46160
|
+
.looseObject({
|
|
46161
|
+
startTime: z.number().optional(),
|
|
46162
|
+
endTime: z.number().optional(),
|
|
46163
|
+
})
|
|
46164
|
+
.optional()
|
|
46165
|
+
.describe('Next/active window bounds, epoch ms'),
|
|
46166
|
+
deleted: z.string().optional().describe('"Y"/"N"'),
|
|
46167
|
+
});
|
|
46168
|
+
/** Response from `POST /oi/v2/api/maintenance/_search`. */
|
|
46169
|
+
const MaintenanceSearchResponseSchema = z.looseObject({
|
|
46170
|
+
schedules: z.array(MaintenanceSummarySchema).describe('The matched schedules'),
|
|
46171
|
+
totalCount: z.number().optional(),
|
|
46172
|
+
scheduleCount: z.number().optional(),
|
|
46173
|
+
pageNumber: z.number().optional(),
|
|
46174
|
+
pageSize: z.number().optional(),
|
|
46175
|
+
});
|
|
46176
|
+
|
|
45875
46177
|
var NASS;
|
|
45876
46178
|
(function (NASS) {
|
|
45877
46179
|
function getAgentMetricCountQueryBody(agent) {
|
|
@@ -48628,6 +48930,182 @@ var Situations;
|
|
|
48628
48930
|
(function (Situations) {
|
|
48629
48931
|
})(Situations || (Situations = {}));
|
|
48630
48932
|
|
|
48933
|
+
/**
|
|
48934
|
+
* One row of an SLI's match criteria. SLIs select the metrics they watch by a
|
|
48935
|
+
* list of these AND-ed filters (e.g. "Source contains bd605" AND "Metric ends
|
|
48936
|
+
* with Web Agent Status").
|
|
48937
|
+
*/
|
|
48938
|
+
const SliFilterSchema = z.looseObject({
|
|
48939
|
+
fieldDescription: z
|
|
48940
|
+
.string()
|
|
48941
|
+
.describe('Human label for the field, e.g. "Source" or "Metric"'),
|
|
48942
|
+
field: z
|
|
48943
|
+
.string()
|
|
48944
|
+
.describe('Wire field the filter matches on, e.g. "sourceName" or "attributeName"'),
|
|
48945
|
+
value: z.string().describe('Value to match against the field'),
|
|
48946
|
+
condition: z
|
|
48947
|
+
.string()
|
|
48948
|
+
.describe('Match operator, e.g. "contains", "ends_with", "regex"'),
|
|
48949
|
+
});
|
|
48950
|
+
/**
|
|
48951
|
+
* A full SLI "group" as returned by `groups/search` (per `sliGroups[]` entry)
|
|
48952
|
+
* and `groups?groupId=<id>` (single object). This is the **raw** shape that
|
|
48953
|
+
* `sli export` writes to disk and `sli import` reads back.
|
|
48954
|
+
*
|
|
48955
|
+
* The wire terms are `groupName` / `groupId`; the CLI surfaces these to users
|
|
48956
|
+
* as `sliName` / `sliId`. The deeply-nested `sliDefinition` / `sloDefinition` /
|
|
48957
|
+
* `alertDefinition` blocks are kept **opaque** (loose passthrough) so they
|
|
48958
|
+
* round-trip untouched — we model the envelope, not the SLI/SLO math.
|
|
48959
|
+
*/
|
|
48960
|
+
const SliGroupSchema = z.looseObject({
|
|
48961
|
+
groupName: z.string().describe('SLI name (surfaced to users as `sliName`)'),
|
|
48962
|
+
groupId: z
|
|
48963
|
+
.number()
|
|
48964
|
+
.describe('Server-assigned SLI id (surfaced to users as `sliId`)'),
|
|
48965
|
+
type: z
|
|
48966
|
+
.string()
|
|
48967
|
+
.nullable()
|
|
48968
|
+
.optional()
|
|
48969
|
+
.describe('Group type; "sli" for SLIs. Save bodies set it; the GET-by-id response returns null'),
|
|
48970
|
+
description: z
|
|
48971
|
+
.string()
|
|
48972
|
+
.nullable()
|
|
48973
|
+
.optional()
|
|
48974
|
+
.describe('Free-text description; may be null or empty'),
|
|
48975
|
+
mgId: z
|
|
48976
|
+
.unknown()
|
|
48977
|
+
.nullable()
|
|
48978
|
+
.optional()
|
|
48979
|
+
.describe('Management-group id; null for SLIs'),
|
|
48980
|
+
filters: z
|
|
48981
|
+
.array(SliFilterSchema)
|
|
48982
|
+
.describe('AND-ed metric match criteria selecting the SLI source metrics'),
|
|
48983
|
+
serviceNames: z
|
|
48984
|
+
.array(z.string())
|
|
48985
|
+
.describe('Service names this SLI is bound to. `sli import` overwrites this with the passed serviceName'),
|
|
48986
|
+
sliDefinition: z
|
|
48987
|
+
.looseObject({ functions: z.array(z.unknown()).optional() })
|
|
48988
|
+
.optional()
|
|
48989
|
+
.describe('Opaque SLI computation spec ({ functions: [...] }); round-tripped verbatim'),
|
|
48990
|
+
sloDefinition: z
|
|
48991
|
+
.looseObject({ functions: z.array(z.unknown()).optional() })
|
|
48992
|
+
.optional()
|
|
48993
|
+
.describe('Opaque SLO computation spec ({ functions: [...] }); round-tripped verbatim'),
|
|
48994
|
+
alertDefinition: z
|
|
48995
|
+
.unknown()
|
|
48996
|
+
.optional()
|
|
48997
|
+
.describe('Opaque alert spec; null or an array. Normalized to [] on import when null'),
|
|
48998
|
+
// Read-only server-managed fields (present on reads, ignored on save).
|
|
48999
|
+
creationTime: z.number().optional().describe('Epoch seconds the SLI was created'),
|
|
49000
|
+
lastModifiedTime: z.number().optional().describe('Epoch seconds the SLI was last modified'),
|
|
49001
|
+
createdBy: z.string().nullable().optional().describe('User that created the SLI'),
|
|
49002
|
+
lastUpdatedBy: z.string().nullable().optional().describe('User that last updated the SLI'),
|
|
49003
|
+
totalMetrics: z.number().optional().describe('Count of metrics currently matched by the SLI'),
|
|
49004
|
+
breached: z.boolean().optional().describe('Whether the SLO is currently breached'),
|
|
49005
|
+
product: z.unknown().nullable().optional().describe('Owning product; usually null'),
|
|
49006
|
+
enabled: z.boolean().optional().describe('Whether the SLI is active'),
|
|
49007
|
+
sliStatusCode: z.number().optional().describe('Registration status code; 0 = healthy'),
|
|
49008
|
+
sliStatusMessage: z.string().optional().describe('Human-readable registration status'),
|
|
49009
|
+
fixRequired: z.boolean().optional().describe('Whether the SLI needs attention to register'),
|
|
49010
|
+
pipelineErrors: z.array(z.unknown()).optional().describe('Per-pipeline error details, if any'),
|
|
49011
|
+
defaultGroup: z.boolean().optional().describe('Whether this is a system default group'),
|
|
49012
|
+
});
|
|
49013
|
+
|
|
49014
|
+
/**
|
|
49015
|
+
* Request body for `POST oi/v2/metricconfig/groups/save`. Mirrors the writable
|
|
49016
|
+
* subset of {@link SliGroupSchema} — read-only server fields (creationTime,
|
|
49017
|
+
* createdBy, totalMetrics, …) are not sent.
|
|
49018
|
+
*
|
|
49019
|
+
* `groupId` is the create/update discriminator: present → update that group;
|
|
49020
|
+
* absent → create a new one. `sli import` always omits it so import is
|
|
49021
|
+
* create-only and can never overwrite an existing SLI.
|
|
49022
|
+
*/
|
|
49023
|
+
const SliSaveRequestSchema = z.looseObject({
|
|
49024
|
+
type: z.string().describe('Always "sli" for SLIs'),
|
|
49025
|
+
groupName: z.string().describe('SLI name'),
|
|
49026
|
+
description: z.string().nullable().optional().describe('Free-text description'),
|
|
49027
|
+
mgId: z.unknown().nullable().optional().describe('Management-group id; null for SLIs'),
|
|
49028
|
+
filters: z.array(SliFilterSchema).describe('AND-ed metric match criteria'),
|
|
49029
|
+
serviceNames: z.array(z.string()).describe('Service names the SLI binds to'),
|
|
49030
|
+
sliDefinition: z.unknown().describe('Opaque SLI computation spec, round-tripped from the export'),
|
|
49031
|
+
sloDefinition: z.unknown().describe('Opaque SLO computation spec, round-tripped from the export'),
|
|
49032
|
+
alertDefinition: z.unknown().optional().describe('Opaque alert spec; [] when none'),
|
|
49033
|
+
groupId: z
|
|
49034
|
+
.number()
|
|
49035
|
+
.optional()
|
|
49036
|
+
.describe('Omit to create a new SLI; include to update an existing one'),
|
|
49037
|
+
});
|
|
49038
|
+
/**
|
|
49039
|
+
* Response from `POST oi/v2/metricconfig/groups/save`.
|
|
49040
|
+
*/
|
|
49041
|
+
const SliSaveResponseSchema = z.looseObject({
|
|
49042
|
+
groupId: z.number().describe('Id of the created/updated SLI'),
|
|
49043
|
+
message: z.array(z.string()).describe('Server status messages'),
|
|
49044
|
+
status: z.string().describe('"Success" on success'),
|
|
49045
|
+
});
|
|
49046
|
+
/**
|
|
49047
|
+
* Projects a read-model {@link SliGroup} onto the writable {@link SliSaveRequest}
|
|
49048
|
+
* subset — dropping the read-only server fields (creationTime, createdBy,
|
|
49049
|
+
* totalMetrics, …) and normalizing `type` (default `'sli'`) and
|
|
49050
|
+
* `alertDefinition` (`null` → `[]`).
|
|
49051
|
+
*
|
|
49052
|
+
* @param group - The source SLI (e.g. from `getSli` or a raw export file).
|
|
49053
|
+
* @param opts.serviceNames - Override the bound services; defaults to the group's.
|
|
49054
|
+
* @param opts.create - When true, omit `groupId` so the save *creates* a new SLI;
|
|
49055
|
+
* otherwise `groupId` is carried through and the save *updates* in place.
|
|
49056
|
+
*/
|
|
49057
|
+
function toSliSaveRequest(group, opts = {}) {
|
|
49058
|
+
const body = {
|
|
49059
|
+
type: group.type ?? 'sli',
|
|
49060
|
+
groupName: group.groupName,
|
|
49061
|
+
description: group.description ?? '',
|
|
49062
|
+
mgId: group.mgId ?? null,
|
|
49063
|
+
filters: group.filters,
|
|
49064
|
+
serviceNames: opts.serviceNames ?? group.serviceNames,
|
|
49065
|
+
sliDefinition: group.sliDefinition,
|
|
49066
|
+
sloDefinition: group.sloDefinition,
|
|
49067
|
+
alertDefinition: group.alertDefinition ?? [],
|
|
49068
|
+
};
|
|
49069
|
+
if (!opts.create) {
|
|
49070
|
+
body.groupId = group.groupId;
|
|
49071
|
+
}
|
|
49072
|
+
return body;
|
|
49073
|
+
}
|
|
49074
|
+
|
|
49075
|
+
/**
|
|
49076
|
+
* Request body for `POST oi/v2/metricconfig/groups/search`. Listing SLIs is a
|
|
49077
|
+
* search scoped to `type: "sli"` with a large `pageSize` (the server returns
|
|
49078
|
+
* all matching groups up to that cap).
|
|
49079
|
+
*/
|
|
49080
|
+
const SliSearchRequestSchema = z.looseObject({
|
|
49081
|
+
pageSize: z
|
|
49082
|
+
.number()
|
|
49083
|
+
.describe('Max groups to return. Use a large value (e.g. 5000) to list all SLIs'),
|
|
49084
|
+
type: z
|
|
49085
|
+
.string()
|
|
49086
|
+
.describe('Group type to search; "sli" for SLIs'),
|
|
49087
|
+
});
|
|
49088
|
+
/**
|
|
49089
|
+
* Response from `POST oi/v2/metricconfig/groups/search`. The SLIs are in
|
|
49090
|
+
* `sliGroups`; the surrounding fields are tenant-wide metric-config limits.
|
|
49091
|
+
*/
|
|
49092
|
+
const SliSearchResponseSchema = z.looseObject({
|
|
49093
|
+
totalGroups: z.number().optional().describe('Number of groups returned in `sliGroups`'),
|
|
49094
|
+
pageSize: z.number().optional().describe('Effective page size applied by the server'),
|
|
49095
|
+
enabledMetrics: z.number().optional().describe('Total metrics enabled across all SLIs'),
|
|
49096
|
+
allowedMetricGroupsPerService: z
|
|
49097
|
+
.number()
|
|
49098
|
+
.optional()
|
|
49099
|
+
.describe('Tenant cap on SLI groups per service'),
|
|
49100
|
+
allowedMetricsPerGroup: z
|
|
49101
|
+
.number()
|
|
49102
|
+
.optional()
|
|
49103
|
+
.describe('Tenant cap on metrics per SLI group'),
|
|
49104
|
+
sliGroups: z
|
|
49105
|
+
.array(SliGroupSchema)
|
|
49106
|
+
.describe('The SLI groups matching the search'),
|
|
49107
|
+
});
|
|
49108
|
+
|
|
48631
49109
|
var TAS;
|
|
48632
49110
|
(function (TAS) {
|
|
48633
49111
|
/** @internal */
|
|
@@ -74146,6 +74624,97 @@ class LogsService {
|
|
|
74146
74624
|
}
|
|
74147
74625
|
}
|
|
74148
74626
|
|
|
74627
|
+
/**
|
|
74628
|
+
* Service for DXO2 maintenance windows (schedules) under
|
|
74629
|
+
* `oi/v2/api/maintenance/*`. A maintenance window suppresses alarms/SLOs for
|
|
74630
|
+
* its targets (services, agents, devices/entities, or raw alarms) over a fixed
|
|
74631
|
+
* or recurring schedule. Backs the `maintenance` CLI command group.
|
|
74632
|
+
*
|
|
74633
|
+
* Uses `oiPost`/`oiGet` (OI namespace). Requests are validated with `parse`
|
|
74634
|
+
* (throws); responses with `safeParse` (warn + return raw on mismatch).
|
|
74635
|
+
*/
|
|
74636
|
+
class MaintenanceService {
|
|
74637
|
+
dxSaasService;
|
|
74638
|
+
log;
|
|
74639
|
+
constructor(dxSaasService, log) {
|
|
74640
|
+
this.dxSaasService = dxSaasService;
|
|
74641
|
+
this.log = log;
|
|
74642
|
+
}
|
|
74643
|
+
/** Lists maintenance schedules via `POST …/_search`. Defaults to one large page, newest first. */
|
|
74644
|
+
async search(request) {
|
|
74645
|
+
const body = {
|
|
74646
|
+
pageNumber: 0,
|
|
74647
|
+
pageSize: 1000,
|
|
74648
|
+
sortColDir: ['creationDate;desc'],
|
|
74649
|
+
includeCompletedSchedules: false,
|
|
74650
|
+
customFilter: [],
|
|
74651
|
+
...request,
|
|
74652
|
+
};
|
|
74653
|
+
const raw = await this.dxSaasService.oiPost('oi/v2/api/maintenance/_search', body);
|
|
74654
|
+
const result = MaintenanceSearchResponseSchema.safeParse(raw);
|
|
74655
|
+
if (!result.success) {
|
|
74656
|
+
this.log.warn('MaintenanceSearchResponse validation warning:', result.error.message);
|
|
74657
|
+
}
|
|
74658
|
+
return raw;
|
|
74659
|
+
}
|
|
74660
|
+
/** Retrieves a single schedule via `GET …/{id}`. */
|
|
74661
|
+
async get(scheduleId) {
|
|
74662
|
+
const raw = await this.dxSaasService.oiGet(`oi/v2/api/maintenance/${scheduleId}`);
|
|
74663
|
+
const result = MaintenanceDetailSchema.safeParse(raw);
|
|
74664
|
+
if (!result.success) {
|
|
74665
|
+
this.log.warn('MaintenanceDetail validation warning:', result.error.message);
|
|
74666
|
+
}
|
|
74667
|
+
return raw;
|
|
74668
|
+
}
|
|
74669
|
+
/**
|
|
74670
|
+
* Previews the upcoming windows for a (proposed or existing) schedule via
|
|
74671
|
+
* `POST …/get-next-windows-preview`.
|
|
74672
|
+
*
|
|
74673
|
+
* @throws ZodError if the request fails schema validation.
|
|
74674
|
+
*/
|
|
74675
|
+
async getNextWindows(request) {
|
|
74676
|
+
MaintenancePreviewRequestSchema.parse(request);
|
|
74677
|
+
return this.dxSaasService.oiPost('oi/v2/api/maintenance/get-next-windows-preview', request);
|
|
74678
|
+
}
|
|
74679
|
+
/**
|
|
74680
|
+
* Checks a schedule name via `GET …/validateScheduleName`. Returns the
|
|
74681
|
+
* server's bare boolean (semantics confirmed empirically by the caller).
|
|
74682
|
+
*/
|
|
74683
|
+
async validateName(name) {
|
|
74684
|
+
const raw = await this.dxSaasService.oiGet('oi/v2/api/maintenance/validateScheduleName', { scheduleName: name });
|
|
74685
|
+
const result = z.boolean().safeParse(raw);
|
|
74686
|
+
if (!result.success) {
|
|
74687
|
+
this.log.warn('validateScheduleName returned a non-boolean:', JSON.stringify(raw));
|
|
74688
|
+
}
|
|
74689
|
+
return Boolean(raw);
|
|
74690
|
+
}
|
|
74691
|
+
/**
|
|
74692
|
+
* Creates a maintenance schedule via `POST …`.
|
|
74693
|
+
*
|
|
74694
|
+
* @throws ZodError if the request fails schema validation.
|
|
74695
|
+
*/
|
|
74696
|
+
async create(body) {
|
|
74697
|
+
MaintenanceCreateRequestSchema.parse(body);
|
|
74698
|
+
const raw = await this.dxSaasService.oiPost('oi/v2/api/maintenance', body);
|
|
74699
|
+
const result = MaintenanceCreateResponseSchema.safeParse(raw);
|
|
74700
|
+
if (!result.success) {
|
|
74701
|
+
this.log.warn('MaintenanceCreateResponse validation warning:', result.error.message);
|
|
74702
|
+
}
|
|
74703
|
+
return raw;
|
|
74704
|
+
}
|
|
74705
|
+
/**
|
|
74706
|
+
* Deletes one or more schedules via `POST …/delete?forceStop=…` (bulk).
|
|
74707
|
+
*/
|
|
74708
|
+
async delete(scheduleIds, options = {}) {
|
|
74709
|
+
const raw = await this.dxSaasService.oiPost('oi/v2/api/maintenance/delete', { scheduleIds }, { forceStop: options.forceStop ?? true });
|
|
74710
|
+
const result = MaintenanceBulkDeleteResponseSchema.safeParse(raw);
|
|
74711
|
+
if (!result.success) {
|
|
74712
|
+
this.log.warn('MaintenanceBulkDeleteResponse validation warning:', result.error.message);
|
|
74713
|
+
}
|
|
74714
|
+
return raw;
|
|
74715
|
+
}
|
|
74716
|
+
}
|
|
74717
|
+
|
|
74149
74718
|
/**
|
|
74150
74719
|
* Service for management modules (and their calculators): list, create, update,
|
|
74151
74720
|
* copy, import, delete, and query by ID.
|
|
@@ -76097,6 +76666,80 @@ class ServiceService {
|
|
|
76097
76666
|
}
|
|
76098
76667
|
}
|
|
76099
76668
|
|
|
76669
|
+
/**
|
|
76670
|
+
* Service for SLIs (Service Level Indicators), modeled by the OI metricconfig
|
|
76671
|
+
* API as metric "groups" of `type: "sli"` under `oi/v2/metricconfig/groups/*`.
|
|
76672
|
+
*
|
|
76673
|
+
* These endpoints require the `x-authorizationview: VIEWALL` header, so this
|
|
76674
|
+
* service uses {@link DxSaasService.oiPost} / {@link DxSaasService.oiGet}
|
|
76675
|
+
* (which inject it) rather than the plain `tenant*` methods.
|
|
76676
|
+
*
|
|
76677
|
+
* Requests are validated against their input schema (throws `ZodError`);
|
|
76678
|
+
* responses are `safeParse`-validated (warn-on-mismatch, raw still returned).
|
|
76679
|
+
* Backs the `sli list` / `sli export` / `sli import` CLI commands.
|
|
76680
|
+
*/
|
|
76681
|
+
class SLIService {
|
|
76682
|
+
dxSaasService;
|
|
76683
|
+
log;
|
|
76684
|
+
/**
|
|
76685
|
+
* @param dxSaasService - An authenticated {@link DxSaasService} for the target tenant.
|
|
76686
|
+
* @param log - Logger conforming to {@link SimpleLog} from `@dx-do/util`.
|
|
76687
|
+
*/
|
|
76688
|
+
constructor(dxSaasService, log) {
|
|
76689
|
+
this.dxSaasService = dxSaasService;
|
|
76690
|
+
this.log = log;
|
|
76691
|
+
}
|
|
76692
|
+
/**
|
|
76693
|
+
* Lists SLIs via `POST oi/v2/metricconfig/groups/search`.
|
|
76694
|
+
*
|
|
76695
|
+
* @remarks Defaults to `{ pageSize: 5000, type: 'sli' }`; pass a partial
|
|
76696
|
+
* override to change the cap. Response is validated but returned raw on
|
|
76697
|
+
* mismatch.
|
|
76698
|
+
* @throws ZodError if the (merged) request fails schema validation.
|
|
76699
|
+
*/
|
|
76700
|
+
async searchSlis(request) {
|
|
76701
|
+
const body = { pageSize: 5000, type: 'sli', ...request };
|
|
76702
|
+
SliSearchRequestSchema.parse(body);
|
|
76703
|
+
const raw = await this.dxSaasService.oiPost('oi/v2/metricconfig/groups/search', body);
|
|
76704
|
+
const result = SliSearchResponseSchema.safeParse(raw);
|
|
76705
|
+
if (!result.success) {
|
|
76706
|
+
this.log.warn('SliSearchResponse validation warning:', result.error.message);
|
|
76707
|
+
}
|
|
76708
|
+
return raw;
|
|
76709
|
+
}
|
|
76710
|
+
/**
|
|
76711
|
+
* Retrieves a single SLI by id via `GET oi/v2/metricconfig/groups?groupId=<id>`.
|
|
76712
|
+
* The returned object is the **raw** group `sli export` writes to disk.
|
|
76713
|
+
*
|
|
76714
|
+
* @remarks Response is validated but returned raw on mismatch.
|
|
76715
|
+
*/
|
|
76716
|
+
async getSli(sliId) {
|
|
76717
|
+
const raw = await this.dxSaasService.oiGet('oi/v2/metricconfig/groups', { groupId: sliId });
|
|
76718
|
+
const result = SliGroupSchema.safeParse(raw);
|
|
76719
|
+
if (!result.success) {
|
|
76720
|
+
this.log.warn('SliGroup validation warning:', result.error.message);
|
|
76721
|
+
}
|
|
76722
|
+
return raw;
|
|
76723
|
+
}
|
|
76724
|
+
/**
|
|
76725
|
+
* Creates or updates an SLI via `POST oi/v2/metricconfig/groups/save`. Omit
|
|
76726
|
+
* `groupId` on the body to create; include it to update.
|
|
76727
|
+
*
|
|
76728
|
+
* @remarks Request is validated against {@link SliSaveRequestSchema}
|
|
76729
|
+
* (throws on bad input); response validated but returned raw on mismatch.
|
|
76730
|
+
* @throws ZodError if the request fails schema validation.
|
|
76731
|
+
*/
|
|
76732
|
+
async saveSli(body) {
|
|
76733
|
+
SliSaveRequestSchema.parse(body);
|
|
76734
|
+
const raw = await this.dxSaasService.oiPost('oi/v2/metricconfig/groups/save', body);
|
|
76735
|
+
const result = SliSaveResponseSchema.safeParse(raw);
|
|
76736
|
+
if (!result.success) {
|
|
76737
|
+
this.log.warn('SliSaveResponse validation warning:', result.error.message);
|
|
76738
|
+
}
|
|
76739
|
+
return raw;
|
|
76740
|
+
}
|
|
76741
|
+
}
|
|
76742
|
+
|
|
76100
76743
|
/**
|
|
76101
76744
|
* Service for cluster/situation alarms: search, overview, lifecycle, inspection,
|
|
76102
76745
|
* and triggering notifications for situations.
|
|
@@ -78065,6 +78708,7 @@ function createServiceMonolith(dxDoConfiguration, log = new NullSimpleLog()) {
|
|
|
78065
78708
|
dxInventoryService: new InventoryService(dxSaaSService, dxNASSService, dxTASService, log),
|
|
78066
78709
|
dxJSExtensionService: new JsExtensionService(dxSaaSService),
|
|
78067
78710
|
dxLogsService: new LogsService(dxSaaSService),
|
|
78711
|
+
dxMaintenanceService: new MaintenanceService(dxSaaSService, log),
|
|
78068
78712
|
dxManagementModuleService: dxManagementModuleService,
|
|
78069
78713
|
dxMetricBatchService: new MetricBatchService(dxSaaSService),
|
|
78070
78714
|
dxMetricGroupingService: new MetricGroupingService(dxSaaSService, dxManagementModuleService),
|
|
@@ -78081,6 +78725,7 @@ function createServiceMonolith(dxDoConfiguration, log = new NullSimpleLog()) {
|
|
|
78081
78725
|
dxServiceService: new ServiceService(dxSaaSService, log),
|
|
78082
78726
|
dxSessionService: new SessionService(dxSaaSService),
|
|
78083
78727
|
dxSituationService: new SituationService(dxSaaSService, log),
|
|
78728
|
+
dxSLIService: new SLIService(dxSaaSService, log),
|
|
78084
78729
|
dxSQLService: new SQLService(dxSaaSService),
|
|
78085
78730
|
dxStatesService: new DataStoreStatesService(dxSaaSService, log),
|
|
78086
78731
|
dxTASService,
|
|
@@ -78089,5 +78734,5 @@ function createServiceMonolith(dxDoConfiguration, log = new NullSimpleLog()) {
|
|
|
78089
78734
|
};
|
|
78090
78735
|
}
|
|
78091
78736
|
|
|
78092
|
-
export { AXAActivities, AccService, AgentService, AgentTrace, AlarmEnrichment, AlarmEnrichmentFilter, AlarmService, AlertDefinitionResponse, AlertResponse, AlertResponseV2, AlertService, AlignmentSchema, ApmUniverseService, AsmService, AttributeExpressionComparatorSchema, AttributeExpressionOperatorSchema, AttributeExpressionSchema, AttributeFilterOperator, AttributeNameAllSpecifierSchema, AttributeNameAndSpecifierSchema, AttributeNameAnyNumericSpecifierSchema, AttributeNameAttributeSpecifierSchema, AttributeNameChildrenSpecifierSchema, AttributeNameExactSpecifierSchema, AttributeNameFolderSpecifierSchema, AttributeNameNoneSpecifierSchema, AttributeNameNotSpecifierSchema, AttributeNameOperatorSpecifierSchema, AttributeNameOrSpecifierSchema, AttributeNameRegExSpecifierSchema, AttributeNameSpecifierSchema, AttributeNameTypeSpecifierSchema, AttributeService, AttributeValueAsFieldSchema, AuthorizationService, AxaService, BlobAllFilterSchema, BlobAsyncCommandSchema, BlobAsyncDeleteSchemaCommandSchema, BlobAsyncResultEntrySchema, BlobAsyncResultRequestSchema, BlobAsyncResultResponseSchema, BlobAsyncResultStateSchema, BlobAttributeExpressionSchema, BlobAttributeFilterSchema, BlobAttributesSchema, BlobBulkDeleteEntrySchema, BlobBulkDeleteRequestSchema, BlobBulkDeleteResponseSchema, BlobBulkItemSchema, BlobBulkStoreRequestSchema, BlobBulkStoreResponseSchema, BlobDeleteParamsSchema, BlobDeleteResponseSchema, BlobDeleteSchemaResultSchema, BlobExecuteAsyncRequestSchema, BlobExecuteAsyncResponseSchema, BlobFetchParamsSchema, BlobFileEnvelopeSchema, BlobFilterSchema, BlobMetadataSchema, BlobQueryRequestSchema, BlobQueryResponseSchema, BlobSchemaItemSchema, BlobSchemaListRequestSchema, BlobSchemaListResponseSchema, BlobService, BlobStoreParamsSchema, BlobStoreResponseSchema, CalendarIntervalSchema, ChannelService, DEFAULT_EXPERIENCE_REQUEST_BODY, DXChannel, DashboardPermissionsUpdateRequest, DashboardSearch, DashboardService, DataStoreAuditService, DataStoreAuthViewsService, DataStoreBlobStorageService, DataStoreFeaturesService, DataStoreMetricsMetadataService, DataStoreNASSQLService, DataStoreNASSService, DataStoreStatesService, DataStoreTASService, DataStoreTokensService, DxSaasService, DxoiService, EdgeNumericIdSchema, EventService, ExperienceService, FillModeSchema, FilterOperation, FolderNameAllSpecifierSchema, FolderNameAndSpecifierSchema, FolderNameChildrenSpecifierSchema, FolderNameExactSpecifierSchema, FolderNameNoneSpecifierSchema, FolderNameNotSpecifierSchema, FolderNameOrSpecifierSchema, FolderNameRegExSpecifierSchema, FolderNameSpecifierSchema, GraphResponse, GraphService, Inventory, InventoryAttributes, InventoryService, JoinTypeSchema, JsExtensionService, LogIngest, LogQuery, LogsService, METRIC_TYPE_ENUM, METRIC_TYPE_ENUM_NAMES, METRIC_TYPE_REGION, MServe, ManagementModuleIdSchema, ManagementModuleService, MatchType, MetadataMetricQueryResponseV2Schema, MetadataMetricQuerySchema, MetricAttributeSchema, MetricBatchService, MetricFolderSchema, MetricGroupingService, MetricRegisterRequestSchema, MetricRegisterResponseSchema, MetricRegisterSchema, MetricRegisterSourceSchema, MetricTypeEnumNameSchema, NASS, NASSService, NassDatapointSchema, NassExtensionDatapointSchema, NassRegularDatapointSchema, NassStoreRequestSchema, NassStoreResponseSchema, NassValueTypeSchema, NotificationService, NumericOperatorSchema, O2NotificationService, O2UniverseService, OIAlarm, OIService, OIUsersV2, OperatorSchema, PerspectiveService, PlatformAlertService, PlatformFilters, PlatformManagementModuleService, PlatformMetricGroupingService, QuantileMethodSchema, QueryAllSpecifierSchema, QueryAndSpecifierSchema, QueryAttributeExpressionSchema, QueryAttributeSpecifierSchema, QueryColumnTypeSpecSchema, QueryFilterPredicateSpecSchema, QueryFunctionSpecSchema, QueryHintForceRangeSchema, QueryHintSchema, QueryIdSpecifierSchema, QueryMetricGroupSpecifierSchema, QueryMetricIdSchema, QueryNoneSpecifierSchema, QueryNotSpecifierSchema, QueryOrSpecifierSchema, QueryRangeSpecSchema, QueryRequestSchema, QueryResultSchema, QuerySpecSpecifierSchema, QuerySpecifierSchema, SQLService, ServiceExport, ServiceFilterSpecifierSchema, ServiceService, ServiceTransform, SessionService, SimpleHTTPError, SituationLifecycle, SituationService, Situations, SourceNameAllSpecifierSchema, SourceNameAndSpecifierSchema, SourceNameExactSpecifierSchema, SourceNameNoneSpecifierSchema, SourceNameNotSpecifierSchema, SourceNameOrSpecifierSchema, SourceNamePartOperatorSpecifierSchema, SourceNameRegExSpecifierSchema, SourceNameSpecifierSchema, TAS, TASGraph, TASService, TasAddFlowsFilterSchema, TasAddTransitioningEdgesFilterSchema, TasAddWireContextFilterSchema, TasAddWiresFilterSchema, TasAllFilterSchema, TasAnalyticBaseSchema, TasAnalyticResultSchema, TasAndFilterSchema, TasAttributeAlertStatisticsSchema, TasAttributeFilterModeSchema, TasAttributeFilterSchema, TasAttributeNameSchema, TasAttributeTypeSchema, TasCollectAttributeNamesFilterSchema, TasCollectAttributeNamesResultSchema, TasCollectAttributeResultSchema, TasCollectAttributesFilterSchema, TasCollectCardInfoFilterSchema, TasCollectCardInfoResultSchema, TasCollectCardInfoTierSchema, TasCollectCountsFilterSchema, TasCollectCountsResultSchema, TasCollectExperienceAttributesFilterSchema, TasCollectExperienceSelectorSchema, TasCollectGroupingInfoFilterSchema, TasCollectGroupingInfoResultSchema, TasCollectVertexIdFilterSchema, TasCoverageFilterSchema, TasEdgeSchema, TasEmptyFilterSchema, TasExternalIdSchema, TasFilterSchema, TasFollowPathFilterSchema, TasFollowPathFlowFilterSchema, TasFollowPathTypeSchema, TasGraphSchema, TasGroupingAlertStatisticsSchema, TasGroupingInfoSchema, TasGroupingItemSchema, TasJoinFilterSchema, TasJoinTypeSchema, TasLayerFilterSchema, TasLegacyFilterSchema, TasLuceneFilterSchema, TasNotFilterSchema, TasOrFilterSchema, TasOrderSchema, TasProjectionFilterSchema, TasQuerySchema, TasServiceFilterSchema, TasStatusFilterSchema, TasStoreChangeSchema, TasStoreGraphInputSchema, TasStoreGraphResponseSchema, TasTakeEdgesFilterSchema, TasTakeFlowsFilterSchema, TasTakeVerticesFilterSchema, TasTraverseFilterSchema, TasVariableFilterSchema, TasVariableSchema, TasVertexIdFilterSchema, TasVertexSchema, TasViewSchema, Trace, TraversalEdgeFilterSchema, TraversalVertexFilterSchema, TraverseCollectSchema, TraverseDirectionSchema, TraverseSchema, VertexMappingConfigurationModule, VertexService, VertexStateExternalIdSchema, VertexStateNumericIdSchema, VertexStateSchema, VertexStatusChanges, ags, agsresponse, apiTokenCreate, apiTokenDelete, apiTokenGet, apiTokenList, apiTokenUpdate, checkGet, composeMetricTypeBits, contactActivate, contactDelete, contactTestSend, contactsBlockDelete, contactsBlockPut, contactsConfirm, contactsCreate, contactsGet, contactsGetDetail, contactsReplaceNotificationsWith, contactsRequestConfirmationCode, contactsUpdate, convertLegacyConfiguration, createPostmanRequest, createServiceMonolith, decodeMetricTypeBits, escapeRegExp, example, excludedAttributes, folderAccessGet, folderDelete, folderGet, folderPost, folderUpdate, foldersList, getDataStoreSchema, getUserTokenSub, getUserTokenTid, getVertexAttributeValue, getVertexAttributeValueOrNull, hasVertexAttribute, inventorizePreview, inventorizeResponse, inventorySearchRequestBodyExample, inventorySearchResponseBody, isDataStoreSchemaType, isTenantToken, isUserToken, listDataStoreSchemaOps, locationsCreate, locationsDelete, locationsGet, locationsGetAll, locationsGetByType, locationsLeafGetFilter, locationsPost, logGet, logGetEvent, maintenanceDelete, maintenanceDeleteWindows, maintenanceGet, maintenanceGetDetail, maintenanceGetWindows, maintenanceGetWindowsDetail, maintenanceUpdateWindowsDetail, maintenancesCreate, maintenancesImmediateDelete, maintenancesImmediatePut, maintenancesPostWindows, maintenancesUpdate, messageGet, messagesList, monitorActivate, monitorCreate, monitorDeactivate, monitorDelete, monitorGet, monitorGetAll, monitorUpdate, oauthClientTokensCreate, oauthClientTokensDelete, oauthClientTokensGet, oauthClientTokensList, oauthClientTokensUpdate, oauthCreateToken, oauthGetRefreshTokenList, oauthGetTokenList, oauthRefreshTokenDeleteId, oauthTokenCognateDelete, oauthTokenCognateDeleteCurrent, oauthTokenDelete, oauthTokenDeleteCurrent, parseFilter, sampleServiceDetailRequestBody, searchUniverse, serviceDetailResponseBody, settingsGet, settingsGetDetail, settingsUpdate, stationDelete, stationsAgentType, stationsCreate, stationsDeleteMaintenance, stationsGet, stationsGetAgents, stationsLatest, stationsList, stationsOnpremiseConnected, stationsOnpremiseConnectedAll, stationsOnpremiseList, stationsPutMaintenance, stationsUpdate, statistic, summarizeDataStoreSchema, tagsGetAll, timezonesList, userBlockDelete, userBlockPut, userDelete, userGet, userLockDelete, userPut, userSubaccountsGet, userSubaccountsPost, verifyAndDumpLegacyConfiguration, verifyAndDumpVersion3Configuration, verifyAndDumpVersion4Configuration, vertexMatchesFilters };
|
|
78737
|
+
export { AXAActivities, AccService, AgentService, AgentTrace, AlarmEnrichment, AlarmEnrichmentFilter, AlarmService, AlertDefinitionResponse, AlertResponse, AlertResponseV2, AlertService, AlignmentSchema, ApmUniverseService, AsmService, AttributeExpressionComparatorSchema, AttributeExpressionOperatorSchema, AttributeExpressionSchema, AttributeFilterOperator, AttributeNameAllSpecifierSchema, AttributeNameAndSpecifierSchema, AttributeNameAnyNumericSpecifierSchema, AttributeNameAttributeSpecifierSchema, AttributeNameChildrenSpecifierSchema, AttributeNameExactSpecifierSchema, AttributeNameFolderSpecifierSchema, AttributeNameNoneSpecifierSchema, AttributeNameNotSpecifierSchema, AttributeNameOperatorSpecifierSchema, AttributeNameOrSpecifierSchema, AttributeNameRegExSpecifierSchema, AttributeNameSpecifierSchema, AttributeNameTypeSpecifierSchema, AttributeService, AttributeValueAsFieldSchema, AuthorizationService, AxaService, BlobAllFilterSchema, BlobAsyncCommandSchema, BlobAsyncDeleteSchemaCommandSchema, BlobAsyncResultEntrySchema, BlobAsyncResultRequestSchema, BlobAsyncResultResponseSchema, BlobAsyncResultStateSchema, BlobAttributeExpressionSchema, BlobAttributeFilterSchema, BlobAttributesSchema, BlobBulkDeleteEntrySchema, BlobBulkDeleteRequestSchema, BlobBulkDeleteResponseSchema, BlobBulkItemSchema, BlobBulkStoreRequestSchema, BlobBulkStoreResponseSchema, BlobDeleteParamsSchema, BlobDeleteResponseSchema, BlobDeleteSchemaResultSchema, BlobExecuteAsyncRequestSchema, BlobExecuteAsyncResponseSchema, BlobFetchParamsSchema, BlobFileEnvelopeSchema, BlobFilterSchema, BlobMetadataSchema, BlobQueryRequestSchema, BlobQueryResponseSchema, BlobSchemaItemSchema, BlobSchemaListRequestSchema, BlobSchemaListResponseSchema, BlobService, BlobStoreParamsSchema, BlobStoreResponseSchema, CalendarIntervalSchema, ChannelService, DEFAULT_EXPERIENCE_REQUEST_BODY, DXChannel, DashboardPermissionsUpdateRequest, DashboardSearch, DashboardService, DataStoreAuditService, DataStoreAuthViewsService, DataStoreBlobStorageService, DataStoreFeaturesService, DataStoreMetricsMetadataService, DataStoreNASSQLService, DataStoreNASSService, DataStoreStatesService, DataStoreTASService, DataStoreTokensService, DxSaasService, DxoiService, EdgeNumericIdSchema, EventService, ExperienceService, FillModeSchema, FilterOperation, FolderNameAllSpecifierSchema, FolderNameAndSpecifierSchema, FolderNameChildrenSpecifierSchema, FolderNameExactSpecifierSchema, FolderNameNoneSpecifierSchema, FolderNameNotSpecifierSchema, FolderNameOrSpecifierSchema, FolderNameRegExSpecifierSchema, FolderNameSpecifierSchema, GraphResponse, GraphService, Inventory, InventoryAttributes, InventoryService, JoinTypeSchema, JsExtensionService, LogIngest, LogQuery, LogsService, METRIC_TYPE_ENUM, METRIC_TYPE_ENUM_NAMES, METRIC_TYPE_REGION, MServe, MaintenanceBulkDeleteResponseSchema, MaintenanceCreateRequestSchema, MaintenanceCreateResponseSchema, MaintenanceDeleteRequestSchema, MaintenanceDetailSchema, MaintenanceExcludedMemberSchema, MaintenanceFilterLeafSchema, MaintenanceFilterSchema, MaintenanceMemberSchema, MaintenanceMemberSourceSchema, MaintenanceMemberTypeSchema, MaintenancePreviewRequestSchema, MaintenancePreviewResponseSchema, MaintenanceScheduleSchema, MaintenanceSearchRequestSchema, MaintenanceSearchResponseSchema, MaintenanceService, MaintenanceSummarySchema, ManagementModuleIdSchema, ManagementModuleService, MatchType, MetadataMetricQueryResponseV2Schema, MetadataMetricQuerySchema, MetricAttributeSchema, MetricBatchService, MetricFolderSchema, MetricGroupingService, MetricRegisterRequestSchema, MetricRegisterResponseSchema, MetricRegisterSchema, MetricRegisterSourceSchema, MetricTypeEnumNameSchema, NASS, NASSService, NassDatapointSchema, NassExtensionDatapointSchema, NassRegularDatapointSchema, NassStoreRequestSchema, NassStoreResponseSchema, NassValueTypeSchema, NotificationService, NumericOperatorSchema, O2NotificationService, O2UniverseService, OIAlarm, OIService, OIUsersV2, OperatorSchema, PerspectiveService, PlatformAlertService, PlatformFilters, PlatformManagementModuleService, PlatformMetricGroupingService, QuantileMethodSchema, QueryAllSpecifierSchema, QueryAndSpecifierSchema, QueryAttributeExpressionSchema, QueryAttributeSpecifierSchema, QueryColumnTypeSpecSchema, QueryFilterPredicateSpecSchema, QueryFunctionSpecSchema, QueryHintForceRangeSchema, QueryHintSchema, QueryIdSpecifierSchema, QueryMetricGroupSpecifierSchema, QueryMetricIdSchema, QueryNoneSpecifierSchema, QueryNotSpecifierSchema, QueryOrSpecifierSchema, QueryRangeSpecSchema, QueryRequestSchema, QueryResultSchema, QuerySpecSpecifierSchema, QuerySpecifierSchema, RecurrencePattern, SLIService, SQLService, ServiceExport, ServiceFilterSpecifierSchema, ServiceService, ServiceTransform, SessionService, SimpleHTTPError, SituationLifecycle, SituationService, Situations, SliFilterSchema, SliGroupSchema, SliSaveRequestSchema, SliSaveResponseSchema, SliSearchRequestSchema, SliSearchResponseSchema, SourceNameAllSpecifierSchema, SourceNameAndSpecifierSchema, SourceNameExactSpecifierSchema, SourceNameNoneSpecifierSchema, SourceNameNotSpecifierSchema, SourceNameOrSpecifierSchema, SourceNamePartOperatorSpecifierSchema, SourceNameRegExSpecifierSchema, SourceNameSpecifierSchema, TAS, TASGraph, TASService, TasAddFlowsFilterSchema, TasAddTransitioningEdgesFilterSchema, TasAddWireContextFilterSchema, TasAddWiresFilterSchema, TasAllFilterSchema, TasAnalyticBaseSchema, TasAnalyticResultSchema, TasAndFilterSchema, TasAttributeAlertStatisticsSchema, TasAttributeFilterModeSchema, TasAttributeFilterSchema, TasAttributeNameSchema, TasAttributeTypeSchema, TasCollectAttributeNamesFilterSchema, TasCollectAttributeNamesResultSchema, TasCollectAttributeResultSchema, TasCollectAttributesFilterSchema, TasCollectCardInfoFilterSchema, TasCollectCardInfoResultSchema, TasCollectCardInfoTierSchema, TasCollectCountsFilterSchema, TasCollectCountsResultSchema, TasCollectExperienceAttributesFilterSchema, TasCollectExperienceSelectorSchema, TasCollectGroupingInfoFilterSchema, TasCollectGroupingInfoResultSchema, TasCollectVertexIdFilterSchema, TasCoverageFilterSchema, TasEdgeSchema, TasEmptyFilterSchema, TasExternalIdSchema, TasFilterSchema, TasFollowPathFilterSchema, TasFollowPathFlowFilterSchema, TasFollowPathTypeSchema, TasGraphSchema, TasGroupingAlertStatisticsSchema, TasGroupingInfoSchema, TasGroupingItemSchema, TasJoinFilterSchema, TasJoinTypeSchema, TasLayerFilterSchema, TasLegacyFilterSchema, TasLuceneFilterSchema, TasNotFilterSchema, TasOrFilterSchema, TasOrderSchema, TasProjectionFilterSchema, TasQuerySchema, TasServiceFilterSchema, TasStatusFilterSchema, TasStoreChangeSchema, TasStoreGraphInputSchema, TasStoreGraphResponseSchema, TasTakeEdgesFilterSchema, TasTakeFlowsFilterSchema, TasTakeVerticesFilterSchema, TasTraverseFilterSchema, TasVariableFilterSchema, TasVariableSchema, TasVertexIdFilterSchema, TasVertexSchema, TasViewSchema, Trace, TraversalEdgeFilterSchema, TraversalVertexFilterSchema, TraverseCollectSchema, TraverseDirectionSchema, TraverseSchema, VertexMappingConfigurationModule, VertexService, VertexStateExternalIdSchema, VertexStateNumericIdSchema, VertexStateSchema, VertexStatusChanges, ags, agsresponse, apiTokenCreate, apiTokenDelete, apiTokenGet, apiTokenList, apiTokenUpdate, checkGet, composeMetricTypeBits, contactActivate, contactDelete, contactTestSend, contactsBlockDelete, contactsBlockPut, contactsConfirm, contactsCreate, contactsGet, contactsGetDetail, contactsReplaceNotificationsWith, contactsRequestConfirmationCode, contactsUpdate, convertLegacyConfiguration, createPostmanRequest, createServiceMonolith, decodeMetricTypeBits, escapeRegExp, example, excludedAttributes, folderAccessGet, folderDelete, folderGet, folderPost, folderUpdate, foldersList, getDataStoreSchema, getUserTokenSub, getUserTokenTid, getVertexAttributeValue, getVertexAttributeValueOrNull, hasVertexAttribute, inventorizePreview, inventorizeResponse, inventorySearchRequestBodyExample, inventorySearchResponseBody, isDataStoreSchemaType, isTenantToken, isUserToken, listDataStoreSchemaOps, locationsCreate, locationsDelete, locationsGet, locationsGetAll, locationsGetByType, locationsLeafGetFilter, locationsPost, logGet, logGetEvent, maintenanceDelete, maintenanceDeleteWindows, maintenanceFilter, maintenanceGet, maintenanceGetDetail, maintenanceGetWindows, maintenanceGetWindowsDetail, maintenanceUpdateWindowsDetail, maintenancesCreate, maintenancesImmediateDelete, maintenancesImmediatePut, maintenancesPostWindows, maintenancesUpdate, messageGet, messagesList, monitorActivate, monitorCreate, monitorDeactivate, monitorDelete, monitorGet, monitorGetAll, monitorUpdate, oauthClientTokensCreate, oauthClientTokensDelete, oauthClientTokensGet, oauthClientTokensList, oauthClientTokensUpdate, oauthCreateToken, oauthGetRefreshTokenList, oauthGetTokenList, oauthRefreshTokenDeleteId, oauthTokenCognateDelete, oauthTokenCognateDeleteCurrent, oauthTokenDelete, oauthTokenDeleteCurrent, parseFilter, sampleServiceDetailRequestBody, searchUniverse, serviceDetailResponseBody, settingsGet, settingsGetDetail, settingsUpdate, stationDelete, stationsAgentType, stationsCreate, stationsDeleteMaintenance, stationsGet, stationsGetAgents, stationsLatest, stationsList, stationsOnpremiseConnected, stationsOnpremiseConnectedAll, stationsOnpremiseList, stationsPutMaintenance, stationsUpdate, statistic, summarizeDataStoreSchema, tagsGetAll, timezonesList, toSliSaveRequest, userBlockDelete, userBlockPut, userDelete, userGet, userLockDelete, userPut, userSubaccountsGet, userSubaccountsPost, verifyAndDumpLegacyConfiguration, verifyAndDumpVersion3Configuration, verifyAndDumpVersion4Configuration, vertexMatchesFilters };
|
|
78093
78738
|
//# sourceMappingURL=index.esm.js.map
|