aws-sdk-cloudwatchlogs 1.150.0 → 1.152.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudwatchlogs/client.rb +11 -2
- data/lib/aws-sdk-cloudwatchlogs/client_api.rb +2 -1
- data/lib/aws-sdk-cloudwatchlogs/types.rb +8 -2
- data/lib/aws-sdk-cloudwatchlogs.rb +1 -1
- data/sig/client.rbs +10 -296
- data/sig/params.rbs +166 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e362d8597cd670ee3c9a8c8defdaf7915d6c3709662a803df5e22cf9a4027c67
|
|
4
|
+
data.tar.gz: ac75dca82813fcef9e2872d2149d0e9873ebbdfb427725b80dfc46232caea4d0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 42beb884978d8a65b0bb72e0197a9a0b54193103804e442296a2df89a413b8ca049f93198ecda449131e411c4664890980949f1da30e398022440fdcf68c5b3f
|
|
7
|
+
data.tar.gz: 3008a7b72eec85dd8bed431f033ef90ac0f6a8d507be304fb83fbd98c89ba36e231bea3260dd2cf96e83645cfb02382eaa8a6768e0fa9cbf62bf7c457dcb53b0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.152.0 (2026-05-19)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.151.0 (2026-05-15)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Updating the max limit for start query api parameter.
|
|
13
|
+
|
|
4
14
|
1.150.0 (2026-05-13)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.152.0
|
|
@@ -4650,6 +4650,11 @@ module Aws::CloudWatchLogs
|
|
|
4650
4650
|
# queries use `GetQueryResults` internally to retrieve query results for
|
|
4651
4651
|
# processing and delivery to configured destinations.
|
|
4652
4652
|
#
|
|
4653
|
+
# You can retrieve up to 100,000 log event results from a query, if
|
|
4654
|
+
# available, by using pagination. Use the `nextToken` returned in the
|
|
4655
|
+
# response to request additional pages of results, with each page
|
|
4656
|
+
# returning up to 10,000 log events.
|
|
4657
|
+
#
|
|
4653
4658
|
# If you are using CloudWatch cross-account observability, you can use
|
|
4654
4659
|
# this operation in a monitoring account to start queries in linked
|
|
4655
4660
|
# source accounts. For more information, see [CloudWatch cross-account
|
|
@@ -4671,7 +4676,9 @@ module Aws::CloudWatchLogs
|
|
|
4671
4676
|
#
|
|
4672
4677
|
# @option params [Integer] :max_items
|
|
4673
4678
|
# The maximum number of log events to return in the response. The
|
|
4674
|
-
# maximum is 10,000 log events.
|
|
4679
|
+
# maximum is 10,000 log events per request. You can retrieve up to
|
|
4680
|
+
# 100,000 log event results from a query by paginating with the
|
|
4681
|
+
# `nextToken`.
|
|
4675
4682
|
#
|
|
4676
4683
|
# @return [Types::GetQueryResultsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4677
4684
|
#
|
|
@@ -8438,6 +8445,8 @@ module Aws::CloudWatchLogs
|
|
|
8438
8445
|
# string uses the `fields` command, only the specified fields and their
|
|
8439
8446
|
# values are returned. The default is 10,000.
|
|
8440
8447
|
#
|
|
8448
|
+
# The maximum value is 100,000.
|
|
8449
|
+
#
|
|
8441
8450
|
# @return [Types::StartQueryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8442
8451
|
#
|
|
8443
8452
|
# * {Types::StartQueryResponse#query_id #query_id} => String
|
|
@@ -9290,7 +9299,7 @@ module Aws::CloudWatchLogs
|
|
|
9290
9299
|
tracer: tracer
|
|
9291
9300
|
)
|
|
9292
9301
|
context[:gem_name] = 'aws-sdk-cloudwatchlogs'
|
|
9293
|
-
context[:gem_version] = '1.
|
|
9302
|
+
context[:gem_version] = '1.152.0'
|
|
9294
9303
|
Seahorse::Client::Request.new(handlers, context)
|
|
9295
9304
|
end
|
|
9296
9305
|
|
|
@@ -228,6 +228,7 @@ module Aws::CloudWatchLogs
|
|
|
228
228
|
EventNumber = Shapes::IntegerShape.new(name: 'EventNumber')
|
|
229
229
|
EventSource = Shapes::StringShape.new(name: 'EventSource')
|
|
230
230
|
EventsLimit = Shapes::IntegerShape.new(name: 'EventsLimit')
|
|
231
|
+
EventsLimitStartQuery = Shapes::IntegerShape.new(name: 'EventsLimitStartQuery')
|
|
231
232
|
ExecutionStatus = Shapes::StringShape.new(name: 'ExecutionStatus')
|
|
232
233
|
ExecutionStatusList = Shapes::ListShape.new(name: 'ExecutionStatusList')
|
|
233
234
|
ExpectedRevisionId = Shapes::StringShape.new(name: 'ExpectedRevisionId')
|
|
@@ -2395,7 +2396,7 @@ module Aws::CloudWatchLogs
|
|
|
2395
2396
|
StartQueryRequest.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "startTime"))
|
|
2396
2397
|
StartQueryRequest.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "endTime"))
|
|
2397
2398
|
StartQueryRequest.add_member(:query_string, Shapes::ShapeRef.new(shape: QueryString, required: true, location_name: "queryString"))
|
|
2398
|
-
StartQueryRequest.add_member(:limit, Shapes::ShapeRef.new(shape:
|
|
2399
|
+
StartQueryRequest.add_member(:limit, Shapes::ShapeRef.new(shape: EventsLimitStartQuery, location_name: "limit"))
|
|
2399
2400
|
StartQueryRequest.struct_class = Types::StartQueryRequest
|
|
2400
2401
|
|
|
2401
2402
|
StartQueryResponse.add_member(:query_id, Shapes::ShapeRef.new(shape: QueryId, location_name: "queryId"))
|
|
@@ -4274,7 +4274,9 @@ module Aws::CloudWatchLogs
|
|
|
4274
4274
|
#
|
|
4275
4275
|
# @!attribute [rw] max_items
|
|
4276
4276
|
# The maximum number of log events to return in the response. The
|
|
4277
|
-
# maximum is 10,000 log events.
|
|
4277
|
+
# maximum is 10,000 log events per request. You can retrieve up to
|
|
4278
|
+
# 100,000 log event results from a query by paginating with the
|
|
4279
|
+
# `nextToken`.
|
|
4278
4280
|
# @return [Integer]
|
|
4279
4281
|
#
|
|
4280
4282
|
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetQueryResultsRequest AWS API Documentation
|
|
@@ -4337,7 +4339,9 @@ module Aws::CloudWatchLogs
|
|
|
4337
4339
|
# @!attribute [rw] next_token
|
|
4338
4340
|
# If there are more log events remaining in the results, the response
|
|
4339
4341
|
# includes a `nextToken`. You can use this token in a subsequent
|
|
4340
|
-
# `GetQueryResults` request to get the next set of results.
|
|
4342
|
+
# `GetQueryResults` request to get the next set of results. You can
|
|
4343
|
+
# retrieve up to 100,000 log event results from a query by paginating
|
|
4344
|
+
# with this token.
|
|
4341
4345
|
# @return [String]
|
|
4342
4346
|
#
|
|
4343
4347
|
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetQueryResultsResponse AWS API Documentation
|
|
@@ -9625,6 +9629,8 @@ module Aws::CloudWatchLogs
|
|
|
9625
9629
|
# The maximum number of log events to return in the query. If the
|
|
9626
9630
|
# query string uses the `fields` command, only the specified fields
|
|
9627
9631
|
# and their values are returned. The default is 10,000.
|
|
9632
|
+
#
|
|
9633
|
+
# The maximum value is 100,000.
|
|
9628
9634
|
# @return [Integer]
|
|
9629
9635
|
#
|
|
9630
9636
|
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/StartQueryRequest AWS API Documentation
|
data/sig/client.rbs
CHANGED
|
@@ -238,14 +238,7 @@ module Aws
|
|
|
238
238
|
schedule_expression: ::String,
|
|
239
239
|
?timezone: ::String,
|
|
240
240
|
?start_time_offset: ::Integer,
|
|
241
|
-
?destination_configuration:
|
|
242
|
-
s3_configuration: {
|
|
243
|
-
destination_identifier: ::String,
|
|
244
|
-
role_arn: ::String,
|
|
245
|
-
owner_account_id: ::String?,
|
|
246
|
-
kms_key_id: ::String?
|
|
247
|
-
}
|
|
248
|
-
},
|
|
241
|
+
?destination_configuration: Params::destination_configuration,
|
|
249
242
|
?schedule_start_time: ::Integer,
|
|
250
243
|
?schedule_end_time: ::Integer,
|
|
251
244
|
execution_role_arn: ::String,
|
|
@@ -956,7 +949,7 @@ module Aws
|
|
|
956
949
|
{
|
|
957
950
|
name: ::String,
|
|
958
951
|
type: ::String?
|
|
959
|
-
}
|
|
952
|
+
}
|
|
960
953
|
],
|
|
961
954
|
group_by: ("DATA_SOURCE_NAME_TYPE_AND_FORMAT" | "DATA_SOURCE_NAME_AND_TYPE"),
|
|
962
955
|
?next_token: ::String,
|
|
@@ -1020,14 +1013,14 @@ module Aws
|
|
|
1020
1013
|
{
|
|
1021
1014
|
name: ::String,
|
|
1022
1015
|
type: ::String?
|
|
1023
|
-
}
|
|
1016
|
+
}
|
|
1024
1017
|
],
|
|
1025
1018
|
?field_index_names: Array[::String],
|
|
1026
1019
|
?log_group_tags: Array[
|
|
1027
1020
|
{
|
|
1028
1021
|
key: ::String,
|
|
1029
1022
|
values: Array[::String]?
|
|
1030
|
-
}
|
|
1023
|
+
}
|
|
1031
1024
|
]
|
|
1032
1025
|
) -> _ListLogGroupsResponseSuccess
|
|
1033
1026
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLogGroupsResponseSuccess
|
|
@@ -1233,7 +1226,7 @@ module Aws
|
|
|
1233
1226
|
{
|
|
1234
1227
|
timestamp: ::Integer,
|
|
1235
1228
|
message: ::String
|
|
1236
|
-
}
|
|
1229
|
+
}
|
|
1237
1230
|
],
|
|
1238
1231
|
?sequence_token: ::String,
|
|
1239
1232
|
?entity: {
|
|
@@ -1263,7 +1256,7 @@ module Aws
|
|
|
1263
1256
|
default_value: ::Float?,
|
|
1264
1257
|
dimensions: Hash[::String, ::String]?,
|
|
1265
1258
|
unit: ("Seconds" | "Microseconds" | "Milliseconds" | "Bytes" | "Kilobytes" | "Megabytes" | "Gigabytes" | "Terabytes" | "Bits" | "Kilobits" | "Megabits" | "Gigabits" | "Terabits" | "Percent" | "Count" | "Bytes/Second" | "Kilobytes/Second" | "Megabytes/Second" | "Gigabytes/Second" | "Terabytes/Second" | "Bits/Second" | "Kilobits/Second" | "Megabits/Second" | "Gigabits/Second" | "Terabits/Second" | "Count/Second" | "None")?
|
|
1266
|
-
}
|
|
1259
|
+
}
|
|
1267
1260
|
],
|
|
1268
1261
|
?apply_on_transformed_logs: bool,
|
|
1269
1262
|
?field_selection_criteria: ::String,
|
|
@@ -1288,7 +1281,7 @@ module Aws
|
|
|
1288
1281
|
name: ::String,
|
|
1289
1282
|
default_value: ::String?,
|
|
1290
1283
|
description: ::String?
|
|
1291
|
-
}
|
|
1284
|
+
}
|
|
1292
1285
|
]
|
|
1293
1286
|
) -> _PutQueryDefinitionResponseSuccess
|
|
1294
1287
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutQueryDefinitionResponseSuccess
|
|
@@ -1332,143 +1325,7 @@ module Aws
|
|
|
1332
1325
|
def put_transformer: (
|
|
1333
1326
|
log_group_identifier: ::String,
|
|
1334
1327
|
transformer_config: Array[
|
|
1335
|
-
|
|
1336
|
-
add_keys: {
|
|
1337
|
-
entries: Array[
|
|
1338
|
-
{
|
|
1339
|
-
key: ::String,
|
|
1340
|
-
value: ::String,
|
|
1341
|
-
overwrite_if_exists: bool?
|
|
1342
|
-
},
|
|
1343
|
-
]
|
|
1344
|
-
}?,
|
|
1345
|
-
copy_value: {
|
|
1346
|
-
entries: Array[
|
|
1347
|
-
{
|
|
1348
|
-
source: ::String,
|
|
1349
|
-
target: ::String,
|
|
1350
|
-
overwrite_if_exists: bool?
|
|
1351
|
-
},
|
|
1352
|
-
]
|
|
1353
|
-
}?,
|
|
1354
|
-
csv: {
|
|
1355
|
-
quote_character: ::String?,
|
|
1356
|
-
delimiter: ::String?,
|
|
1357
|
-
columns: Array[::String]?,
|
|
1358
|
-
source: ::String?,
|
|
1359
|
-
destination: ::String?
|
|
1360
|
-
}?,
|
|
1361
|
-
date_time_converter: {
|
|
1362
|
-
source: ::String,
|
|
1363
|
-
target: ::String,
|
|
1364
|
-
target_format: ::String?,
|
|
1365
|
-
match_patterns: Array[::String],
|
|
1366
|
-
source_timezone: ::String?,
|
|
1367
|
-
target_timezone: ::String?,
|
|
1368
|
-
locale: ::String?
|
|
1369
|
-
}?,
|
|
1370
|
-
delete_keys: {
|
|
1371
|
-
with_keys: Array[::String]
|
|
1372
|
-
}?,
|
|
1373
|
-
grok: {
|
|
1374
|
-
source: ::String?,
|
|
1375
|
-
match: ::String
|
|
1376
|
-
}?,
|
|
1377
|
-
list_to_map: {
|
|
1378
|
-
source: ::String,
|
|
1379
|
-
key: ::String,
|
|
1380
|
-
value_key: ::String?,
|
|
1381
|
-
target: ::String?,
|
|
1382
|
-
flatten: bool?,
|
|
1383
|
-
flattened_element: ("first" | "last")?
|
|
1384
|
-
}?,
|
|
1385
|
-
lower_case_string: {
|
|
1386
|
-
with_keys: Array[::String]
|
|
1387
|
-
}?,
|
|
1388
|
-
move_keys: {
|
|
1389
|
-
entries: Array[
|
|
1390
|
-
{
|
|
1391
|
-
source: ::String,
|
|
1392
|
-
target: ::String,
|
|
1393
|
-
overwrite_if_exists: bool?
|
|
1394
|
-
},
|
|
1395
|
-
]
|
|
1396
|
-
}?,
|
|
1397
|
-
parse_cloudfront: {
|
|
1398
|
-
source: ::String?
|
|
1399
|
-
}?,
|
|
1400
|
-
parse_json: {
|
|
1401
|
-
source: ::String?,
|
|
1402
|
-
destination: ::String?
|
|
1403
|
-
}?,
|
|
1404
|
-
parse_key_value: {
|
|
1405
|
-
source: ::String?,
|
|
1406
|
-
destination: ::String?,
|
|
1407
|
-
field_delimiter: ::String?,
|
|
1408
|
-
key_value_delimiter: ::String?,
|
|
1409
|
-
key_prefix: ::String?,
|
|
1410
|
-
non_match_value: ::String?,
|
|
1411
|
-
overwrite_if_exists: bool?
|
|
1412
|
-
}?,
|
|
1413
|
-
parse_route_53: {
|
|
1414
|
-
source: ::String?
|
|
1415
|
-
}?,
|
|
1416
|
-
parse_to_ocsf: {
|
|
1417
|
-
source: ::String?,
|
|
1418
|
-
event_source: ("CloudTrail" | "Route53Resolver" | "VPCFlow" | "EKSAudit" | "AWSWAF"),
|
|
1419
|
-
ocsf_version: ("V1.1" | "V1.5"),
|
|
1420
|
-
mapping_version: ::String?
|
|
1421
|
-
}?,
|
|
1422
|
-
parse_postgres: {
|
|
1423
|
-
source: ::String?
|
|
1424
|
-
}?,
|
|
1425
|
-
parse_vpc: {
|
|
1426
|
-
source: ::String?
|
|
1427
|
-
}?,
|
|
1428
|
-
parse_waf: {
|
|
1429
|
-
source: ::String?
|
|
1430
|
-
}?,
|
|
1431
|
-
rename_keys: {
|
|
1432
|
-
entries: Array[
|
|
1433
|
-
{
|
|
1434
|
-
key: ::String,
|
|
1435
|
-
rename_to: ::String,
|
|
1436
|
-
overwrite_if_exists: bool?
|
|
1437
|
-
},
|
|
1438
|
-
]
|
|
1439
|
-
}?,
|
|
1440
|
-
split_string: {
|
|
1441
|
-
entries: Array[
|
|
1442
|
-
{
|
|
1443
|
-
source: ::String,
|
|
1444
|
-
delimiter: ::String
|
|
1445
|
-
},
|
|
1446
|
-
]
|
|
1447
|
-
}?,
|
|
1448
|
-
substitute_string: {
|
|
1449
|
-
entries: Array[
|
|
1450
|
-
{
|
|
1451
|
-
source: ::String,
|
|
1452
|
-
from: ::String,
|
|
1453
|
-
to: ::String
|
|
1454
|
-
},
|
|
1455
|
-
]
|
|
1456
|
-
}?,
|
|
1457
|
-
trim_string: {
|
|
1458
|
-
with_keys: Array[::String]
|
|
1459
|
-
}?,
|
|
1460
|
-
type_converter: {
|
|
1461
|
-
entries: Array[
|
|
1462
|
-
{
|
|
1463
|
-
key: ::String,
|
|
1464
|
-
type: ("boolean" | "integer" | "double" | "string")
|
|
1465
|
-
},
|
|
1466
|
-
]
|
|
1467
|
-
}?,
|
|
1468
|
-
upper_case_string: {
|
|
1469
|
-
with_keys: Array[::String]
|
|
1470
|
-
}?
|
|
1471
|
-
},
|
|
1328
|
+
Params::processor
|
|
1472
1329
|
]
|
|
1473
1330
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1474
1331
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
@@ -1545,143 +1402,7 @@ module Aws
|
|
|
1545
1402
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#test_transformer-instance_method
|
|
1546
1403
|
def test_transformer: (
|
|
1547
1404
|
transformer_config: Array[
|
|
1548
|
-
|
|
1549
|
-
add_keys: {
|
|
1550
|
-
entries: Array[
|
|
1551
|
-
{
|
|
1552
|
-
key: ::String,
|
|
1553
|
-
value: ::String,
|
|
1554
|
-
overwrite_if_exists: bool?
|
|
1555
|
-
},
|
|
1556
|
-
]
|
|
1557
|
-
}?,
|
|
1558
|
-
copy_value: {
|
|
1559
|
-
entries: Array[
|
|
1560
|
-
{
|
|
1561
|
-
source: ::String,
|
|
1562
|
-
target: ::String,
|
|
1563
|
-
overwrite_if_exists: bool?
|
|
1564
|
-
},
|
|
1565
|
-
]
|
|
1566
|
-
}?,
|
|
1567
|
-
csv: {
|
|
1568
|
-
quote_character: ::String?,
|
|
1569
|
-
delimiter: ::String?,
|
|
1570
|
-
columns: Array[::String]?,
|
|
1571
|
-
source: ::String?,
|
|
1572
|
-
destination: ::String?
|
|
1573
|
-
}?,
|
|
1574
|
-
date_time_converter: {
|
|
1575
|
-
source: ::String,
|
|
1576
|
-
target: ::String,
|
|
1577
|
-
target_format: ::String?,
|
|
1578
|
-
match_patterns: Array[::String],
|
|
1579
|
-
source_timezone: ::String?,
|
|
1580
|
-
target_timezone: ::String?,
|
|
1581
|
-
locale: ::String?
|
|
1582
|
-
}?,
|
|
1583
|
-
delete_keys: {
|
|
1584
|
-
with_keys: Array[::String]
|
|
1585
|
-
}?,
|
|
1586
|
-
grok: {
|
|
1587
|
-
source: ::String?,
|
|
1588
|
-
match: ::String
|
|
1589
|
-
}?,
|
|
1590
|
-
list_to_map: {
|
|
1591
|
-
source: ::String,
|
|
1592
|
-
key: ::String,
|
|
1593
|
-
value_key: ::String?,
|
|
1594
|
-
target: ::String?,
|
|
1595
|
-
flatten: bool?,
|
|
1596
|
-
flattened_element: ("first" | "last")?
|
|
1597
|
-
}?,
|
|
1598
|
-
lower_case_string: {
|
|
1599
|
-
with_keys: Array[::String]
|
|
1600
|
-
}?,
|
|
1601
|
-
move_keys: {
|
|
1602
|
-
entries: Array[
|
|
1603
|
-
{
|
|
1604
|
-
source: ::String,
|
|
1605
|
-
target: ::String,
|
|
1606
|
-
overwrite_if_exists: bool?
|
|
1607
|
-
},
|
|
1608
|
-
]
|
|
1609
|
-
}?,
|
|
1610
|
-
parse_cloudfront: {
|
|
1611
|
-
source: ::String?
|
|
1612
|
-
}?,
|
|
1613
|
-
parse_json: {
|
|
1614
|
-
source: ::String?,
|
|
1615
|
-
destination: ::String?
|
|
1616
|
-
}?,
|
|
1617
|
-
parse_key_value: {
|
|
1618
|
-
source: ::String?,
|
|
1619
|
-
destination: ::String?,
|
|
1620
|
-
field_delimiter: ::String?,
|
|
1621
|
-
key_value_delimiter: ::String?,
|
|
1622
|
-
key_prefix: ::String?,
|
|
1623
|
-
non_match_value: ::String?,
|
|
1624
|
-
overwrite_if_exists: bool?
|
|
1625
|
-
}?,
|
|
1626
|
-
parse_route_53: {
|
|
1627
|
-
source: ::String?
|
|
1628
|
-
}?,
|
|
1629
|
-
parse_to_ocsf: {
|
|
1630
|
-
source: ::String?,
|
|
1631
|
-
event_source: ("CloudTrail" | "Route53Resolver" | "VPCFlow" | "EKSAudit" | "AWSWAF"),
|
|
1632
|
-
ocsf_version: ("V1.1" | "V1.5"),
|
|
1633
|
-
mapping_version: ::String?
|
|
1634
|
-
}?,
|
|
1635
|
-
parse_postgres: {
|
|
1636
|
-
source: ::String?
|
|
1637
|
-
}?,
|
|
1638
|
-
parse_vpc: {
|
|
1639
|
-
source: ::String?
|
|
1640
|
-
}?,
|
|
1641
|
-
parse_waf: {
|
|
1642
|
-
source: ::String?
|
|
1643
|
-
}?,
|
|
1644
|
-
rename_keys: {
|
|
1645
|
-
entries: Array[
|
|
1646
|
-
{
|
|
1647
|
-
key: ::String,
|
|
1648
|
-
rename_to: ::String,
|
|
1649
|
-
overwrite_if_exists: bool?
|
|
1650
|
-
},
|
|
1651
|
-
]
|
|
1652
|
-
}?,
|
|
1653
|
-
split_string: {
|
|
1654
|
-
entries: Array[
|
|
1655
|
-
{
|
|
1656
|
-
source: ::String,
|
|
1657
|
-
delimiter: ::String
|
|
1658
|
-
},
|
|
1659
|
-
]
|
|
1660
|
-
}?,
|
|
1661
|
-
substitute_string: {
|
|
1662
|
-
entries: Array[
|
|
1663
|
-
{
|
|
1664
|
-
source: ::String,
|
|
1665
|
-
from: ::String,
|
|
1666
|
-
to: ::String
|
|
1667
|
-
},
|
|
1668
|
-
]
|
|
1669
|
-
}?,
|
|
1670
|
-
trim_string: {
|
|
1671
|
-
with_keys: Array[::String]
|
|
1672
|
-
}?,
|
|
1673
|
-
type_converter: {
|
|
1674
|
-
entries: Array[
|
|
1675
|
-
{
|
|
1676
|
-
key: ::String,
|
|
1677
|
-
type: ("boolean" | "integer" | "double" | "string")
|
|
1678
|
-
},
|
|
1679
|
-
]
|
|
1680
|
-
}?,
|
|
1681
|
-
upper_case_string: {
|
|
1682
|
-
with_keys: Array[::String]
|
|
1683
|
-
}?
|
|
1684
|
-
},
|
|
1405
|
+
Params::processor
|
|
1685
1406
|
],
|
|
1686
1407
|
log_event_messages: Array[::String]
|
|
1687
1408
|
) -> _TestTransformerResponseSuccess
|
|
@@ -1785,14 +1506,7 @@ module Aws
|
|
|
1785
1506
|
schedule_expression: ::String,
|
|
1786
1507
|
?timezone: ::String,
|
|
1787
1508
|
?start_time_offset: ::Integer,
|
|
1788
|
-
?destination_configuration:
|
|
1789
|
-
s3_configuration: {
|
|
1790
|
-
destination_identifier: ::String,
|
|
1791
|
-
role_arn: ::String,
|
|
1792
|
-
owner_account_id: ::String?,
|
|
1793
|
-
kms_key_id: ::String?
|
|
1794
|
-
}
|
|
1795
|
-
},
|
|
1509
|
+
?destination_configuration: Params::destination_configuration,
|
|
1796
1510
|
?schedule_start_time: ::Integer,
|
|
1797
1511
|
?schedule_end_time: ::Integer,
|
|
1798
1512
|
execution_role_arn: ::String,
|
data/sig/params.rbs
ADDED
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module CloudWatchLogs
|
|
10
|
+
module Params
|
|
11
|
+
type destination_configuration = {
|
|
12
|
+
s3_configuration: {
|
|
13
|
+
destination_identifier: ::String,
|
|
14
|
+
role_arn: ::String,
|
|
15
|
+
owner_account_id: ::String?,
|
|
16
|
+
kms_key_id: ::String?
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
type date_time_converter = {
|
|
21
|
+
source: ::String,
|
|
22
|
+
target: ::String,
|
|
23
|
+
target_format: ::String?,
|
|
24
|
+
match_patterns: Array[::String],
|
|
25
|
+
source_timezone: ::String?,
|
|
26
|
+
target_timezone: ::String?,
|
|
27
|
+
locale: ::String?
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
type list_to_map = {
|
|
31
|
+
source: ::String,
|
|
32
|
+
key: ::String,
|
|
33
|
+
value_key: ::String?,
|
|
34
|
+
target: ::String?,
|
|
35
|
+
flatten: bool?,
|
|
36
|
+
flattened_element: ("first" | "last")?
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
type parse_key_value = {
|
|
40
|
+
source: ::String?,
|
|
41
|
+
destination: ::String?,
|
|
42
|
+
field_delimiter: ::String?,
|
|
43
|
+
key_value_delimiter: ::String?,
|
|
44
|
+
key_prefix: ::String?,
|
|
45
|
+
non_match_value: ::String?,
|
|
46
|
+
overwrite_if_exists: bool?
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
type processor = {
|
|
50
|
+
add_keys: {
|
|
51
|
+
entries: Array[
|
|
52
|
+
{
|
|
53
|
+
key: ::String,
|
|
54
|
+
value: ::String,
|
|
55
|
+
overwrite_if_exists: bool?
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
}?,
|
|
59
|
+
copy_value: {
|
|
60
|
+
entries: Array[
|
|
61
|
+
{
|
|
62
|
+
source: ::String,
|
|
63
|
+
target: ::String,
|
|
64
|
+
overwrite_if_exists: bool?
|
|
65
|
+
}
|
|
66
|
+
]
|
|
67
|
+
}?,
|
|
68
|
+
csv: {
|
|
69
|
+
quote_character: ::String?,
|
|
70
|
+
delimiter: ::String?,
|
|
71
|
+
columns: Array[::String]?,
|
|
72
|
+
source: ::String?,
|
|
73
|
+
destination: ::String?
|
|
74
|
+
}?,
|
|
75
|
+
date_time_converter: Params::date_time_converter?,
|
|
76
|
+
delete_keys: {
|
|
77
|
+
with_keys: Array[::String]
|
|
78
|
+
}?,
|
|
79
|
+
grok: {
|
|
80
|
+
source: ::String?,
|
|
81
|
+
match: ::String
|
|
82
|
+
}?,
|
|
83
|
+
list_to_map: Params::list_to_map?,
|
|
84
|
+
lower_case_string: {
|
|
85
|
+
with_keys: Array[::String]
|
|
86
|
+
}?,
|
|
87
|
+
move_keys: {
|
|
88
|
+
entries: Array[
|
|
89
|
+
{
|
|
90
|
+
source: ::String,
|
|
91
|
+
target: ::String,
|
|
92
|
+
overwrite_if_exists: bool?
|
|
93
|
+
}
|
|
94
|
+
]
|
|
95
|
+
}?,
|
|
96
|
+
parse_cloudfront: {
|
|
97
|
+
source: ::String?
|
|
98
|
+
}?,
|
|
99
|
+
parse_json: {
|
|
100
|
+
source: ::String?,
|
|
101
|
+
destination: ::String?
|
|
102
|
+
}?,
|
|
103
|
+
parse_key_value: Params::parse_key_value?,
|
|
104
|
+
parse_route_53: {
|
|
105
|
+
source: ::String?
|
|
106
|
+
}?,
|
|
107
|
+
parse_to_ocsf: {
|
|
108
|
+
source: ::String?,
|
|
109
|
+
event_source: ("CloudTrail" | "Route53Resolver" | "VPCFlow" | "EKSAudit" | "AWSWAF"),
|
|
110
|
+
ocsf_version: ("V1.1" | "V1.5"),
|
|
111
|
+
mapping_version: ::String?
|
|
112
|
+
}?,
|
|
113
|
+
parse_postgres: {
|
|
114
|
+
source: ::String?
|
|
115
|
+
}?,
|
|
116
|
+
parse_vpc: {
|
|
117
|
+
source: ::String?
|
|
118
|
+
}?,
|
|
119
|
+
parse_waf: {
|
|
120
|
+
source: ::String?
|
|
121
|
+
}?,
|
|
122
|
+
rename_keys: {
|
|
123
|
+
entries: Array[
|
|
124
|
+
{
|
|
125
|
+
key: ::String,
|
|
126
|
+
rename_to: ::String,
|
|
127
|
+
overwrite_if_exists: bool?
|
|
128
|
+
}
|
|
129
|
+
]
|
|
130
|
+
}?,
|
|
131
|
+
split_string: {
|
|
132
|
+
entries: Array[
|
|
133
|
+
{
|
|
134
|
+
source: ::String,
|
|
135
|
+
delimiter: ::String
|
|
136
|
+
}
|
|
137
|
+
]
|
|
138
|
+
}?,
|
|
139
|
+
substitute_string: {
|
|
140
|
+
entries: Array[
|
|
141
|
+
{
|
|
142
|
+
source: ::String,
|
|
143
|
+
from: ::String,
|
|
144
|
+
to: ::String
|
|
145
|
+
}
|
|
146
|
+
]
|
|
147
|
+
}?,
|
|
148
|
+
trim_string: {
|
|
149
|
+
with_keys: Array[::String]
|
|
150
|
+
}?,
|
|
151
|
+
type_converter: {
|
|
152
|
+
entries: Array[
|
|
153
|
+
{
|
|
154
|
+
key: ::String,
|
|
155
|
+
type: ("boolean" | "integer" | "double" | "string")
|
|
156
|
+
}
|
|
157
|
+
]
|
|
158
|
+
}?,
|
|
159
|
+
upper_case_string: {
|
|
160
|
+
with_keys: Array[::String]
|
|
161
|
+
}?
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
end
|
|
165
|
+
end
|
|
166
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-cloudwatchlogs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.152.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -68,6 +68,7 @@ files:
|
|
|
68
68
|
- lib/aws-sdk-cloudwatchlogs/types.rb
|
|
69
69
|
- sig/client.rbs
|
|
70
70
|
- sig/errors.rbs
|
|
71
|
+
- sig/params.rbs
|
|
71
72
|
- sig/resource.rbs
|
|
72
73
|
- sig/types.rbs
|
|
73
74
|
- sig/waiters.rbs
|