@aws-sdk/client-cloudwatch 3.1063.0 → 3.1065.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/README.md +21 -0
- package/dist-cjs/index.js +42 -0
- package/dist-cjs/models/errors.js +75 -30
- package/dist-cjs/schemas/schemas_0.js +77 -4
- package/dist-es/CloudWatch.js +6 -0
- package/dist-es/commands/AssociateDatasetKmsKeyCommand.js +16 -0
- package/dist-es/commands/DisassociateDatasetKmsKeyCommand.js +16 -0
- package/dist-es/commands/GetDatasetCommand.js +16 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/errors.js +68 -26
- package/dist-es/schemas/schemas_0.js +73 -1
- package/dist-types/CloudWatch.d.ts +21 -0
- package/dist-types/CloudWatchClient.d.ts +5 -2
- package/dist-types/commands/AssociateDatasetKmsKeyCommand.d.ts +161 -0
- package/dist-types/commands/DisassociateDatasetKmsKeyCommand.d.ts +105 -0
- package/dist-types/commands/GetDatasetCommand.d.ts +91 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/errors.d.ts +74 -23
- package/dist-types/models/models_0.d.ts +90 -0
- package/dist-types/schemas/schemas_0.d.ts +12 -0
- package/dist-types/ts3.4/CloudWatch.d.ts +51 -0
- package/dist-types/ts3.4/CloudWatchClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/AssociateDatasetKmsKeyCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DisassociateDatasetKmsKeyCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/errors.d.ts +40 -16
- package/dist-types/ts3.4/models/models_0.d.ts +17 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -0
- package/package.json +9 -9
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudWatchClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudWatchClient";
|
|
8
|
+
import {
|
|
9
|
+
AssociateDatasetKmsKeyInput,
|
|
10
|
+
AssociateDatasetKmsKeyOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface AssociateDatasetKmsKeyCommandInput
|
|
15
|
+
extends AssociateDatasetKmsKeyInput {}
|
|
16
|
+
export interface AssociateDatasetKmsKeyCommandOutput
|
|
17
|
+
extends AssociateDatasetKmsKeyOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const AssociateDatasetKmsKeyCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: AssociateDatasetKmsKeyCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
AssociateDatasetKmsKeyCommandInput,
|
|
24
|
+
AssociateDatasetKmsKeyCommandOutput,
|
|
25
|
+
CloudWatchClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: AssociateDatasetKmsKeyCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
AssociateDatasetKmsKeyCommandInput,
|
|
33
|
+
AssociateDatasetKmsKeyCommandOutput,
|
|
34
|
+
CloudWatchClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class AssociateDatasetKmsKeyCommand extends AssociateDatasetKmsKeyCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: AssociateDatasetKmsKeyInput;
|
|
46
|
+
output: {};
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: AssociateDatasetKmsKeyCommandInput;
|
|
50
|
+
output: AssociateDatasetKmsKeyCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudWatchClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudWatchClient";
|
|
8
|
+
import {
|
|
9
|
+
DisassociateDatasetKmsKeyInput,
|
|
10
|
+
DisassociateDatasetKmsKeyOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DisassociateDatasetKmsKeyCommandInput
|
|
15
|
+
extends DisassociateDatasetKmsKeyInput {}
|
|
16
|
+
export interface DisassociateDatasetKmsKeyCommandOutput
|
|
17
|
+
extends DisassociateDatasetKmsKeyOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DisassociateDatasetKmsKeyCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DisassociateDatasetKmsKeyCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
DisassociateDatasetKmsKeyCommandInput,
|
|
24
|
+
DisassociateDatasetKmsKeyCommandOutput,
|
|
25
|
+
CloudWatchClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DisassociateDatasetKmsKeyCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
DisassociateDatasetKmsKeyCommandInput,
|
|
33
|
+
DisassociateDatasetKmsKeyCommandOutput,
|
|
34
|
+
CloudWatchClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class DisassociateDatasetKmsKeyCommand extends DisassociateDatasetKmsKeyCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: DisassociateDatasetKmsKeyInput;
|
|
46
|
+
output: {};
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: DisassociateDatasetKmsKeyCommandInput;
|
|
50
|
+
output: DisassociateDatasetKmsKeyCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudWatchClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudWatchClient";
|
|
8
|
+
import { GetDatasetInput, GetDatasetOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetDatasetCommandInput extends GetDatasetInput {}
|
|
12
|
+
export interface GetDatasetCommandOutput
|
|
13
|
+
extends GetDatasetOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetDatasetCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetDatasetCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
GetDatasetCommandInput,
|
|
20
|
+
GetDatasetCommandOutput,
|
|
21
|
+
CloudWatchClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: GetDatasetCommandInput
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
GetDatasetCommandInput,
|
|
29
|
+
GetDatasetCommandOutput,
|
|
30
|
+
CloudWatchClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export declare class GetDatasetCommand extends GetDatasetCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: GetDatasetInput;
|
|
42
|
+
output: GetDatasetOutput;
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: GetDatasetCommandInput;
|
|
46
|
+
output: GetDatasetCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from "./AssociateDatasetKmsKeyCommand";
|
|
1
2
|
export * from "./DeleteAlarmMuteRuleCommand";
|
|
2
3
|
export * from "./DeleteAlarmsCommand";
|
|
3
4
|
export * from "./DeleteAnomalyDetectorCommand";
|
|
@@ -12,10 +13,12 @@ export * from "./DescribeAnomalyDetectorsCommand";
|
|
|
12
13
|
export * from "./DescribeInsightRulesCommand";
|
|
13
14
|
export * from "./DisableAlarmActionsCommand";
|
|
14
15
|
export * from "./DisableInsightRulesCommand";
|
|
16
|
+
export * from "./DisassociateDatasetKmsKeyCommand";
|
|
15
17
|
export * from "./EnableAlarmActionsCommand";
|
|
16
18
|
export * from "./EnableInsightRulesCommand";
|
|
17
19
|
export * from "./GetAlarmMuteRuleCommand";
|
|
18
20
|
export * from "./GetDashboardCommand";
|
|
21
|
+
export * from "./GetDatasetCommand";
|
|
19
22
|
export * from "./GetInsightRuleReportCommand";
|
|
20
23
|
export * from "./GetMetricDataCommand";
|
|
21
24
|
export * from "./GetMetricStatisticsCommand";
|
|
@@ -1,6 +1,46 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client";
|
|
2
2
|
import { CloudWatchServiceException as __BaseException } from "./CloudWatchServiceException";
|
|
3
3
|
import { DashboardValidationMessage } from "./models_0";
|
|
4
|
+
export declare class ConflictException extends __BaseException {
|
|
5
|
+
readonly name: "ConflictException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
Message?: string | undefined;
|
|
8
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
9
|
+
}
|
|
10
|
+
export declare class KmsAccessDeniedException extends __BaseException {
|
|
11
|
+
readonly name: "KmsAccessDeniedException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
Message: string | undefined;
|
|
14
|
+
constructor(
|
|
15
|
+
opts: __ExceptionOptionType<KmsAccessDeniedException, __BaseException>
|
|
16
|
+
);
|
|
17
|
+
}
|
|
18
|
+
export declare class KmsKeyDisabledException extends __BaseException {
|
|
19
|
+
readonly name: "KmsKeyDisabledException";
|
|
20
|
+
readonly $fault: "client";
|
|
21
|
+
Message: string | undefined;
|
|
22
|
+
constructor(
|
|
23
|
+
opts: __ExceptionOptionType<KmsKeyDisabledException, __BaseException>
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
export declare class KmsKeyNotFoundException extends __BaseException {
|
|
27
|
+
readonly name: "KmsKeyNotFoundException";
|
|
28
|
+
readonly $fault: "client";
|
|
29
|
+
Message: string | undefined;
|
|
30
|
+
constructor(
|
|
31
|
+
opts: __ExceptionOptionType<KmsKeyNotFoundException, __BaseException>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
35
|
+
readonly name: "ResourceNotFoundException";
|
|
36
|
+
readonly $fault: "client";
|
|
37
|
+
ResourceType?: string | undefined;
|
|
38
|
+
ResourceId?: string | undefined;
|
|
39
|
+
Message?: string | undefined;
|
|
40
|
+
constructor(
|
|
41
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
42
|
+
);
|
|
43
|
+
}
|
|
4
44
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
5
45
|
readonly name: "ConcurrentModificationException";
|
|
6
46
|
readonly $fault: "client";
|
|
@@ -12,12 +52,6 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
12
52
|
>
|
|
13
53
|
);
|
|
14
54
|
}
|
|
15
|
-
export declare class ConflictException extends __BaseException {
|
|
16
|
-
readonly name: "ConflictException";
|
|
17
|
-
readonly $fault: "client";
|
|
18
|
-
Message?: string | undefined;
|
|
19
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
20
|
-
}
|
|
21
55
|
export declare class DashboardInvalidInputError extends __BaseException {
|
|
22
56
|
readonly name: "DashboardInvalidInputError";
|
|
23
57
|
readonly $fault: "client";
|
|
@@ -73,16 +107,6 @@ export declare class MissingRequiredParameterException extends __BaseException {
|
|
|
73
107
|
>
|
|
74
108
|
);
|
|
75
109
|
}
|
|
76
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
77
|
-
readonly name: "ResourceNotFoundException";
|
|
78
|
-
readonly $fault: "client";
|
|
79
|
-
ResourceType?: string | undefined;
|
|
80
|
-
ResourceId?: string | undefined;
|
|
81
|
-
Message?: string | undefined;
|
|
82
|
-
constructor(
|
|
83
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
84
|
-
);
|
|
85
|
-
}
|
|
86
110
|
export declare class InvalidNextToken extends __BaseException {
|
|
87
111
|
readonly name: "InvalidNextToken";
|
|
88
112
|
readonly $fault: "client";
|
|
@@ -100,6 +100,11 @@ export interface AnomalyDetector {
|
|
|
100
100
|
SingleMetricAnomalyDetector?: SingleMetricAnomalyDetector | undefined;
|
|
101
101
|
MetricMathAnomalyDetector?: MetricMathAnomalyDetector | undefined;
|
|
102
102
|
}
|
|
103
|
+
export interface AssociateDatasetKmsKeyInput {
|
|
104
|
+
DatasetIdentifier: string | undefined;
|
|
105
|
+
KmsKeyArn: string | undefined;
|
|
106
|
+
}
|
|
107
|
+
export interface AssociateDatasetKmsKeyOutput {}
|
|
103
108
|
export interface PartialFailure {
|
|
104
109
|
FailureResource?: string | undefined;
|
|
105
110
|
ExceptionType?: string | undefined;
|
|
@@ -318,6 +323,10 @@ export interface DisableInsightRulesInput {
|
|
|
318
323
|
export interface DisableInsightRulesOutput {
|
|
319
324
|
Failures?: PartialFailure[] | undefined;
|
|
320
325
|
}
|
|
326
|
+
export interface DisassociateDatasetKmsKeyInput {
|
|
327
|
+
DatasetIdentifier: string | undefined;
|
|
328
|
+
}
|
|
329
|
+
export interface DisassociateDatasetKmsKeyOutput {}
|
|
321
330
|
export interface EnableAlarmActionsInput {
|
|
322
331
|
AlarmNames: string[] | undefined;
|
|
323
332
|
}
|
|
@@ -386,6 +395,14 @@ export interface GetDashboardOutput {
|
|
|
386
395
|
DashboardBody?: string | undefined;
|
|
387
396
|
DashboardName?: string | undefined;
|
|
388
397
|
}
|
|
398
|
+
export interface GetDatasetInput {
|
|
399
|
+
DatasetIdentifier: string | undefined;
|
|
400
|
+
}
|
|
401
|
+
export interface GetDatasetOutput {
|
|
402
|
+
DatasetId: string | undefined;
|
|
403
|
+
Arn: string | undefined;
|
|
404
|
+
KmsKeyArn?: string | undefined;
|
|
405
|
+
}
|
|
389
406
|
export interface GetInsightRuleReportInput {
|
|
390
407
|
RuleName: string | undefined;
|
|
391
408
|
StartTime: Date | undefined;
|
|
@@ -15,6 +15,9 @@ export declare var InvalidFormatFault$: StaticErrorSchema;
|
|
|
15
15
|
export declare var InvalidNextToken$: StaticErrorSchema;
|
|
16
16
|
export declare var InvalidParameterCombinationException$: StaticErrorSchema;
|
|
17
17
|
export declare var InvalidParameterValueException$: StaticErrorSchema;
|
|
18
|
+
export declare var KmsAccessDeniedException$: StaticErrorSchema;
|
|
19
|
+
export declare var KmsKeyDisabledException$: StaticErrorSchema;
|
|
20
|
+
export declare var KmsKeyNotFoundException$: StaticErrorSchema;
|
|
18
21
|
export declare var LimitExceededException$: StaticErrorSchema;
|
|
19
22
|
export declare var LimitExceededFault$: StaticErrorSchema;
|
|
20
23
|
export declare var MissingRequiredParameterException$: StaticErrorSchema;
|
|
@@ -27,6 +30,8 @@ export declare var AlarmMuteRuleSummary$: StaticStructureSchema;
|
|
|
27
30
|
export declare var AlarmPromQLCriteria$: StaticStructureSchema;
|
|
28
31
|
export declare var AnomalyDetector$: StaticStructureSchema;
|
|
29
32
|
export declare var AnomalyDetectorConfiguration$: StaticStructureSchema;
|
|
33
|
+
export declare var AssociateDatasetKmsKeyInput$: StaticStructureSchema;
|
|
34
|
+
export declare var AssociateDatasetKmsKeyOutput$: StaticStructureSchema;
|
|
30
35
|
export declare var CompositeAlarm$: StaticStructureSchema;
|
|
31
36
|
export declare var DashboardEntry$: StaticStructureSchema;
|
|
32
37
|
export declare var DashboardValidationMessage$: StaticStructureSchema;
|
|
@@ -58,6 +63,8 @@ export declare var DimensionFilter$: StaticStructureSchema;
|
|
|
58
63
|
export declare var DisableAlarmActionsInput$: StaticStructureSchema;
|
|
59
64
|
export declare var DisableInsightRulesInput$: StaticStructureSchema;
|
|
60
65
|
export declare var DisableInsightRulesOutput$: StaticStructureSchema;
|
|
66
|
+
export declare var DisassociateDatasetKmsKeyInput$: StaticStructureSchema;
|
|
67
|
+
export declare var DisassociateDatasetKmsKeyOutput$: StaticStructureSchema;
|
|
61
68
|
export declare var EnableAlarmActionsInput$: StaticStructureSchema;
|
|
62
69
|
export declare var EnableInsightRulesInput$: StaticStructureSchema;
|
|
63
70
|
export declare var EnableInsightRulesOutput$: StaticStructureSchema;
|
|
@@ -67,6 +74,8 @@ export declare var GetAlarmMuteRuleInput$: StaticStructureSchema;
|
|
|
67
74
|
export declare var GetAlarmMuteRuleOutput$: StaticStructureSchema;
|
|
68
75
|
export declare var GetDashboardInput$: StaticStructureSchema;
|
|
69
76
|
export declare var GetDashboardOutput$: StaticStructureSchema;
|
|
77
|
+
export declare var GetDatasetInput$: StaticStructureSchema;
|
|
78
|
+
export declare var GetDatasetOutput$: StaticStructureSchema;
|
|
70
79
|
export declare var GetInsightRuleReportInput$: StaticStructureSchema;
|
|
71
80
|
export declare var GetInsightRuleReportOutput$: StaticStructureSchema;
|
|
72
81
|
export declare var GetMetricDataInput$: StaticStructureSchema;
|
|
@@ -148,6 +157,7 @@ export declare var TagResourceOutput$: StaticStructureSchema;
|
|
|
148
157
|
export declare var UntagResourceInput$: StaticStructureSchema;
|
|
149
158
|
export declare var UntagResourceOutput$: StaticStructureSchema;
|
|
150
159
|
export declare var EvaluationCriteria$: StaticUnionSchema;
|
|
160
|
+
export declare var AssociateDatasetKmsKey$: StaticOperationSchema;
|
|
151
161
|
export declare var DeleteAlarmMuteRule$: StaticOperationSchema;
|
|
152
162
|
export declare var DeleteAlarms$: StaticOperationSchema;
|
|
153
163
|
export declare var DeleteAnomalyDetector$: StaticOperationSchema;
|
|
@@ -162,10 +172,12 @@ export declare var DescribeAnomalyDetectors$: StaticOperationSchema;
|
|
|
162
172
|
export declare var DescribeInsightRules$: StaticOperationSchema;
|
|
163
173
|
export declare var DisableAlarmActions$: StaticOperationSchema;
|
|
164
174
|
export declare var DisableInsightRules$: StaticOperationSchema;
|
|
175
|
+
export declare var DisassociateDatasetKmsKey$: StaticOperationSchema;
|
|
165
176
|
export declare var EnableAlarmActions$: StaticOperationSchema;
|
|
166
177
|
export declare var EnableInsightRules$: StaticOperationSchema;
|
|
167
178
|
export declare var GetAlarmMuteRule$: StaticOperationSchema;
|
|
168
179
|
export declare var GetDashboard$: StaticOperationSchema;
|
|
180
|
+
export declare var GetDataset$: StaticOperationSchema;
|
|
169
181
|
export declare var GetInsightRuleReport$: StaticOperationSchema;
|
|
170
182
|
export declare var GetMetricData$: StaticOperationSchema;
|
|
171
183
|
export declare var GetMetricStatistics$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudwatch",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudwatch Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1065.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
|
-
"build:cjs": "node ../../scripts/compilation/inline
|
|
7
|
+
"build:cjs": "node ../../scripts/compilation/inline",
|
|
8
8
|
"build:es": "tsc -p tsconfig.es.json",
|
|
9
9
|
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
"extract:docs": "api-extractor run --local",
|
|
14
14
|
"generate:client": "node ../../scripts/generate-clients/single-service --solo cloudwatch",
|
|
15
15
|
"test": "yarn g:vitest run --passWithNoTests",
|
|
16
|
-
"test:
|
|
17
|
-
"test:e2e:watch": "yarn g:vitest watch -c vitest.config.e2e.mts",
|
|
18
|
-
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs",
|
|
16
|
+
"test:watch": "yarn g:vitest watch --passWithNoTests",
|
|
19
17
|
"test:integration": "yarn g:vitest run --passWithNoTests -c vitest.config.integ.mts",
|
|
20
18
|
"test:integration:watch": "yarn g:vitest run --passWithNoTests -c vitest.config.integ.mts",
|
|
21
|
-
"test:
|
|
19
|
+
"test:e2e": "yarn g:vitest run -c vitest.config.e2e.mts",
|
|
20
|
+
"test:e2e:watch": "yarn g:vitest watch -c vitest.config.e2e.mts",
|
|
21
|
+
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
22
22
|
},
|
|
23
23
|
"main": "./dist-cjs/index.js",
|
|
24
24
|
"types": "./dist-types/index.d.ts",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
29
29
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
30
|
-
"@aws-sdk/core": "^3.974.
|
|
31
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
32
|
-
"@aws-sdk/types": "^3.973.
|
|
30
|
+
"@aws-sdk/core": "^3.974.20",
|
|
31
|
+
"@aws-sdk/credential-provider-node": "^3.972.54",
|
|
32
|
+
"@aws-sdk/types": "^3.973.12",
|
|
33
33
|
"@smithy/core": "^3.24.6",
|
|
34
34
|
"@smithy/fetch-http-handler": "^5.4.6",
|
|
35
35
|
"@smithy/middleware-compression": "^4.4.6",
|