@dx-do/client 6.3.2 → 6.3.4
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 +497 -35
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +478 -36
- package/dist/index.esm.js.map +1 -1
- package/dist/src/index.d.ts +9 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/lib/model/datastore/nassql/operations.d.ts +28 -18
- package/dist/src/lib/model/datastore/nassql/operations.d.ts.map +1 -1
- package/dist/src/lib/model/datastore/nassql/query.d.ts +25 -15
- package/dist/src/lib/model/datastore/nassql/query.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/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 +2 -0
- package/dist/src/lib/services/service-monolith.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -29300,12 +29300,15 @@ const QueryFilterPredicateSpecSchema = z.union([
|
|
|
29300
29300
|
const QueryRangeSpecSchema = z.looseObject({
|
|
29301
29301
|
endTime: z
|
|
29302
29302
|
.number()
|
|
29303
|
-
.
|
|
29303
|
+
.optional()
|
|
29304
|
+
.describe('Absolute end time in ms since epoch; omit (or 0) for `now`'),
|
|
29304
29305
|
rangeSize: z
|
|
29305
29306
|
.number()
|
|
29307
|
+
.optional()
|
|
29306
29308
|
.describe('Window length in ms; `startTime = endTime - rangeSize`. Default 8 minutes'),
|
|
29307
29309
|
frequency: z
|
|
29308
29310
|
.number()
|
|
29311
|
+
.optional()
|
|
29309
29312
|
.describe('Initial NASS aggregation interval in ms; default 15s. Aggregator picked per metric type'),
|
|
29310
29313
|
});
|
|
29311
29314
|
/**
|
|
@@ -29956,6 +29959,41 @@ const QueryFromDataSpecSchema = z.looseObject({
|
|
|
29956
29959
|
queryRange: QueryRangeSpecSchema.optional().describe('Time-window to fetch; defaults to pipeline range'),
|
|
29957
29960
|
alias: z.string().optional().describe('Column namespace for output rows'),
|
|
29958
29961
|
});
|
|
29962
|
+
/**
|
|
29963
|
+
* `WQL` — source op that selects time-series via a single **WQL** expression
|
|
29964
|
+
* instead of a Metrics Metadata `querySpecifier`. Like `FROM`, it produces
|
|
29965
|
+
* data rows and is typically the first op in the pipeline.
|
|
29966
|
+
*
|
|
29967
|
+
* The `wql` string is parsed server-side (ANTLR `DXQueryCompiler`); we treat
|
|
29968
|
+
* it as opaque here — no client-side grammar validation. Grammar:
|
|
29969
|
+
*
|
|
29970
|
+
* `ts(<metric-name>[, <predicates>])`
|
|
29971
|
+
*
|
|
29972
|
+
* `<metric-name>` may be quoted or unquoted. `<predicates>` combine
|
|
29973
|
+
* `attr=value` terms with `and` / `or` / `not`, grouping `( … )`, single- or
|
|
29974
|
+
* double-quoted values, and `*` wildcards. Example:
|
|
29975
|
+
*
|
|
29976
|
+
* `ts("CPU Time (ms)" and source="web-server-01" and not env="staging")`
|
|
29977
|
+
*
|
|
29978
|
+
* **Tenant gating**: requires the `DXDASHBOARDS_WQL_FEATURE` toggle; tenants
|
|
29979
|
+
* without it return an error at run time.
|
|
29980
|
+
*/
|
|
29981
|
+
const QueryWqlSpecSchema = z.looseObject({
|
|
29982
|
+
op: z.literal('WQL'),
|
|
29983
|
+
wql: z
|
|
29984
|
+
.string()
|
|
29985
|
+
.min(1)
|
|
29986
|
+
.describe('WQL expression selecting time-series. Grammar: `ts(<metric-name>[, <predicates>])` — name quoted or unquoted; predicates combine `attr=value` with `and`/`or`/`not`, grouping `( )`, quoted values, and `*` wildcards. E.g. `ts("CPU Time (ms)" and source="web-server-01")`. Server-parsed (ANTLR); required and non-empty.'),
|
|
29987
|
+
clamp: z
|
|
29988
|
+
.union([z.number(), z.string()])
|
|
29989
|
+
.optional()
|
|
29990
|
+
.describe('Cap on results; `0` = unlimited (default). Semantically an int, but the platform emits it on the wire as a numeric string (e.g. `"10000"`) — both forms accepted.'),
|
|
29991
|
+
useAttributes: z
|
|
29992
|
+
.boolean()
|
|
29993
|
+
.optional()
|
|
29994
|
+
.describe('When true, use metadata attributes in the WQL metadata query; omit to fall back to the tenant config default (`isMetadataQueryUsingAttributes`).'),
|
|
29995
|
+
queryRange: QueryRangeSpecSchema.optional().describe('Time-window spec; defaults to the last 8 minutes ending now'),
|
|
29996
|
+
});
|
|
29959
29997
|
/**
|
|
29960
29998
|
* `JOIN_METADATA` — for each upstream row, look up zero or one
|
|
29961
29999
|
* `MetricDescriptor` by the external ID in `externalIdColumn` and
|
|
@@ -30109,6 +30147,7 @@ const QueryFunctionSpecSchema = z.discriminatedUnion('op', [
|
|
|
30109
30147
|
QueryFromMetadataSpecSchema,
|
|
30110
30148
|
QueryFromTopologySpecSchema,
|
|
30111
30149
|
QueryFromDataSpecSchema,
|
|
30150
|
+
QueryWqlSpecSchema,
|
|
30112
30151
|
QueryJoinMetadataSpecSchema,
|
|
30113
30152
|
QueryJoinTopologySpecSchema,
|
|
30114
30153
|
QueryLogSpecSchema,
|
|
@@ -45872,6 +45911,308 @@ var LogQuery;
|
|
|
45872
45911
|
LogQuery.createLogQueryRequestBody = createLogQueryRequestBody;
|
|
45873
45912
|
})(LogQuery || (LogQuery = {}));
|
|
45874
45913
|
|
|
45914
|
+
/**
|
|
45915
|
+
* One leaf match condition inside a maintenance target filter, e.g.
|
|
45916
|
+
* `{ field: "alarm_name", condition: "starts_with", value: "Rabbit" }`.
|
|
45917
|
+
*/
|
|
45918
|
+
const MaintenanceFilterLeafSchema = z.looseObject({
|
|
45919
|
+
field: z.string().describe('Wire field to match, e.g. "agent", "type", "alarm_name", "name"'),
|
|
45920
|
+
fieldDescription: z
|
|
45921
|
+
.string()
|
|
45922
|
+
.optional()
|
|
45923
|
+
.describe('Human label for the field, e.g. "Agent", "Type", "Alert Name"'),
|
|
45924
|
+
condition: z
|
|
45925
|
+
.string()
|
|
45926
|
+
.describe('Match operator: "regex", "equals", "contains", "starts_with", "ends_with"'),
|
|
45927
|
+
value: z.string().describe('Value to match against the field'),
|
|
45928
|
+
});
|
|
45929
|
+
/**
|
|
45930
|
+
* A maintenance target filter — the nested `and(or(leaf…))` tree shared by
|
|
45931
|
+
* every `*Filter` field on a maintenance schedule (serviceFilter, agentFilter,
|
|
45932
|
+
* deviceFilter, groupFilter, metricPathFilter). Outer AND of inner ORs of leaves.
|
|
45933
|
+
*/
|
|
45934
|
+
const MaintenanceFilterSchema = z.looseObject({
|
|
45935
|
+
and: z.looseObject({
|
|
45936
|
+
expressions: z
|
|
45937
|
+
.array(z.looseObject({
|
|
45938
|
+
or: z.looseObject({
|
|
45939
|
+
expressions: z.array(MaintenanceFilterLeafSchema),
|
|
45940
|
+
}),
|
|
45941
|
+
}))
|
|
45942
|
+
.describe('AND-ed groups; each group is an OR of leaf conditions'),
|
|
45943
|
+
}),
|
|
45944
|
+
});
|
|
45945
|
+
/**
|
|
45946
|
+
* Builds a single-leaf {@link MaintenanceFilter} (the common case: one match
|
|
45947
|
+
* condition wrapped in the required `and(or(…))` envelope). Pass more leaves to
|
|
45948
|
+
* OR them together within the single AND group.
|
|
45949
|
+
*/
|
|
45950
|
+
function maintenanceFilter(...leaves) {
|
|
45951
|
+
return { and: { expressions: [{ or: { expressions: leaves } }] } };
|
|
45952
|
+
}
|
|
45953
|
+
|
|
45954
|
+
/** CI type of a maintenance target member. */
|
|
45955
|
+
const MaintenanceMemberTypeSchema = z
|
|
45956
|
+
.enum(['SERVICE', 'Agent', 'Device', 'Group', 'Interface', 'Application'])
|
|
45957
|
+
.describe('Configuration-item type of the member');
|
|
45958
|
+
/** Source product a maintenance member originates from. */
|
|
45959
|
+
const MaintenanceMemberSourceSchema = z
|
|
45960
|
+
.enum(['OI', 'APM', 'UIM', 'SPECTRUM', 'CAPM', 'CUSTOM', 'NFA', 'ADA'])
|
|
45961
|
+
.describe('Source product of the member');
|
|
45962
|
+
/**
|
|
45963
|
+
* An explicit maintenance target member (as opposed to a `*Filter`). For a
|
|
45964
|
+
* service this is `{ id: <service externalId>, name, type: "SERVICE",
|
|
45965
|
+
* source: "OI", parent: "Y" }`.
|
|
45966
|
+
*/
|
|
45967
|
+
const MaintenanceMemberSchema = z.looseObject({
|
|
45968
|
+
id: z
|
|
45969
|
+
.string()
|
|
45970
|
+
.describe('Resource identifier; for services this is the externalId (SA:<cohort>:<uuid>)'),
|
|
45971
|
+
name: z.string().describe('Display name of the member'),
|
|
45972
|
+
type: MaintenanceMemberTypeSchema,
|
|
45973
|
+
source: MaintenanceMemberSourceSchema.optional(),
|
|
45974
|
+
parent: z
|
|
45975
|
+
.string()
|
|
45976
|
+
.optional()
|
|
45977
|
+
.describe('"Y" when this member is a parent/root (services)'),
|
|
45978
|
+
ciUniqueId: z.string().optional().describe('CI unique id, when applicable'),
|
|
45979
|
+
});
|
|
45980
|
+
/** A member to exclude from an otherwise-matched maintenance target set. */
|
|
45981
|
+
const MaintenanceExcludedMemberSchema = z.looseObject({
|
|
45982
|
+
id: z.string().describe('Excluded member id'),
|
|
45983
|
+
name: z.string().optional().describe('Excluded member name'),
|
|
45984
|
+
type: z.string().optional().describe('CI type of the excluded member'),
|
|
45985
|
+
});
|
|
45986
|
+
|
|
45987
|
+
/** Recurrence pattern code used in the **create** schedule body. */
|
|
45988
|
+
const RecurrencePattern = {
|
|
45989
|
+
Once: 1,
|
|
45990
|
+
Daily: 2,
|
|
45991
|
+
Weekly: 3,
|
|
45992
|
+
Monthly: 4,
|
|
45993
|
+
Yearly: 5,
|
|
45994
|
+
};
|
|
45995
|
+
/**
|
|
45996
|
+
* The `schedule` object of a maintenance create/preview request.
|
|
45997
|
+
*
|
|
45998
|
+
* Note the create-side encoding (differs from search/detail responses):
|
|
45999
|
+
* `recurrencePattern` is numeric (1–5), `startTime`/`endTime` are wall-clock
|
|
46000
|
+
* strings `"YYYY-M-D H:M:S"` interpreted in `timeZone`, and `duration` is minutes.
|
|
46001
|
+
*/
|
|
46002
|
+
const MaintenanceScheduleSchema = z.looseObject({
|
|
46003
|
+
startTime: z
|
|
46004
|
+
.string()
|
|
46005
|
+
.describe('Wall-clock start "YYYY-M-D H:M:S" interpreted in timeZone, e.g. "2026-6-27 6:47:0"'),
|
|
46006
|
+
duration: z.number().describe('Window length in minutes'),
|
|
46007
|
+
endTime: z
|
|
46008
|
+
.string()
|
|
46009
|
+
.nullable()
|
|
46010
|
+
.optional()
|
|
46011
|
+
.describe('Wall-clock end; null/absent = run forever'),
|
|
46012
|
+
timeZone: z.string().describe('IANA timezone, e.g. "America/Los_Angeles"'),
|
|
46013
|
+
recurrencePattern: z
|
|
46014
|
+
.number()
|
|
46015
|
+
.int()
|
|
46016
|
+
.describe('1 Once · 2 Daily · 3 Weekly · 4 Monthly · 5 Yearly'),
|
|
46017
|
+
recurrencePeriod: z
|
|
46018
|
+
.number()
|
|
46019
|
+
.int()
|
|
46020
|
+
.optional()
|
|
46021
|
+
.describe('Repeat every N (daily: N days; monthly: N months)'),
|
|
46022
|
+
recurrenceDaysOfTheWeek: z
|
|
46023
|
+
.string()
|
|
46024
|
+
.optional()
|
|
46025
|
+
.describe('Weekly days, comma-separated 1..7 where 1=Sun..7=Sat, e.g. "2,3"'),
|
|
46026
|
+
recurrenceDayOfTheMonth: z
|
|
46027
|
+
.string()
|
|
46028
|
+
.optional()
|
|
46029
|
+
.describe('Monthly day-of-month (1..31) as a string'),
|
|
46030
|
+
recurrenceInstance: z
|
|
46031
|
+
.number()
|
|
46032
|
+
.int()
|
|
46033
|
+
.optional()
|
|
46034
|
+
.describe('Monthly ordinal week 1..5 (first..last) for "4th Tuesday" style'),
|
|
46035
|
+
});
|
|
46036
|
+
|
|
46037
|
+
/**
|
|
46038
|
+
* Unified request body for `POST /oi/v2/api/maintenance` (create). A single
|
|
46039
|
+
* endpoint covers all target types — the per-target CLI commands each populate
|
|
46040
|
+
* exactly one targeting mechanism (members, or one of the `*Filter`s).
|
|
46041
|
+
*/
|
|
46042
|
+
const MaintenanceCreateRequestSchema = z.looseObject({
|
|
46043
|
+
name: z.string().describe('Schedule name; must be unique per tenant'),
|
|
46044
|
+
description: z.string().optional().describe('Free-text description'),
|
|
46045
|
+
schedule: MaintenanceScheduleSchema,
|
|
46046
|
+
// ----- targeting (combine as needed; commands set one) -----
|
|
46047
|
+
members: z
|
|
46048
|
+
.array(MaintenanceMemberSchema)
|
|
46049
|
+
.optional()
|
|
46050
|
+
.describe('Explicit target CIs (services use this, with externalId ids)'),
|
|
46051
|
+
excludedMembers: z
|
|
46052
|
+
.array(MaintenanceExcludedMemberSchema)
|
|
46053
|
+
.optional()
|
|
46054
|
+
.describe('CIs to exclude from an otherwise-matched set'),
|
|
46055
|
+
serviceFilter: MaintenanceFilterSchema.optional().describe('Filter-based service targeting'),
|
|
46056
|
+
agentFilter: MaintenanceFilterSchema.optional().describe('Agent targeting (regex on field "agent")'),
|
|
46057
|
+
deviceFilter: MaintenanceFilterSchema.optional().describe('Device/entity targeting'),
|
|
46058
|
+
groupFilter: MaintenanceFilterSchema.optional().describe('Group targeting'),
|
|
46059
|
+
metricPathFilter: MaintenanceFilterSchema.optional().describe('Raw-alarm targeting (on field "alarm_name")'),
|
|
46060
|
+
includeSubservices: z
|
|
46061
|
+
.boolean()
|
|
46062
|
+
.optional()
|
|
46063
|
+
.describe('Include child services of targeted services'),
|
|
46064
|
+
selectAllServices: z.boolean().optional(),
|
|
46065
|
+
selectAllAgents: z.boolean().optional(),
|
|
46066
|
+
selectAllGroups: z.boolean().optional(),
|
|
46067
|
+
selectAllDevices: z.boolean().optional(),
|
|
46068
|
+
// ----- behavior -----
|
|
46069
|
+
muteOldAlarms: z
|
|
46070
|
+
.boolean()
|
|
46071
|
+
.optional()
|
|
46072
|
+
.describe('Mute alarms that were already open when the window starts'),
|
|
46073
|
+
alarmsExitOnEnd: z
|
|
46074
|
+
.boolean()
|
|
46075
|
+
.optional()
|
|
46076
|
+
.describe('Clear alarm state when the window ends'),
|
|
46077
|
+
restrictSLOOnMaintenance: z
|
|
46078
|
+
.boolean()
|
|
46079
|
+
.optional()
|
|
46080
|
+
.describe('Exclude the window from SLO calculations'),
|
|
46081
|
+
forceStop: z.boolean().optional(),
|
|
46082
|
+
});
|
|
46083
|
+
/** Response from `POST /oi/v2/api/maintenance`. */
|
|
46084
|
+
const MaintenanceCreateResponseSchema = z.looseObject({
|
|
46085
|
+
message: z.string().describe('Confirmation message'),
|
|
46086
|
+
scheduleId: z.string().describe('UUID of the created schedule'),
|
|
46087
|
+
});
|
|
46088
|
+
|
|
46089
|
+
/** Request body for `POST /oi/v2/api/maintenance/delete?forceStop=…` (bulk). */
|
|
46090
|
+
const MaintenanceDeleteRequestSchema = z.looseObject({
|
|
46091
|
+
scheduleIds: z
|
|
46092
|
+
.array(z.string())
|
|
46093
|
+
.describe('Schedule ids to delete (bulk-capable)'),
|
|
46094
|
+
});
|
|
46095
|
+
/**
|
|
46096
|
+
* Response from the bulk delete endpoint (modeled loosely). Named with a
|
|
46097
|
+
* `BulkDelete` prefix to avoid clashing with the ASM client's generated
|
|
46098
|
+
* `MaintenanceDeleteResponse` in the flattened `@dx-do/client` barrel.
|
|
46099
|
+
*/
|
|
46100
|
+
const MaintenanceBulkDeleteResponseSchema = z.looseObject({
|
|
46101
|
+
message: z.union([z.string(), z.array(z.string())]).optional(),
|
|
46102
|
+
status: z.string().optional(),
|
|
46103
|
+
});
|
|
46104
|
+
|
|
46105
|
+
/**
|
|
46106
|
+
* A single schedule from `GET /oi/v2/api/maintenance/{id}` (detail). Read-side
|
|
46107
|
+
* encoding: `recurrencePattern` numeric, `startTime` a wall-clock string with
|
|
46108
|
+
* `startTimeInMillis`/`endTimeInMillis` epoch companions, plus whichever
|
|
46109
|
+
* `*Filter`/`members` targeting it was created with.
|
|
46110
|
+
*/
|
|
46111
|
+
const MaintenanceDetailSchema = z.looseObject({
|
|
46112
|
+
scheduleId: z.string(),
|
|
46113
|
+
name: z.string().nullable().optional().describe('null for a non-existent id (the GET echoes the id with null fields)'),
|
|
46114
|
+
description: z.string().nullable().optional(),
|
|
46115
|
+
status: z.string().optional().describe('e.g. "SCHEDULED"'),
|
|
46116
|
+
startTime: z.string().optional().describe('Wall-clock start, e.g. "2026-12-25 00:00:00.0"'),
|
|
46117
|
+
startTimeInMillis: z.number().optional(),
|
|
46118
|
+
endTimeInMillis: z.number().nullable().optional(),
|
|
46119
|
+
duration: z.number().optional().describe('Minutes'),
|
|
46120
|
+
timeZone: z.string().optional(),
|
|
46121
|
+
recurrencePattern: z
|
|
46122
|
+
.union([z.number(), z.string()])
|
|
46123
|
+
.optional()
|
|
46124
|
+
.describe('Numeric recurrence code on detail (1..5)'),
|
|
46125
|
+
recurrencePeriod: z.number().optional(),
|
|
46126
|
+
recurrenceDaysOfTheWeek: z.string().optional(),
|
|
46127
|
+
recurrenceDayOfTheMonth: z.string().optional(),
|
|
46128
|
+
recurrenceInstance: z.number().optional(),
|
|
46129
|
+
members: z.array(MaintenanceMemberSchema).optional(),
|
|
46130
|
+
excludedMembers: z.array(MaintenanceExcludedMemberSchema).optional(),
|
|
46131
|
+
serviceFilter: MaintenanceFilterSchema.nullable().optional(),
|
|
46132
|
+
agentFilter: MaintenanceFilterSchema.nullable().optional(),
|
|
46133
|
+
deviceFilter: MaintenanceFilterSchema.nullable().optional(),
|
|
46134
|
+
groupFilter: MaintenanceFilterSchema.nullable().optional(),
|
|
46135
|
+
metricPathFilter: MaintenanceFilterSchema.nullable().optional(),
|
|
46136
|
+
includeSubservices: z.boolean().optional(),
|
|
46137
|
+
muteOldAlarms: z.boolean().optional(),
|
|
46138
|
+
alarmsExitOnEnd: z.boolean().optional(),
|
|
46139
|
+
restrictSLOOnMaintenance: z.boolean().optional(),
|
|
46140
|
+
});
|
|
46141
|
+
|
|
46142
|
+
/**
|
|
46143
|
+
* Request body for `POST /oi/v2/api/maintenance/get-next-windows-preview` —
|
|
46144
|
+
* a (proposed or existing) schedule; the server returns its upcoming windows.
|
|
46145
|
+
*/
|
|
46146
|
+
const MaintenancePreviewRequestSchema = z.looseObject({
|
|
46147
|
+
name: z.string().optional(),
|
|
46148
|
+
description: z.string().optional(),
|
|
46149
|
+
schedule: MaintenanceScheduleSchema,
|
|
46150
|
+
});
|
|
46151
|
+
/**
|
|
46152
|
+
* Response from `get-next-windows-preview`: `startTime` is an array of upcoming
|
|
46153
|
+
* window-start wall-clock strings ("yyyy-MM-dd HH:mm:ss.S") in the schedule's
|
|
46154
|
+
* timezone; each window runs for `schedule.duration` minutes.
|
|
46155
|
+
*/
|
|
46156
|
+
const MaintenancePreviewResponseSchema = z.looseObject({
|
|
46157
|
+
scheduleId: z.string().nullable().optional(),
|
|
46158
|
+
startTime: z
|
|
46159
|
+
.array(z.string())
|
|
46160
|
+
.optional()
|
|
46161
|
+
.describe('Upcoming window start times (wall-clock, in the schedule timezone)'),
|
|
46162
|
+
});
|
|
46163
|
+
|
|
46164
|
+
/** Request body for `POST /oi/v2/api/maintenance/_search` (list). */
|
|
46165
|
+
const MaintenanceSearchRequestSchema = z.looseObject({
|
|
46166
|
+
pageNumber: z.number().int().describe('Zero-based page index'),
|
|
46167
|
+
pageSize: z.number().int().describe('Page size'),
|
|
46168
|
+
sortColDir: z
|
|
46169
|
+
.array(z.string())
|
|
46170
|
+
.optional()
|
|
46171
|
+
.describe('Sort spec, e.g. ["creationDate;desc"]'),
|
|
46172
|
+
includeCompletedSchedules: z
|
|
46173
|
+
.boolean()
|
|
46174
|
+
.optional()
|
|
46175
|
+
.describe('Include schedules whose windows have all passed'),
|
|
46176
|
+
customFilter: z.array(z.unknown()).optional().describe('Optional server-side filters'),
|
|
46177
|
+
});
|
|
46178
|
+
/**
|
|
46179
|
+
* One schedule as summarized by `_search`. Note the response-side encoding:
|
|
46180
|
+
* `recurrencePattern` is a label string ("Daily"), `recurrencePattern_1` the
|
|
46181
|
+
* numeric code, and times are epoch ms (contrast the create body).
|
|
46182
|
+
*/
|
|
46183
|
+
const MaintenanceSummarySchema = z.looseObject({
|
|
46184
|
+
scheduleId: z.string(),
|
|
46185
|
+
scheduleName: z.string().describe('Schedule name (may be padded with spaces)'),
|
|
46186
|
+
description: z.string().nullable().optional(),
|
|
46187
|
+
startTime: z.number().optional().describe('Start, epoch ms'),
|
|
46188
|
+
duration: z.number().optional().describe('Window length, minutes'),
|
|
46189
|
+
recurrencePattern: z.string().optional().describe('Recurrence label, e.g. "Daily"'),
|
|
46190
|
+
recurrencePattern_1: z.number().optional().describe('Numeric recurrence code (1..5)'),
|
|
46191
|
+
recurrencePeriod: z.number().optional(),
|
|
46192
|
+
timezone: z.string().optional(),
|
|
46193
|
+
status: z.string().optional().describe('e.g. "SCHEDULED"'),
|
|
46194
|
+
createdBy: z.string().nullable().optional(),
|
|
46195
|
+
creationDate: z.number().optional(),
|
|
46196
|
+
lastUpdatedBy: z.string().nullable().optional(),
|
|
46197
|
+
lastUpdateDate: z.number().optional(),
|
|
46198
|
+
windowTime: z
|
|
46199
|
+
.looseObject({
|
|
46200
|
+
startTime: z.number().optional(),
|
|
46201
|
+
endTime: z.number().optional(),
|
|
46202
|
+
})
|
|
46203
|
+
.optional()
|
|
46204
|
+
.describe('Next/active window bounds, epoch ms'),
|
|
46205
|
+
deleted: z.string().optional().describe('"Y"/"N"'),
|
|
46206
|
+
});
|
|
46207
|
+
/** Response from `POST /oi/v2/api/maintenance/_search`. */
|
|
46208
|
+
const MaintenanceSearchResponseSchema = z.looseObject({
|
|
46209
|
+
schedules: z.array(MaintenanceSummarySchema).describe('The matched schedules'),
|
|
46210
|
+
totalCount: z.number().optional(),
|
|
46211
|
+
scheduleCount: z.number().optional(),
|
|
46212
|
+
pageNumber: z.number().optional(),
|
|
46213
|
+
pageSize: z.number().optional(),
|
|
46214
|
+
});
|
|
46215
|
+
|
|
45875
46216
|
var NASS;
|
|
45876
46217
|
(function (NASS) {
|
|
45877
46218
|
function getAgentMetricCountQueryBody(agent) {
|
|
@@ -66989,46 +67330,55 @@ const coerce$1 = (version, options) => {
|
|
|
66989
67330
|
};
|
|
66990
67331
|
var coerce_1 = coerce$1;
|
|
66991
67332
|
|
|
66992
|
-
|
|
66993
|
-
|
|
66994
|
-
this.max = 1000;
|
|
66995
|
-
this.map = new Map();
|
|
66996
|
-
}
|
|
67333
|
+
var lrucache;
|
|
67334
|
+
var hasRequiredLrucache;
|
|
66997
67335
|
|
|
66998
|
-
|
|
66999
|
-
|
|
67000
|
-
|
|
67001
|
-
return undefined
|
|
67002
|
-
} else {
|
|
67003
|
-
// Remove the key from the map and add it to the end
|
|
67004
|
-
this.map.delete(key);
|
|
67005
|
-
this.map.set(key, value);
|
|
67006
|
-
return value
|
|
67007
|
-
}
|
|
67008
|
-
}
|
|
67336
|
+
function requireLrucache () {
|
|
67337
|
+
if (hasRequiredLrucache) return lrucache;
|
|
67338
|
+
hasRequiredLrucache = 1;
|
|
67009
67339
|
|
|
67010
|
-
|
|
67011
|
-
|
|
67012
|
-
|
|
67340
|
+
class LRUCache {
|
|
67341
|
+
constructor () {
|
|
67342
|
+
this.max = 1000;
|
|
67343
|
+
this.map = new Map();
|
|
67344
|
+
}
|
|
67013
67345
|
|
|
67014
|
-
|
|
67015
|
-
|
|
67346
|
+
get (key) {
|
|
67347
|
+
const value = this.map.get(key);
|
|
67348
|
+
if (value === undefined) {
|
|
67349
|
+
return undefined
|
|
67350
|
+
} else {
|
|
67351
|
+
// Remove the key from the map and add it to the end
|
|
67352
|
+
this.map.delete(key);
|
|
67353
|
+
this.map.set(key, value);
|
|
67354
|
+
return value
|
|
67355
|
+
}
|
|
67356
|
+
}
|
|
67016
67357
|
|
|
67017
|
-
|
|
67018
|
-
|
|
67019
|
-
|
|
67020
|
-
const firstKey = this.map.keys().next().value;
|
|
67021
|
-
this.delete(firstKey);
|
|
67022
|
-
}
|
|
67358
|
+
delete (key) {
|
|
67359
|
+
return this.map.delete(key)
|
|
67360
|
+
}
|
|
67023
67361
|
|
|
67024
|
-
|
|
67025
|
-
|
|
67362
|
+
set (key, value) {
|
|
67363
|
+
const deleted = this.delete(key);
|
|
67026
67364
|
|
|
67027
|
-
|
|
67028
|
-
|
|
67029
|
-
|
|
67365
|
+
if (!deleted && value !== undefined) {
|
|
67366
|
+
// If cache is full, delete the least recently used item
|
|
67367
|
+
if (this.map.size >= this.max) {
|
|
67368
|
+
const firstKey = this.map.keys().next().value;
|
|
67369
|
+
this.delete(firstKey);
|
|
67370
|
+
}
|
|
67030
67371
|
|
|
67031
|
-
|
|
67372
|
+
this.map.set(key, value);
|
|
67373
|
+
}
|
|
67374
|
+
|
|
67375
|
+
return this
|
|
67376
|
+
}
|
|
67377
|
+
}
|
|
67378
|
+
|
|
67379
|
+
lrucache = LRUCache;
|
|
67380
|
+
return lrucache;
|
|
67381
|
+
}
|
|
67032
67382
|
|
|
67033
67383
|
var range;
|
|
67034
67384
|
var hasRequiredRange;
|
|
@@ -67251,7 +67601,7 @@ function requireRange () {
|
|
|
67251
67601
|
|
|
67252
67602
|
range = Range;
|
|
67253
67603
|
|
|
67254
|
-
const LRU =
|
|
67604
|
+
const LRU = requireLrucache();
|
|
67255
67605
|
const cache = new LRU();
|
|
67256
67606
|
|
|
67257
67607
|
const parseOptions = parseOptions_1;
|
|
@@ -74313,6 +74663,97 @@ class LogsService {
|
|
|
74313
74663
|
}
|
|
74314
74664
|
}
|
|
74315
74665
|
|
|
74666
|
+
/**
|
|
74667
|
+
* Service for DXO2 maintenance windows (schedules) under
|
|
74668
|
+
* `oi/v2/api/maintenance/*`. A maintenance window suppresses alarms/SLOs for
|
|
74669
|
+
* its targets (services, agents, devices/entities, or raw alarms) over a fixed
|
|
74670
|
+
* or recurring schedule. Backs the `maintenance` CLI command group.
|
|
74671
|
+
*
|
|
74672
|
+
* Uses `oiPost`/`oiGet` (OI namespace). Requests are validated with `parse`
|
|
74673
|
+
* (throws); responses with `safeParse` (warn + return raw on mismatch).
|
|
74674
|
+
*/
|
|
74675
|
+
class MaintenanceService {
|
|
74676
|
+
dxSaasService;
|
|
74677
|
+
log;
|
|
74678
|
+
constructor(dxSaasService, log) {
|
|
74679
|
+
this.dxSaasService = dxSaasService;
|
|
74680
|
+
this.log = log;
|
|
74681
|
+
}
|
|
74682
|
+
/** Lists maintenance schedules via `POST …/_search`. Defaults to one large page, newest first. */
|
|
74683
|
+
async search(request) {
|
|
74684
|
+
const body = {
|
|
74685
|
+
pageNumber: 0,
|
|
74686
|
+
pageSize: 1000,
|
|
74687
|
+
sortColDir: ['creationDate;desc'],
|
|
74688
|
+
includeCompletedSchedules: false,
|
|
74689
|
+
customFilter: [],
|
|
74690
|
+
...request,
|
|
74691
|
+
};
|
|
74692
|
+
const raw = await this.dxSaasService.oiPost('oi/v2/api/maintenance/_search', body);
|
|
74693
|
+
const result = MaintenanceSearchResponseSchema.safeParse(raw);
|
|
74694
|
+
if (!result.success) {
|
|
74695
|
+
this.log.warn('MaintenanceSearchResponse validation warning:', result.error.message);
|
|
74696
|
+
}
|
|
74697
|
+
return raw;
|
|
74698
|
+
}
|
|
74699
|
+
/** Retrieves a single schedule via `GET …/{id}`. */
|
|
74700
|
+
async get(scheduleId) {
|
|
74701
|
+
const raw = await this.dxSaasService.oiGet(`oi/v2/api/maintenance/${scheduleId}`);
|
|
74702
|
+
const result = MaintenanceDetailSchema.safeParse(raw);
|
|
74703
|
+
if (!result.success) {
|
|
74704
|
+
this.log.warn('MaintenanceDetail validation warning:', result.error.message);
|
|
74705
|
+
}
|
|
74706
|
+
return raw;
|
|
74707
|
+
}
|
|
74708
|
+
/**
|
|
74709
|
+
* Previews the upcoming windows for a (proposed or existing) schedule via
|
|
74710
|
+
* `POST …/get-next-windows-preview`.
|
|
74711
|
+
*
|
|
74712
|
+
* @throws ZodError if the request fails schema validation.
|
|
74713
|
+
*/
|
|
74714
|
+
async getNextWindows(request) {
|
|
74715
|
+
MaintenancePreviewRequestSchema.parse(request);
|
|
74716
|
+
return this.dxSaasService.oiPost('oi/v2/api/maintenance/get-next-windows-preview', request);
|
|
74717
|
+
}
|
|
74718
|
+
/**
|
|
74719
|
+
* Checks a schedule name via `GET …/validateScheduleName`. Returns the
|
|
74720
|
+
* server's bare boolean (semantics confirmed empirically by the caller).
|
|
74721
|
+
*/
|
|
74722
|
+
async validateName(name) {
|
|
74723
|
+
const raw = await this.dxSaasService.oiGet('oi/v2/api/maintenance/validateScheduleName', { scheduleName: name });
|
|
74724
|
+
const result = z.boolean().safeParse(raw);
|
|
74725
|
+
if (!result.success) {
|
|
74726
|
+
this.log.warn('validateScheduleName returned a non-boolean:', JSON.stringify(raw));
|
|
74727
|
+
}
|
|
74728
|
+
return Boolean(raw);
|
|
74729
|
+
}
|
|
74730
|
+
/**
|
|
74731
|
+
* Creates a maintenance schedule via `POST …`.
|
|
74732
|
+
*
|
|
74733
|
+
* @throws ZodError if the request fails schema validation.
|
|
74734
|
+
*/
|
|
74735
|
+
async create(body) {
|
|
74736
|
+
MaintenanceCreateRequestSchema.parse(body);
|
|
74737
|
+
const raw = await this.dxSaasService.oiPost('oi/v2/api/maintenance', body);
|
|
74738
|
+
const result = MaintenanceCreateResponseSchema.safeParse(raw);
|
|
74739
|
+
if (!result.success) {
|
|
74740
|
+
this.log.warn('MaintenanceCreateResponse validation warning:', result.error.message);
|
|
74741
|
+
}
|
|
74742
|
+
return raw;
|
|
74743
|
+
}
|
|
74744
|
+
/**
|
|
74745
|
+
* Deletes one or more schedules via `POST …/delete?forceStop=…` (bulk).
|
|
74746
|
+
*/
|
|
74747
|
+
async delete(scheduleIds, options = {}) {
|
|
74748
|
+
const raw = await this.dxSaasService.oiPost('oi/v2/api/maintenance/delete', { scheduleIds }, { forceStop: options.forceStop ?? true });
|
|
74749
|
+
const result = MaintenanceBulkDeleteResponseSchema.safeParse(raw);
|
|
74750
|
+
if (!result.success) {
|
|
74751
|
+
this.log.warn('MaintenanceBulkDeleteResponse validation warning:', result.error.message);
|
|
74752
|
+
}
|
|
74753
|
+
return raw;
|
|
74754
|
+
}
|
|
74755
|
+
}
|
|
74756
|
+
|
|
74316
74757
|
/**
|
|
74317
74758
|
* Service for management modules (and their calculators): list, create, update,
|
|
74318
74759
|
* copy, import, delete, and query by ID.
|
|
@@ -78306,6 +78747,7 @@ function createServiceMonolith(dxDoConfiguration, log = new NullSimpleLog()) {
|
|
|
78306
78747
|
dxInventoryService: new InventoryService(dxSaaSService, dxNASSService, dxTASService, log),
|
|
78307
78748
|
dxJSExtensionService: new JsExtensionService(dxSaaSService),
|
|
78308
78749
|
dxLogsService: new LogsService(dxSaaSService),
|
|
78750
|
+
dxMaintenanceService: new MaintenanceService(dxSaaSService, log),
|
|
78309
78751
|
dxManagementModuleService: dxManagementModuleService,
|
|
78310
78752
|
dxMetricBatchService: new MetricBatchService(dxSaaSService),
|
|
78311
78753
|
dxMetricGroupingService: new MetricGroupingService(dxSaaSService, dxManagementModuleService),
|
|
@@ -78331,5 +78773,5 @@ function createServiceMonolith(dxDoConfiguration, log = new NullSimpleLog()) {
|
|
|
78331
78773
|
};
|
|
78332
78774
|
}
|
|
78333
78775
|
|
|
78334
|
-
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, 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, 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 };
|
|
78776
|
+
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 };
|
|
78335
78777
|
//# sourceMappingURL=index.esm.js.map
|