aws-sdk-cloudwatchlogs 1.133.0 → 1.134.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudwatchlogs/client.rb +495 -135
- data/lib/aws-sdk-cloudwatchlogs/client_api.rb +195 -0
- data/lib/aws-sdk-cloudwatchlogs/types.rb +554 -152
- data/lib/aws-sdk-cloudwatchlogs.rb +1 -1
- data/sig/client.rbs +79 -1
- data/sig/types.rbs +112 -0
- metadata +1 -1
|
@@ -26,6 +26,8 @@ module Aws::CloudWatchLogs
|
|
|
26
26
|
AddKeyEntry = Shapes::StructureShape.new(name: 'AddKeyEntry')
|
|
27
27
|
AddKeyValue = Shapes::StringShape.new(name: 'AddKeyValue')
|
|
28
28
|
AddKeys = Shapes::StructureShape.new(name: 'AddKeys')
|
|
29
|
+
AggregateLogGroupSummaries = Shapes::ListShape.new(name: 'AggregateLogGroupSummaries')
|
|
30
|
+
AggregateLogGroupSummary = Shapes::StructureShape.new(name: 'AggregateLogGroupSummary')
|
|
29
31
|
AllowedActionForAllowVendedLogsDeliveryForResource = Shapes::StringShape.new(name: 'AllowedActionForAllowVendedLogsDeliveryForResource')
|
|
30
32
|
AllowedFieldDelimiters = Shapes::ListShape.new(name: 'AllowedFieldDelimiters')
|
|
31
33
|
AllowedFields = Shapes::ListShape.new(name: 'AllowedFields')
|
|
@@ -41,6 +43,8 @@ module Aws::CloudWatchLogs
|
|
|
41
43
|
ApplyOnTransformedLogs = Shapes::BooleanShape.new(name: 'ApplyOnTransformedLogs')
|
|
42
44
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
|
43
45
|
AssociateKmsKeyRequest = Shapes::StructureShape.new(name: 'AssociateKmsKeyRequest')
|
|
46
|
+
AssociateSourceToS3TableIntegrationRequest = Shapes::StructureShape.new(name: 'AssociateSourceToS3TableIntegrationRequest')
|
|
47
|
+
AssociateSourceToS3TableIntegrationResponse = Shapes::StructureShape.new(name: 'AssociateSourceToS3TableIntegrationResponse')
|
|
44
48
|
Baseline = Shapes::BooleanShape.new(name: 'Baseline')
|
|
45
49
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
46
50
|
CSV = Shapes::StructureShape.new(name: 'CSV')
|
|
@@ -72,6 +76,12 @@ module Aws::CloudWatchLogs
|
|
|
72
76
|
DataAlreadyAcceptedException = Shapes::StructureShape.new(name: 'DataAlreadyAcceptedException')
|
|
73
77
|
DataProtectionPolicyDocument = Shapes::StringShape.new(name: 'DataProtectionPolicyDocument')
|
|
74
78
|
DataProtectionStatus = Shapes::StringShape.new(name: 'DataProtectionStatus')
|
|
79
|
+
DataSource = Shapes::StructureShape.new(name: 'DataSource')
|
|
80
|
+
DataSourceFilter = Shapes::StructureShape.new(name: 'DataSourceFilter')
|
|
81
|
+
DataSourceFilters = Shapes::ListShape.new(name: 'DataSourceFilters')
|
|
82
|
+
DataSourceName = Shapes::StringShape.new(name: 'DataSourceName')
|
|
83
|
+
DataSourceType = Shapes::StringShape.new(name: 'DataSourceType')
|
|
84
|
+
DataType = Shapes::StringShape.new(name: 'DataType')
|
|
75
85
|
DateTimeConverter = Shapes::StructureShape.new(name: 'DateTimeConverter')
|
|
76
86
|
Days = Shapes::IntegerShape.new(name: 'Days')
|
|
77
87
|
DefaultValue = Shapes::FloatShape.new(name: 'DefaultValue')
|
|
@@ -167,6 +177,8 @@ module Aws::CloudWatchLogs
|
|
|
167
177
|
DimensionsKey = Shapes::StringShape.new(name: 'DimensionsKey')
|
|
168
178
|
DimensionsValue = Shapes::StringShape.new(name: 'DimensionsValue')
|
|
169
179
|
DisassociateKmsKeyRequest = Shapes::StructureShape.new(name: 'DisassociateKmsKeyRequest')
|
|
180
|
+
DisassociateSourceFromS3TableIntegrationRequest = Shapes::StructureShape.new(name: 'DisassociateSourceFromS3TableIntegrationRequest')
|
|
181
|
+
DisassociateSourceFromS3TableIntegrationResponse = Shapes::StructureShape.new(name: 'DisassociateSourceFromS3TableIntegrationResponse')
|
|
170
182
|
Distribution = Shapes::StringShape.new(name: 'Distribution')
|
|
171
183
|
DynamicTokenPosition = Shapes::IntegerShape.new(name: 'DynamicTokenPosition')
|
|
172
184
|
EmitSystemFields = Shapes::ListShape.new(name: 'EmitSystemFields')
|
|
@@ -206,6 +218,7 @@ module Aws::CloudWatchLogs
|
|
|
206
218
|
FieldHeader = Shapes::StringShape.new(name: 'FieldHeader')
|
|
207
219
|
FieldIndex = Shapes::StructureShape.new(name: 'FieldIndex')
|
|
208
220
|
FieldIndexName = Shapes::StringShape.new(name: 'FieldIndexName')
|
|
221
|
+
FieldIndexNames = Shapes::ListShape.new(name: 'FieldIndexNames')
|
|
209
222
|
FieldIndexes = Shapes::ListShape.new(name: 'FieldIndexes')
|
|
210
223
|
FieldSelectionCriteria = Shapes::StringShape.new(name: 'FieldSelectionCriteria')
|
|
211
224
|
FieldsData = Shapes::StructureShape.new(name: 'FieldsData')
|
|
@@ -237,6 +250,8 @@ module Aws::CloudWatchLogs
|
|
|
237
250
|
GetLogAnomalyDetectorResponse = Shapes::StructureShape.new(name: 'GetLogAnomalyDetectorResponse')
|
|
238
251
|
GetLogEventsRequest = Shapes::StructureShape.new(name: 'GetLogEventsRequest')
|
|
239
252
|
GetLogEventsResponse = Shapes::StructureShape.new(name: 'GetLogEventsResponse')
|
|
253
|
+
GetLogFieldsRequest = Shapes::StructureShape.new(name: 'GetLogFieldsRequest')
|
|
254
|
+
GetLogFieldsResponse = Shapes::StructureShape.new(name: 'GetLogFieldsResponse')
|
|
240
255
|
GetLogGroupFieldsRequest = Shapes::StructureShape.new(name: 'GetLogGroupFieldsRequest')
|
|
241
256
|
GetLogGroupFieldsResponse = Shapes::StructureShape.new(name: 'GetLogGroupFieldsResponse')
|
|
242
257
|
GetLogObjectRequest = Shapes::StructureShape.new(name: 'GetLogObjectRequest')
|
|
@@ -255,11 +270,16 @@ module Aws::CloudWatchLogs
|
|
|
255
270
|
GetTransformerResponse = Shapes::StructureShape.new(name: 'GetTransformerResponse')
|
|
256
271
|
Grok = Shapes::StructureShape.new(name: 'Grok')
|
|
257
272
|
GrokMatch = Shapes::StringShape.new(name: 'GrokMatch')
|
|
273
|
+
GroupingIdentifier = Shapes::StructureShape.new(name: 'GroupingIdentifier')
|
|
274
|
+
GroupingIdentifierKey = Shapes::StringShape.new(name: 'GroupingIdentifierKey')
|
|
275
|
+
GroupingIdentifierValue = Shapes::StringShape.new(name: 'GroupingIdentifierValue')
|
|
276
|
+
GroupingIdentifiers = Shapes::ListShape.new(name: 'GroupingIdentifiers')
|
|
258
277
|
Histogram = Shapes::MapShape.new(name: 'Histogram')
|
|
259
278
|
IncludeLinkedAccounts = Shapes::BooleanShape.new(name: 'IncludeLinkedAccounts')
|
|
260
279
|
IndexPolicies = Shapes::ListShape.new(name: 'IndexPolicies')
|
|
261
280
|
IndexPolicy = Shapes::StructureShape.new(name: 'IndexPolicy')
|
|
262
281
|
IndexSource = Shapes::StringShape.new(name: 'IndexSource')
|
|
282
|
+
IndexType = Shapes::StringShape.new(name: 'IndexType')
|
|
263
283
|
InferredTokenName = Shapes::StringShape.new(name: 'InferredTokenName')
|
|
264
284
|
InheritedProperties = Shapes::ListShape.new(name: 'InheritedProperties')
|
|
265
285
|
InheritedProperty = Shapes::StringShape.new(name: 'InheritedProperty')
|
|
@@ -287,6 +307,9 @@ module Aws::CloudWatchLogs
|
|
|
287
307
|
KeyValueDelimiter = Shapes::StringShape.new(name: 'KeyValueDelimiter')
|
|
288
308
|
KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
|
|
289
309
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
|
310
|
+
ListAggregateLogGroupSummariesGroupBy = Shapes::StringShape.new(name: 'ListAggregateLogGroupSummariesGroupBy')
|
|
311
|
+
ListAggregateLogGroupSummariesRequest = Shapes::StructureShape.new(name: 'ListAggregateLogGroupSummariesRequest')
|
|
312
|
+
ListAggregateLogGroupSummariesResponse = Shapes::StructureShape.new(name: 'ListAggregateLogGroupSummariesResponse')
|
|
290
313
|
ListAnomaliesLimit = Shapes::IntegerShape.new(name: 'ListAnomaliesLimit')
|
|
291
314
|
ListAnomaliesRequest = Shapes::StructureShape.new(name: 'ListAnomaliesRequest')
|
|
292
315
|
ListAnomaliesResponse = Shapes::StructureShape.new(name: 'ListAnomaliesResponse')
|
|
@@ -300,10 +323,14 @@ module Aws::CloudWatchLogs
|
|
|
300
323
|
ListLogGroupsForQueryRequest = Shapes::StructureShape.new(name: 'ListLogGroupsForQueryRequest')
|
|
301
324
|
ListLogGroupsForQueryResponse = Shapes::StructureShape.new(name: 'ListLogGroupsForQueryResponse')
|
|
302
325
|
ListLogGroupsRequest = Shapes::StructureShape.new(name: 'ListLogGroupsRequest')
|
|
326
|
+
ListLogGroupsRequestLimit = Shapes::IntegerShape.new(name: 'ListLogGroupsRequestLimit')
|
|
303
327
|
ListLogGroupsResponse = Shapes::StructureShape.new(name: 'ListLogGroupsResponse')
|
|
304
328
|
ListScheduledQueriesMaxResults = Shapes::IntegerShape.new(name: 'ListScheduledQueriesMaxResults')
|
|
305
329
|
ListScheduledQueriesRequest = Shapes::StructureShape.new(name: 'ListScheduledQueriesRequest')
|
|
306
330
|
ListScheduledQueriesResponse = Shapes::StructureShape.new(name: 'ListScheduledQueriesResponse')
|
|
331
|
+
ListSourcesForS3TableIntegrationMaxResults = Shapes::IntegerShape.new(name: 'ListSourcesForS3TableIntegrationMaxResults')
|
|
332
|
+
ListSourcesForS3TableIntegrationRequest = Shapes::StructureShape.new(name: 'ListSourcesForS3TableIntegrationRequest')
|
|
333
|
+
ListSourcesForS3TableIntegrationResponse = Shapes::StructureShape.new(name: 'ListSourcesForS3TableIntegrationResponse')
|
|
307
334
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
|
308
335
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
|
309
336
|
ListTagsLogGroupRequest = Shapes::StructureShape.new(name: 'ListTagsLogGroupRequest')
|
|
@@ -317,10 +344,15 @@ module Aws::CloudWatchLogs
|
|
|
317
344
|
Locale = Shapes::StringShape.new(name: 'Locale')
|
|
318
345
|
LogEvent = Shapes::StructureShape.new(name: 'LogEvent')
|
|
319
346
|
LogEventIndex = Shapes::IntegerShape.new(name: 'LogEventIndex')
|
|
347
|
+
LogFieldName = Shapes::StringShape.new(name: 'LogFieldName')
|
|
348
|
+
LogFieldType = Shapes::StructureShape.new(name: 'LogFieldType')
|
|
349
|
+
LogFieldsList = Shapes::ListShape.new(name: 'LogFieldsList')
|
|
350
|
+
LogFieldsListItem = Shapes::StructureShape.new(name: 'LogFieldsListItem')
|
|
320
351
|
LogGroup = Shapes::StructureShape.new(name: 'LogGroup')
|
|
321
352
|
LogGroupArn = Shapes::StringShape.new(name: 'LogGroupArn')
|
|
322
353
|
LogGroupArnList = Shapes::ListShape.new(name: 'LogGroupArnList')
|
|
323
354
|
LogGroupClass = Shapes::StringShape.new(name: 'LogGroupClass')
|
|
355
|
+
LogGroupCount = Shapes::IntegerShape.new(name: 'LogGroupCount')
|
|
324
356
|
LogGroupField = Shapes::StructureShape.new(name: 'LogGroupField')
|
|
325
357
|
LogGroupFieldList = Shapes::ListShape.new(name: 'LogGroupFieldList')
|
|
326
358
|
LogGroupIdentifier = Shapes::StringShape.new(name: 'LogGroupIdentifier')
|
|
@@ -480,6 +512,11 @@ module Aws::CloudWatchLogs
|
|
|
480
512
|
RoleArn = Shapes::StringShape.new(name: 'RoleArn')
|
|
481
513
|
S3Configuration = Shapes::StructureShape.new(name: 'S3Configuration')
|
|
482
514
|
S3DeliveryConfiguration = Shapes::StructureShape.new(name: 'S3DeliveryConfiguration')
|
|
515
|
+
S3TableIntegrationSource = Shapes::StructureShape.new(name: 'S3TableIntegrationSource')
|
|
516
|
+
S3TableIntegrationSourceIdentifier = Shapes::StringShape.new(name: 'S3TableIntegrationSourceIdentifier')
|
|
517
|
+
S3TableIntegrationSourceStatus = Shapes::StringShape.new(name: 'S3TableIntegrationSourceStatus')
|
|
518
|
+
S3TableIntegrationSourceStatusReason = Shapes::StringShape.new(name: 'S3TableIntegrationSourceStatusReason')
|
|
519
|
+
S3TableIntegrationSources = Shapes::ListShape.new(name: 'S3TableIntegrationSources')
|
|
483
520
|
S3Uri = Shapes::StringShape.new(name: 'S3Uri')
|
|
484
521
|
ScheduleExpression = Shapes::StringShape.new(name: 'ScheduleExpression')
|
|
485
522
|
ScheduleTimezone = Shapes::StringShape.new(name: 'ScheduleTimezone')
|
|
@@ -613,6 +650,12 @@ module Aws::CloudWatchLogs
|
|
|
613
650
|
AddKeys.add_member(:entries, Shapes::ShapeRef.new(shape: AddKeyEntries, required: true, location_name: "entries"))
|
|
614
651
|
AddKeys.struct_class = Types::AddKeys
|
|
615
652
|
|
|
653
|
+
AggregateLogGroupSummaries.member = Shapes::ShapeRef.new(shape: AggregateLogGroupSummary)
|
|
654
|
+
|
|
655
|
+
AggregateLogGroupSummary.add_member(:log_group_count, Shapes::ShapeRef.new(shape: LogGroupCount, location_name: "logGroupCount"))
|
|
656
|
+
AggregateLogGroupSummary.add_member(:grouping_identifiers, Shapes::ShapeRef.new(shape: GroupingIdentifiers, location_name: "groupingIdentifiers"))
|
|
657
|
+
AggregateLogGroupSummary.struct_class = Types::AggregateLogGroupSummary
|
|
658
|
+
|
|
616
659
|
AllowedFieldDelimiters.member = Shapes::ShapeRef.new(shape: FieldDelimiter)
|
|
617
660
|
|
|
618
661
|
AllowedFields.member = Shapes::ShapeRef.new(shape: RecordField)
|
|
@@ -659,6 +702,13 @@ module Aws::CloudWatchLogs
|
|
|
659
702
|
AssociateKmsKeyRequest.add_member(:resource_identifier, Shapes::ShapeRef.new(shape: ResourceIdentifier, location_name: "resourceIdentifier"))
|
|
660
703
|
AssociateKmsKeyRequest.struct_class = Types::AssociateKmsKeyRequest
|
|
661
704
|
|
|
705
|
+
AssociateSourceToS3TableIntegrationRequest.add_member(:integration_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "integrationArn"))
|
|
706
|
+
AssociateSourceToS3TableIntegrationRequest.add_member(:data_source, Shapes::ShapeRef.new(shape: DataSource, required: true, location_name: "dataSource"))
|
|
707
|
+
AssociateSourceToS3TableIntegrationRequest.struct_class = Types::AssociateSourceToS3TableIntegrationRequest
|
|
708
|
+
|
|
709
|
+
AssociateSourceToS3TableIntegrationResponse.add_member(:identifier, Shapes::ShapeRef.new(shape: S3TableIntegrationSourceIdentifier, location_name: "identifier"))
|
|
710
|
+
AssociateSourceToS3TableIntegrationResponse.struct_class = Types::AssociateSourceToS3TableIntegrationResponse
|
|
711
|
+
|
|
662
712
|
CSV.add_member(:quote_character, Shapes::ShapeRef.new(shape: QuoteCharacter, location_name: "quoteCharacter"))
|
|
663
713
|
CSV.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location_name: "delimiter"))
|
|
664
714
|
CSV.add_member(:columns, Shapes::ShapeRef.new(shape: Columns, location_name: "columns"))
|
|
@@ -772,6 +822,16 @@ module Aws::CloudWatchLogs
|
|
|
772
822
|
DataAlreadyAcceptedException.add_member(:expected_sequence_token, Shapes::ShapeRef.new(shape: SequenceToken, location_name: "expectedSequenceToken"))
|
|
773
823
|
DataAlreadyAcceptedException.struct_class = Types::DataAlreadyAcceptedException
|
|
774
824
|
|
|
825
|
+
DataSource.add_member(:name, Shapes::ShapeRef.new(shape: DataSourceName, required: true, location_name: "name"))
|
|
826
|
+
DataSource.add_member(:type, Shapes::ShapeRef.new(shape: DataSourceType, location_name: "type"))
|
|
827
|
+
DataSource.struct_class = Types::DataSource
|
|
828
|
+
|
|
829
|
+
DataSourceFilter.add_member(:name, Shapes::ShapeRef.new(shape: DataSourceName, required: true, location_name: "name"))
|
|
830
|
+
DataSourceFilter.add_member(:type, Shapes::ShapeRef.new(shape: DataSourceType, location_name: "type"))
|
|
831
|
+
DataSourceFilter.struct_class = Types::DataSourceFilter
|
|
832
|
+
|
|
833
|
+
DataSourceFilters.member = Shapes::ShapeRef.new(shape: DataSourceFilter)
|
|
834
|
+
|
|
775
835
|
DateTimeConverter.add_member(:source, Shapes::ShapeRef.new(shape: Source, required: true, location_name: "source"))
|
|
776
836
|
DateTimeConverter.add_member(:target, Shapes::ShapeRef.new(shape: Target, required: true, location_name: "target"))
|
|
777
837
|
DateTimeConverter.add_member(:target_format, Shapes::ShapeRef.new(shape: TargetFormat, location_name: "targetFormat"))
|
|
@@ -1084,6 +1144,12 @@ module Aws::CloudWatchLogs
|
|
|
1084
1144
|
DisassociateKmsKeyRequest.add_member(:resource_identifier, Shapes::ShapeRef.new(shape: ResourceIdentifier, location_name: "resourceIdentifier"))
|
|
1085
1145
|
DisassociateKmsKeyRequest.struct_class = Types::DisassociateKmsKeyRequest
|
|
1086
1146
|
|
|
1147
|
+
DisassociateSourceFromS3TableIntegrationRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: S3TableIntegrationSourceIdentifier, required: true, location_name: "identifier"))
|
|
1148
|
+
DisassociateSourceFromS3TableIntegrationRequest.struct_class = Types::DisassociateSourceFromS3TableIntegrationRequest
|
|
1149
|
+
|
|
1150
|
+
DisassociateSourceFromS3TableIntegrationResponse.add_member(:identifier, Shapes::ShapeRef.new(shape: S3TableIntegrationSourceIdentifier, location_name: "identifier"))
|
|
1151
|
+
DisassociateSourceFromS3TableIntegrationResponse.struct_class = Types::DisassociateSourceFromS3TableIntegrationResponse
|
|
1152
|
+
|
|
1087
1153
|
EmitSystemFields.member = Shapes::ShapeRef.new(shape: SystemField)
|
|
1088
1154
|
|
|
1089
1155
|
Entity.add_member(:key_attributes, Shapes::ShapeRef.new(shape: EntityKeyAttributes, location_name: "keyAttributes"))
|
|
@@ -1130,8 +1196,11 @@ module Aws::CloudWatchLogs
|
|
|
1130
1196
|
FieldIndex.add_member(:last_scan_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastScanTime"))
|
|
1131
1197
|
FieldIndex.add_member(:first_event_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "firstEventTime"))
|
|
1132
1198
|
FieldIndex.add_member(:last_event_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastEventTime"))
|
|
1199
|
+
FieldIndex.add_member(:type, Shapes::ShapeRef.new(shape: IndexType, location_name: "type"))
|
|
1133
1200
|
FieldIndex.struct_class = Types::FieldIndex
|
|
1134
1201
|
|
|
1202
|
+
FieldIndexNames.member = Shapes::ShapeRef.new(shape: FieldIndexName)
|
|
1203
|
+
|
|
1135
1204
|
FieldIndexes.member = Shapes::ShapeRef.new(shape: FieldIndex)
|
|
1136
1205
|
|
|
1137
1206
|
FieldsData.add_member(:data, Shapes::ShapeRef.new(shape: Data, location_name: "data"))
|
|
@@ -1235,6 +1304,13 @@ module Aws::CloudWatchLogs
|
|
|
1235
1304
|
GetLogEventsResponse.add_member(:next_backward_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextBackwardToken"))
|
|
1236
1305
|
GetLogEventsResponse.struct_class = Types::GetLogEventsResponse
|
|
1237
1306
|
|
|
1307
|
+
GetLogFieldsRequest.add_member(:data_source_name, Shapes::ShapeRef.new(shape: DataSourceName, required: true, location_name: "dataSourceName"))
|
|
1308
|
+
GetLogFieldsRequest.add_member(:data_source_type, Shapes::ShapeRef.new(shape: DataSourceType, required: true, location_name: "dataSourceType"))
|
|
1309
|
+
GetLogFieldsRequest.struct_class = Types::GetLogFieldsRequest
|
|
1310
|
+
|
|
1311
|
+
GetLogFieldsResponse.add_member(:log_fields, Shapes::ShapeRef.new(shape: LogFieldsList, location_name: "logFields"))
|
|
1312
|
+
GetLogFieldsResponse.struct_class = Types::GetLogFieldsResponse
|
|
1313
|
+
|
|
1238
1314
|
GetLogGroupFieldsRequest.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, location_name: "logGroupName"))
|
|
1239
1315
|
GetLogGroupFieldsRequest.add_member(:time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "time"))
|
|
1240
1316
|
GetLogGroupFieldsRequest.add_member(:log_group_identifier, Shapes::ShapeRef.new(shape: LogGroupIdentifier, location_name: "logGroupIdentifier"))
|
|
@@ -1321,6 +1397,12 @@ module Aws::CloudWatchLogs
|
|
|
1321
1397
|
Grok.add_member(:match, Shapes::ShapeRef.new(shape: GrokMatch, required: true, location_name: "match"))
|
|
1322
1398
|
Grok.struct_class = Types::Grok
|
|
1323
1399
|
|
|
1400
|
+
GroupingIdentifier.add_member(:key, Shapes::ShapeRef.new(shape: GroupingIdentifierKey, location_name: "key"))
|
|
1401
|
+
GroupingIdentifier.add_member(:value, Shapes::ShapeRef.new(shape: GroupingIdentifierValue, location_name: "value"))
|
|
1402
|
+
GroupingIdentifier.struct_class = Types::GroupingIdentifier
|
|
1403
|
+
|
|
1404
|
+
GroupingIdentifiers.member = Shapes::ShapeRef.new(shape: GroupingIdentifier)
|
|
1405
|
+
|
|
1324
1406
|
Histogram.key = Shapes::ShapeRef.new(shape: Time)
|
|
1325
1407
|
Histogram.value = Shapes::ShapeRef.new(shape: Count)
|
|
1326
1408
|
|
|
@@ -1370,6 +1452,20 @@ module Aws::CloudWatchLogs
|
|
|
1370
1452
|
|
|
1371
1453
|
LimitExceededException.struct_class = Types::LimitExceededException
|
|
1372
1454
|
|
|
1455
|
+
ListAggregateLogGroupSummariesRequest.add_member(:account_identifiers, Shapes::ShapeRef.new(shape: AccountIds, location_name: "accountIdentifiers"))
|
|
1456
|
+
ListAggregateLogGroupSummariesRequest.add_member(:include_linked_accounts, Shapes::ShapeRef.new(shape: IncludeLinkedAccounts, location_name: "includeLinkedAccounts"))
|
|
1457
|
+
ListAggregateLogGroupSummariesRequest.add_member(:log_group_class, Shapes::ShapeRef.new(shape: LogGroupClass, location_name: "logGroupClass"))
|
|
1458
|
+
ListAggregateLogGroupSummariesRequest.add_member(:log_group_name_pattern, Shapes::ShapeRef.new(shape: LogGroupNameRegexPattern, location_name: "logGroupNamePattern"))
|
|
1459
|
+
ListAggregateLogGroupSummariesRequest.add_member(:data_sources, Shapes::ShapeRef.new(shape: DataSourceFilters, location_name: "dataSources"))
|
|
1460
|
+
ListAggregateLogGroupSummariesRequest.add_member(:group_by, Shapes::ShapeRef.new(shape: ListAggregateLogGroupSummariesGroupBy, required: true, location_name: "groupBy"))
|
|
1461
|
+
ListAggregateLogGroupSummariesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1462
|
+
ListAggregateLogGroupSummariesRequest.add_member(:limit, Shapes::ShapeRef.new(shape: ListLogGroupsRequestLimit, location_name: "limit"))
|
|
1463
|
+
ListAggregateLogGroupSummariesRequest.struct_class = Types::ListAggregateLogGroupSummariesRequest
|
|
1464
|
+
|
|
1465
|
+
ListAggregateLogGroupSummariesResponse.add_member(:aggregate_log_group_summaries, Shapes::ShapeRef.new(shape: AggregateLogGroupSummaries, location_name: "aggregateLogGroupSummaries"))
|
|
1466
|
+
ListAggregateLogGroupSummariesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1467
|
+
ListAggregateLogGroupSummariesResponse.struct_class = Types::ListAggregateLogGroupSummariesResponse
|
|
1468
|
+
|
|
1373
1469
|
ListAnomaliesRequest.add_member(:anomaly_detector_arn, Shapes::ShapeRef.new(shape: AnomalyDetectorArn, location_name: "anomalyDetectorArn"))
|
|
1374
1470
|
ListAnomaliesRequest.add_member(:suppression_state, Shapes::ShapeRef.new(shape: SuppressionState, location_name: "suppressionState"))
|
|
1375
1471
|
ListAnomaliesRequest.add_member(:limit, Shapes::ShapeRef.new(shape: ListAnomaliesLimit, location_name: "limit"))
|
|
@@ -1412,6 +1508,8 @@ module Aws::CloudWatchLogs
|
|
|
1412
1508
|
ListLogGroupsRequest.add_member(:account_identifiers, Shapes::ShapeRef.new(shape: AccountIds, location_name: "accountIdentifiers"))
|
|
1413
1509
|
ListLogGroupsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1414
1510
|
ListLogGroupsRequest.add_member(:limit, Shapes::ShapeRef.new(shape: ListLimit, location_name: "limit"))
|
|
1511
|
+
ListLogGroupsRequest.add_member(:data_sources, Shapes::ShapeRef.new(shape: DataSourceFilters, location_name: "dataSources"))
|
|
1512
|
+
ListLogGroupsRequest.add_member(:field_index_names, Shapes::ShapeRef.new(shape: FieldIndexNames, location_name: "fieldIndexNames"))
|
|
1415
1513
|
ListLogGroupsRequest.struct_class = Types::ListLogGroupsRequest
|
|
1416
1514
|
|
|
1417
1515
|
ListLogGroupsResponse.add_member(:log_groups, Shapes::ShapeRef.new(shape: LogGroupSummaries, location_name: "logGroups"))
|
|
@@ -1427,6 +1525,15 @@ module Aws::CloudWatchLogs
|
|
|
1427
1525
|
ListScheduledQueriesResponse.add_member(:scheduled_queries, Shapes::ShapeRef.new(shape: ScheduledQuerySummaryList, location_name: "scheduledQueries"))
|
|
1428
1526
|
ListScheduledQueriesResponse.struct_class = Types::ListScheduledQueriesResponse
|
|
1429
1527
|
|
|
1528
|
+
ListSourcesForS3TableIntegrationRequest.add_member(:integration_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "integrationArn"))
|
|
1529
|
+
ListSourcesForS3TableIntegrationRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListSourcesForS3TableIntegrationMaxResults, location_name: "maxResults"))
|
|
1530
|
+
ListSourcesForS3TableIntegrationRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1531
|
+
ListSourcesForS3TableIntegrationRequest.struct_class = Types::ListSourcesForS3TableIntegrationRequest
|
|
1532
|
+
|
|
1533
|
+
ListSourcesForS3TableIntegrationResponse.add_member(:sources, Shapes::ShapeRef.new(shape: S3TableIntegrationSources, location_name: "sources"))
|
|
1534
|
+
ListSourcesForS3TableIntegrationResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1535
|
+
ListSourcesForS3TableIntegrationResponse.struct_class = Types::ListSourcesForS3TableIntegrationResponse
|
|
1536
|
+
|
|
1430
1537
|
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "resourceArn"))
|
|
1431
1538
|
ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
|
|
1432
1539
|
|
|
@@ -1475,6 +1582,17 @@ module Aws::CloudWatchLogs
|
|
|
1475
1582
|
LogEvent.add_member(:message, Shapes::ShapeRef.new(shape: EventMessage, location_name: "message"))
|
|
1476
1583
|
LogEvent.struct_class = Types::LogEvent
|
|
1477
1584
|
|
|
1585
|
+
LogFieldType.add_member(:type, Shapes::ShapeRef.new(shape: DataType, location_name: "type"))
|
|
1586
|
+
LogFieldType.add_member(:element, Shapes::ShapeRef.new(shape: LogFieldType, location_name: "element"))
|
|
1587
|
+
LogFieldType.add_member(:fields, Shapes::ShapeRef.new(shape: LogFieldsList, location_name: "fields"))
|
|
1588
|
+
LogFieldType.struct_class = Types::LogFieldType
|
|
1589
|
+
|
|
1590
|
+
LogFieldsList.member = Shapes::ShapeRef.new(shape: LogFieldsListItem)
|
|
1591
|
+
|
|
1592
|
+
LogFieldsListItem.add_member(:log_field_name, Shapes::ShapeRef.new(shape: LogFieldName, location_name: "logFieldName"))
|
|
1593
|
+
LogFieldsListItem.add_member(:log_field_type, Shapes::ShapeRef.new(shape: LogFieldType, location_name: "logFieldType"))
|
|
1594
|
+
LogFieldsListItem.struct_class = Types::LogFieldsListItem
|
|
1595
|
+
|
|
1478
1596
|
LogGroup.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, location_name: "logGroupName"))
|
|
1479
1597
|
LogGroup.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationTime"))
|
|
1480
1598
|
LogGroup.add_member(:retention_in_days, Shapes::ShapeRef.new(shape: Days, location_name: "retentionInDays"))
|
|
@@ -1958,6 +2076,15 @@ module Aws::CloudWatchLogs
|
|
|
1958
2076
|
S3DeliveryConfiguration.add_member(:enable_hive_compatible_path, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableHiveCompatiblePath", metadata: {"box" => true}))
|
|
1959
2077
|
S3DeliveryConfiguration.struct_class = Types::S3DeliveryConfiguration
|
|
1960
2078
|
|
|
2079
|
+
S3TableIntegrationSource.add_member(:identifier, Shapes::ShapeRef.new(shape: S3TableIntegrationSourceIdentifier, location_name: "identifier"))
|
|
2080
|
+
S3TableIntegrationSource.add_member(:data_source, Shapes::ShapeRef.new(shape: DataSource, location_name: "dataSource"))
|
|
2081
|
+
S3TableIntegrationSource.add_member(:status, Shapes::ShapeRef.new(shape: S3TableIntegrationSourceStatus, location_name: "status"))
|
|
2082
|
+
S3TableIntegrationSource.add_member(:status_reason, Shapes::ShapeRef.new(shape: S3TableIntegrationSourceStatusReason, location_name: "statusReason"))
|
|
2083
|
+
S3TableIntegrationSource.add_member(:created_time_stamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdTimeStamp"))
|
|
2084
|
+
S3TableIntegrationSource.struct_class = Types::S3TableIntegrationSource
|
|
2085
|
+
|
|
2086
|
+
S3TableIntegrationSources.member = Shapes::ShapeRef.new(shape: S3TableIntegrationSource)
|
|
2087
|
+
|
|
1961
2088
|
ScheduledQueryDestination.add_member(:destination_type, Shapes::ShapeRef.new(shape: ScheduledQueryDestinationType, location_name: "destinationType"))
|
|
1962
2089
|
ScheduledQueryDestination.add_member(:destination_identifier, Shapes::ShapeRef.new(shape: String, location_name: "destinationIdentifier"))
|
|
1963
2090
|
ScheduledQueryDestination.add_member(:status, Shapes::ShapeRef.new(shape: ActionStatus, location_name: "status"))
|
|
@@ -2246,6 +2373,19 @@ module Aws::CloudWatchLogs
|
|
|
2246
2373
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
2247
2374
|
end)
|
|
2248
2375
|
|
|
2376
|
+
api.add_operation(:associate_source_to_s3_table_integration, Seahorse::Model::Operation.new.tap do |o|
|
|
2377
|
+
o.name = "AssociateSourceToS3TableIntegration"
|
|
2378
|
+
o.http_method = "POST"
|
|
2379
|
+
o.http_request_uri = "/"
|
|
2380
|
+
o.input = Shapes::ShapeRef.new(shape: AssociateSourceToS3TableIntegrationRequest)
|
|
2381
|
+
o.output = Shapes::ShapeRef.new(shape: AssociateSourceToS3TableIntegrationResponse)
|
|
2382
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2383
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2384
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
2385
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
2386
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2387
|
+
end)
|
|
2388
|
+
|
|
2249
2389
|
api.add_operation(:cancel_export_task, Seahorse::Model::Operation.new.tap do |o|
|
|
2250
2390
|
o.name = "CancelExportTask"
|
|
2251
2391
|
o.http_method = "POST"
|
|
@@ -2824,6 +2964,19 @@ module Aws::CloudWatchLogs
|
|
|
2824
2964
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
2825
2965
|
end)
|
|
2826
2966
|
|
|
2967
|
+
api.add_operation(:disassociate_source_from_s3_table_integration, Seahorse::Model::Operation.new.tap do |o|
|
|
2968
|
+
o.name = "DisassociateSourceFromS3TableIntegration"
|
|
2969
|
+
o.http_method = "POST"
|
|
2970
|
+
o.http_request_uri = "/"
|
|
2971
|
+
o.input = Shapes::ShapeRef.new(shape: DisassociateSourceFromS3TableIntegrationRequest)
|
|
2972
|
+
o.output = Shapes::ShapeRef.new(shape: DisassociateSourceFromS3TableIntegrationResponse)
|
|
2973
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2974
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2975
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
2976
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
2977
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2978
|
+
end)
|
|
2979
|
+
|
|
2827
2980
|
api.add_operation(:filter_log_events, Seahorse::Model::Operation.new.tap do |o|
|
|
2828
2981
|
o.name = "FilterLogEvents"
|
|
2829
2982
|
o.http_method = "POST"
|
|
@@ -2943,6 +3096,18 @@ module Aws::CloudWatchLogs
|
|
|
2943
3096
|
)
|
|
2944
3097
|
end)
|
|
2945
3098
|
|
|
3099
|
+
api.add_operation(:get_log_fields, Seahorse::Model::Operation.new.tap do |o|
|
|
3100
|
+
o.name = "GetLogFields"
|
|
3101
|
+
o.http_method = "POST"
|
|
3102
|
+
o.http_request_uri = "/"
|
|
3103
|
+
o.input = Shapes::ShapeRef.new(shape: GetLogFieldsRequest)
|
|
3104
|
+
o.output = Shapes::ShapeRef.new(shape: GetLogFieldsResponse)
|
|
3105
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3106
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
3107
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationAbortedException)
|
|
3108
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
3109
|
+
end)
|
|
3110
|
+
|
|
2946
3111
|
api.add_operation(:get_log_group_fields, Seahorse::Model::Operation.new.tap do |o|
|
|
2947
3112
|
o.name = "GetLogGroupFields"
|
|
2948
3113
|
o.http_method = "POST"
|
|
@@ -3038,6 +3203,17 @@ module Aws::CloudWatchLogs
|
|
|
3038
3203
|
o.errors << Shapes::ShapeRef.new(shape: InvalidOperationException)
|
|
3039
3204
|
end)
|
|
3040
3205
|
|
|
3206
|
+
api.add_operation(:list_aggregate_log_group_summaries, Seahorse::Model::Operation.new.tap do |o|
|
|
3207
|
+
o.name = "ListAggregateLogGroupSummaries"
|
|
3208
|
+
o.http_method = "POST"
|
|
3209
|
+
o.http_request_uri = "/"
|
|
3210
|
+
o.input = Shapes::ShapeRef.new(shape: ListAggregateLogGroupSummariesRequest)
|
|
3211
|
+
o.output = Shapes::ShapeRef.new(shape: ListAggregateLogGroupSummariesResponse)
|
|
3212
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
3213
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
3214
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3215
|
+
end)
|
|
3216
|
+
|
|
3041
3217
|
api.add_operation(:list_anomalies, Seahorse::Model::Operation.new.tap do |o|
|
|
3042
3218
|
o.name = "ListAnomalies"
|
|
3043
3219
|
o.http_method = "POST"
|
|
@@ -3130,6 +3306,25 @@ module Aws::CloudWatchLogs
|
|
|
3130
3306
|
)
|
|
3131
3307
|
end)
|
|
3132
3308
|
|
|
3309
|
+
api.add_operation(:list_sources_for_s3_table_integration, Seahorse::Model::Operation.new.tap do |o|
|
|
3310
|
+
o.name = "ListSourcesForS3TableIntegration"
|
|
3311
|
+
o.http_method = "POST"
|
|
3312
|
+
o.http_request_uri = "/"
|
|
3313
|
+
o.input = Shapes::ShapeRef.new(shape: ListSourcesForS3TableIntegrationRequest)
|
|
3314
|
+
o.output = Shapes::ShapeRef.new(shape: ListSourcesForS3TableIntegrationResponse)
|
|
3315
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3316
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
3317
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
3318
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
3319
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
3320
|
+
o[:pager] = Aws::Pager.new(
|
|
3321
|
+
limit_key: "max_results",
|
|
3322
|
+
tokens: {
|
|
3323
|
+
"next_token" => "next_token"
|
|
3324
|
+
}
|
|
3325
|
+
)
|
|
3326
|
+
end)
|
|
3327
|
+
|
|
3133
3328
|
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
3134
3329
|
o.name = "ListTagsForResource"
|
|
3135
3330
|
o.http_method = "POST"
|