@aws-sdk/client-cloudwatch-logs 3.1073.0 → 3.1074.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 +28 -0
- package/dist-cjs/index.js +47 -1
- package/dist-cjs/schemas/schemas_0.js +54 -0
- package/dist-es/CloudWatchLogs.js +6 -0
- package/dist-es/commands/DeleteSyslogConfigurationCommand.js +16 -0
- package/dist-es/commands/ListSyslogConfigurationsCommand.js +16 -0
- package/dist-es/commands/PutSyslogConfigurationCommand.js +16 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/enums.js +3 -0
- package/dist-es/schemas/schemas_0.js +49 -0
- package/dist-types/CloudWatchLogs.d.ts +29 -0
- package/dist-types/CloudWatchLogsClient.d.ts +12 -2
- package/dist-types/commands/DeleteSyslogConfigurationCommand.d.ts +97 -0
- package/dist-types/commands/ListSyslogConfigurationsCommand.d.ts +106 -0
- package/dist-types/commands/PutAccountPolicyCommand.d.ts +48 -0
- package/dist-types/commands/PutSyslogConfigurationCommand.d.ts +97 -0
- package/dist-types/commands/UntagLogGroupCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAnomalyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDeliveryConfigurationCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/index.d.ts +7 -0
- package/dist-types/models/enums.d.ts +11 -0
- package/dist-types/models/models_0.d.ts +115 -137
- package/dist-types/models/models_1.d.ts +136 -2
- package/dist-types/schemas/schemas_0.d.ts +8 -0
- package/dist-types/ts3.4/CloudWatchLogs.d.ts +52 -0
- package/dist-types/ts3.4/CloudWatchLogsClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DeleteSyslogConfigurationCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListSyslogConfigurationsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/PutSyslogConfigurationCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/UntagLogGroupCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateAnomalyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDeliveryConfigurationCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +25 -28
- package/dist-types/ts3.4/models/models_1.d.ts +29 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -11,6 +11,8 @@ EC2 instances, CloudTrail, and other sources. You can then retrieve the associat
|
|
|
11
11
|
log data from CloudWatch Logs using the CloudWatch console. Alternatively, you can use
|
|
12
12
|
CloudWatch Logs commands in the Amazon Web Services CLI, CloudWatch Logs API, or CloudWatch
|
|
13
13
|
Logs SDK.</p>
|
|
14
|
+
<p>For more information about CloudWatch Logs features, see the
|
|
15
|
+
<a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/WhatIsCloudWatchLogs.html">Amazon CloudWatch Logs User Guide</a>.</p>
|
|
14
16
|
<p>You can use CloudWatch Logs to:</p>
|
|
15
17
|
<ul>
|
|
16
18
|
<li>
|
|
@@ -41,6 +43,11 @@ Logs agent helps to quickly send both rotated and non-rotated log data off of a
|
|
|
41
43
|
into the log service. You can then access the raw log data when you need it.</p>
|
|
42
44
|
</li>
|
|
43
45
|
</ul>
|
|
46
|
+
<note>
|
|
47
|
+
<p>CloudWatch Logs might log request contents for fields that aren't considered
|
|
48
|
+
sensitive, such as API request parameters for CloudWatch Logs actions. This provides
|
|
49
|
+
debugging information for failed API requests.</p>
|
|
50
|
+
</note>
|
|
44
51
|
|
|
45
52
|
## Installing
|
|
46
53
|
|
|
@@ -432,6 +439,13 @@ DeleteSubscriptionFilter
|
|
|
432
439
|
</details>
|
|
433
440
|
<details>
|
|
434
441
|
<summary>
|
|
442
|
+
DeleteSyslogConfiguration
|
|
443
|
+
</summary>
|
|
444
|
+
|
|
445
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudwatch-logs/command/DeleteSyslogConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudwatch-logs/Interface/DeleteSyslogConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudwatch-logs/Interface/DeleteSyslogConfigurationCommandOutput/)
|
|
446
|
+
</details>
|
|
447
|
+
<details>
|
|
448
|
+
<summary>
|
|
435
449
|
DeleteTransformer
|
|
436
450
|
</summary>
|
|
437
451
|
|
|
@@ -768,6 +782,13 @@ ListSourcesForS3TableIntegration
|
|
|
768
782
|
</details>
|
|
769
783
|
<details>
|
|
770
784
|
<summary>
|
|
785
|
+
ListSyslogConfigurations
|
|
786
|
+
</summary>
|
|
787
|
+
|
|
788
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudwatch-logs/command/ListSyslogConfigurationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudwatch-logs/Interface/ListSyslogConfigurationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudwatch-logs/Interface/ListSyslogConfigurationsCommandOutput/)
|
|
789
|
+
</details>
|
|
790
|
+
<details>
|
|
791
|
+
<summary>
|
|
771
792
|
ListTagsForResource
|
|
772
793
|
</summary>
|
|
773
794
|
|
|
@@ -901,6 +922,13 @@ PutSubscriptionFilter
|
|
|
901
922
|
</details>
|
|
902
923
|
<details>
|
|
903
924
|
<summary>
|
|
925
|
+
PutSyslogConfiguration
|
|
926
|
+
</summary>
|
|
927
|
+
|
|
928
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudwatch-logs/command/PutSyslogConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudwatch-logs/Interface/PutSyslogConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudwatch-logs/Interface/PutSyslogConfigurationCommandOutput/)
|
|
929
|
+
</details>
|
|
930
|
+
<details>
|
|
931
|
+
<summary>
|
|
904
932
|
PutTransformer
|
|
905
933
|
</summary>
|
|
906
934
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -12,7 +12,7 @@ const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
|
12
12
|
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
13
13
|
const { resolveHttpAuthSchemeConfig, defaultCloudWatchLogsHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
14
14
|
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
15
|
-
const { AssociateKmsKey$, AssociateSourceToS3TableIntegration$, CancelExportTask$, CancelImportTask$, CreateDelivery$, CreateExportTask$, CreateImportTask$, CreateLogAnomalyDetector$, CreateLogGroup$, CreateLogStream$, CreateLookupTable$, CreateScheduledQuery$, DeleteAccountPolicy$, DeleteDataProtectionPolicy$, DeleteDelivery$, DeleteDeliveryDestination$, DeleteDeliveryDestinationPolicy$, DeleteDeliverySource$, DeleteDestination$, DeleteIndexPolicy$, DeleteIntegration$, DeleteLogAnomalyDetector$, DeleteLogGroup$, DeleteLogStream$, DeleteLookupTable$, DeleteMetricFilter$, DeleteQueryDefinition$, DeleteResourcePolicy$, DeleteRetentionPolicy$, DeleteScheduledQuery$, DeleteSubscriptionFilter$, DeleteTransformer$, DescribeAccountPolicies$, DescribeConfigurationTemplates$, DescribeDeliveries$, DescribeDeliveryDestinations$, DescribeDeliverySources$, DescribeDestinations$, DescribeExportTasks$, DescribeFieldIndexes$, DescribeImportTaskBatches$, DescribeImportTasks$, DescribeIndexPolicies$, DescribeLogGroups$, DescribeLogStreams$, DescribeLookupTables$, DescribeMetricFilters$, DescribeQueries$, DescribeQueryDefinitions$, DescribeResourcePolicies$, DescribeSubscriptionFilters$, DisassociateKmsKey$, DisassociateSourceFromS3TableIntegration$, FilterLogEvents$, GetDataProtectionPolicy$, GetDelivery$, GetDeliveryDestination$, GetDeliveryDestinationPolicy$, GetDeliverySource$, GetIntegration$, GetLogAnomalyDetector$, GetLogEvents$, GetLogFields$, GetLogGroupFields$, GetLogObject$, GetLogRecord$, GetLookupTable$, GetQueryResults$, GetScheduledQuery$, GetScheduledQueryHistory$, GetTransformer$, ListAggregateLogGroupSummaries$, ListAnomalies$, ListIntegrations$, ListLogAnomalyDetectors$, ListLogGroups$, ListLogGroupsForQuery$, ListScheduledQueries$, ListSourcesForS3TableIntegration$, ListTagsForResource$, ListTagsLogGroup$, PutAccountPolicy$, PutBearerTokenAuthentication$, PutDataProtectionPolicy$, PutDeliveryDestination$, PutDeliveryDestinationPolicy$, PutDeliverySource$, PutDestination$, PutDestinationPolicy$, PutIndexPolicy$, PutIntegration$, PutLogEvents$, PutLogGroupDeletionProtection$, PutMetricFilter$, PutQueryDefinition$, PutResourcePolicy$, PutRetentionPolicy$, PutSubscriptionFilter$, PutTransformer$, StartLiveTail$, StartQuery$, StopQuery$, TagLogGroup$, TagResource$, TestMetricFilter$, TestTransformer$, UntagLogGroup$, UntagResource$, UpdateAnomaly$, UpdateDeliveryConfiguration$, UpdateLogAnomalyDetector$, UpdateLookupTable$, UpdateScheduledQuery$ } = require("./schemas/schemas_0");
|
|
15
|
+
const { AssociateKmsKey$, AssociateSourceToS3TableIntegration$, CancelExportTask$, CancelImportTask$, CreateDelivery$, CreateExportTask$, CreateImportTask$, CreateLogAnomalyDetector$, CreateLogGroup$, CreateLogStream$, CreateLookupTable$, CreateScheduledQuery$, DeleteAccountPolicy$, DeleteDataProtectionPolicy$, DeleteDelivery$, DeleteDeliveryDestination$, DeleteDeliveryDestinationPolicy$, DeleteDeliverySource$, DeleteDestination$, DeleteIndexPolicy$, DeleteIntegration$, DeleteLogAnomalyDetector$, DeleteLogGroup$, DeleteLogStream$, DeleteLookupTable$, DeleteMetricFilter$, DeleteQueryDefinition$, DeleteResourcePolicy$, DeleteRetentionPolicy$, DeleteScheduledQuery$, DeleteSubscriptionFilter$, DeleteSyslogConfiguration$, DeleteTransformer$, DescribeAccountPolicies$, DescribeConfigurationTemplates$, DescribeDeliveries$, DescribeDeliveryDestinations$, DescribeDeliverySources$, DescribeDestinations$, DescribeExportTasks$, DescribeFieldIndexes$, DescribeImportTaskBatches$, DescribeImportTasks$, DescribeIndexPolicies$, DescribeLogGroups$, DescribeLogStreams$, DescribeLookupTables$, DescribeMetricFilters$, DescribeQueries$, DescribeQueryDefinitions$, DescribeResourcePolicies$, DescribeSubscriptionFilters$, DisassociateKmsKey$, DisassociateSourceFromS3TableIntegration$, FilterLogEvents$, GetDataProtectionPolicy$, GetDelivery$, GetDeliveryDestination$, GetDeliveryDestinationPolicy$, GetDeliverySource$, GetIntegration$, GetLogAnomalyDetector$, GetLogEvents$, GetLogFields$, GetLogGroupFields$, GetLogObject$, GetLogRecord$, GetLookupTable$, GetQueryResults$, GetScheduledQuery$, GetScheduledQueryHistory$, GetTransformer$, ListAggregateLogGroupSummaries$, ListAnomalies$, ListIntegrations$, ListLogAnomalyDetectors$, ListLogGroups$, ListLogGroupsForQuery$, ListScheduledQueries$, ListSourcesForS3TableIntegration$, ListSyslogConfigurations$, ListTagsForResource$, ListTagsLogGroup$, PutAccountPolicy$, PutBearerTokenAuthentication$, PutDataProtectionPolicy$, PutDeliveryDestination$, PutDeliveryDestinationPolicy$, PutDeliverySource$, PutDestination$, PutDestinationPolicy$, PutIndexPolicy$, PutIntegration$, PutLogEvents$, PutLogGroupDeletionProtection$, PutMetricFilter$, PutQueryDefinition$, PutResourcePolicy$, PutRetentionPolicy$, PutSubscriptionFilter$, PutSyslogConfiguration$, PutTransformer$, StartLiveTail$, StartQuery$, StopQuery$, TagLogGroup$, TagResource$, TestMetricFilter$, TestTransformer$, UntagLogGroup$, UntagResource$, UpdateAnomaly$, UpdateDeliveryConfiguration$, UpdateLogAnomalyDetector$, UpdateLookupTable$, UpdateScheduledQuery$ } = require("./schemas/schemas_0");
|
|
16
16
|
__exportStar(require("./schemas/schemas_0"), exports);
|
|
17
17
|
__exportStar(require("./models/errors"), exports);
|
|
18
18
|
const { CloudWatchLogsServiceException } = require("./models/CloudWatchLogsServiceException");
|
|
@@ -485,6 +485,18 @@ class DeleteSubscriptionFilterCommand extends Command
|
|
|
485
485
|
.build() {
|
|
486
486
|
}
|
|
487
487
|
|
|
488
|
+
class DeleteSyslogConfigurationCommand extends Command
|
|
489
|
+
.classBuilder()
|
|
490
|
+
.ep(commonParams)
|
|
491
|
+
.m(function (Command, cs, config, o) {
|
|
492
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
493
|
+
})
|
|
494
|
+
.s("Logs_20140328", "DeleteSyslogConfiguration", {})
|
|
495
|
+
.n("CloudWatchLogsClient", "DeleteSyslogConfigurationCommand")
|
|
496
|
+
.sc(DeleteSyslogConfiguration$)
|
|
497
|
+
.build() {
|
|
498
|
+
}
|
|
499
|
+
|
|
488
500
|
class DeleteTransformerCommand extends Command
|
|
489
501
|
.classBuilder()
|
|
490
502
|
.ep(commonParams)
|
|
@@ -1065,6 +1077,18 @@ class ListSourcesForS3TableIntegrationCommand extends Command
|
|
|
1065
1077
|
.build() {
|
|
1066
1078
|
}
|
|
1067
1079
|
|
|
1080
|
+
class ListSyslogConfigurationsCommand extends Command
|
|
1081
|
+
.classBuilder()
|
|
1082
|
+
.ep(commonParams)
|
|
1083
|
+
.m(function (Command, cs, config, o) {
|
|
1084
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1085
|
+
})
|
|
1086
|
+
.s("Logs_20140328", "ListSyslogConfigurations", {})
|
|
1087
|
+
.n("CloudWatchLogsClient", "ListSyslogConfigurationsCommand")
|
|
1088
|
+
.sc(ListSyslogConfigurations$)
|
|
1089
|
+
.build() {
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1068
1092
|
class ListTagsForResourceCommand extends Command
|
|
1069
1093
|
.classBuilder()
|
|
1070
1094
|
.ep(commonParams)
|
|
@@ -1293,6 +1317,18 @@ class PutSubscriptionFilterCommand extends Command
|
|
|
1293
1317
|
.build() {
|
|
1294
1318
|
}
|
|
1295
1319
|
|
|
1320
|
+
class PutSyslogConfigurationCommand extends Command
|
|
1321
|
+
.classBuilder()
|
|
1322
|
+
.ep(commonParams)
|
|
1323
|
+
.m(function (Command, cs, config, o) {
|
|
1324
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1325
|
+
})
|
|
1326
|
+
.s("Logs_20140328", "PutSyslogConfiguration", {})
|
|
1327
|
+
.n("CloudWatchLogsClient", "PutSyslogConfigurationCommand")
|
|
1328
|
+
.sc(PutSyslogConfiguration$)
|
|
1329
|
+
.build() {
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1296
1332
|
class PutTransformerCommand extends Command
|
|
1297
1333
|
.classBuilder()
|
|
1298
1334
|
.ep(commonParams)
|
|
@@ -1545,6 +1581,7 @@ const commands = {
|
|
|
1545
1581
|
DeleteRetentionPolicyCommand,
|
|
1546
1582
|
DeleteScheduledQueryCommand,
|
|
1547
1583
|
DeleteSubscriptionFilterCommand,
|
|
1584
|
+
DeleteSyslogConfigurationCommand,
|
|
1548
1585
|
DeleteTransformerCommand,
|
|
1549
1586
|
DescribeAccountPoliciesCommand,
|
|
1550
1587
|
DescribeConfigurationTemplatesCommand,
|
|
@@ -1593,6 +1630,7 @@ const commands = {
|
|
|
1593
1630
|
ListLogGroupsForQueryCommand,
|
|
1594
1631
|
ListScheduledQueriesCommand,
|
|
1595
1632
|
ListSourcesForS3TableIntegrationCommand,
|
|
1633
|
+
ListSyslogConfigurationsCommand,
|
|
1596
1634
|
ListTagsForResourceCommand,
|
|
1597
1635
|
ListTagsLogGroupCommand,
|
|
1598
1636
|
PutAccountPolicyCommand,
|
|
@@ -1612,6 +1650,7 @@ const commands = {
|
|
|
1612
1650
|
PutResourcePolicyCommand,
|
|
1613
1651
|
PutRetentionPolicyCommand,
|
|
1614
1652
|
PutSubscriptionFilterCommand,
|
|
1653
|
+
PutSyslogConfigurationCommand,
|
|
1615
1654
|
PutTransformerCommand,
|
|
1616
1655
|
StartLiveTailCommand,
|
|
1617
1656
|
StartQueryCommand,
|
|
@@ -1882,6 +1921,9 @@ const S3TableIntegrationSourceStatus = {
|
|
|
1882
1921
|
FAILED: "FAILED",
|
|
1883
1922
|
UNHEALTHY: "UNHEALTHY",
|
|
1884
1923
|
};
|
|
1924
|
+
const SyslogSourceType = {
|
|
1925
|
+
VPCE: "VPCE",
|
|
1926
|
+
};
|
|
1885
1927
|
const SuppressionUnit = {
|
|
1886
1928
|
HOURS: "HOURS",
|
|
1887
1929
|
MINUTES: "MINUTES",
|
|
@@ -1928,6 +1970,7 @@ exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
|
1928
1970
|
exports.DeleteRetentionPolicyCommand = DeleteRetentionPolicyCommand;
|
|
1929
1971
|
exports.DeleteScheduledQueryCommand = DeleteScheduledQueryCommand;
|
|
1930
1972
|
exports.DeleteSubscriptionFilterCommand = DeleteSubscriptionFilterCommand;
|
|
1973
|
+
exports.DeleteSyslogConfigurationCommand = DeleteSyslogConfigurationCommand;
|
|
1931
1974
|
exports.DeleteTransformerCommand = DeleteTransformerCommand;
|
|
1932
1975
|
exports.DeliveryDestinationType = DeliveryDestinationType;
|
|
1933
1976
|
exports.DeliverySourceConfigurationSchemaValueType = DeliverySourceConfigurationSchemaValueType;
|
|
@@ -1994,6 +2037,7 @@ exports.ListLogGroupsCommand = ListLogGroupsCommand;
|
|
|
1994
2037
|
exports.ListLogGroupsForQueryCommand = ListLogGroupsForQueryCommand;
|
|
1995
2038
|
exports.ListScheduledQueriesCommand = ListScheduledQueriesCommand;
|
|
1996
2039
|
exports.ListSourcesForS3TableIntegrationCommand = ListSourcesForS3TableIntegrationCommand;
|
|
2040
|
+
exports.ListSyslogConfigurationsCommand = ListSyslogConfigurationsCommand;
|
|
1997
2041
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1998
2042
|
exports.ListTagsLogGroupCommand = ListTagsLogGroupCommand;
|
|
1999
2043
|
exports.LogGroupClass = LogGroupClass;
|
|
@@ -2020,6 +2064,7 @@ exports.PutQueryDefinitionCommand = PutQueryDefinitionCommand;
|
|
|
2020
2064
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
2021
2065
|
exports.PutRetentionPolicyCommand = PutRetentionPolicyCommand;
|
|
2022
2066
|
exports.PutSubscriptionFilterCommand = PutSubscriptionFilterCommand;
|
|
2067
|
+
exports.PutSyslogConfigurationCommand = PutSyslogConfigurationCommand;
|
|
2023
2068
|
exports.PutTransformerCommand = PutTransformerCommand;
|
|
2024
2069
|
exports.QueryLanguage = QueryLanguage;
|
|
2025
2070
|
exports.QueryStatus = QueryStatus;
|
|
@@ -2036,6 +2081,7 @@ exports.StopQueryCommand = StopQueryCommand;
|
|
|
2036
2081
|
exports.SuppressionState = SuppressionState;
|
|
2037
2082
|
exports.SuppressionType = SuppressionType;
|
|
2038
2083
|
exports.SuppressionUnit = SuppressionUnit;
|
|
2084
|
+
exports.SyslogSourceType = SyslogSourceType;
|
|
2039
2085
|
exports.TagLogGroupCommand = TagLogGroupCommand;
|
|
2040
2086
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2041
2087
|
exports.TestMetricFilterCommand = TestMetricFilterCommand;
|
|
@@ -153,6 +153,8 @@ const _DRPResc = "DescribeResourcePoliciesResponse";
|
|
|
153
153
|
const _DRPe = "DeleteRetentionPolicy";
|
|
154
154
|
const _DRPes = "DescribeResourcePolicies";
|
|
155
155
|
const _DS = "DataSource";
|
|
156
|
+
const _DSC = "DeleteSyslogConfiguration";
|
|
157
|
+
const _DSCR = "DeleteSyslogConfigurationRequest";
|
|
156
158
|
const _DSCS = "DeliverySourceConfigurationSchema";
|
|
157
159
|
const _DSCSe = "DeliverySourceConfigurationSchemas";
|
|
158
160
|
const _DSF = "DataSourceFilter";
|
|
@@ -293,6 +295,9 @@ const _LLGFQRi = "ListLogGroupsForQueryResponse";
|
|
|
293
295
|
const _LLGR = "ListLogGroupsRequest";
|
|
294
296
|
const _LLGRi = "ListLogGroupsResponse";
|
|
295
297
|
const _LS = "LogStream";
|
|
298
|
+
const _LSC = "ListSyslogConfigurations";
|
|
299
|
+
const _LSCR = "ListSyslogConfigurationsRequest";
|
|
300
|
+
const _LSCRi = "ListSyslogConfigurationsResponse";
|
|
296
301
|
const _LSFSTI = "ListSourcesForS3TableIntegration";
|
|
297
302
|
const _LSFSTIR = "ListSourcesForS3TableIntegrationRequest";
|
|
298
303
|
const _LSFSTIRi = "ListSourcesForS3TableIntegrationResponse";
|
|
@@ -388,6 +393,8 @@ const _PRPR = "PutResourcePolicyRequest";
|
|
|
388
393
|
const _PRPRu = "PutResourcePolicyResponse";
|
|
389
394
|
const _PRPRut = "PutRetentionPolicyRequest";
|
|
390
395
|
const _PRPu = "PutRetentionPolicy";
|
|
396
|
+
const _PSC = "PutSyslogConfiguration";
|
|
397
|
+
const _PSCR = "PutSyslogConfigurationRequest";
|
|
391
398
|
const _PSF = "PutSubscriptionFilter";
|
|
392
399
|
const _PSFR = "PutSubscriptionFilterRequest";
|
|
393
400
|
const _PT = "PatternToken";
|
|
@@ -423,6 +430,8 @@ const _RP = "ResourcePolicy";
|
|
|
423
430
|
const _RPe = "ResourcePolicies";
|
|
424
431
|
const _RR = "ResultRows";
|
|
425
432
|
const _SC = "S3Configuration";
|
|
433
|
+
const _SCy = "SyslogConfiguration";
|
|
434
|
+
const _SCys = "SyslogConfigurations";
|
|
426
435
|
const _SDC = "S3DeliveryConfiguration";
|
|
427
436
|
const _SF = "SubscriptionFilter";
|
|
428
437
|
const _SFu = "SubscriptionFilters";
|
|
@@ -833,6 +842,7 @@ const _sCO = "startCharOffset";
|
|
|
833
842
|
const _sCe = "searchedCompletely";
|
|
834
843
|
const _sCo = "s3Configuration";
|
|
835
844
|
const _sCt = "statusCode";
|
|
845
|
+
const _sCy = "syslogConfigurations";
|
|
836
846
|
const _sD = "suppressedDate";
|
|
837
847
|
const _sDC = "s3DeliveryConfiguration";
|
|
838
848
|
const _sE = "scheduleExpression";
|
|
@@ -860,6 +870,7 @@ const _sTI = "s3TablesIntegration";
|
|
|
860
870
|
const _sTO = "startTimeOffset";
|
|
861
871
|
const _sTc = "scheduleType";
|
|
862
872
|
const _sTe = "sequenceToken";
|
|
873
|
+
const _sTo = "sourceType";
|
|
863
874
|
const _sTt = "startTime";
|
|
864
875
|
const _sTu = "suppressionType";
|
|
865
876
|
const _sU = "suppressedUntil";
|
|
@@ -909,6 +920,7 @@ const _uI = "userIdentity";
|
|
|
909
920
|
const _uST = "uploadSequenceToken";
|
|
910
921
|
const _un = "unit";
|
|
911
922
|
const _v = "value";
|
|
923
|
+
const _vEI = "vpcEndpointId";
|
|
912
924
|
const _vK = "valueKey";
|
|
913
925
|
const _vT = "valueType";
|
|
914
926
|
const _va = "values";
|
|
@@ -1423,6 +1435,12 @@ const DeleteSubscriptionFilterRequest$ = [3, n0, _DSFR,
|
|
|
1423
1435
|
[0, 0], 2
|
|
1424
1436
|
];
|
|
1425
1437
|
exports.DeleteSubscriptionFilterRequest$ = DeleteSubscriptionFilterRequest$;
|
|
1438
|
+
const DeleteSyslogConfigurationRequest$ = [3, n0, _DSCR,
|
|
1439
|
+
0,
|
|
1440
|
+
[_lGIo, _vEI],
|
|
1441
|
+
[0, 0], 1
|
|
1442
|
+
];
|
|
1443
|
+
exports.DeleteSyslogConfigurationRequest$ = DeleteSyslogConfigurationRequest$;
|
|
1426
1444
|
const DeleteTransformerRequest$ = [3, n0, _DTR,
|
|
1427
1445
|
0,
|
|
1428
1446
|
[_lGIo],
|
|
@@ -2125,6 +2143,18 @@ const ListSourcesForS3TableIntegrationResponse$ = [3, n0, _LSFSTIRi,
|
|
|
2125
2143
|
[() => S3TableIntegrationSources, 0]
|
|
2126
2144
|
];
|
|
2127
2145
|
exports.ListSourcesForS3TableIntegrationResponse$ = ListSourcesForS3TableIntegrationResponse$;
|
|
2146
|
+
const ListSyslogConfigurationsRequest$ = [3, n0, _LSCR,
|
|
2147
|
+
0,
|
|
2148
|
+
[_lGIo, _vEI, _nT, _mR],
|
|
2149
|
+
[0, 0, 0, 1]
|
|
2150
|
+
];
|
|
2151
|
+
exports.ListSyslogConfigurationsRequest$ = ListSyslogConfigurationsRequest$;
|
|
2152
|
+
const ListSyslogConfigurationsResponse$ = [3, n0, _LSCRi,
|
|
2153
|
+
0,
|
|
2154
|
+
[_sCy, _nT],
|
|
2155
|
+
[() => SyslogConfigurations, 0]
|
|
2156
|
+
];
|
|
2157
|
+
exports.ListSyslogConfigurationsResponse$ = ListSyslogConfigurationsResponse$;
|
|
2128
2158
|
const ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
2129
2159
|
0,
|
|
2130
2160
|
[_rA],
|
|
@@ -2569,6 +2599,12 @@ const PutSubscriptionFilterRequest$ = [3, n0, _PSFR,
|
|
|
2569
2599
|
[0, 0, 0, 0, 0, 0, 2, 0, 64 | 0], 4
|
|
2570
2600
|
];
|
|
2571
2601
|
exports.PutSubscriptionFilterRequest$ = PutSubscriptionFilterRequest$;
|
|
2602
|
+
const PutSyslogConfigurationRequest$ = [3, n0, _PSCR,
|
|
2603
|
+
0,
|
|
2604
|
+
[_lGIo, _vEI],
|
|
2605
|
+
[0, 0], 1
|
|
2606
|
+
];
|
|
2607
|
+
exports.PutSyslogConfigurationRequest$ = PutSyslogConfigurationRequest$;
|
|
2572
2608
|
const PutTransformerRequest$ = [3, n0, _PTR,
|
|
2573
2609
|
0,
|
|
2574
2610
|
[_lGIo, _tC],
|
|
@@ -2767,6 +2803,12 @@ const SuppressionPeriod$ = [3, n0, _SP,
|
|
|
2767
2803
|
[1, 0]
|
|
2768
2804
|
];
|
|
2769
2805
|
exports.SuppressionPeriod$ = SuppressionPeriod$;
|
|
2806
|
+
const SyslogConfiguration$ = [3, n0, _SCy,
|
|
2807
|
+
0,
|
|
2808
|
+
[_lGA, _sTo, _vEI, _cA],
|
|
2809
|
+
[0, 0, 0, 1]
|
|
2810
|
+
];
|
|
2811
|
+
exports.SyslogConfiguration$ = SyslogConfiguration$;
|
|
2770
2812
|
const TagFilter$ = [3, n0, _TF,
|
|
2771
2813
|
0,
|
|
2772
2814
|
[_k, _va],
|
|
@@ -3090,6 +3132,9 @@ var SubscriptionFilters = [1, n0, _SFu,
|
|
|
3090
3132
|
var SubstituteStringEntries = [1, n0, _SSEub,
|
|
3091
3133
|
0, () => SubstituteStringEntry$
|
|
3092
3134
|
];
|
|
3135
|
+
var SyslogConfigurations = [1, n0, _SCys,
|
|
3136
|
+
0, () => SyslogConfiguration$
|
|
3137
|
+
];
|
|
3093
3138
|
var TableFields = 64 | 0;
|
|
3094
3139
|
var TagFilters = [1, n0, _TFa,
|
|
3095
3140
|
0, () => TagFilter$
|
|
@@ -3235,6 +3280,9 @@ exports.DeleteScheduledQuery$ = [9, n0, _DSQ,
|
|
|
3235
3280
|
exports.DeleteSubscriptionFilter$ = [9, n0, _DSFe,
|
|
3236
3281
|
0, () => DeleteSubscriptionFilterRequest$, () => __Unit
|
|
3237
3282
|
];
|
|
3283
|
+
exports.DeleteSyslogConfiguration$ = [9, n0, _DSC,
|
|
3284
|
+
0, () => DeleteSyslogConfigurationRequest$, () => __Unit
|
|
3285
|
+
];
|
|
3238
3286
|
exports.DeleteTransformer$ = [9, n0, _DT,
|
|
3239
3287
|
0, () => DeleteTransformerRequest$, () => __Unit
|
|
3240
3288
|
];
|
|
@@ -3379,6 +3427,9 @@ exports.ListScheduledQueries$ = [9, n0, _LSQ,
|
|
|
3379
3427
|
exports.ListSourcesForS3TableIntegration$ = [9, n0, _LSFSTI,
|
|
3380
3428
|
0, () => ListSourcesForS3TableIntegrationRequest$, () => ListSourcesForS3TableIntegrationResponse$
|
|
3381
3429
|
];
|
|
3430
|
+
exports.ListSyslogConfigurations$ = [9, n0, _LSC,
|
|
3431
|
+
0, () => ListSyslogConfigurationsRequest$, () => ListSyslogConfigurationsResponse$
|
|
3432
|
+
];
|
|
3382
3433
|
exports.ListTagsForResource$ = [9, n0, _LTFR,
|
|
3383
3434
|
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
3384
3435
|
];
|
|
@@ -3436,6 +3487,9 @@ exports.PutRetentionPolicy$ = [9, n0, _PRPu,
|
|
|
3436
3487
|
exports.PutSubscriptionFilter$ = [9, n0, _PSF,
|
|
3437
3488
|
0, () => PutSubscriptionFilterRequest$, () => __Unit
|
|
3438
3489
|
];
|
|
3490
|
+
exports.PutSyslogConfiguration$ = [9, n0, _PSC,
|
|
3491
|
+
0, () => PutSyslogConfigurationRequest$, () => __Unit
|
|
3492
|
+
];
|
|
3439
3493
|
exports.PutTransformer$ = [9, n0, _PTu,
|
|
3440
3494
|
0, () => PutTransformerRequest$, () => __Unit
|
|
3441
3495
|
];
|
|
@@ -31,6 +31,7 @@ import { DeleteResourcePolicyCommand, } from "./commands/DeleteResourcePolicyCom
|
|
|
31
31
|
import { DeleteRetentionPolicyCommand, } from "./commands/DeleteRetentionPolicyCommand";
|
|
32
32
|
import { DeleteScheduledQueryCommand, } from "./commands/DeleteScheduledQueryCommand";
|
|
33
33
|
import { DeleteSubscriptionFilterCommand, } from "./commands/DeleteSubscriptionFilterCommand";
|
|
34
|
+
import { DeleteSyslogConfigurationCommand, } from "./commands/DeleteSyslogConfigurationCommand";
|
|
34
35
|
import { DeleteTransformerCommand, } from "./commands/DeleteTransformerCommand";
|
|
35
36
|
import { DescribeAccountPoliciesCommand, } from "./commands/DescribeAccountPoliciesCommand";
|
|
36
37
|
import { DescribeConfigurationTemplatesCommand, } from "./commands/DescribeConfigurationTemplatesCommand";
|
|
@@ -79,6 +80,7 @@ import { ListLogGroupsCommand, } from "./commands/ListLogGroupsCommand";
|
|
|
79
80
|
import { ListLogGroupsForQueryCommand, } from "./commands/ListLogGroupsForQueryCommand";
|
|
80
81
|
import { ListScheduledQueriesCommand, } from "./commands/ListScheduledQueriesCommand";
|
|
81
82
|
import { ListSourcesForS3TableIntegrationCommand, } from "./commands/ListSourcesForS3TableIntegrationCommand";
|
|
83
|
+
import { ListSyslogConfigurationsCommand, } from "./commands/ListSyslogConfigurationsCommand";
|
|
82
84
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
83
85
|
import { ListTagsLogGroupCommand, } from "./commands/ListTagsLogGroupCommand";
|
|
84
86
|
import { PutAccountPolicyCommand, } from "./commands/PutAccountPolicyCommand";
|
|
@@ -98,6 +100,7 @@ import { PutQueryDefinitionCommand, } from "./commands/PutQueryDefinitionCommand
|
|
|
98
100
|
import { PutResourcePolicyCommand, } from "./commands/PutResourcePolicyCommand";
|
|
99
101
|
import { PutRetentionPolicyCommand, } from "./commands/PutRetentionPolicyCommand";
|
|
100
102
|
import { PutSubscriptionFilterCommand, } from "./commands/PutSubscriptionFilterCommand";
|
|
103
|
+
import { PutSyslogConfigurationCommand, } from "./commands/PutSyslogConfigurationCommand";
|
|
101
104
|
import { PutTransformerCommand, } from "./commands/PutTransformerCommand";
|
|
102
105
|
import { StartLiveTailCommand, } from "./commands/StartLiveTailCommand";
|
|
103
106
|
import { StartQueryCommand, } from "./commands/StartQueryCommand";
|
|
@@ -163,6 +166,7 @@ const commands = {
|
|
|
163
166
|
DeleteRetentionPolicyCommand,
|
|
164
167
|
DeleteScheduledQueryCommand,
|
|
165
168
|
DeleteSubscriptionFilterCommand,
|
|
169
|
+
DeleteSyslogConfigurationCommand,
|
|
166
170
|
DeleteTransformerCommand,
|
|
167
171
|
DescribeAccountPoliciesCommand,
|
|
168
172
|
DescribeConfigurationTemplatesCommand,
|
|
@@ -211,6 +215,7 @@ const commands = {
|
|
|
211
215
|
ListLogGroupsForQueryCommand,
|
|
212
216
|
ListScheduledQueriesCommand,
|
|
213
217
|
ListSourcesForS3TableIntegrationCommand,
|
|
218
|
+
ListSyslogConfigurationsCommand,
|
|
214
219
|
ListTagsForResourceCommand,
|
|
215
220
|
ListTagsLogGroupCommand,
|
|
216
221
|
PutAccountPolicyCommand,
|
|
@@ -230,6 +235,7 @@ const commands = {
|
|
|
230
235
|
PutResourcePolicyCommand,
|
|
231
236
|
PutRetentionPolicyCommand,
|
|
232
237
|
PutSubscriptionFilterCommand,
|
|
238
|
+
PutSyslogConfigurationCommand,
|
|
233
239
|
PutTransformerCommand,
|
|
234
240
|
StartLiveTailCommand,
|
|
235
241
|
StartQueryCommand,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteSyslogConfiguration$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteSyslogConfigurationCommand 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", "DeleteSyslogConfiguration", {})
|
|
13
|
+
.n("CloudWatchLogsClient", "DeleteSyslogConfigurationCommand")
|
|
14
|
+
.sc(DeleteSyslogConfiguration$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListSyslogConfigurations$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListSyslogConfigurationsCommand 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", "ListSyslogConfigurations", {})
|
|
13
|
+
.n("CloudWatchLogsClient", "ListSyslogConfigurationsCommand")
|
|
14
|
+
.sc(ListSyslogConfigurations$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { PutSyslogConfiguration$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class PutSyslogConfigurationCommand 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", "PutSyslogConfiguration", {})
|
|
13
|
+
.n("CloudWatchLogsClient", "PutSyslogConfigurationCommand")
|
|
14
|
+
.sc(PutSyslogConfiguration$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -29,6 +29,7 @@ export * from "./DeleteResourcePolicyCommand";
|
|
|
29
29
|
export * from "./DeleteRetentionPolicyCommand";
|
|
30
30
|
export * from "./DeleteScheduledQueryCommand";
|
|
31
31
|
export * from "./DeleteSubscriptionFilterCommand";
|
|
32
|
+
export * from "./DeleteSyslogConfigurationCommand";
|
|
32
33
|
export * from "./DeleteTransformerCommand";
|
|
33
34
|
export * from "./DescribeAccountPoliciesCommand";
|
|
34
35
|
export * from "./DescribeConfigurationTemplatesCommand";
|
|
@@ -77,6 +78,7 @@ export * from "./ListLogGroupsCommand";
|
|
|
77
78
|
export * from "./ListLogGroupsForQueryCommand";
|
|
78
79
|
export * from "./ListScheduledQueriesCommand";
|
|
79
80
|
export * from "./ListSourcesForS3TableIntegrationCommand";
|
|
81
|
+
export * from "./ListSyslogConfigurationsCommand";
|
|
80
82
|
export * from "./ListTagsForResourceCommand";
|
|
81
83
|
export * from "./ListTagsLogGroupCommand";
|
|
82
84
|
export * from "./PutAccountPolicyCommand";
|
|
@@ -96,6 +98,7 @@ export * from "./PutQueryDefinitionCommand";
|
|
|
96
98
|
export * from "./PutResourcePolicyCommand";
|
|
97
99
|
export * from "./PutRetentionPolicyCommand";
|
|
98
100
|
export * from "./PutSubscriptionFilterCommand";
|
|
101
|
+
export * from "./PutSyslogConfigurationCommand";
|
|
99
102
|
export * from "./PutTransformerCommand";
|
|
100
103
|
export * from "./StartLiveTailCommand";
|
|
101
104
|
export * from "./StartQueryCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -153,6 +153,8 @@ const _DRPResc = "DescribeResourcePoliciesResponse";
|
|
|
153
153
|
const _DRPe = "DeleteRetentionPolicy";
|
|
154
154
|
const _DRPes = "DescribeResourcePolicies";
|
|
155
155
|
const _DS = "DataSource";
|
|
156
|
+
const _DSC = "DeleteSyslogConfiguration";
|
|
157
|
+
const _DSCR = "DeleteSyslogConfigurationRequest";
|
|
156
158
|
const _DSCS = "DeliverySourceConfigurationSchema";
|
|
157
159
|
const _DSCSe = "DeliverySourceConfigurationSchemas";
|
|
158
160
|
const _DSF = "DataSourceFilter";
|
|
@@ -293,6 +295,9 @@ const _LLGFQRi = "ListLogGroupsForQueryResponse";
|
|
|
293
295
|
const _LLGR = "ListLogGroupsRequest";
|
|
294
296
|
const _LLGRi = "ListLogGroupsResponse";
|
|
295
297
|
const _LS = "LogStream";
|
|
298
|
+
const _LSC = "ListSyslogConfigurations";
|
|
299
|
+
const _LSCR = "ListSyslogConfigurationsRequest";
|
|
300
|
+
const _LSCRi = "ListSyslogConfigurationsResponse";
|
|
296
301
|
const _LSFSTI = "ListSourcesForS3TableIntegration";
|
|
297
302
|
const _LSFSTIR = "ListSourcesForS3TableIntegrationRequest";
|
|
298
303
|
const _LSFSTIRi = "ListSourcesForS3TableIntegrationResponse";
|
|
@@ -388,6 +393,8 @@ const _PRPR = "PutResourcePolicyRequest";
|
|
|
388
393
|
const _PRPRu = "PutResourcePolicyResponse";
|
|
389
394
|
const _PRPRut = "PutRetentionPolicyRequest";
|
|
390
395
|
const _PRPu = "PutRetentionPolicy";
|
|
396
|
+
const _PSC = "PutSyslogConfiguration";
|
|
397
|
+
const _PSCR = "PutSyslogConfigurationRequest";
|
|
391
398
|
const _PSF = "PutSubscriptionFilter";
|
|
392
399
|
const _PSFR = "PutSubscriptionFilterRequest";
|
|
393
400
|
const _PT = "PatternToken";
|
|
@@ -423,6 +430,8 @@ const _RP = "ResourcePolicy";
|
|
|
423
430
|
const _RPe = "ResourcePolicies";
|
|
424
431
|
const _RR = "ResultRows";
|
|
425
432
|
const _SC = "S3Configuration";
|
|
433
|
+
const _SCy = "SyslogConfiguration";
|
|
434
|
+
const _SCys = "SyslogConfigurations";
|
|
426
435
|
const _SDC = "S3DeliveryConfiguration";
|
|
427
436
|
const _SF = "SubscriptionFilter";
|
|
428
437
|
const _SFu = "SubscriptionFilters";
|
|
@@ -833,6 +842,7 @@ const _sCO = "startCharOffset";
|
|
|
833
842
|
const _sCe = "searchedCompletely";
|
|
834
843
|
const _sCo = "s3Configuration";
|
|
835
844
|
const _sCt = "statusCode";
|
|
845
|
+
const _sCy = "syslogConfigurations";
|
|
836
846
|
const _sD = "suppressedDate";
|
|
837
847
|
const _sDC = "s3DeliveryConfiguration";
|
|
838
848
|
const _sE = "scheduleExpression";
|
|
@@ -860,6 +870,7 @@ const _sTI = "s3TablesIntegration";
|
|
|
860
870
|
const _sTO = "startTimeOffset";
|
|
861
871
|
const _sTc = "scheduleType";
|
|
862
872
|
const _sTe = "sequenceToken";
|
|
873
|
+
const _sTo = "sourceType";
|
|
863
874
|
const _sTt = "startTime";
|
|
864
875
|
const _sTu = "suppressionType";
|
|
865
876
|
const _sU = "suppressedUntil";
|
|
@@ -909,6 +920,7 @@ const _uI = "userIdentity";
|
|
|
909
920
|
const _uST = "uploadSequenceToken";
|
|
910
921
|
const _un = "unit";
|
|
911
922
|
const _v = "value";
|
|
923
|
+
const _vEI = "vpcEndpointId";
|
|
912
924
|
const _vK = "valueKey";
|
|
913
925
|
const _vT = "valueType";
|
|
914
926
|
const _va = "values";
|
|
@@ -1343,6 +1355,11 @@ export var DeleteSubscriptionFilterRequest$ = [3, n0, _DSFR,
|
|
|
1343
1355
|
[_lGN, _fN],
|
|
1344
1356
|
[0, 0], 2
|
|
1345
1357
|
];
|
|
1358
|
+
export var DeleteSyslogConfigurationRequest$ = [3, n0, _DSCR,
|
|
1359
|
+
0,
|
|
1360
|
+
[_lGIo, _vEI],
|
|
1361
|
+
[0, 0], 1
|
|
1362
|
+
];
|
|
1346
1363
|
export var DeleteTransformerRequest$ = [3, n0, _DTR,
|
|
1347
1364
|
0,
|
|
1348
1365
|
[_lGIo],
|
|
@@ -1928,6 +1945,16 @@ export var ListSourcesForS3TableIntegrationResponse$ = [3, n0, _LSFSTIRi,
|
|
|
1928
1945
|
[_sou, _nT],
|
|
1929
1946
|
[() => S3TableIntegrationSources, 0]
|
|
1930
1947
|
];
|
|
1948
|
+
export var ListSyslogConfigurationsRequest$ = [3, n0, _LSCR,
|
|
1949
|
+
0,
|
|
1950
|
+
[_lGIo, _vEI, _nT, _mR],
|
|
1951
|
+
[0, 0, 0, 1]
|
|
1952
|
+
];
|
|
1953
|
+
export var ListSyslogConfigurationsResponse$ = [3, n0, _LSCRi,
|
|
1954
|
+
0,
|
|
1955
|
+
[_sCy, _nT],
|
|
1956
|
+
[() => SyslogConfigurations, 0]
|
|
1957
|
+
];
|
|
1931
1958
|
export var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1932
1959
|
0,
|
|
1933
1960
|
[_rA],
|
|
@@ -2298,6 +2325,11 @@ export var PutSubscriptionFilterRequest$ = [3, n0, _PSFR,
|
|
|
2298
2325
|
[_lGN, _fN, _fP, _dA, _rAo, _dis, _aOTL, _fSC, _eSF],
|
|
2299
2326
|
[0, 0, 0, 0, 0, 0, 2, 0, 64 | 0], 4
|
|
2300
2327
|
];
|
|
2328
|
+
export var PutSyslogConfigurationRequest$ = [3, n0, _PSCR,
|
|
2329
|
+
0,
|
|
2330
|
+
[_lGIo, _vEI],
|
|
2331
|
+
[0, 0], 1
|
|
2332
|
+
];
|
|
2301
2333
|
export var PutTransformerRequest$ = [3, n0, _PTR,
|
|
2302
2334
|
0,
|
|
2303
2335
|
[_lGIo, _tC],
|
|
@@ -2463,6 +2495,11 @@ export var SuppressionPeriod$ = [3, n0, _SP,
|
|
|
2463
2495
|
[_v, _sUu],
|
|
2464
2496
|
[1, 0]
|
|
2465
2497
|
];
|
|
2498
|
+
export var SyslogConfiguration$ = [3, n0, _SCy,
|
|
2499
|
+
0,
|
|
2500
|
+
[_lGA, _sTo, _vEI, _cA],
|
|
2501
|
+
[0, 0, 0, 1]
|
|
2502
|
+
];
|
|
2466
2503
|
export var TagFilter$ = [3, n0, _TF,
|
|
2467
2504
|
0,
|
|
2468
2505
|
[_k, _va],
|
|
@@ -2763,6 +2800,9 @@ var SubscriptionFilters = [1, n0, _SFu,
|
|
|
2763
2800
|
var SubstituteStringEntries = [1, n0, _SSEub,
|
|
2764
2801
|
0, () => SubstituteStringEntry$
|
|
2765
2802
|
];
|
|
2803
|
+
var SyslogConfigurations = [1, n0, _SCys,
|
|
2804
|
+
0, () => SyslogConfiguration$
|
|
2805
|
+
];
|
|
2766
2806
|
var TableFields = 64 | 0;
|
|
2767
2807
|
var TagFilters = [1, n0, _TFa,
|
|
2768
2808
|
0, () => TagFilter$
|
|
@@ -2904,6 +2944,9 @@ export var DeleteScheduledQuery$ = [9, n0, _DSQ,
|
|
|
2904
2944
|
export var DeleteSubscriptionFilter$ = [9, n0, _DSFe,
|
|
2905
2945
|
0, () => DeleteSubscriptionFilterRequest$, () => __Unit
|
|
2906
2946
|
];
|
|
2947
|
+
export var DeleteSyslogConfiguration$ = [9, n0, _DSC,
|
|
2948
|
+
0, () => DeleteSyslogConfigurationRequest$, () => __Unit
|
|
2949
|
+
];
|
|
2907
2950
|
export var DeleteTransformer$ = [9, n0, _DT,
|
|
2908
2951
|
0, () => DeleteTransformerRequest$, () => __Unit
|
|
2909
2952
|
];
|
|
@@ -3048,6 +3091,9 @@ export var ListScheduledQueries$ = [9, n0, _LSQ,
|
|
|
3048
3091
|
export var ListSourcesForS3TableIntegration$ = [9, n0, _LSFSTI,
|
|
3049
3092
|
0, () => ListSourcesForS3TableIntegrationRequest$, () => ListSourcesForS3TableIntegrationResponse$
|
|
3050
3093
|
];
|
|
3094
|
+
export var ListSyslogConfigurations$ = [9, n0, _LSC,
|
|
3095
|
+
0, () => ListSyslogConfigurationsRequest$, () => ListSyslogConfigurationsResponse$
|
|
3096
|
+
];
|
|
3051
3097
|
export var ListTagsForResource$ = [9, n0, _LTFR,
|
|
3052
3098
|
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
3053
3099
|
];
|
|
@@ -3105,6 +3151,9 @@ export var PutRetentionPolicy$ = [9, n0, _PRPu,
|
|
|
3105
3151
|
export var PutSubscriptionFilter$ = [9, n0, _PSF,
|
|
3106
3152
|
0, () => PutSubscriptionFilterRequest$, () => __Unit
|
|
3107
3153
|
];
|
|
3154
|
+
export var PutSyslogConfiguration$ = [9, n0, _PSC,
|
|
3155
|
+
0, () => PutSyslogConfigurationRequest$, () => __Unit
|
|
3156
|
+
];
|
|
3108
3157
|
export var PutTransformer$ = [9, n0, _PTu,
|
|
3109
3158
|
0, () => PutTransformerRequest$, () => __Unit
|
|
3110
3159
|
];
|