@aws-sdk/client-cloudwatch-logs 3.1019.0 → 3.1021.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 +35 -0
- package/dist-cjs/index.js +70 -0
- package/dist-cjs/schemas/schemas_0.js +110 -16
- package/dist-es/CloudWatchLogs.js +14 -4
- package/dist-es/commands/CreateLookupTableCommand.js +16 -0
- package/dist-es/commands/DeleteLookupTableCommand.js +16 -0
- package/dist-es/commands/DescribeLookupTablesCommand.js +16 -0
- package/dist-es/commands/GetLookupTableCommand.js +16 -0
- package/dist-es/commands/UpdateLookupTableCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/schemas/schemas_0.js +101 -7
- package/dist-types/CloudWatchLogs.d.ts +144 -108
- package/dist-types/CloudWatchLogsClient.d.ts +118 -113
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/commands/CreateLookupTableCommand.d.ts +103 -0
- package/dist-types/commands/DeleteLookupTableCommand.d.ts +86 -0
- package/dist-types/commands/DescribeLookupTablesCommand.d.ts +103 -0
- package/dist-types/commands/GetLogFieldsCommand.d.ts +2 -1
- package/dist-types/commands/GetLookupTableCommand.d.ts +92 -0
- package/dist-types/commands/UpdateLookupTableCommand.d.ts +97 -0
- package/dist-types/commands/UpdateScheduledQueryCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +216 -201
- package/dist-types/models/models_1.d.ts +234 -0
- package/dist-types/pagination/DescribeConfigurationTemplatesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeDeliveriesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeDeliveryDestinationsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeDeliverySourcesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeDestinationsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeLogGroupsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeLogStreamsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeMetricFiltersPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeSubscriptionFiltersPaginator.d.ts +1 -1
- package/dist-types/pagination/FilterLogEventsPaginator.d.ts +1 -1
- package/dist-types/pagination/GetLogEventsPaginator.d.ts +1 -1
- package/dist-types/pagination/GetScheduledQueryHistoryPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAggregateLogGroupSummariesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAnomaliesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListLogAnomalyDetectorsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListLogGroupsForQueryPaginator.d.ts +1 -1
- package/dist-types/pagination/ListScheduledQueriesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListSourcesForS3TableIntegrationPaginator.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +15 -0
- package/dist-types/ts3.4/CloudWatchLogs.d.ts +86 -0
- package/dist-types/ts3.4/CloudWatchLogsClient.d.ts +32 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateLookupTableCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteLookupTableCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/DescribeLookupTablesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetLogFieldsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetLookupTableCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateLookupTableCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateScheduledQueryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +49 -45
- package/dist-types/ts3.4/models/models_1.d.ts +53 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +15 -0
- package/package.json +15 -15
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudWatchLogsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudWatchLogsClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeLookupTablesRequest,
|
|
10
|
+
DescribeLookupTablesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeLookupTablesCommandInput
|
|
15
|
+
extends DescribeLookupTablesRequest {}
|
|
16
|
+
export interface DescribeLookupTablesCommandOutput
|
|
17
|
+
extends DescribeLookupTablesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeLookupTablesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeLookupTablesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeLookupTablesCommandInput,
|
|
24
|
+
DescribeLookupTablesCommandOutput,
|
|
25
|
+
CloudWatchLogsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [DescribeLookupTablesCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeLookupTablesCommandInput,
|
|
33
|
+
DescribeLookupTablesCommandOutput,
|
|
34
|
+
CloudWatchLogsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeLookupTablesCommand extends DescribeLookupTablesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeLookupTablesRequest;
|
|
44
|
+
output: DescribeLookupTablesResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeLookupTablesCommandInput;
|
|
48
|
+
output: DescribeLookupTablesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,7 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CloudWatchLogsClient";
|
|
8
|
-
import { GetLogFieldsRequest
|
|
8
|
+
import { GetLogFieldsRequest } from "../models/models_0";
|
|
9
|
+
import { GetLogFieldsResponse } from "../models/models_1";
|
|
9
10
|
export { __MetadataBearer };
|
|
10
11
|
export { $Command };
|
|
11
12
|
export interface GetLogFieldsCommandInput extends GetLogFieldsRequest {}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudWatchLogsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudWatchLogsClient";
|
|
8
|
+
import {
|
|
9
|
+
GetLookupTableRequest,
|
|
10
|
+
GetLookupTableResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetLookupTableCommandInput extends GetLookupTableRequest {}
|
|
15
|
+
export interface GetLookupTableCommandOutput
|
|
16
|
+
extends GetLookupTableResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetLookupTableCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetLookupTableCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetLookupTableCommandInput,
|
|
23
|
+
GetLookupTableCommandOutput,
|
|
24
|
+
CloudWatchLogsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: GetLookupTableCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetLookupTableCommandInput,
|
|
32
|
+
GetLookupTableCommandOutput,
|
|
33
|
+
CloudWatchLogsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GetLookupTableCommand extends GetLookupTableCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GetLookupTableRequest;
|
|
43
|
+
output: GetLookupTableResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GetLookupTableCommandInput;
|
|
47
|
+
output: GetLookupTableCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudWatchLogsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudWatchLogsClient";
|
|
8
|
+
import { UpdateLookupTableRequest } from "../models/models_0";
|
|
9
|
+
import { UpdateLookupTableResponse } from "../models/models_1";
|
|
10
|
+
export { __MetadataBearer };
|
|
11
|
+
export { $Command };
|
|
12
|
+
export interface UpdateLookupTableCommandInput
|
|
13
|
+
extends UpdateLookupTableRequest {}
|
|
14
|
+
export interface UpdateLookupTableCommandOutput
|
|
15
|
+
extends UpdateLookupTableResponse,
|
|
16
|
+
__MetadataBearer {}
|
|
17
|
+
declare const UpdateLookupTableCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: UpdateLookupTableCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
UpdateLookupTableCommandInput,
|
|
22
|
+
UpdateLookupTableCommandOutput,
|
|
23
|
+
CloudWatchLogsClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
new (
|
|
28
|
+
input: UpdateLookupTableCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
UpdateLookupTableCommandInput,
|
|
31
|
+
UpdateLookupTableCommandOutput,
|
|
32
|
+
CloudWatchLogsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
36
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
37
|
+
};
|
|
38
|
+
export declare class UpdateLookupTableCommand extends UpdateLookupTableCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: UpdateLookupTableRequest;
|
|
42
|
+
output: UpdateLookupTableResponse;
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: UpdateLookupTableCommandInput;
|
|
46
|
+
output: UpdateLookupTableCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -8,6 +8,7 @@ export * from "./CreateImportTaskCommand";
|
|
|
8
8
|
export * from "./CreateLogAnomalyDetectorCommand";
|
|
9
9
|
export * from "./CreateLogGroupCommand";
|
|
10
10
|
export * from "./CreateLogStreamCommand";
|
|
11
|
+
export * from "./CreateLookupTableCommand";
|
|
11
12
|
export * from "./CreateScheduledQueryCommand";
|
|
12
13
|
export * from "./DeleteAccountPolicyCommand";
|
|
13
14
|
export * from "./DeleteDataProtectionPolicyCommand";
|
|
@@ -21,6 +22,7 @@ export * from "./DeleteIntegrationCommand";
|
|
|
21
22
|
export * from "./DeleteLogAnomalyDetectorCommand";
|
|
22
23
|
export * from "./DeleteLogGroupCommand";
|
|
23
24
|
export * from "./DeleteLogStreamCommand";
|
|
25
|
+
export * from "./DeleteLookupTableCommand";
|
|
24
26
|
export * from "./DeleteMetricFilterCommand";
|
|
25
27
|
export * from "./DeleteQueryDefinitionCommand";
|
|
26
28
|
export * from "./DeleteResourcePolicyCommand";
|
|
@@ -41,6 +43,7 @@ export * from "./DescribeImportTasksCommand";
|
|
|
41
43
|
export * from "./DescribeIndexPoliciesCommand";
|
|
42
44
|
export * from "./DescribeLogGroupsCommand";
|
|
43
45
|
export * from "./DescribeLogStreamsCommand";
|
|
46
|
+
export * from "./DescribeLookupTablesCommand";
|
|
44
47
|
export * from "./DescribeMetricFiltersCommand";
|
|
45
48
|
export * from "./DescribeQueriesCommand";
|
|
46
49
|
export * from "./DescribeQueryDefinitionsCommand";
|
|
@@ -61,6 +64,7 @@ export * from "./GetLogFieldsCommand";
|
|
|
61
64
|
export * from "./GetLogGroupFieldsCommand";
|
|
62
65
|
export * from "./GetLogObjectCommand";
|
|
63
66
|
export * from "./GetLogRecordCommand";
|
|
67
|
+
export * from "./GetLookupTableCommand";
|
|
64
68
|
export * from "./GetQueryResultsCommand";
|
|
65
69
|
export * from "./GetScheduledQueryCommand";
|
|
66
70
|
export * from "./GetScheduledQueryHistoryCommand";
|
|
@@ -105,4 +109,5 @@ export * from "./UntagResourceCommand";
|
|
|
105
109
|
export * from "./UpdateAnomalyCommand";
|
|
106
110
|
export * from "./UpdateDeliveryConfigurationCommand";
|
|
107
111
|
export * from "./UpdateLogAnomalyDetectorCommand";
|
|
112
|
+
export * from "./UpdateLookupTableCommand";
|
|
108
113
|
export * from "./UpdateScheduledQueryCommand";
|
|
@@ -249,6 +249,17 @@ export interface CreateLogStreamRequest {
|
|
|
249
249
|
logGroupName: string | undefined;
|
|
250
250
|
logStreamName: string | undefined;
|
|
251
251
|
}
|
|
252
|
+
export interface CreateLookupTableRequest {
|
|
253
|
+
lookupTableName: string | undefined;
|
|
254
|
+
description?: string | undefined;
|
|
255
|
+
tableBody: string | undefined;
|
|
256
|
+
kmsKeyId?: string | undefined;
|
|
257
|
+
tags?: Record<string, string> | undefined;
|
|
258
|
+
}
|
|
259
|
+
export interface CreateLookupTableResponse {
|
|
260
|
+
lookupTableArn?: string | undefined;
|
|
261
|
+
createdAt?: number | undefined;
|
|
262
|
+
}
|
|
252
263
|
export interface S3Configuration {
|
|
253
264
|
destinationIdentifier: string | undefined;
|
|
254
265
|
roleArn: string | undefined;
|
|
@@ -341,6 +352,9 @@ export interface DeleteLogStreamRequest {
|
|
|
341
352
|
logGroupName: string | undefined;
|
|
342
353
|
logStreamName: string | undefined;
|
|
343
354
|
}
|
|
355
|
+
export interface DeleteLookupTableRequest {
|
|
356
|
+
lookupTableArn: string | undefined;
|
|
357
|
+
}
|
|
344
358
|
export interface DeleteMetricFilterRequest {
|
|
345
359
|
logGroupName: string | undefined;
|
|
346
360
|
filterName: string | undefined;
|
|
@@ -605,6 +619,25 @@ export interface DescribeLogStreamsResponse {
|
|
|
605
619
|
logStreams?: LogStream[] | undefined;
|
|
606
620
|
nextToken?: string | undefined;
|
|
607
621
|
}
|
|
622
|
+
export interface DescribeLookupTablesRequest {
|
|
623
|
+
lookupTableNamePrefix?: string | undefined;
|
|
624
|
+
maxResults?: number | undefined;
|
|
625
|
+
nextToken?: string | undefined;
|
|
626
|
+
}
|
|
627
|
+
export interface LookupTable {
|
|
628
|
+
lookupTableArn?: string | undefined;
|
|
629
|
+
lookupTableName?: string | undefined;
|
|
630
|
+
description?: string | undefined;
|
|
631
|
+
tableFields?: string[] | undefined;
|
|
632
|
+
recordsCount?: number | undefined;
|
|
633
|
+
sizeBytes?: number | undefined;
|
|
634
|
+
lastUpdatedTime?: number | undefined;
|
|
635
|
+
kmsKeyId?: string | undefined;
|
|
636
|
+
}
|
|
637
|
+
export interface DescribeLookupTablesResponse {
|
|
638
|
+
lookupTables?: LookupTable[] | undefined;
|
|
639
|
+
nextToken?: string | undefined;
|
|
640
|
+
}
|
|
608
641
|
export interface DescribeMetricFiltersRequest {
|
|
609
642
|
logGroupName?: string | undefined;
|
|
610
643
|
filterNamePrefix?: string | undefined;
|
|
@@ -965,6 +998,18 @@ export interface GetLogRecordRequest {
|
|
|
965
998
|
export interface GetLogRecordResponse {
|
|
966
999
|
logRecord?: Record<string, string> | undefined;
|
|
967
1000
|
}
|
|
1001
|
+
export interface GetLookupTableRequest {
|
|
1002
|
+
lookupTableArn: string | undefined;
|
|
1003
|
+
}
|
|
1004
|
+
export interface GetLookupTableResponse {
|
|
1005
|
+
lookupTableArn?: string | undefined;
|
|
1006
|
+
lookupTableName?: string | undefined;
|
|
1007
|
+
description?: string | undefined;
|
|
1008
|
+
tableBody?: string | undefined;
|
|
1009
|
+
sizeBytes?: number | undefined;
|
|
1010
|
+
lastUpdatedTime?: number | undefined;
|
|
1011
|
+
kmsKeyId?: string | undefined;
|
|
1012
|
+
}
|
|
968
1013
|
export interface GetQueryResultsRequest {
|
|
969
1014
|
queryId: string | undefined;
|
|
970
1015
|
}
|
|
@@ -1645,50 +1690,9 @@ export interface UpdateLogAnomalyDetectorRequest {
|
|
|
1645
1690
|
anomalyVisibilityTime?: number | undefined;
|
|
1646
1691
|
enabled: boolean | undefined;
|
|
1647
1692
|
}
|
|
1648
|
-
export interface
|
|
1649
|
-
|
|
1650
|
-
description?: string | undefined;
|
|
1651
|
-
queryLanguage: QueryLanguage | undefined;
|
|
1652
|
-
queryString: string | undefined;
|
|
1653
|
-
logGroupIdentifiers?: string[] | undefined;
|
|
1654
|
-
scheduleExpression: string | undefined;
|
|
1655
|
-
timezone?: string | undefined;
|
|
1656
|
-
startTimeOffset?: number | undefined;
|
|
1657
|
-
destinationConfiguration?: DestinationConfiguration | undefined;
|
|
1658
|
-
scheduleStartTime?: number | undefined;
|
|
1659
|
-
scheduleEndTime?: number | undefined;
|
|
1660
|
-
executionRoleArn: string | undefined;
|
|
1661
|
-
state?: ScheduledQueryState | undefined;
|
|
1662
|
-
}
|
|
1663
|
-
export interface UpdateScheduledQueryResponse {
|
|
1664
|
-
scheduledQueryArn?: string | undefined;
|
|
1665
|
-
name?: string | undefined;
|
|
1693
|
+
export interface UpdateLookupTableRequest {
|
|
1694
|
+
lookupTableArn: string | undefined;
|
|
1666
1695
|
description?: string | undefined;
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
logGroupIdentifiers?: string[] | undefined;
|
|
1670
|
-
scheduleExpression?: string | undefined;
|
|
1671
|
-
timezone?: string | undefined;
|
|
1672
|
-
startTimeOffset?: number | undefined;
|
|
1673
|
-
destinationConfiguration?: DestinationConfiguration | undefined;
|
|
1674
|
-
state?: ScheduledQueryState | undefined;
|
|
1675
|
-
lastTriggeredTime?: number | undefined;
|
|
1676
|
-
lastExecutionStatus?: ExecutionStatus | undefined;
|
|
1677
|
-
scheduleStartTime?: number | undefined;
|
|
1678
|
-
scheduleEndTime?: number | undefined;
|
|
1679
|
-
executionRoleArn?: string | undefined;
|
|
1680
|
-
creationTime?: number | undefined;
|
|
1681
|
-
lastUpdatedTime?: number | undefined;
|
|
1682
|
-
}
|
|
1683
|
-
export interface LogFieldType {
|
|
1684
|
-
type?: string | undefined;
|
|
1685
|
-
element?: LogFieldType | undefined;
|
|
1686
|
-
fields?: LogFieldsListItem[] | undefined;
|
|
1687
|
-
}
|
|
1688
|
-
export interface LogFieldsListItem {
|
|
1689
|
-
logFieldName?: string | undefined;
|
|
1690
|
-
logFieldType?: LogFieldType | undefined;
|
|
1691
|
-
}
|
|
1692
|
-
export interface GetLogFieldsResponse {
|
|
1693
|
-
logFields?: LogFieldsListItem[] | undefined;
|
|
1696
|
+
tableBody: string | undefined;
|
|
1697
|
+
kmsKeyId?: string | undefined;
|
|
1694
1698
|
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { ExecutionStatus, QueryLanguage, ScheduledQueryState } from "./enums";
|
|
2
|
+
import { DestinationConfiguration } from "./models_0";
|
|
3
|
+
export interface UpdateLookupTableResponse {
|
|
4
|
+
lookupTableArn?: string | undefined;
|
|
5
|
+
lastUpdatedTime?: number | undefined;
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateScheduledQueryRequest {
|
|
8
|
+
identifier: string | undefined;
|
|
9
|
+
description?: string | undefined;
|
|
10
|
+
queryLanguage: QueryLanguage | undefined;
|
|
11
|
+
queryString: string | undefined;
|
|
12
|
+
logGroupIdentifiers?: string[] | undefined;
|
|
13
|
+
scheduleExpression: string | undefined;
|
|
14
|
+
timezone?: string | undefined;
|
|
15
|
+
startTimeOffset?: number | undefined;
|
|
16
|
+
destinationConfiguration?: DestinationConfiguration | undefined;
|
|
17
|
+
scheduleStartTime?: number | undefined;
|
|
18
|
+
scheduleEndTime?: number | undefined;
|
|
19
|
+
executionRoleArn: string | undefined;
|
|
20
|
+
state?: ScheduledQueryState | undefined;
|
|
21
|
+
}
|
|
22
|
+
export interface UpdateScheduledQueryResponse {
|
|
23
|
+
scheduledQueryArn?: string | undefined;
|
|
24
|
+
name?: string | undefined;
|
|
25
|
+
description?: string | undefined;
|
|
26
|
+
queryLanguage?: QueryLanguage | undefined;
|
|
27
|
+
queryString?: string | undefined;
|
|
28
|
+
logGroupIdentifiers?: string[] | undefined;
|
|
29
|
+
scheduleExpression?: string | undefined;
|
|
30
|
+
timezone?: string | undefined;
|
|
31
|
+
startTimeOffset?: number | undefined;
|
|
32
|
+
destinationConfiguration?: DestinationConfiguration | undefined;
|
|
33
|
+
state?: ScheduledQueryState | undefined;
|
|
34
|
+
lastTriggeredTime?: number | undefined;
|
|
35
|
+
lastExecutionStatus?: ExecutionStatus | undefined;
|
|
36
|
+
scheduleStartTime?: number | undefined;
|
|
37
|
+
scheduleEndTime?: number | undefined;
|
|
38
|
+
executionRoleArn?: string | undefined;
|
|
39
|
+
creationTime?: number | undefined;
|
|
40
|
+
lastUpdatedTime?: number | undefined;
|
|
41
|
+
}
|
|
42
|
+
export interface LogFieldType {
|
|
43
|
+
type?: string | undefined;
|
|
44
|
+
element?: LogFieldType | undefined;
|
|
45
|
+
fields?: LogFieldsListItem[] | undefined;
|
|
46
|
+
}
|
|
47
|
+
export interface LogFieldsListItem {
|
|
48
|
+
logFieldName?: string | undefined;
|
|
49
|
+
logFieldType?: LogFieldType | undefined;
|
|
50
|
+
}
|
|
51
|
+
export interface GetLogFieldsResponse {
|
|
52
|
+
logFields?: LogFieldsListItem[] | undefined;
|
|
53
|
+
}
|
|
@@ -54,6 +54,8 @@ export declare var CreateLogAnomalyDetectorRequest$: StaticStructureSchema;
|
|
|
54
54
|
export declare var CreateLogAnomalyDetectorResponse$: StaticStructureSchema;
|
|
55
55
|
export declare var CreateLogGroupRequest$: StaticStructureSchema;
|
|
56
56
|
export declare var CreateLogStreamRequest$: StaticStructureSchema;
|
|
57
|
+
export declare var CreateLookupTableRequest$: StaticStructureSchema;
|
|
58
|
+
export declare var CreateLookupTableResponse$: StaticStructureSchema;
|
|
57
59
|
export declare var CreateScheduledQueryRequest$: StaticStructureSchema;
|
|
58
60
|
export declare var CreateScheduledQueryResponse$: StaticStructureSchema;
|
|
59
61
|
export declare var CSV$: StaticStructureSchema;
|
|
@@ -75,6 +77,7 @@ export declare var DeleteKeys$: StaticStructureSchema;
|
|
|
75
77
|
export declare var DeleteLogAnomalyDetectorRequest$: StaticStructureSchema;
|
|
76
78
|
export declare var DeleteLogGroupRequest$: StaticStructureSchema;
|
|
77
79
|
export declare var DeleteLogStreamRequest$: StaticStructureSchema;
|
|
80
|
+
export declare var DeleteLookupTableRequest$: StaticStructureSchema;
|
|
78
81
|
export declare var DeleteMetricFilterRequest$: StaticStructureSchema;
|
|
79
82
|
export declare var DeleteQueryDefinitionRequest$: StaticStructureSchema;
|
|
80
83
|
export declare var DeleteQueryDefinitionResponse$: StaticStructureSchema;
|
|
@@ -114,6 +117,8 @@ export declare var DescribeLogGroupsRequest$: StaticStructureSchema;
|
|
|
114
117
|
export declare var DescribeLogGroupsResponse$: StaticStructureSchema;
|
|
115
118
|
export declare var DescribeLogStreamsRequest$: StaticStructureSchema;
|
|
116
119
|
export declare var DescribeLogStreamsResponse$: StaticStructureSchema;
|
|
120
|
+
export declare var DescribeLookupTablesRequest$: StaticStructureSchema;
|
|
121
|
+
export declare var DescribeLookupTablesResponse$: StaticStructureSchema;
|
|
117
122
|
export declare var DescribeMetricFiltersRequest$: StaticStructureSchema;
|
|
118
123
|
export declare var DescribeMetricFiltersResponse$: StaticStructureSchema;
|
|
119
124
|
export declare var DescribeQueriesRequest$: StaticStructureSchema;
|
|
@@ -162,6 +167,8 @@ export declare var GetLogObjectRequest$: StaticStructureSchema;
|
|
|
162
167
|
export declare var GetLogObjectResponse$: StaticStructureSchema;
|
|
163
168
|
export declare var GetLogRecordRequest$: StaticStructureSchema;
|
|
164
169
|
export declare var GetLogRecordResponse$: StaticStructureSchema;
|
|
170
|
+
export declare var GetLookupTableRequest$: StaticStructureSchema;
|
|
171
|
+
export declare var GetLookupTableResponse$: StaticStructureSchema;
|
|
165
172
|
export declare var GetQueryResultsRequest$: StaticStructureSchema;
|
|
166
173
|
export declare var GetQueryResultsResponse$: StaticStructureSchema;
|
|
167
174
|
export declare var GetScheduledQueryHistoryRequest$: StaticStructureSchema;
|
|
@@ -211,6 +218,7 @@ export declare var LogGroup$: StaticStructureSchema;
|
|
|
211
218
|
export declare var LogGroupField$: StaticStructureSchema;
|
|
212
219
|
export declare var LogGroupSummary$: StaticStructureSchema;
|
|
213
220
|
export declare var LogStream$: StaticStructureSchema;
|
|
221
|
+
export declare var LookupTable$: StaticStructureSchema;
|
|
214
222
|
export declare var LowerCaseString$: StaticStructureSchema;
|
|
215
223
|
export declare var MetricFilter$: StaticStructureSchema;
|
|
216
224
|
export declare var MetricFilterMatchRecord$: StaticStructureSchema;
|
|
@@ -317,6 +325,8 @@ export declare var UpdateAnomalyRequest$: StaticStructureSchema;
|
|
|
317
325
|
export declare var UpdateDeliveryConfigurationRequest$: StaticStructureSchema;
|
|
318
326
|
export declare var UpdateDeliveryConfigurationResponse$: StaticStructureSchema;
|
|
319
327
|
export declare var UpdateLogAnomalyDetectorRequest$: StaticStructureSchema;
|
|
328
|
+
export declare var UpdateLookupTableRequest$: StaticStructureSchema;
|
|
329
|
+
export declare var UpdateLookupTableResponse$: StaticStructureSchema;
|
|
320
330
|
export declare var UpdateScheduledQueryRequest$: StaticStructureSchema;
|
|
321
331
|
export declare var UpdateScheduledQueryResponse$: StaticStructureSchema;
|
|
322
332
|
export declare var UpperCaseString$: StaticStructureSchema;
|
|
@@ -334,6 +344,7 @@ export declare var CreateImportTask$: StaticOperationSchema;
|
|
|
334
344
|
export declare var CreateLogAnomalyDetector$: StaticOperationSchema;
|
|
335
345
|
export declare var CreateLogGroup$: StaticOperationSchema;
|
|
336
346
|
export declare var CreateLogStream$: StaticOperationSchema;
|
|
347
|
+
export declare var CreateLookupTable$: StaticOperationSchema;
|
|
337
348
|
export declare var CreateScheduledQuery$: StaticOperationSchema;
|
|
338
349
|
export declare var DeleteAccountPolicy$: StaticOperationSchema;
|
|
339
350
|
export declare var DeleteDataProtectionPolicy$: StaticOperationSchema;
|
|
@@ -347,6 +358,7 @@ export declare var DeleteIntegration$: StaticOperationSchema;
|
|
|
347
358
|
export declare var DeleteLogAnomalyDetector$: StaticOperationSchema;
|
|
348
359
|
export declare var DeleteLogGroup$: StaticOperationSchema;
|
|
349
360
|
export declare var DeleteLogStream$: StaticOperationSchema;
|
|
361
|
+
export declare var DeleteLookupTable$: StaticOperationSchema;
|
|
350
362
|
export declare var DeleteMetricFilter$: StaticOperationSchema;
|
|
351
363
|
export declare var DeleteQueryDefinition$: StaticOperationSchema;
|
|
352
364
|
export declare var DeleteResourcePolicy$: StaticOperationSchema;
|
|
@@ -367,6 +379,7 @@ export declare var DescribeImportTasks$: StaticOperationSchema;
|
|
|
367
379
|
export declare var DescribeIndexPolicies$: StaticOperationSchema;
|
|
368
380
|
export declare var DescribeLogGroups$: StaticOperationSchema;
|
|
369
381
|
export declare var DescribeLogStreams$: StaticOperationSchema;
|
|
382
|
+
export declare var DescribeLookupTables$: StaticOperationSchema;
|
|
370
383
|
export declare var DescribeMetricFilters$: StaticOperationSchema;
|
|
371
384
|
export declare var DescribeQueries$: StaticOperationSchema;
|
|
372
385
|
export declare var DescribeQueryDefinitions$: StaticOperationSchema;
|
|
@@ -387,6 +400,7 @@ export declare var GetLogFields$: StaticOperationSchema;
|
|
|
387
400
|
export declare var GetLogGroupFields$: StaticOperationSchema;
|
|
388
401
|
export declare var GetLogObject$: StaticOperationSchema;
|
|
389
402
|
export declare var GetLogRecord$: StaticOperationSchema;
|
|
403
|
+
export declare var GetLookupTable$: StaticOperationSchema;
|
|
390
404
|
export declare var GetQueryResults$: StaticOperationSchema;
|
|
391
405
|
export declare var GetScheduledQuery$: StaticOperationSchema;
|
|
392
406
|
export declare var GetScheduledQueryHistory$: StaticOperationSchema;
|
|
@@ -431,4 +445,5 @@ export declare var UntagResource$: StaticOperationSchema;
|
|
|
431
445
|
export declare var UpdateAnomaly$: StaticOperationSchema;
|
|
432
446
|
export declare var UpdateDeliveryConfiguration$: StaticOperationSchema;
|
|
433
447
|
export declare var UpdateLogAnomalyDetector$: StaticOperationSchema;
|
|
448
|
+
export declare var UpdateLookupTable$: StaticOperationSchema;
|
|
434
449
|
export declare var UpdateScheduledQuery$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudwatch-logs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudwatch Logs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1021.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudwatch-logs",
|
|
@@ -27,19 +27,19 @@
|
|
|
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.973.
|
|
31
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
30
|
+
"@aws-sdk/core": "^3.973.26",
|
|
31
|
+
"@aws-sdk/credential-provider-node": "^3.972.29",
|
|
32
32
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
33
33
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "^3.972.28",
|
|
36
36
|
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
37
37
|
"@aws-sdk/types": "^3.973.6",
|
|
38
38
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
39
39
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
40
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
40
|
+
"@aws-sdk/util-user-agent-node": "^3.973.14",
|
|
41
41
|
"@smithy/config-resolver": "^4.4.13",
|
|
42
|
-
"@smithy/core": "^3.23.
|
|
42
|
+
"@smithy/core": "^3.23.13",
|
|
43
43
|
"@smithy/eventstream-serde-browser": "^4.2.12",
|
|
44
44
|
"@smithy/eventstream-serde-config-resolver": "^4.3.12",
|
|
45
45
|
"@smithy/eventstream-serde-node": "^4.2.12",
|
|
@@ -47,29 +47,29 @@
|
|
|
47
47
|
"@smithy/hash-node": "^4.2.12",
|
|
48
48
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
49
49
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
50
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
51
|
-
"@smithy/middleware-retry": "^4.4.
|
|
52
|
-
"@smithy/middleware-serde": "^4.2.
|
|
50
|
+
"@smithy/middleware-endpoint": "^4.4.28",
|
|
51
|
+
"@smithy/middleware-retry": "^4.4.46",
|
|
52
|
+
"@smithy/middleware-serde": "^4.2.16",
|
|
53
53
|
"@smithy/middleware-stack": "^4.2.12",
|
|
54
54
|
"@smithy/node-config-provider": "^4.3.12",
|
|
55
|
-
"@smithy/node-http-handler": "^4.5.
|
|
55
|
+
"@smithy/node-http-handler": "^4.5.1",
|
|
56
56
|
"@smithy/protocol-http": "^5.3.12",
|
|
57
|
-
"@smithy/smithy-client": "^4.12.
|
|
57
|
+
"@smithy/smithy-client": "^4.12.8",
|
|
58
58
|
"@smithy/types": "^4.13.1",
|
|
59
59
|
"@smithy/url-parser": "^4.2.12",
|
|
60
60
|
"@smithy/util-base64": "^4.3.2",
|
|
61
61
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
62
62
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
63
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
64
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
63
|
+
"@smithy/util-defaults-mode-browser": "^4.3.44",
|
|
64
|
+
"@smithy/util-defaults-mode-node": "^4.2.48",
|
|
65
65
|
"@smithy/util-endpoints": "^3.3.3",
|
|
66
66
|
"@smithy/util-middleware": "^4.2.12",
|
|
67
|
-
"@smithy/util-retry": "^4.2.
|
|
67
|
+
"@smithy/util-retry": "^4.2.13",
|
|
68
68
|
"@smithy/util-utf8": "^4.2.2",
|
|
69
69
|
"tslib": "^2.6.2"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
|
-
"@smithy/snapshot-testing": "^2.0.
|
|
72
|
+
"@smithy/snapshot-testing": "^2.0.4",
|
|
73
73
|
"@tsconfig/node20": "20.1.8",
|
|
74
74
|
"@types/node": "^20.14.8",
|
|
75
75
|
"concurrently": "7.0.0",
|