@aws-sdk/client-cloudwatch-logs 3.1019.0 → 3.1020.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 +14 -14
|
@@ -1,113 +1,118 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { CloudWatchLogsClient } from "./CloudWatchLogsClient";
|
|
3
|
-
import { AssociateKmsKeyCommandInput, AssociateKmsKeyCommandOutput } from "./commands/AssociateKmsKeyCommand";
|
|
4
|
-
import { AssociateSourceToS3TableIntegrationCommandInput, AssociateSourceToS3TableIntegrationCommandOutput } from "./commands/AssociateSourceToS3TableIntegrationCommand";
|
|
5
|
-
import { CancelExportTaskCommandInput, CancelExportTaskCommandOutput } from "./commands/CancelExportTaskCommand";
|
|
6
|
-
import { CancelImportTaskCommandInput, CancelImportTaskCommandOutput } from "./commands/CancelImportTaskCommand";
|
|
7
|
-
import { CreateDeliveryCommandInput, CreateDeliveryCommandOutput } from "./commands/CreateDeliveryCommand";
|
|
8
|
-
import { CreateExportTaskCommandInput, CreateExportTaskCommandOutput } from "./commands/CreateExportTaskCommand";
|
|
9
|
-
import { CreateImportTaskCommandInput, CreateImportTaskCommandOutput } from "./commands/CreateImportTaskCommand";
|
|
10
|
-
import { CreateLogAnomalyDetectorCommandInput, CreateLogAnomalyDetectorCommandOutput } from "./commands/CreateLogAnomalyDetectorCommand";
|
|
11
|
-
import { CreateLogGroupCommandInput, CreateLogGroupCommandOutput } from "./commands/CreateLogGroupCommand";
|
|
12
|
-
import { CreateLogStreamCommandInput, CreateLogStreamCommandOutput } from "./commands/CreateLogStreamCommand";
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
3
|
+
import { type AssociateKmsKeyCommandInput, type AssociateKmsKeyCommandOutput } from "./commands/AssociateKmsKeyCommand";
|
|
4
|
+
import { type AssociateSourceToS3TableIntegrationCommandInput, type AssociateSourceToS3TableIntegrationCommandOutput } from "./commands/AssociateSourceToS3TableIntegrationCommand";
|
|
5
|
+
import { type CancelExportTaskCommandInput, type CancelExportTaskCommandOutput } from "./commands/CancelExportTaskCommand";
|
|
6
|
+
import { type CancelImportTaskCommandInput, type CancelImportTaskCommandOutput } from "./commands/CancelImportTaskCommand";
|
|
7
|
+
import { type CreateDeliveryCommandInput, type CreateDeliveryCommandOutput } from "./commands/CreateDeliveryCommand";
|
|
8
|
+
import { type CreateExportTaskCommandInput, type CreateExportTaskCommandOutput } from "./commands/CreateExportTaskCommand";
|
|
9
|
+
import { type CreateImportTaskCommandInput, type CreateImportTaskCommandOutput } from "./commands/CreateImportTaskCommand";
|
|
10
|
+
import { type CreateLogAnomalyDetectorCommandInput, type CreateLogAnomalyDetectorCommandOutput } from "./commands/CreateLogAnomalyDetectorCommand";
|
|
11
|
+
import { type CreateLogGroupCommandInput, type CreateLogGroupCommandOutput } from "./commands/CreateLogGroupCommand";
|
|
12
|
+
import { type CreateLogStreamCommandInput, type CreateLogStreamCommandOutput } from "./commands/CreateLogStreamCommand";
|
|
13
|
+
import { type CreateLookupTableCommandInput, type CreateLookupTableCommandOutput } from "./commands/CreateLookupTableCommand";
|
|
14
|
+
import { type CreateScheduledQueryCommandInput, type CreateScheduledQueryCommandOutput } from "./commands/CreateScheduledQueryCommand";
|
|
15
|
+
import { type DeleteAccountPolicyCommandInput, type DeleteAccountPolicyCommandOutput } from "./commands/DeleteAccountPolicyCommand";
|
|
16
|
+
import { type DeleteDataProtectionPolicyCommandInput, type DeleteDataProtectionPolicyCommandOutput } from "./commands/DeleteDataProtectionPolicyCommand";
|
|
17
|
+
import { type DeleteDeliveryCommandInput, type DeleteDeliveryCommandOutput } from "./commands/DeleteDeliveryCommand";
|
|
18
|
+
import { type DeleteDeliveryDestinationCommandInput, type DeleteDeliveryDestinationCommandOutput } from "./commands/DeleteDeliveryDestinationCommand";
|
|
19
|
+
import { type DeleteDeliveryDestinationPolicyCommandInput, type DeleteDeliveryDestinationPolicyCommandOutput } from "./commands/DeleteDeliveryDestinationPolicyCommand";
|
|
20
|
+
import { type DeleteDeliverySourceCommandInput, type DeleteDeliverySourceCommandOutput } from "./commands/DeleteDeliverySourceCommand";
|
|
21
|
+
import { type DeleteDestinationCommandInput, type DeleteDestinationCommandOutput } from "./commands/DeleteDestinationCommand";
|
|
22
|
+
import { type DeleteIndexPolicyCommandInput, type DeleteIndexPolicyCommandOutput } from "./commands/DeleteIndexPolicyCommand";
|
|
23
|
+
import { type DeleteIntegrationCommandInput, type DeleteIntegrationCommandOutput } from "./commands/DeleteIntegrationCommand";
|
|
24
|
+
import { type DeleteLogAnomalyDetectorCommandInput, type DeleteLogAnomalyDetectorCommandOutput } from "./commands/DeleteLogAnomalyDetectorCommand";
|
|
25
|
+
import { type DeleteLogGroupCommandInput, type DeleteLogGroupCommandOutput } from "./commands/DeleteLogGroupCommand";
|
|
26
|
+
import { type DeleteLogStreamCommandInput, type DeleteLogStreamCommandOutput } from "./commands/DeleteLogStreamCommand";
|
|
27
|
+
import { type DeleteLookupTableCommandInput, type DeleteLookupTableCommandOutput } from "./commands/DeleteLookupTableCommand";
|
|
28
|
+
import { type DeleteMetricFilterCommandInput, type DeleteMetricFilterCommandOutput } from "./commands/DeleteMetricFilterCommand";
|
|
29
|
+
import { type DeleteQueryDefinitionCommandInput, type DeleteQueryDefinitionCommandOutput } from "./commands/DeleteQueryDefinitionCommand";
|
|
30
|
+
import { type DeleteResourcePolicyCommandInput, type DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
|
|
31
|
+
import { type DeleteRetentionPolicyCommandInput, type DeleteRetentionPolicyCommandOutput } from "./commands/DeleteRetentionPolicyCommand";
|
|
32
|
+
import { type DeleteScheduledQueryCommandInput, type DeleteScheduledQueryCommandOutput } from "./commands/DeleteScheduledQueryCommand";
|
|
33
|
+
import { type DeleteSubscriptionFilterCommandInput, type DeleteSubscriptionFilterCommandOutput } from "./commands/DeleteSubscriptionFilterCommand";
|
|
34
|
+
import { type DeleteTransformerCommandInput, type DeleteTransformerCommandOutput } from "./commands/DeleteTransformerCommand";
|
|
35
|
+
import { type DescribeAccountPoliciesCommandInput, type DescribeAccountPoliciesCommandOutput } from "./commands/DescribeAccountPoliciesCommand";
|
|
36
|
+
import { type DescribeConfigurationTemplatesCommandInput, type DescribeConfigurationTemplatesCommandOutput } from "./commands/DescribeConfigurationTemplatesCommand";
|
|
37
|
+
import { type DescribeDeliveriesCommandInput, type DescribeDeliveriesCommandOutput } from "./commands/DescribeDeliveriesCommand";
|
|
38
|
+
import { type DescribeDeliveryDestinationsCommandInput, type DescribeDeliveryDestinationsCommandOutput } from "./commands/DescribeDeliveryDestinationsCommand";
|
|
39
|
+
import { type DescribeDeliverySourcesCommandInput, type DescribeDeliverySourcesCommandOutput } from "./commands/DescribeDeliverySourcesCommand";
|
|
40
|
+
import { type DescribeDestinationsCommandInput, type DescribeDestinationsCommandOutput } from "./commands/DescribeDestinationsCommand";
|
|
41
|
+
import { type DescribeExportTasksCommandInput, type DescribeExportTasksCommandOutput } from "./commands/DescribeExportTasksCommand";
|
|
42
|
+
import { type DescribeFieldIndexesCommandInput, type DescribeFieldIndexesCommandOutput } from "./commands/DescribeFieldIndexesCommand";
|
|
43
|
+
import { type DescribeImportTaskBatchesCommandInput, type DescribeImportTaskBatchesCommandOutput } from "./commands/DescribeImportTaskBatchesCommand";
|
|
44
|
+
import { type DescribeImportTasksCommandInput, type DescribeImportTasksCommandOutput } from "./commands/DescribeImportTasksCommand";
|
|
45
|
+
import { type DescribeIndexPoliciesCommandInput, type DescribeIndexPoliciesCommandOutput } from "./commands/DescribeIndexPoliciesCommand";
|
|
46
|
+
import { type DescribeLogGroupsCommandInput, type DescribeLogGroupsCommandOutput } from "./commands/DescribeLogGroupsCommand";
|
|
47
|
+
import { type DescribeLogStreamsCommandInput, type DescribeLogStreamsCommandOutput } from "./commands/DescribeLogStreamsCommand";
|
|
48
|
+
import { type DescribeLookupTablesCommandInput, type DescribeLookupTablesCommandOutput } from "./commands/DescribeLookupTablesCommand";
|
|
49
|
+
import { type DescribeMetricFiltersCommandInput, type DescribeMetricFiltersCommandOutput } from "./commands/DescribeMetricFiltersCommand";
|
|
50
|
+
import { type DescribeQueriesCommandInput, type DescribeQueriesCommandOutput } from "./commands/DescribeQueriesCommand";
|
|
51
|
+
import { type DescribeQueryDefinitionsCommandInput, type DescribeQueryDefinitionsCommandOutput } from "./commands/DescribeQueryDefinitionsCommand";
|
|
52
|
+
import { type DescribeResourcePoliciesCommandInput, type DescribeResourcePoliciesCommandOutput } from "./commands/DescribeResourcePoliciesCommand";
|
|
53
|
+
import { type DescribeSubscriptionFiltersCommandInput, type DescribeSubscriptionFiltersCommandOutput } from "./commands/DescribeSubscriptionFiltersCommand";
|
|
54
|
+
import { type DisassociateKmsKeyCommandInput, type DisassociateKmsKeyCommandOutput } from "./commands/DisassociateKmsKeyCommand";
|
|
55
|
+
import { type DisassociateSourceFromS3TableIntegrationCommandInput, type DisassociateSourceFromS3TableIntegrationCommandOutput } from "./commands/DisassociateSourceFromS3TableIntegrationCommand";
|
|
56
|
+
import { type FilterLogEventsCommandInput, type FilterLogEventsCommandOutput } from "./commands/FilterLogEventsCommand";
|
|
57
|
+
import { type GetDataProtectionPolicyCommandInput, type GetDataProtectionPolicyCommandOutput } from "./commands/GetDataProtectionPolicyCommand";
|
|
58
|
+
import { type GetDeliveryCommandInput, type GetDeliveryCommandOutput } from "./commands/GetDeliveryCommand";
|
|
59
|
+
import { type GetDeliveryDestinationCommandInput, type GetDeliveryDestinationCommandOutput } from "./commands/GetDeliveryDestinationCommand";
|
|
60
|
+
import { type GetDeliveryDestinationPolicyCommandInput, type GetDeliveryDestinationPolicyCommandOutput } from "./commands/GetDeliveryDestinationPolicyCommand";
|
|
61
|
+
import { type GetDeliverySourceCommandInput, type GetDeliverySourceCommandOutput } from "./commands/GetDeliverySourceCommand";
|
|
62
|
+
import { type GetIntegrationCommandInput, type GetIntegrationCommandOutput } from "./commands/GetIntegrationCommand";
|
|
63
|
+
import { type GetLogAnomalyDetectorCommandInput, type GetLogAnomalyDetectorCommandOutput } from "./commands/GetLogAnomalyDetectorCommand";
|
|
64
|
+
import { type GetLogEventsCommandInput, type GetLogEventsCommandOutput } from "./commands/GetLogEventsCommand";
|
|
65
|
+
import { type GetLogFieldsCommandInput, type GetLogFieldsCommandOutput } from "./commands/GetLogFieldsCommand";
|
|
66
|
+
import { type GetLogGroupFieldsCommandInput, type GetLogGroupFieldsCommandOutput } from "./commands/GetLogGroupFieldsCommand";
|
|
67
|
+
import { type GetLogObjectCommandInput, type GetLogObjectCommandOutput } from "./commands/GetLogObjectCommand";
|
|
68
|
+
import { type GetLogRecordCommandInput, type GetLogRecordCommandOutput } from "./commands/GetLogRecordCommand";
|
|
69
|
+
import { type GetLookupTableCommandInput, type GetLookupTableCommandOutput } from "./commands/GetLookupTableCommand";
|
|
70
|
+
import { type GetQueryResultsCommandInput, type GetQueryResultsCommandOutput } from "./commands/GetQueryResultsCommand";
|
|
71
|
+
import { type GetScheduledQueryCommandInput, type GetScheduledQueryCommandOutput } from "./commands/GetScheduledQueryCommand";
|
|
72
|
+
import { type GetScheduledQueryHistoryCommandInput, type GetScheduledQueryHistoryCommandOutput } from "./commands/GetScheduledQueryHistoryCommand";
|
|
73
|
+
import { type GetTransformerCommandInput, type GetTransformerCommandOutput } from "./commands/GetTransformerCommand";
|
|
74
|
+
import { type ListAggregateLogGroupSummariesCommandInput, type ListAggregateLogGroupSummariesCommandOutput } from "./commands/ListAggregateLogGroupSummariesCommand";
|
|
75
|
+
import { type ListAnomaliesCommandInput, type ListAnomaliesCommandOutput } from "./commands/ListAnomaliesCommand";
|
|
76
|
+
import { type ListIntegrationsCommandInput, type ListIntegrationsCommandOutput } from "./commands/ListIntegrationsCommand";
|
|
77
|
+
import { type ListLogAnomalyDetectorsCommandInput, type ListLogAnomalyDetectorsCommandOutput } from "./commands/ListLogAnomalyDetectorsCommand";
|
|
78
|
+
import { type ListLogGroupsCommandInput, type ListLogGroupsCommandOutput } from "./commands/ListLogGroupsCommand";
|
|
79
|
+
import { type ListLogGroupsForQueryCommandInput, type ListLogGroupsForQueryCommandOutput } from "./commands/ListLogGroupsForQueryCommand";
|
|
80
|
+
import { type ListScheduledQueriesCommandInput, type ListScheduledQueriesCommandOutput } from "./commands/ListScheduledQueriesCommand";
|
|
81
|
+
import { type ListSourcesForS3TableIntegrationCommandInput, type ListSourcesForS3TableIntegrationCommandOutput } from "./commands/ListSourcesForS3TableIntegrationCommand";
|
|
82
|
+
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
83
|
+
import { type ListTagsLogGroupCommandInput, type ListTagsLogGroupCommandOutput } from "./commands/ListTagsLogGroupCommand";
|
|
84
|
+
import { type PutAccountPolicyCommandInput, type PutAccountPolicyCommandOutput } from "./commands/PutAccountPolicyCommand";
|
|
85
|
+
import { type PutBearerTokenAuthenticationCommandInput, type PutBearerTokenAuthenticationCommandOutput } from "./commands/PutBearerTokenAuthenticationCommand";
|
|
86
|
+
import { type PutDataProtectionPolicyCommandInput, type PutDataProtectionPolicyCommandOutput } from "./commands/PutDataProtectionPolicyCommand";
|
|
87
|
+
import { type PutDeliveryDestinationCommandInput, type PutDeliveryDestinationCommandOutput } from "./commands/PutDeliveryDestinationCommand";
|
|
88
|
+
import { type PutDeliveryDestinationPolicyCommandInput, type PutDeliveryDestinationPolicyCommandOutput } from "./commands/PutDeliveryDestinationPolicyCommand";
|
|
89
|
+
import { type PutDeliverySourceCommandInput, type PutDeliverySourceCommandOutput } from "./commands/PutDeliverySourceCommand";
|
|
90
|
+
import { type PutDestinationCommandInput, type PutDestinationCommandOutput } from "./commands/PutDestinationCommand";
|
|
91
|
+
import { type PutDestinationPolicyCommandInput, type PutDestinationPolicyCommandOutput } from "./commands/PutDestinationPolicyCommand";
|
|
92
|
+
import { type PutIndexPolicyCommandInput, type PutIndexPolicyCommandOutput } from "./commands/PutIndexPolicyCommand";
|
|
93
|
+
import { type PutIntegrationCommandInput, type PutIntegrationCommandOutput } from "./commands/PutIntegrationCommand";
|
|
94
|
+
import { type PutLogEventsCommandInput, type PutLogEventsCommandOutput } from "./commands/PutLogEventsCommand";
|
|
95
|
+
import { type PutLogGroupDeletionProtectionCommandInput, type PutLogGroupDeletionProtectionCommandOutput } from "./commands/PutLogGroupDeletionProtectionCommand";
|
|
96
|
+
import { type PutMetricFilterCommandInput, type PutMetricFilterCommandOutput } from "./commands/PutMetricFilterCommand";
|
|
97
|
+
import { type PutQueryDefinitionCommandInput, type PutQueryDefinitionCommandOutput } from "./commands/PutQueryDefinitionCommand";
|
|
98
|
+
import { type PutResourcePolicyCommandInput, type PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
99
|
+
import { type PutRetentionPolicyCommandInput, type PutRetentionPolicyCommandOutput } from "./commands/PutRetentionPolicyCommand";
|
|
100
|
+
import { type PutSubscriptionFilterCommandInput, type PutSubscriptionFilterCommandOutput } from "./commands/PutSubscriptionFilterCommand";
|
|
101
|
+
import { type PutTransformerCommandInput, type PutTransformerCommandOutput } from "./commands/PutTransformerCommand";
|
|
102
|
+
import { type StartLiveTailCommandInput, type StartLiveTailCommandOutput } from "./commands/StartLiveTailCommand";
|
|
103
|
+
import { type StartQueryCommandInput, type StartQueryCommandOutput } from "./commands/StartQueryCommand";
|
|
104
|
+
import { type StopQueryCommandInput, type StopQueryCommandOutput } from "./commands/StopQueryCommand";
|
|
105
|
+
import { type TagLogGroupCommandInput, type TagLogGroupCommandOutput } from "./commands/TagLogGroupCommand";
|
|
106
|
+
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
107
|
+
import { type TestMetricFilterCommandInput, type TestMetricFilterCommandOutput } from "./commands/TestMetricFilterCommand";
|
|
108
|
+
import { type TestTransformerCommandInput, type TestTransformerCommandOutput } from "./commands/TestTransformerCommand";
|
|
109
|
+
import { type UntagLogGroupCommandInput, type UntagLogGroupCommandOutput } from "./commands/UntagLogGroupCommand";
|
|
110
|
+
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
111
|
+
import { type UpdateAnomalyCommandInput, type UpdateAnomalyCommandOutput } from "./commands/UpdateAnomalyCommand";
|
|
112
|
+
import { type UpdateDeliveryConfigurationCommandInput, type UpdateDeliveryConfigurationCommandOutput } from "./commands/UpdateDeliveryConfigurationCommand";
|
|
113
|
+
import { type UpdateLogAnomalyDetectorCommandInput, type UpdateLogAnomalyDetectorCommandOutput } from "./commands/UpdateLogAnomalyDetectorCommand";
|
|
114
|
+
import { type UpdateLookupTableCommandInput, type UpdateLookupTableCommandOutput } from "./commands/UpdateLookupTableCommand";
|
|
115
|
+
import { type UpdateScheduledQueryCommandInput, type UpdateScheduledQueryCommandOutput } from "./commands/UpdateScheduledQueryCommand";
|
|
111
116
|
export interface CloudWatchLogs {
|
|
112
117
|
/**
|
|
113
118
|
* @see {@link AssociateKmsKeyCommand}
|
|
@@ -169,6 +174,12 @@ export interface CloudWatchLogs {
|
|
|
169
174
|
createLogStream(args: CreateLogStreamCommandInput, options?: __HttpHandlerOptions): Promise<CreateLogStreamCommandOutput>;
|
|
170
175
|
createLogStream(args: CreateLogStreamCommandInput, cb: (err: any, data?: CreateLogStreamCommandOutput) => void): void;
|
|
171
176
|
createLogStream(args: CreateLogStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLogStreamCommandOutput) => void): void;
|
|
177
|
+
/**
|
|
178
|
+
* @see {@link CreateLookupTableCommand}
|
|
179
|
+
*/
|
|
180
|
+
createLookupTable(args: CreateLookupTableCommandInput, options?: __HttpHandlerOptions): Promise<CreateLookupTableCommandOutput>;
|
|
181
|
+
createLookupTable(args: CreateLookupTableCommandInput, cb: (err: any, data?: CreateLookupTableCommandOutput) => void): void;
|
|
182
|
+
createLookupTable(args: CreateLookupTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLookupTableCommandOutput) => void): void;
|
|
172
183
|
/**
|
|
173
184
|
* @see {@link CreateScheduledQueryCommand}
|
|
174
185
|
*/
|
|
@@ -247,6 +258,12 @@ export interface CloudWatchLogs {
|
|
|
247
258
|
deleteLogStream(args: DeleteLogStreamCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLogStreamCommandOutput>;
|
|
248
259
|
deleteLogStream(args: DeleteLogStreamCommandInput, cb: (err: any, data?: DeleteLogStreamCommandOutput) => void): void;
|
|
249
260
|
deleteLogStream(args: DeleteLogStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLogStreamCommandOutput) => void): void;
|
|
261
|
+
/**
|
|
262
|
+
* @see {@link DeleteLookupTableCommand}
|
|
263
|
+
*/
|
|
264
|
+
deleteLookupTable(args: DeleteLookupTableCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLookupTableCommandOutput>;
|
|
265
|
+
deleteLookupTable(args: DeleteLookupTableCommandInput, cb: (err: any, data?: DeleteLookupTableCommandOutput) => void): void;
|
|
266
|
+
deleteLookupTable(args: DeleteLookupTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLookupTableCommandOutput) => void): void;
|
|
250
267
|
/**
|
|
251
268
|
* @see {@link DeleteMetricFilterCommand}
|
|
252
269
|
*/
|
|
@@ -377,6 +394,13 @@ export interface CloudWatchLogs {
|
|
|
377
394
|
describeLogStreams(args: DescribeLogStreamsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLogStreamsCommandOutput>;
|
|
378
395
|
describeLogStreams(args: DescribeLogStreamsCommandInput, cb: (err: any, data?: DescribeLogStreamsCommandOutput) => void): void;
|
|
379
396
|
describeLogStreams(args: DescribeLogStreamsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLogStreamsCommandOutput) => void): void;
|
|
397
|
+
/**
|
|
398
|
+
* @see {@link DescribeLookupTablesCommand}
|
|
399
|
+
*/
|
|
400
|
+
describeLookupTables(): Promise<DescribeLookupTablesCommandOutput>;
|
|
401
|
+
describeLookupTables(args: DescribeLookupTablesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLookupTablesCommandOutput>;
|
|
402
|
+
describeLookupTables(args: DescribeLookupTablesCommandInput, cb: (err: any, data?: DescribeLookupTablesCommandOutput) => void): void;
|
|
403
|
+
describeLookupTables(args: DescribeLookupTablesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLookupTablesCommandOutput) => void): void;
|
|
380
404
|
/**
|
|
381
405
|
* @see {@link DescribeMetricFiltersCommand}
|
|
382
406
|
*/
|
|
@@ -504,6 +528,12 @@ export interface CloudWatchLogs {
|
|
|
504
528
|
getLogRecord(args: GetLogRecordCommandInput, options?: __HttpHandlerOptions): Promise<GetLogRecordCommandOutput>;
|
|
505
529
|
getLogRecord(args: GetLogRecordCommandInput, cb: (err: any, data?: GetLogRecordCommandOutput) => void): void;
|
|
506
530
|
getLogRecord(args: GetLogRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLogRecordCommandOutput) => void): void;
|
|
531
|
+
/**
|
|
532
|
+
* @see {@link GetLookupTableCommand}
|
|
533
|
+
*/
|
|
534
|
+
getLookupTable(args: GetLookupTableCommandInput, options?: __HttpHandlerOptions): Promise<GetLookupTableCommandOutput>;
|
|
535
|
+
getLookupTable(args: GetLookupTableCommandInput, cb: (err: any, data?: GetLookupTableCommandOutput) => void): void;
|
|
536
|
+
getLookupTable(args: GetLookupTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLookupTableCommandOutput) => void): void;
|
|
507
537
|
/**
|
|
508
538
|
* @see {@link GetQueryResultsCommand}
|
|
509
539
|
*/
|
|
@@ -774,6 +804,12 @@ export interface CloudWatchLogs {
|
|
|
774
804
|
updateLogAnomalyDetector(args: UpdateLogAnomalyDetectorCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLogAnomalyDetectorCommandOutput>;
|
|
775
805
|
updateLogAnomalyDetector(args: UpdateLogAnomalyDetectorCommandInput, cb: (err: any, data?: UpdateLogAnomalyDetectorCommandOutput) => void): void;
|
|
776
806
|
updateLogAnomalyDetector(args: UpdateLogAnomalyDetectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLogAnomalyDetectorCommandOutput) => void): void;
|
|
807
|
+
/**
|
|
808
|
+
* @see {@link UpdateLookupTableCommand}
|
|
809
|
+
*/
|
|
810
|
+
updateLookupTable(args: UpdateLookupTableCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLookupTableCommandOutput>;
|
|
811
|
+
updateLookupTable(args: UpdateLookupTableCommandInput, cb: (err: any, data?: UpdateLookupTableCommandOutput) => void): void;
|
|
812
|
+
updateLookupTable(args: UpdateLookupTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLookupTableCommandOutput) => void): void;
|
|
777
813
|
/**
|
|
778
814
|
* @see {@link UpdateScheduledQueryCommand}
|
|
779
815
|
*/
|