@aws-sdk/client-application-signals 3.933.0 → 3.935.0
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-cjs/index.js +75 -74
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +74 -0
- package/dist-es/models/errors.js +87 -0
- package/dist-es/models/models_0.js +1 -161
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +154 -0
- package/dist-types/models/errors.d.ts +89 -0
- package/dist-types/models/models_0.d.ts +1 -243
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +91 -0
- package/dist-types/ts3.4/models/errors.d.ts +49 -0
- package/dist-types/ts3.4/models/models_0.d.ts +12 -140
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
import {
|
|
2
|
+
ChangeEventType,
|
|
3
|
+
ConnectionType,
|
|
4
|
+
DurationUnit,
|
|
5
|
+
EvaluationType,
|
|
6
|
+
MetricSourceType,
|
|
7
|
+
ServiceLevelIndicatorComparisonOperator,
|
|
8
|
+
ServiceLevelIndicatorMetricType,
|
|
9
|
+
ServiceLevelObjectiveBudgetStatus,
|
|
10
|
+
Severity,
|
|
11
|
+
StandardUnit,
|
|
12
|
+
} from "./enums";
|
|
11
13
|
export interface BatchGetServiceLevelObjectiveBudgetReportInput {
|
|
12
14
|
Timestamp: Date | undefined;
|
|
13
15
|
SloIds: string[] | undefined;
|
|
@@ -18,27 +20,6 @@ export interface ServiceLevelObjectiveBudgetReportError {
|
|
|
18
20
|
ErrorCode: string | undefined;
|
|
19
21
|
ErrorMessage: string | undefined;
|
|
20
22
|
}
|
|
21
|
-
export declare const ServiceLevelObjectiveBudgetStatus: {
|
|
22
|
-
readonly BREACHED: "BREACHED";
|
|
23
|
-
readonly INSUFFICIENT_DATA: "INSUFFICIENT_DATA";
|
|
24
|
-
readonly OK: "OK";
|
|
25
|
-
readonly WARNING: "WARNING";
|
|
26
|
-
};
|
|
27
|
-
export type ServiceLevelObjectiveBudgetStatus =
|
|
28
|
-
(typeof ServiceLevelObjectiveBudgetStatus)[keyof typeof ServiceLevelObjectiveBudgetStatus];
|
|
29
|
-
export declare const EvaluationType: {
|
|
30
|
-
readonly PERIOD_BASED: "PeriodBased";
|
|
31
|
-
readonly REQUEST_BASED: "RequestBased";
|
|
32
|
-
};
|
|
33
|
-
export type EvaluationType =
|
|
34
|
-
(typeof EvaluationType)[keyof typeof EvaluationType];
|
|
35
|
-
export declare const DurationUnit: {
|
|
36
|
-
readonly DAY: "DAY";
|
|
37
|
-
readonly HOUR: "HOUR";
|
|
38
|
-
readonly MINUTE: "MINUTE";
|
|
39
|
-
readonly MONTH: "MONTH";
|
|
40
|
-
};
|
|
41
|
-
export type DurationUnit = (typeof DurationUnit)[keyof typeof DurationUnit];
|
|
42
23
|
export interface CalendarInterval {
|
|
43
24
|
StartTime: Date | undefined;
|
|
44
25
|
DurationUnit: DurationUnit | undefined;
|
|
@@ -79,24 +60,10 @@ export interface Goal {
|
|
|
79
60
|
AttainmentGoal?: number | undefined;
|
|
80
61
|
WarningThreshold?: number | undefined;
|
|
81
62
|
}
|
|
82
|
-
export declare const ServiceLevelIndicatorComparisonOperator: {
|
|
83
|
-
readonly GREATER_THAN: "GreaterThan";
|
|
84
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GreaterThanOrEqualTo";
|
|
85
|
-
readonly LESS_THAN: "LessThan";
|
|
86
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LessThanOrEqualTo";
|
|
87
|
-
};
|
|
88
|
-
export type ServiceLevelIndicatorComparisonOperator =
|
|
89
|
-
(typeof ServiceLevelIndicatorComparisonOperator)[keyof typeof ServiceLevelIndicatorComparisonOperator];
|
|
90
63
|
export interface DependencyConfig {
|
|
91
64
|
DependencyKeyAttributes: Record<string, string> | undefined;
|
|
92
65
|
DependencyOperationName: string | undefined;
|
|
93
66
|
}
|
|
94
|
-
export declare const ServiceLevelIndicatorMetricType: {
|
|
95
|
-
readonly AVAILABILITY: "AVAILABILITY";
|
|
96
|
-
readonly LATENCY: "LATENCY";
|
|
97
|
-
};
|
|
98
|
-
export type ServiceLevelIndicatorMetricType =
|
|
99
|
-
(typeof ServiceLevelIndicatorMetricType)[keyof typeof ServiceLevelIndicatorMetricType];
|
|
100
67
|
export interface Dimension {
|
|
101
68
|
Name: string | undefined;
|
|
102
69
|
Value: string | undefined;
|
|
@@ -106,36 +73,6 @@ export interface Metric {
|
|
|
106
73
|
MetricName?: string | undefined;
|
|
107
74
|
Dimensions?: Dimension[] | undefined;
|
|
108
75
|
}
|
|
109
|
-
export declare const StandardUnit: {
|
|
110
|
-
readonly BITS: "Bits";
|
|
111
|
-
readonly BITS_SECOND: "Bits/Second";
|
|
112
|
-
readonly BYTES: "Bytes";
|
|
113
|
-
readonly BYTES_SECOND: "Bytes/Second";
|
|
114
|
-
readonly COUNT: "Count";
|
|
115
|
-
readonly COUNT_SECOND: "Count/Second";
|
|
116
|
-
readonly GIGABITS: "Gigabits";
|
|
117
|
-
readonly GIGABITS_SECOND: "Gigabits/Second";
|
|
118
|
-
readonly GIGABYTES: "Gigabytes";
|
|
119
|
-
readonly GIGABYTES_SECOND: "Gigabytes/Second";
|
|
120
|
-
readonly KILOBITS: "Kilobits";
|
|
121
|
-
readonly KILOBITS_SECOND: "Kilobits/Second";
|
|
122
|
-
readonly KILOBYTES: "Kilobytes";
|
|
123
|
-
readonly KILOBYTES_SECOND: "Kilobytes/Second";
|
|
124
|
-
readonly MEGABITS: "Megabits";
|
|
125
|
-
readonly MEGABITS_SECOND: "Megabits/Second";
|
|
126
|
-
readonly MEGABYTES: "Megabytes";
|
|
127
|
-
readonly MEGABYTES_SECOND: "Megabytes/Second";
|
|
128
|
-
readonly MICROSECONDS: "Microseconds";
|
|
129
|
-
readonly MILLISECONDS: "Milliseconds";
|
|
130
|
-
readonly NONE: "None";
|
|
131
|
-
readonly PERCENT: "Percent";
|
|
132
|
-
readonly SECONDS: "Seconds";
|
|
133
|
-
readonly TERABITS: "Terabits";
|
|
134
|
-
readonly TERABITS_SECOND: "Terabits/Second";
|
|
135
|
-
readonly TERABYTES: "Terabytes";
|
|
136
|
-
readonly TERABYTES_SECOND: "Terabytes/Second";
|
|
137
|
-
};
|
|
138
|
-
export type StandardUnit = (typeof StandardUnit)[keyof typeof StandardUnit];
|
|
139
76
|
export interface MetricStat {
|
|
140
77
|
Metric: Metric | undefined;
|
|
141
78
|
Period: number | undefined;
|
|
@@ -223,21 +160,6 @@ export interface BatchGetServiceLevelObjectiveBudgetReportOutput {
|
|
|
223
160
|
Reports: ServiceLevelObjectiveBudgetReport[] | undefined;
|
|
224
161
|
Errors: ServiceLevelObjectiveBudgetReportError[] | undefined;
|
|
225
162
|
}
|
|
226
|
-
export declare class ThrottlingException extends __BaseException {
|
|
227
|
-
readonly name: "ThrottlingException";
|
|
228
|
-
readonly $fault: "client";
|
|
229
|
-
Message: string | undefined;
|
|
230
|
-
constructor(
|
|
231
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
232
|
-
);
|
|
233
|
-
}
|
|
234
|
-
export declare class ValidationException extends __BaseException {
|
|
235
|
-
readonly name: "ValidationException";
|
|
236
|
-
readonly $fault: "client";
|
|
237
|
-
constructor(
|
|
238
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
239
|
-
);
|
|
240
|
-
}
|
|
241
163
|
export interface RecurrenceRule {
|
|
242
164
|
Expression: string | undefined;
|
|
243
165
|
}
|
|
@@ -265,16 +187,6 @@ export interface BatchUpdateExclusionWindowsOutput {
|
|
|
265
187
|
SloIds: string[] | undefined;
|
|
266
188
|
Errors: BatchUpdateExclusionWindowsError[] | undefined;
|
|
267
189
|
}
|
|
268
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
269
|
-
readonly name: "ResourceNotFoundException";
|
|
270
|
-
readonly $fault: "client";
|
|
271
|
-
ResourceType: string | undefined;
|
|
272
|
-
ResourceId: string | undefined;
|
|
273
|
-
Message: string | undefined;
|
|
274
|
-
constructor(
|
|
275
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
276
|
-
);
|
|
277
|
-
}
|
|
278
190
|
export interface DeleteGroupingConfigurationOutput {}
|
|
279
191
|
export interface GetServiceInput {
|
|
280
192
|
StartTime: Date | undefined;
|
|
@@ -387,25 +299,11 @@ export interface ListAuditFindingsInput {
|
|
|
387
299
|
NextToken?: string | undefined;
|
|
388
300
|
MaxResults?: number | undefined;
|
|
389
301
|
}
|
|
390
|
-
export declare const Severity: {
|
|
391
|
-
readonly CRITICAL: "CRITICAL";
|
|
392
|
-
readonly HIGH: "HIGH";
|
|
393
|
-
readonly LOW: "LOW";
|
|
394
|
-
readonly MEDIUM: "MEDIUM";
|
|
395
|
-
readonly NONE: "NONE";
|
|
396
|
-
};
|
|
397
|
-
export type Severity = (typeof Severity)[keyof typeof Severity];
|
|
398
302
|
export interface AuditorResult {
|
|
399
303
|
Auditor?: string | undefined;
|
|
400
304
|
Description?: string | undefined;
|
|
401
305
|
Severity?: Severity | undefined;
|
|
402
306
|
}
|
|
403
|
-
export declare const ConnectionType: {
|
|
404
|
-
readonly DIRECT: "DIRECT";
|
|
405
|
-
readonly INDIRECT: "INDIRECT";
|
|
406
|
-
};
|
|
407
|
-
export type ConnectionType =
|
|
408
|
-
(typeof ConnectionType)[keyof typeof ConnectionType];
|
|
409
307
|
export interface Edge {
|
|
410
308
|
SourceNodeId?: string | undefined;
|
|
411
309
|
DestinationNodeId?: string | undefined;
|
|
@@ -552,11 +450,6 @@ export interface ListServiceStatesInput {
|
|
|
552
450
|
AwsAccountId?: string | undefined;
|
|
553
451
|
AttributeFilters?: AttributeFilter[] | undefined;
|
|
554
452
|
}
|
|
555
|
-
export declare const ChangeEventType: {
|
|
556
|
-
readonly DEPLOYMENT: "DEPLOYMENT";
|
|
557
|
-
};
|
|
558
|
-
export type ChangeEventType =
|
|
559
|
-
(typeof ChangeEventType)[keyof typeof ChangeEventType];
|
|
560
453
|
export interface ChangeEvent {
|
|
561
454
|
Timestamp: Date | undefined;
|
|
562
455
|
AccountId: string | undefined;
|
|
@@ -598,12 +491,6 @@ export interface GroupingConfiguration {
|
|
|
598
491
|
export interface PutGroupingConfigurationOutput {
|
|
599
492
|
GroupingConfiguration: GroupingConfiguration | undefined;
|
|
600
493
|
}
|
|
601
|
-
export declare class ConflictException extends __BaseException {
|
|
602
|
-
readonly name: "ConflictException";
|
|
603
|
-
readonly $fault: "client";
|
|
604
|
-
Message: string | undefined;
|
|
605
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
606
|
-
}
|
|
607
494
|
export interface BurnRateConfiguration {
|
|
608
495
|
LookBackWindowMinutes: number | undefined;
|
|
609
496
|
}
|
|
@@ -648,13 +535,6 @@ export interface CreateServiceLevelObjectiveInput {
|
|
|
648
535
|
Tags?: Tag[] | undefined;
|
|
649
536
|
BurnRateConfigurations?: BurnRateConfiguration[] | undefined;
|
|
650
537
|
}
|
|
651
|
-
export declare const MetricSourceType: {
|
|
652
|
-
readonly CLOUDWATCH_METRIC: "CloudWatchMetric";
|
|
653
|
-
readonly SERVICE_DEPENDENCY: "ServiceDependency";
|
|
654
|
-
readonly SERVICE_OPERATION: "ServiceOperation";
|
|
655
|
-
};
|
|
656
|
-
export type MetricSourceType =
|
|
657
|
-
(typeof MetricSourceType)[keyof typeof MetricSourceType];
|
|
658
538
|
export interface ServiceLevelObjective {
|
|
659
539
|
Arn: string | undefined;
|
|
660
540
|
Name: string | undefined;
|
|
@@ -671,14 +551,6 @@ export interface ServiceLevelObjective {
|
|
|
671
551
|
export interface CreateServiceLevelObjectiveOutput {
|
|
672
552
|
Slo: ServiceLevelObjective | undefined;
|
|
673
553
|
}
|
|
674
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
675
|
-
readonly name: "ServiceQuotaExceededException";
|
|
676
|
-
readonly $fault: "client";
|
|
677
|
-
Message: string | undefined;
|
|
678
|
-
constructor(
|
|
679
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
680
|
-
);
|
|
681
|
-
}
|
|
682
554
|
export interface DeleteServiceLevelObjectiveInput {
|
|
683
555
|
Id: string | undefined;
|
|
684
556
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-application-signals",
|
|
3
3
|
"description": "AWS SDK for JavaScript Application Signals Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-application-signals",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|