@aws-sdk/client-cloudwatch-logs 3.1018.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/auth/httpAuthSchemeProvider.js +2 -2
- package/dist-cjs/index.js +70 -0
- package/dist-cjs/runtimeConfig.js +4 -3
- package/dist-cjs/runtimeConfig.shared.js +2 -2
- package/dist-cjs/schemas/schemas_0.js +110 -16
- package/dist-es/CloudWatchLogs.js +14 -4
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- 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/runtimeConfig.js +2 -1
- package/dist-es/runtimeConfig.shared.js +1 -1
- 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/auth/httpAuthSchemeProvider.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/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.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/auth/httpAuthSchemeProvider.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/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +15 -0
- package/package.json +14 -14
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.UpdateScheduledQuery$ = exports.UpdateLogAnomalyDetector$ = exports.UpdateDeliveryConfiguration$ = exports.UpdateAnomaly$ = exports.UntagResource$ = exports.UntagLogGroup$ = exports.TestTransformer$ = exports.TestMetricFilter$ = exports.TagResource$ = exports.TagLogGroup$ = exports.StopQuery$ = exports.StartQuery$ = exports.StartLiveTail$ = exports.PutTransformer$ = exports.PutSubscriptionFilter$ = exports.PutRetentionPolicy$ = exports.PutResourcePolicy$ = exports.PutQueryDefinition$ = exports.PutMetricFilter$ = exports.PutLogGroupDeletionProtection$ = exports.PutLogEvents$ = exports.PutIntegration$ = exports.PutIndexPolicy$ = exports.PutDestinationPolicy$ = exports.PutDestination$ = exports.PutDeliverySource$ = exports.PutDeliveryDestinationPolicy$ = void 0;
|
|
3
|
+
exports.CreateLookupTableRequest$ = exports.CreateLogStreamRequest$ = exports.CreateLogGroupRequest$ = exports.CreateLogAnomalyDetectorResponse$ = exports.CreateLogAnomalyDetectorRequest$ = exports.CreateImportTaskResponse$ = exports.CreateImportTaskRequest$ = exports.CreateExportTaskResponse$ = exports.CreateExportTaskRequest$ = exports.CreateDeliveryResponse$ = exports.CreateDeliveryRequest$ = exports.CopyValueEntry$ = exports.CopyValue$ = exports.ConfigurationTemplateDeliveryConfigValues$ = exports.ConfigurationTemplate$ = exports.CancelImportTaskResponse$ = exports.CancelImportTaskRequest$ = exports.CancelExportTaskRequest$ = exports.AssociateSourceToS3TableIntegrationResponse$ = exports.AssociateSourceToS3TableIntegrationRequest$ = exports.AssociateKmsKeyRequest$ = exports.AnomalyDetector$ = exports.Anomaly$ = exports.AggregateLogGroupSummary$ = exports.AddKeys$ = exports.AddKeyEntry$ = exports.AccountPolicy$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.UnrecognizedClientException$ = exports.TooManyTagsException$ = exports.ThrottlingException$ = exports.SessionTimeoutException$ = exports.SessionStreamingException$ = exports.ServiceUnavailableException$ = exports.ServiceQuotaExceededException$ = exports.ResourceNotFoundException$ = exports.ResourceAlreadyExistsException$ = exports.OperationAbortedException$ = exports.MalformedQueryException$ = exports.LimitExceededException$ = exports.InvalidSequenceTokenException$ = exports.InvalidParameterException$ = exports.InvalidOperationException$ = exports.InternalStreamingException$ = exports.InternalServerException$ = exports.DataAlreadyAcceptedException$ = exports.ConflictException$ = exports.AccessDeniedException$ = exports.CloudWatchLogsServiceException$ = void 0;
|
|
4
|
+
exports.DescribeExportTasksResponse$ = exports.DescribeExportTasksRequest$ = exports.DescribeDestinationsResponse$ = exports.DescribeDestinationsRequest$ = exports.DescribeDeliverySourcesResponse$ = exports.DescribeDeliverySourcesRequest$ = exports.DescribeDeliveryDestinationsResponse$ = exports.DescribeDeliveryDestinationsRequest$ = exports.DescribeDeliveriesResponse$ = exports.DescribeDeliveriesRequest$ = exports.DescribeConfigurationTemplatesResponse$ = exports.DescribeConfigurationTemplatesRequest$ = exports.DescribeAccountPoliciesResponse$ = exports.DescribeAccountPoliciesRequest$ = exports.DeliverySource$ = exports.DeliveryDestinationConfiguration$ = exports.DeliveryDestination$ = exports.Delivery$ = exports.DeleteTransformerRequest$ = exports.DeleteSubscriptionFilterRequest$ = exports.DeleteScheduledQueryResponse$ = exports.DeleteScheduledQueryRequest$ = exports.DeleteRetentionPolicyRequest$ = exports.DeleteResourcePolicyRequest$ = exports.DeleteQueryDefinitionResponse$ = exports.DeleteQueryDefinitionRequest$ = exports.DeleteMetricFilterRequest$ = exports.DeleteLookupTableRequest$ = exports.DeleteLogStreamRequest$ = exports.DeleteLogGroupRequest$ = exports.DeleteLogAnomalyDetectorRequest$ = exports.DeleteKeys$ = exports.DeleteIntegrationResponse$ = exports.DeleteIntegrationRequest$ = exports.DeleteIndexPolicyResponse$ = exports.DeleteIndexPolicyRequest$ = exports.DeleteDestinationRequest$ = exports.DeleteDeliverySourceRequest$ = exports.DeleteDeliveryRequest$ = exports.DeleteDeliveryDestinationRequest$ = exports.DeleteDeliveryDestinationPolicyRequest$ = exports.DeleteDataProtectionPolicyRequest$ = exports.DeleteAccountPolicyRequest$ = exports.DateTimeConverter$ = exports.DataSourceFilter$ = exports.DataSource$ = exports.CSV$ = exports.CreateScheduledQueryResponse$ = exports.CreateScheduledQueryRequest$ = exports.CreateLookupTableResponse$ = void 0;
|
|
5
|
+
exports.GetIntegrationResponse$ = exports.GetIntegrationRequest$ = exports.GetDeliverySourceResponse$ = exports.GetDeliverySourceRequest$ = exports.GetDeliveryResponse$ = exports.GetDeliveryRequest$ = exports.GetDeliveryDestinationResponse$ = exports.GetDeliveryDestinationRequest$ = exports.GetDeliveryDestinationPolicyResponse$ = exports.GetDeliveryDestinationPolicyRequest$ = exports.GetDataProtectionPolicyResponse$ = exports.GetDataProtectionPolicyRequest$ = exports.FilterLogEventsResponse$ = exports.FilterLogEventsRequest$ = exports.FilteredLogEvent$ = exports.FieldsData$ = exports.FieldIndex$ = exports.ExportTaskStatus$ = exports.ExportTaskExecutionInfo$ = exports.ExportTask$ = exports.Entity$ = exports.DisassociateSourceFromS3TableIntegrationResponse$ = exports.DisassociateSourceFromS3TableIntegrationRequest$ = exports.DisassociateKmsKeyRequest$ = exports.DestinationConfiguration$ = exports.Destination$ = exports.DescribeSubscriptionFiltersResponse$ = exports.DescribeSubscriptionFiltersRequest$ = exports.DescribeResourcePoliciesResponse$ = exports.DescribeResourcePoliciesRequest$ = exports.DescribeQueryDefinitionsResponse$ = exports.DescribeQueryDefinitionsRequest$ = exports.DescribeQueriesResponse$ = exports.DescribeQueriesRequest$ = exports.DescribeMetricFiltersResponse$ = exports.DescribeMetricFiltersRequest$ = exports.DescribeLookupTablesResponse$ = exports.DescribeLookupTablesRequest$ = exports.DescribeLogStreamsResponse$ = exports.DescribeLogStreamsRequest$ = exports.DescribeLogGroupsResponse$ = exports.DescribeLogGroupsRequest$ = exports.DescribeIndexPoliciesResponse$ = exports.DescribeIndexPoliciesRequest$ = exports.DescribeImportTasksResponse$ = exports.DescribeImportTasksRequest$ = exports.DescribeImportTaskBatchesResponse$ = exports.DescribeImportTaskBatchesRequest$ = exports.DescribeFieldIndexesResponse$ = exports.DescribeFieldIndexesRequest$ = void 0;
|
|
6
|
+
exports.ListTagsLogGroupRequest$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListSourcesForS3TableIntegrationResponse$ = exports.ListSourcesForS3TableIntegrationRequest$ = exports.ListScheduledQueriesResponse$ = exports.ListScheduledQueriesRequest$ = exports.ListLogGroupsResponse$ = exports.ListLogGroupsRequest$ = exports.ListLogGroupsForQueryResponse$ = exports.ListLogGroupsForQueryRequest$ = exports.ListLogAnomalyDetectorsResponse$ = exports.ListLogAnomalyDetectorsRequest$ = exports.ListIntegrationsResponse$ = exports.ListIntegrationsRequest$ = exports.ListAnomaliesResponse$ = exports.ListAnomaliesRequest$ = exports.ListAggregateLogGroupSummariesResponse$ = exports.ListAggregateLogGroupSummariesRequest$ = exports.IntegrationSummary$ = exports.InputLogEvent$ = exports.IndexPolicy$ = exports.ImportStatistics$ = exports.ImportFilter$ = exports.ImportBatch$ = exports.Import$ = exports.GroupingIdentifier$ = exports.Grok$ = exports.GetTransformerResponse$ = exports.GetTransformerRequest$ = exports.GetScheduledQueryResponse$ = exports.GetScheduledQueryRequest$ = exports.GetScheduledQueryHistoryResponse$ = exports.GetScheduledQueryHistoryRequest$ = exports.GetQueryResultsResponse$ = exports.GetQueryResultsRequest$ = exports.GetLookupTableResponse$ = exports.GetLookupTableRequest$ = exports.GetLogRecordResponse$ = exports.GetLogRecordRequest$ = exports.GetLogObjectResponse$ = exports.GetLogObjectRequest$ = exports.GetLogGroupFieldsResponse$ = exports.GetLogGroupFieldsRequest$ = exports.GetLogFieldsResponse$ = exports.GetLogFieldsRequest$ = exports.GetLogEventsResponse$ = exports.GetLogEventsRequest$ = exports.GetLogAnomalyDetectorResponse$ = exports.GetLogAnomalyDetectorRequest$ = void 0;
|
|
7
|
+
exports.PutDeliveryDestinationPolicyResponse$ = exports.PutDeliveryDestinationPolicyRequest$ = exports.PutDataProtectionPolicyResponse$ = exports.PutDataProtectionPolicyRequest$ = exports.PutBearerTokenAuthenticationRequest$ = exports.PutAccountPolicyResponse$ = exports.PutAccountPolicyRequest$ = exports.Processor$ = exports.Policy$ = exports.PatternToken$ = exports.ParseWAF$ = exports.ParseVPC$ = exports.ParseToOCSF$ = exports.ParseRoute53$ = exports.ParsePostgres$ = exports.ParseKeyValue$ = exports.ParseJSON$ = exports.ParseCloudfront$ = exports.OutputLogEvent$ = exports.OpenSearchWorkspace$ = exports.OpenSearchResourceStatus$ = exports.OpenSearchResourceConfig$ = exports.OpenSearchNetworkPolicy$ = exports.OpenSearchLifecyclePolicy$ = exports.OpenSearchIntegrationDetails$ = exports.OpenSearchEncryptionPolicy$ = exports.OpenSearchDataSource$ = exports.OpenSearchDataAccessPolicy$ = exports.OpenSearchCollection$ = exports.OpenSearchApplication$ = exports.MoveKeys$ = exports.MoveKeyEntry$ = exports.MetricTransformation$ = exports.MetricFilterMatchRecord$ = exports.MetricFilter$ = exports.LowerCaseString$ = exports.LookupTable$ = exports.LogStream$ = exports.LogGroupSummary$ = exports.LogGroupField$ = exports.LogGroup$ = exports.LogFieldType$ = exports.LogFieldsListItem$ = exports.LogEvent$ = exports.LiveTailSessionUpdate$ = exports.LiveTailSessionStart$ = exports.LiveTailSessionMetadata$ = exports.LiveTailSessionLogEvent$ = exports.ListToMap$ = exports.ListTagsLogGroupResponse$ = void 0;
|
|
8
|
+
exports.SubscriptionFilter$ = exports.StopQueryResponse$ = exports.StopQueryRequest$ = exports.StartQueryResponse$ = exports.StartQueryRequest$ = exports.StartLiveTailResponse$ = exports.StartLiveTailRequest$ = exports.SplitStringEntry$ = exports.SplitString$ = exports.SearchedLogStream$ = exports.ScheduledQuerySummary$ = exports.ScheduledQueryDestination$ = exports.S3TableIntegrationSource$ = exports.S3DeliveryConfiguration$ = exports.S3Configuration$ = exports.ResultField$ = exports.ResourcePolicy$ = exports.RenameKeys$ = exports.RenameKeyEntry$ = exports.RejectedLogEventsInfo$ = exports.RejectedEntityInfo$ = exports.RecordField$ = exports.QueryStatistics$ = exports.QueryParameter$ = exports.QueryInfo$ = exports.QueryDefinition$ = exports.QueryCompileErrorLocation$ = exports.QueryCompileError$ = exports.PutTransformerRequest$ = exports.PutSubscriptionFilterRequest$ = exports.PutRetentionPolicyRequest$ = exports.PutResourcePolicyResponse$ = exports.PutResourcePolicyRequest$ = exports.PutQueryDefinitionResponse$ = exports.PutQueryDefinitionRequest$ = exports.PutMetricFilterRequest$ = exports.PutLogGroupDeletionProtectionRequest$ = exports.PutLogEventsResponse$ = exports.PutLogEventsRequest$ = exports.PutIntegrationResponse$ = exports.PutIntegrationRequest$ = exports.PutIndexPolicyResponse$ = exports.PutIndexPolicyRequest$ = exports.PutDestinationResponse$ = exports.PutDestinationRequest$ = exports.PutDestinationPolicyRequest$ = exports.PutDeliverySourceResponse$ = exports.PutDeliverySourceRequest$ = exports.PutDeliveryDestinationResponse$ = exports.PutDeliveryDestinationRequest$ = void 0;
|
|
9
|
+
exports.DeleteIntegration$ = exports.DeleteIndexPolicy$ = exports.DeleteDestination$ = exports.DeleteDeliverySource$ = exports.DeleteDeliveryDestinationPolicy$ = exports.DeleteDeliveryDestination$ = exports.DeleteDelivery$ = exports.DeleteDataProtectionPolicy$ = exports.DeleteAccountPolicy$ = exports.CreateScheduledQuery$ = exports.CreateLookupTable$ = exports.CreateLogStream$ = exports.CreateLogGroup$ = exports.CreateLogAnomalyDetector$ = exports.CreateImportTask$ = exports.CreateExportTask$ = exports.CreateDelivery$ = exports.CancelImportTask$ = exports.CancelExportTask$ = exports.AssociateSourceToS3TableIntegration$ = exports.AssociateKmsKey$ = exports.StartLiveTailResponseStream$ = exports.ResourceConfig$ = exports.IntegrationDetails$ = exports.GetLogObjectResponseStream$ = exports.UpperCaseString$ = exports.UpdateScheduledQueryResponse$ = exports.UpdateScheduledQueryRequest$ = exports.UpdateLookupTableResponse$ = exports.UpdateLookupTableRequest$ = exports.UpdateLogAnomalyDetectorRequest$ = exports.UpdateDeliveryConfigurationResponse$ = exports.UpdateDeliveryConfigurationRequest$ = exports.UpdateAnomalyRequest$ = exports.UntagResourceRequest$ = exports.UntagLogGroupRequest$ = exports.TypeConverterEntry$ = exports.TypeConverter$ = exports.TrimString$ = exports.TriggerHistoryRecord$ = exports.TransformedLogRecord$ = exports.TestTransformerResponse$ = exports.TestTransformerRequest$ = exports.TestMetricFilterResponse$ = exports.TestMetricFilterRequest$ = exports.TagResourceRequest$ = exports.TagLogGroupRequest$ = exports.SuppressionPeriod$ = exports.SubstituteStringEntry$ = exports.SubstituteString$ = void 0;
|
|
10
|
+
exports.GetTransformer$ = exports.GetScheduledQueryHistory$ = exports.GetScheduledQuery$ = exports.GetQueryResults$ = exports.GetLookupTable$ = exports.GetLogRecord$ = exports.GetLogObject$ = exports.GetLogGroupFields$ = exports.GetLogFields$ = exports.GetLogEvents$ = exports.GetLogAnomalyDetector$ = exports.GetIntegration$ = exports.GetDeliverySource$ = exports.GetDeliveryDestinationPolicy$ = exports.GetDeliveryDestination$ = exports.GetDelivery$ = exports.GetDataProtectionPolicy$ = exports.FilterLogEvents$ = exports.DisassociateSourceFromS3TableIntegration$ = exports.DisassociateKmsKey$ = exports.DescribeSubscriptionFilters$ = exports.DescribeResourcePolicies$ = exports.DescribeQueryDefinitions$ = exports.DescribeQueries$ = exports.DescribeMetricFilters$ = exports.DescribeLookupTables$ = exports.DescribeLogStreams$ = exports.DescribeLogGroups$ = exports.DescribeIndexPolicies$ = exports.DescribeImportTasks$ = exports.DescribeImportTaskBatches$ = exports.DescribeFieldIndexes$ = exports.DescribeExportTasks$ = exports.DescribeDestinations$ = exports.DescribeDeliverySources$ = exports.DescribeDeliveryDestinations$ = exports.DescribeDeliveries$ = exports.DescribeConfigurationTemplates$ = exports.DescribeAccountPolicies$ = exports.DeleteTransformer$ = exports.DeleteSubscriptionFilter$ = exports.DeleteScheduledQuery$ = exports.DeleteRetentionPolicy$ = exports.DeleteResourcePolicy$ = exports.DeleteQueryDefinition$ = exports.DeleteMetricFilter$ = exports.DeleteLookupTable$ = exports.DeleteLogStream$ = exports.DeleteLogGroup$ = exports.DeleteLogAnomalyDetector$ = void 0;
|
|
11
|
+
exports.UpdateScheduledQuery$ = exports.UpdateLookupTable$ = exports.UpdateLogAnomalyDetector$ = exports.UpdateDeliveryConfiguration$ = exports.UpdateAnomaly$ = exports.UntagResource$ = exports.UntagLogGroup$ = exports.TestTransformer$ = exports.TestMetricFilter$ = exports.TagResource$ = exports.TagLogGroup$ = exports.StopQuery$ = exports.StartQuery$ = exports.StartLiveTail$ = exports.PutTransformer$ = exports.PutSubscriptionFilter$ = exports.PutRetentionPolicy$ = exports.PutResourcePolicy$ = exports.PutQueryDefinition$ = exports.PutMetricFilter$ = exports.PutLogGroupDeletionProtection$ = exports.PutLogEvents$ = exports.PutIntegration$ = exports.PutIndexPolicy$ = exports.PutDestinationPolicy$ = exports.PutDestination$ = exports.PutDeliverySource$ = exports.PutDeliveryDestinationPolicy$ = exports.PutDeliveryDestination$ = exports.PutDataProtectionPolicy$ = exports.PutBearerTokenAuthentication$ = exports.PutAccountPolicy$ = exports.ListTagsLogGroup$ = exports.ListTagsForResource$ = exports.ListSourcesForS3TableIntegration$ = exports.ListScheduledQueries$ = exports.ListLogGroupsForQuery$ = exports.ListLogGroups$ = exports.ListLogAnomalyDetectors$ = exports.ListIntegrations$ = exports.ListAnomalies$ = exports.ListAggregateLogGroupSummaries$ = void 0;
|
|
12
12
|
const _A = "Anomaly";
|
|
13
13
|
const _AD = "AnomalyDetector";
|
|
14
14
|
const _ADE = "AccessDeniedException";
|
|
@@ -49,6 +49,9 @@ const _CLG = "CreateLogGroup";
|
|
|
49
49
|
const _CLGR = "CreateLogGroupRequest";
|
|
50
50
|
const _CLS = "CreateLogStream";
|
|
51
51
|
const _CLSR = "CreateLogStreamRequest";
|
|
52
|
+
const _CLT = "CreateLookupTable";
|
|
53
|
+
const _CLTR = "CreateLookupTableRequest";
|
|
54
|
+
const _CLTRr = "CreateLookupTableResponse";
|
|
52
55
|
const _CSQ = "CreateScheduledQuery";
|
|
53
56
|
const _CSQR = "CreateScheduledQueryRequest";
|
|
54
57
|
const _CSQRr = "CreateScheduledQueryResponse";
|
|
@@ -133,6 +136,11 @@ const _DLSR = "DeleteLogStreamRequest";
|
|
|
133
136
|
const _DLSRe = "DescribeLogStreamsRequest";
|
|
134
137
|
const _DLSRes = "DescribeLogStreamsResponse";
|
|
135
138
|
const _DLSe = "DescribeLogStreams";
|
|
139
|
+
const _DLT = "DeleteLookupTable";
|
|
140
|
+
const _DLTR = "DeleteLookupTableRequest";
|
|
141
|
+
const _DLTRe = "DescribeLookupTablesRequest";
|
|
142
|
+
const _DLTRes = "DescribeLookupTablesResponse";
|
|
143
|
+
const _DLTe = "DescribeLookupTables";
|
|
136
144
|
const _DMF = "DeleteMetricFilter";
|
|
137
145
|
const _DMFR = "DeleteMetricFilterRequest";
|
|
138
146
|
const _DMFRe = "DescribeMetricFiltersRequest";
|
|
@@ -230,6 +238,9 @@ const _GLORe = "GetLogObjectResponse";
|
|
|
230
238
|
const _GLR = "GetLogRecord";
|
|
231
239
|
const _GLRR = "GetLogRecordRequest";
|
|
232
240
|
const _GLRRe = "GetLogRecordResponse";
|
|
241
|
+
const _GLT = "GetLookupTable";
|
|
242
|
+
const _GLTR = "GetLookupTableRequest";
|
|
243
|
+
const _GLTRe = "GetLookupTableResponse";
|
|
233
244
|
const _GQR = "GetQueryResults";
|
|
234
245
|
const _GQRR = "GetQueryResultsRequest";
|
|
235
246
|
const _GQRRe = "GetQueryResultsResponse";
|
|
@@ -299,6 +310,7 @@ const _LSQR = "ListScheduledQueriesRequest";
|
|
|
299
310
|
const _LSQRi = "ListScheduledQueriesResponse";
|
|
300
311
|
const _LSo = "LogSamples";
|
|
301
312
|
const _LSog = "LogStreams";
|
|
313
|
+
const _LT = "LookupTable";
|
|
302
314
|
const _LTFR = "ListTagsForResource";
|
|
303
315
|
const _LTFRR = "ListTagsForResourceRequest";
|
|
304
316
|
const _LTFRRi = "ListTagsForResourceResponse";
|
|
@@ -311,6 +323,7 @@ const _LTSM = "LiveTailSessionMetadata";
|
|
|
311
323
|
const _LTSR = "LiveTailSessionResults";
|
|
312
324
|
const _LTSS = "LiveTailSessionStart";
|
|
313
325
|
const _LTSU = "LiveTailSessionUpdate";
|
|
326
|
+
const _LTo = "LookupTables";
|
|
314
327
|
const _MF = "MetricFilter";
|
|
315
328
|
const _MFM = "MetricFilterMatches";
|
|
316
329
|
const _MFMR = "MetricFilterMatchRecord";
|
|
@@ -482,6 +495,9 @@ const _ULAD = "UpdateLogAnomalyDetector";
|
|
|
482
495
|
const _ULADR = "UpdateLogAnomalyDetectorRequest";
|
|
483
496
|
const _ULG = "UntagLogGroup";
|
|
484
497
|
const _ULGR = "UntagLogGroupRequest";
|
|
498
|
+
const _ULT = "UpdateLookupTable";
|
|
499
|
+
const _ULTR = "UpdateLookupTableRequest";
|
|
500
|
+
const _ULTRp = "UpdateLookupTableResponse";
|
|
485
501
|
const _UR = "UntagResource";
|
|
486
502
|
const _URR = "UntagResourceRequest";
|
|
487
503
|
const _USQ = "UpdateScheduledQuery";
|
|
@@ -521,7 +537,8 @@ const _bIy = "bytesImported";
|
|
|
521
537
|
const _bS = "bytesScanned";
|
|
522
538
|
const _bTAE = "bearerTokenAuthenticationEnabled";
|
|
523
539
|
const _c = "client";
|
|
524
|
-
const _cA = "
|
|
540
|
+
const _cA = "createdAt";
|
|
541
|
+
const _cAo = "collectionArn";
|
|
525
542
|
const _cE = "collectionEndpoint";
|
|
526
543
|
const _cT = "creationTime";
|
|
527
544
|
const _cTS = "creationTimeStamp";
|
|
@@ -710,9 +727,13 @@ const _lST = "lastScanTime";
|
|
|
710
727
|
const _lSo = "logSamples";
|
|
711
728
|
const _lSog = "logStreams";
|
|
712
729
|
const _lT = "logType";
|
|
730
|
+
const _lTA = "lookupTableArn";
|
|
713
731
|
const _lTM = "listToMap";
|
|
732
|
+
const _lTN = "lookupTableName";
|
|
733
|
+
const _lTNP = "lookupTableNamePrefix";
|
|
714
734
|
const _lTT = "lastTriggeredTime";
|
|
715
735
|
const _lTo = "logTypes";
|
|
736
|
+
const _lToo = "lookupTables";
|
|
716
737
|
const _lUT = "lastUpdatedTime";
|
|
717
738
|
const _lUTa = "lastUpdateTime";
|
|
718
739
|
const _li = "limit";
|
|
@@ -779,7 +800,8 @@ const _r = "results";
|
|
|
779
800
|
const _rA = "resourceArn";
|
|
780
801
|
const _rAe = "resourceArns";
|
|
781
802
|
const _rAo = "roleArn";
|
|
782
|
-
const _rC = "
|
|
803
|
+
const _rC = "recordsCount";
|
|
804
|
+
const _rCe = "resourceConfig";
|
|
783
805
|
const _rD = "retentionDays";
|
|
784
806
|
const _rEI = "rejectedEntityInfo";
|
|
785
807
|
const _rF = "recordFields";
|
|
@@ -799,7 +821,8 @@ const _rT = "resourceType";
|
|
|
799
821
|
const _rTe = "resourceTypes";
|
|
800
822
|
const _rTen = "renameTo";
|
|
801
823
|
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.cloudwatchlogs";
|
|
802
|
-
const _sB = "
|
|
824
|
+
const _sB = "sizeBytes";
|
|
825
|
+
const _sBt = "storedBytes";
|
|
803
826
|
const _sC = "selectionCriteria";
|
|
804
827
|
const _sCO = "startCharOffset";
|
|
805
828
|
const _sCe = "searchedCompletely";
|
|
@@ -849,10 +872,12 @@ const _su = "suppressed";
|
|
|
849
872
|
const _suc = "success";
|
|
850
873
|
const _t = "target";
|
|
851
874
|
const _tA = "targetArn";
|
|
875
|
+
const _tB = "tableBody";
|
|
852
876
|
const _tC = "transformerConfig";
|
|
853
877
|
const _tCy = "typeConverter";
|
|
854
878
|
const _tEM = "transformedEventMessage";
|
|
855
879
|
const _tF = "targetFormat";
|
|
880
|
+
const _tFa = "tableFields";
|
|
856
881
|
const _tH = "triggerHistory";
|
|
857
882
|
const _tI = "taskId";
|
|
858
883
|
const _tK = "tagKeys";
|
|
@@ -1147,6 +1172,16 @@ exports.CreateLogStreamRequest$ = [3, n0, _CLSR,
|
|
|
1147
1172
|
[_lGN, _lSN],
|
|
1148
1173
|
[0, 0], 2
|
|
1149
1174
|
];
|
|
1175
|
+
exports.CreateLookupTableRequest$ = [3, n0, _CLTR,
|
|
1176
|
+
0,
|
|
1177
|
+
[_lTN, _tB, _d, _kKI, _ta],
|
|
1178
|
+
[0, 0, 0, 0, 128 | 0], 2
|
|
1179
|
+
];
|
|
1180
|
+
exports.CreateLookupTableResponse$ = [3, n0, _CLTRr,
|
|
1181
|
+
0,
|
|
1182
|
+
[_lTA, _cA],
|
|
1183
|
+
[0, 1]
|
|
1184
|
+
];
|
|
1150
1185
|
exports.CreateScheduledQueryRequest$ = [3, n0, _CSQR,
|
|
1151
1186
|
0,
|
|
1152
1187
|
[_n, _qL, _qS, _sE, _eRA, _d, _lGI, _ti, _sTO, _dC, _sST, _sET, _st, _ta],
|
|
@@ -1252,6 +1287,11 @@ exports.DeleteLogStreamRequest$ = [3, n0, _DLSR,
|
|
|
1252
1287
|
[_lGN, _lSN],
|
|
1253
1288
|
[0, 0], 2
|
|
1254
1289
|
];
|
|
1290
|
+
exports.DeleteLookupTableRequest$ = [3, n0, _DLTR,
|
|
1291
|
+
0,
|
|
1292
|
+
[_lTA],
|
|
1293
|
+
[0], 1
|
|
1294
|
+
];
|
|
1255
1295
|
exports.DeleteMetricFilterRequest$ = [3, n0, _DMFR,
|
|
1256
1296
|
0,
|
|
1257
1297
|
[_lGN, _fN],
|
|
@@ -1447,6 +1487,16 @@ exports.DescribeLogStreamsResponse$ = [3, n0, _DLSRes,
|
|
|
1447
1487
|
[_lSog, _nT],
|
|
1448
1488
|
[() => LogStreams, 0]
|
|
1449
1489
|
];
|
|
1490
|
+
exports.DescribeLookupTablesRequest$ = [3, n0, _DLTRe,
|
|
1491
|
+
0,
|
|
1492
|
+
[_lTNP, _mR, _nT],
|
|
1493
|
+
[0, 1, 0]
|
|
1494
|
+
];
|
|
1495
|
+
exports.DescribeLookupTablesResponse$ = [3, n0, _DLTRes,
|
|
1496
|
+
0,
|
|
1497
|
+
[_lToo, _nT],
|
|
1498
|
+
[() => LookupTables, 0]
|
|
1499
|
+
];
|
|
1450
1500
|
exports.DescribeMetricFiltersRequest$ = [3, n0, _DMFRe,
|
|
1451
1501
|
0,
|
|
1452
1502
|
[_lGN, _fNP, _nT, _li, _mN, _mNe],
|
|
@@ -1687,6 +1737,16 @@ exports.GetLogRecordResponse$ = [3, n0, _GLRRe,
|
|
|
1687
1737
|
[_lR],
|
|
1688
1738
|
[128 | 0]
|
|
1689
1739
|
];
|
|
1740
|
+
exports.GetLookupTableRequest$ = [3, n0, _GLTR,
|
|
1741
|
+
0,
|
|
1742
|
+
[_lTA],
|
|
1743
|
+
[0], 1
|
|
1744
|
+
];
|
|
1745
|
+
exports.GetLookupTableResponse$ = [3, n0, _GLTRe,
|
|
1746
|
+
0,
|
|
1747
|
+
[_lTA, _lTN, _d, _tB, _sB, _lUT, _kKI],
|
|
1748
|
+
[0, 0, 0, 0, 1, 1, 0]
|
|
1749
|
+
];
|
|
1690
1750
|
exports.GetQueryResultsRequest$ = [3, n0, _GQRR,
|
|
1691
1751
|
0,
|
|
1692
1752
|
[_qI],
|
|
@@ -1914,7 +1974,7 @@ exports.LogFieldType$ = [3, n0, _LFT,
|
|
|
1914
1974
|
];
|
|
1915
1975
|
exports.LogGroup$ = [3, n0, _LG,
|
|
1916
1976
|
0,
|
|
1917
|
-
[_lGN, _cT, _rID, _mFC, _ar,
|
|
1977
|
+
[_lGN, _cT, _rID, _mFC, _ar, _sBt, _kKI, _dPS, _iPn, _lGCo, _lGA, _dPE, _bTAE],
|
|
1918
1978
|
[0, 1, 1, 1, 0, 1, 0, 0, 64 | 0, 0, 0, 2, 2]
|
|
1919
1979
|
];
|
|
1920
1980
|
exports.LogGroupField$ = [3, n0, _LGF,
|
|
@@ -1929,9 +1989,14 @@ exports.LogGroupSummary$ = [3, n0, _LGS,
|
|
|
1929
1989
|
];
|
|
1930
1990
|
exports.LogStream$ = [3, n0, _LS,
|
|
1931
1991
|
0,
|
|
1932
|
-
[_lSN, _cT, _fETi, _lETa, _lIT, _uST, _ar,
|
|
1992
|
+
[_lSN, _cT, _fETi, _lETa, _lIT, _uST, _ar, _sBt],
|
|
1933
1993
|
[0, 1, 1, 1, 1, 0, 0, 1]
|
|
1934
1994
|
];
|
|
1995
|
+
exports.LookupTable$ = [3, n0, _LT,
|
|
1996
|
+
0,
|
|
1997
|
+
[_lTA, _lTN, _d, _tFa, _rC, _sB, _lUT, _kKI],
|
|
1998
|
+
[0, 0, 0, 64 | 0, 1, 1, 1, 0]
|
|
1999
|
+
];
|
|
1935
2000
|
exports.LowerCaseString$ = [3, n0, _LCS,
|
|
1936
2001
|
0,
|
|
1937
2002
|
[_wK],
|
|
@@ -1969,7 +2034,7 @@ exports.OpenSearchApplication$ = [3, n0, _OSA,
|
|
|
1969
2034
|
];
|
|
1970
2035
|
exports.OpenSearchCollection$ = [3, n0, _OSC,
|
|
1971
2036
|
0,
|
|
1972
|
-
[_cE,
|
|
2037
|
+
[_cE, _cAo, _sta],
|
|
1973
2038
|
[0, 0, () => exports.OpenSearchResourceStatus$]
|
|
1974
2039
|
];
|
|
1975
2040
|
exports.OpenSearchDataAccessPolicy$ = [3, n0, _OSDAP,
|
|
@@ -2159,7 +2224,7 @@ exports.PutIndexPolicyResponse$ = [3, n0, _PIPRu,
|
|
|
2159
2224
|
];
|
|
2160
2225
|
exports.PutIntegrationRequest$ = [3, n0, _PIR,
|
|
2161
2226
|
0,
|
|
2162
|
-
[_iN,
|
|
2227
|
+
[_iN, _rCe, _iTn],
|
|
2163
2228
|
[0, () => exports.ResourceConfig$, 0], 3
|
|
2164
2229
|
];
|
|
2165
2230
|
exports.PutIntegrationResponse$ = [3, n0, _PIRu,
|
|
@@ -2462,6 +2527,16 @@ exports.UpdateLogAnomalyDetectorRequest$ = [3, n0, _ULADR,
|
|
|
2462
2527
|
[_aDA, _ena, _eF, _fP, _aVT],
|
|
2463
2528
|
[0, 2, 0, 0, 1], 2
|
|
2464
2529
|
];
|
|
2530
|
+
exports.UpdateLookupTableRequest$ = [3, n0, _ULTR,
|
|
2531
|
+
0,
|
|
2532
|
+
[_lTA, _tB, _d, _kKI],
|
|
2533
|
+
[0, 0, 0, 0], 2
|
|
2534
|
+
];
|
|
2535
|
+
exports.UpdateLookupTableResponse$ = [3, n0, _ULTRp,
|
|
2536
|
+
0,
|
|
2537
|
+
[_lTA, _lUT],
|
|
2538
|
+
[0, 1]
|
|
2539
|
+
];
|
|
2465
2540
|
exports.UpdateScheduledQueryRequest$ = [3, n0, _USQR,
|
|
2466
2541
|
0,
|
|
2467
2542
|
[_i, _qL, _qS, _sE, _eRA, _d, _lGI, _ti, _sTO, _dC, _sST, _sET, _st],
|
|
@@ -2584,6 +2659,9 @@ var LogStreams = [1, n0, _LSog,
|
|
|
2584
2659
|
0, () => exports.LogStream$
|
|
2585
2660
|
];
|
|
2586
2661
|
var LogTypes = 64 | 0;
|
|
2662
|
+
var LookupTables = [1, n0, _LTo,
|
|
2663
|
+
0, () => exports.LookupTable$
|
|
2664
|
+
];
|
|
2587
2665
|
var LowerCaseStringWithKeys = 64 | 0;
|
|
2588
2666
|
var MatchPatterns = 64 | 0;
|
|
2589
2667
|
var MetricFilterMatches = [1, n0, _MFM,
|
|
@@ -2655,6 +2733,7 @@ var SubscriptionFilters = [1, n0, _SFu,
|
|
|
2655
2733
|
var SubstituteStringEntries = [1, n0, _SSEub,
|
|
2656
2734
|
0, () => exports.SubstituteStringEntry$
|
|
2657
2735
|
];
|
|
2736
|
+
var TableFields = 64 | 0;
|
|
2658
2737
|
var TagKeyList = 64 | 0;
|
|
2659
2738
|
var TagList = 64 | 0;
|
|
2660
2739
|
var TestEventMessages = 64 | 0;
|
|
@@ -2727,6 +2806,9 @@ exports.CreateLogGroup$ = [9, n0, _CLG,
|
|
|
2727
2806
|
exports.CreateLogStream$ = [9, n0, _CLS,
|
|
2728
2807
|
0, () => exports.CreateLogStreamRequest$, () => __Unit
|
|
2729
2808
|
];
|
|
2809
|
+
exports.CreateLookupTable$ = [9, n0, _CLT,
|
|
2810
|
+
0, () => exports.CreateLookupTableRequest$, () => exports.CreateLookupTableResponse$
|
|
2811
|
+
];
|
|
2730
2812
|
exports.CreateScheduledQuery$ = [9, n0, _CSQ,
|
|
2731
2813
|
0, () => exports.CreateScheduledQueryRequest$, () => exports.CreateScheduledQueryResponse$
|
|
2732
2814
|
];
|
|
@@ -2766,6 +2848,9 @@ exports.DeleteLogGroup$ = [9, n0, _DLG,
|
|
|
2766
2848
|
exports.DeleteLogStream$ = [9, n0, _DLS,
|
|
2767
2849
|
0, () => exports.DeleteLogStreamRequest$, () => __Unit
|
|
2768
2850
|
];
|
|
2851
|
+
exports.DeleteLookupTable$ = [9, n0, _DLT,
|
|
2852
|
+
0, () => exports.DeleteLookupTableRequest$, () => __Unit
|
|
2853
|
+
];
|
|
2769
2854
|
exports.DeleteMetricFilter$ = [9, n0, _DMF,
|
|
2770
2855
|
0, () => exports.DeleteMetricFilterRequest$, () => __Unit
|
|
2771
2856
|
];
|
|
@@ -2826,6 +2911,9 @@ exports.DescribeLogGroups$ = [9, n0, _DLGe,
|
|
|
2826
2911
|
exports.DescribeLogStreams$ = [9, n0, _DLSe,
|
|
2827
2912
|
0, () => exports.DescribeLogStreamsRequest$, () => exports.DescribeLogStreamsResponse$
|
|
2828
2913
|
];
|
|
2914
|
+
exports.DescribeLookupTables$ = [9, n0, _DLTe,
|
|
2915
|
+
0, () => exports.DescribeLookupTablesRequest$, () => exports.DescribeLookupTablesResponse$
|
|
2916
|
+
];
|
|
2829
2917
|
exports.DescribeMetricFilters$ = [9, n0, _DMFe,
|
|
2830
2918
|
0, () => exports.DescribeMetricFiltersRequest$, () => exports.DescribeMetricFiltersResponse$
|
|
2831
2919
|
];
|
|
@@ -2886,6 +2974,9 @@ exports.GetLogObject$ = [9, n0, _GLO,
|
|
|
2886
2974
|
exports.GetLogRecord$ = [9, n0, _GLR,
|
|
2887
2975
|
0, () => exports.GetLogRecordRequest$, () => exports.GetLogRecordResponse$
|
|
2888
2976
|
];
|
|
2977
|
+
exports.GetLookupTable$ = [9, n0, _GLT,
|
|
2978
|
+
0, () => exports.GetLookupTableRequest$, () => exports.GetLookupTableResponse$
|
|
2979
|
+
];
|
|
2889
2980
|
exports.GetQueryResults$ = [9, n0, _GQR,
|
|
2890
2981
|
0, () => exports.GetQueryResultsRequest$, () => exports.GetQueryResultsResponse$
|
|
2891
2982
|
];
|
|
@@ -3018,6 +3109,9 @@ exports.UpdateDeliveryConfiguration$ = [9, n0, _UDC,
|
|
|
3018
3109
|
exports.UpdateLogAnomalyDetector$ = [9, n0, _ULAD,
|
|
3019
3110
|
0, () => exports.UpdateLogAnomalyDetectorRequest$, () => __Unit
|
|
3020
3111
|
];
|
|
3112
|
+
exports.UpdateLookupTable$ = [9, n0, _ULT,
|
|
3113
|
+
0, () => exports.UpdateLookupTableRequest$, () => exports.UpdateLookupTableResponse$
|
|
3114
|
+
];
|
|
3021
3115
|
exports.UpdateScheduledQuery$ = [9, n0, _USQ,
|
|
3022
3116
|
0, () => exports.UpdateScheduledQueryRequest$, () => exports.UpdateScheduledQueryResponse$
|
|
3023
3117
|
];
|
|
@@ -10,6 +10,7 @@ import { CreateImportTaskCommand, } from "./commands/CreateImportTaskCommand";
|
|
|
10
10
|
import { CreateLogAnomalyDetectorCommand, } from "./commands/CreateLogAnomalyDetectorCommand";
|
|
11
11
|
import { CreateLogGroupCommand, } from "./commands/CreateLogGroupCommand";
|
|
12
12
|
import { CreateLogStreamCommand, } from "./commands/CreateLogStreamCommand";
|
|
13
|
+
import { CreateLookupTableCommand, } from "./commands/CreateLookupTableCommand";
|
|
13
14
|
import { CreateScheduledQueryCommand, } from "./commands/CreateScheduledQueryCommand";
|
|
14
15
|
import { DeleteAccountPolicyCommand, } from "./commands/DeleteAccountPolicyCommand";
|
|
15
16
|
import { DeleteDataProtectionPolicyCommand, } from "./commands/DeleteDataProtectionPolicyCommand";
|
|
@@ -23,6 +24,7 @@ import { DeleteIntegrationCommand, } from "./commands/DeleteIntegrationCommand";
|
|
|
23
24
|
import { DeleteLogAnomalyDetectorCommand, } from "./commands/DeleteLogAnomalyDetectorCommand";
|
|
24
25
|
import { DeleteLogGroupCommand, } from "./commands/DeleteLogGroupCommand";
|
|
25
26
|
import { DeleteLogStreamCommand, } from "./commands/DeleteLogStreamCommand";
|
|
27
|
+
import { DeleteLookupTableCommand, } from "./commands/DeleteLookupTableCommand";
|
|
26
28
|
import { DeleteMetricFilterCommand, } from "./commands/DeleteMetricFilterCommand";
|
|
27
29
|
import { DeleteQueryDefinitionCommand, } from "./commands/DeleteQueryDefinitionCommand";
|
|
28
30
|
import { DeleteResourcePolicyCommand, } from "./commands/DeleteResourcePolicyCommand";
|
|
@@ -43,6 +45,7 @@ import { DescribeImportTasksCommand, } from "./commands/DescribeImportTasksComma
|
|
|
43
45
|
import { DescribeIndexPoliciesCommand, } from "./commands/DescribeIndexPoliciesCommand";
|
|
44
46
|
import { DescribeLogGroupsCommand, } from "./commands/DescribeLogGroupsCommand";
|
|
45
47
|
import { DescribeLogStreamsCommand, } from "./commands/DescribeLogStreamsCommand";
|
|
48
|
+
import { DescribeLookupTablesCommand, } from "./commands/DescribeLookupTablesCommand";
|
|
46
49
|
import { DescribeMetricFiltersCommand, } from "./commands/DescribeMetricFiltersCommand";
|
|
47
50
|
import { DescribeQueriesCommand, } from "./commands/DescribeQueriesCommand";
|
|
48
51
|
import { DescribeQueryDefinitionsCommand, } from "./commands/DescribeQueryDefinitionsCommand";
|
|
@@ -52,7 +55,7 @@ import { DisassociateKmsKeyCommand, } from "./commands/DisassociateKmsKeyCommand
|
|
|
52
55
|
import { DisassociateSourceFromS3TableIntegrationCommand, } from "./commands/DisassociateSourceFromS3TableIntegrationCommand";
|
|
53
56
|
import { FilterLogEventsCommand, } from "./commands/FilterLogEventsCommand";
|
|
54
57
|
import { GetDataProtectionPolicyCommand, } from "./commands/GetDataProtectionPolicyCommand";
|
|
55
|
-
import { GetDeliveryCommand } from "./commands/GetDeliveryCommand";
|
|
58
|
+
import { GetDeliveryCommand, } from "./commands/GetDeliveryCommand";
|
|
56
59
|
import { GetDeliveryDestinationCommand, } from "./commands/GetDeliveryDestinationCommand";
|
|
57
60
|
import { GetDeliveryDestinationPolicyCommand, } from "./commands/GetDeliveryDestinationPolicyCommand";
|
|
58
61
|
import { GetDeliverySourceCommand, } from "./commands/GetDeliverySourceCommand";
|
|
@@ -63,6 +66,7 @@ import { GetLogFieldsCommand, } from "./commands/GetLogFieldsCommand";
|
|
|
63
66
|
import { GetLogGroupFieldsCommand, } from "./commands/GetLogGroupFieldsCommand";
|
|
64
67
|
import { GetLogObjectCommand, } from "./commands/GetLogObjectCommand";
|
|
65
68
|
import { GetLogRecordCommand, } from "./commands/GetLogRecordCommand";
|
|
69
|
+
import { GetLookupTableCommand, } from "./commands/GetLookupTableCommand";
|
|
66
70
|
import { GetQueryResultsCommand, } from "./commands/GetQueryResultsCommand";
|
|
67
71
|
import { GetScheduledQueryCommand, } from "./commands/GetScheduledQueryCommand";
|
|
68
72
|
import { GetScheduledQueryHistoryCommand, } from "./commands/GetScheduledQueryHistoryCommand";
|
|
@@ -96,10 +100,10 @@ import { PutRetentionPolicyCommand, } from "./commands/PutRetentionPolicyCommand
|
|
|
96
100
|
import { PutSubscriptionFilterCommand, } from "./commands/PutSubscriptionFilterCommand";
|
|
97
101
|
import { PutTransformerCommand, } from "./commands/PutTransformerCommand";
|
|
98
102
|
import { StartLiveTailCommand, } from "./commands/StartLiveTailCommand";
|
|
99
|
-
import { StartQueryCommand } from "./commands/StartQueryCommand";
|
|
103
|
+
import { StartQueryCommand, } from "./commands/StartQueryCommand";
|
|
100
104
|
import { StopQueryCommand } from "./commands/StopQueryCommand";
|
|
101
|
-
import { TagLogGroupCommand } from "./commands/TagLogGroupCommand";
|
|
102
|
-
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
105
|
+
import { TagLogGroupCommand, } from "./commands/TagLogGroupCommand";
|
|
106
|
+
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
103
107
|
import { TestMetricFilterCommand, } from "./commands/TestMetricFilterCommand";
|
|
104
108
|
import { TestTransformerCommand, } from "./commands/TestTransformerCommand";
|
|
105
109
|
import { UntagLogGroupCommand, } from "./commands/UntagLogGroupCommand";
|
|
@@ -107,6 +111,7 @@ import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
|
107
111
|
import { UpdateAnomalyCommand, } from "./commands/UpdateAnomalyCommand";
|
|
108
112
|
import { UpdateDeliveryConfigurationCommand, } from "./commands/UpdateDeliveryConfigurationCommand";
|
|
109
113
|
import { UpdateLogAnomalyDetectorCommand, } from "./commands/UpdateLogAnomalyDetectorCommand";
|
|
114
|
+
import { UpdateLookupTableCommand, } from "./commands/UpdateLookupTableCommand";
|
|
110
115
|
import { UpdateScheduledQueryCommand, } from "./commands/UpdateScheduledQueryCommand";
|
|
111
116
|
import { paginateDescribeConfigurationTemplates } from "./pagination/DescribeConfigurationTemplatesPaginator";
|
|
112
117
|
import { paginateDescribeDeliveries } from "./pagination/DescribeDeliveriesPaginator";
|
|
@@ -137,6 +142,7 @@ const commands = {
|
|
|
137
142
|
CreateLogAnomalyDetectorCommand,
|
|
138
143
|
CreateLogGroupCommand,
|
|
139
144
|
CreateLogStreamCommand,
|
|
145
|
+
CreateLookupTableCommand,
|
|
140
146
|
CreateScheduledQueryCommand,
|
|
141
147
|
DeleteAccountPolicyCommand,
|
|
142
148
|
DeleteDataProtectionPolicyCommand,
|
|
@@ -150,6 +156,7 @@ const commands = {
|
|
|
150
156
|
DeleteLogAnomalyDetectorCommand,
|
|
151
157
|
DeleteLogGroupCommand,
|
|
152
158
|
DeleteLogStreamCommand,
|
|
159
|
+
DeleteLookupTableCommand,
|
|
153
160
|
DeleteMetricFilterCommand,
|
|
154
161
|
DeleteQueryDefinitionCommand,
|
|
155
162
|
DeleteResourcePolicyCommand,
|
|
@@ -170,6 +177,7 @@ const commands = {
|
|
|
170
177
|
DescribeIndexPoliciesCommand,
|
|
171
178
|
DescribeLogGroupsCommand,
|
|
172
179
|
DescribeLogStreamsCommand,
|
|
180
|
+
DescribeLookupTablesCommand,
|
|
173
181
|
DescribeMetricFiltersCommand,
|
|
174
182
|
DescribeQueriesCommand,
|
|
175
183
|
DescribeQueryDefinitionsCommand,
|
|
@@ -190,6 +198,7 @@ const commands = {
|
|
|
190
198
|
GetLogGroupFieldsCommand,
|
|
191
199
|
GetLogObjectCommand,
|
|
192
200
|
GetLogRecordCommand,
|
|
201
|
+
GetLookupTableCommand,
|
|
193
202
|
GetQueryResultsCommand,
|
|
194
203
|
GetScheduledQueryCommand,
|
|
195
204
|
GetScheduledQueryHistoryCommand,
|
|
@@ -234,6 +243,7 @@ const commands = {
|
|
|
234
243
|
UpdateAnomalyCommand,
|
|
235
244
|
UpdateDeliveryConfigurationCommand,
|
|
236
245
|
UpdateLogAnomalyDetectorCommand,
|
|
246
|
+
UpdateLookupTableCommand,
|
|
237
247
|
UpdateScheduledQueryCommand,
|
|
238
248
|
};
|
|
239
249
|
const paginators = {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
|
|
1
|
+
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
|
|
3
3
|
export const defaultCloudWatchLogsHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
4
|
return {
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateLookupTable$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateLookupTableCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Logs_20140328", "CreateLookupTable", {})
|
|
13
|
+
.n("CloudWatchLogsClient", "CreateLookupTableCommand")
|
|
14
|
+
.sc(CreateLookupTable$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteLookupTable$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteLookupTableCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Logs_20140328", "DeleteLookupTable", {})
|
|
13
|
+
.n("CloudWatchLogsClient", "DeleteLookupTableCommand")
|
|
14
|
+
.sc(DeleteLookupTable$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DescribeLookupTables$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeLookupTablesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Logs_20140328", "DescribeLookupTables", {})
|
|
13
|
+
.n("CloudWatchLogsClient", "DescribeLookupTablesCommand")
|
|
14
|
+
.sc(DescribeLookupTables$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetLookupTable$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetLookupTableCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Logs_20140328", "GetLookupTable", {})
|
|
13
|
+
.n("CloudWatchLogsClient", "GetLookupTableCommand")
|
|
14
|
+
.sc(GetLookupTable$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateLookupTable$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateLookupTableCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Logs_20140328", "UpdateLookupTable", {})
|
|
13
|
+
.n("CloudWatchLogsClient", "UpdateLookupTableCommand")
|
|
14
|
+
.sc(UpdateLookupTable$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -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";
|
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import { emitWarningIfUnsupportedVersion as awsCheckVersion
|
|
2
|
+
import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core/client";
|
|
3
|
+
import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
|
|
3
4
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
4
5
|
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
5
6
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols";
|
|
3
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
4
4
|
import { parseUrl } from "@smithy/url-parser";
|