aws-sdk-cloudwatchlogs 1.0.0.rc5 → 1.0.0.rc6
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/lib/aws-sdk-cloudwatchlogs.rb +1 -1
- data/lib/aws-sdk-cloudwatchlogs/client.rb +16 -2
- data/lib/aws-sdk-cloudwatchlogs/types.rb +37 -13
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff736e74a1aef9ebe6c0d927a59016a87ed58eec
|
4
|
+
data.tar.gz: da4042f12d7a3e8828ec6ed4b55098718af7aee1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a59f94e7d6e1685e96314a590212aaf500dffcabc7704e6b7870db8a9475f2b84b1422b3a7d2e177065aee117d3f1e4cc8db86f99d7055eae2007a70fea980db
|
7
|
+
data.tar.gz: f299131805db024208c4efaafb2298d27a73c55f330770eb4f6d9e434913fd5196f932d3d65a557573b8e22d1d5f69338311ece008293007cb1e077a0d63cb1c
|
@@ -656,6 +656,13 @@ module Aws::CloudWatchLogs
|
|
656
656
|
# If you order the results by event time, you cannot specify the
|
657
657
|
# `logStreamNamePrefix` parameter.
|
658
658
|
#
|
659
|
+
# lastEventTimestamp represents the time of the most recent log event in
|
660
|
+
# the log stream in CloudWatch Logs. This number is expressed as the
|
661
|
+
# number of milliseconds since Jan 1, 1970 00:00:00 UTC.
|
662
|
+
# lastEventTimeStamp updates on an eventual consistency basis. It
|
663
|
+
# typically updates in less than an hour from ingestion, but may take
|
664
|
+
# longer in some rare situations.
|
665
|
+
#
|
659
666
|
# @option params [Boolean] :descending
|
660
667
|
# If the value is true, results are returned in descending order. If the
|
661
668
|
# value is to false, results are returned in ascending order. The
|
@@ -1274,12 +1281,19 @@ module Aws::CloudWatchLogs
|
|
1274
1281
|
# subscription filter, for same-account delivery.
|
1275
1282
|
#
|
1276
1283
|
# There can only be one subscription filter associated with a log group.
|
1284
|
+
# If you are updating an existing filter, you must specify the correct
|
1285
|
+
# name in `filterName`. Otherwise, the call will fail because you cannot
|
1286
|
+
# associate a second filter with a log group.
|
1277
1287
|
#
|
1278
1288
|
# @option params [required, String] :log_group_name
|
1279
1289
|
# The name of the log group.
|
1280
1290
|
#
|
1281
1291
|
# @option params [required, String] :filter_name
|
1282
|
-
# A name for the subscription filter.
|
1292
|
+
# A name for the subscription filter. If you are updating an existing
|
1293
|
+
# filter, you must specify the correct name in `filterName`. Otherwise,
|
1294
|
+
# the call will fail because you cannot associate a second filter with a
|
1295
|
+
# log group. To find the name of the filter currently associated with a
|
1296
|
+
# log group, use DescribeSubscriptionFilters.
|
1283
1297
|
#
|
1284
1298
|
# @option params [required, String] :filter_pattern
|
1285
1299
|
# A filter pattern for subscribing to a filtered stream of log events.
|
@@ -1455,7 +1469,7 @@ module Aws::CloudWatchLogs
|
|
1455
1469
|
params: params,
|
1456
1470
|
config: config)
|
1457
1471
|
context[:gem_name] = 'aws-sdk-cloudwatchlogs'
|
1458
|
-
context[:gem_version] = '1.0.0.
|
1472
|
+
context[:gem_version] = '1.0.0.rc6'
|
1459
1473
|
Seahorse::Client::Request.new(handlers, context)
|
1460
1474
|
end
|
1461
1475
|
|
@@ -459,6 +459,13 @@ module Aws::CloudWatchLogs
|
|
459
459
|
#
|
460
460
|
# If you order the results by event time, you cannot specify the
|
461
461
|
# `logStreamNamePrefix` parameter.
|
462
|
+
#
|
463
|
+
# lastEventTimestamp represents the time of the most recent log event
|
464
|
+
# in the log stream in CloudWatch Logs. This number is expressed as
|
465
|
+
# the number of milliseconds since Jan 1, 1970 00:00:00 UTC.
|
466
|
+
# lastEventTimeStamp updates on an eventual consistency basis. It
|
467
|
+
# typically updates in less than an hour from ingestion, but may take
|
468
|
+
# longer in some rare situations.
|
462
469
|
# @return [String]
|
463
470
|
#
|
464
471
|
# @!attribute [rw] descending
|
@@ -656,7 +663,8 @@ module Aws::CloudWatchLogs
|
|
656
663
|
# @return [String]
|
657
664
|
#
|
658
665
|
# @!attribute [rw] creation_time
|
659
|
-
# The creation time of the destination
|
666
|
+
# The creation time of the destination, expressed as the number of
|
667
|
+
# milliseconds since Jan 1, 1970 00:00:00 UTC.
|
660
668
|
# @return [Integer]
|
661
669
|
#
|
662
670
|
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/Destination AWS API Documentation
|
@@ -732,11 +740,13 @@ module Aws::CloudWatchLogs
|
|
732
740
|
# Represents the status of an export task.
|
733
741
|
#
|
734
742
|
# @!attribute [rw] creation_time
|
735
|
-
# The creation time of the export task
|
743
|
+
# The creation time of the export task, expressed as the number of
|
744
|
+
# milliseconds since Jan 1, 1970 00:00:00 UTC.
|
736
745
|
# @return [Integer]
|
737
746
|
#
|
738
747
|
# @!attribute [rw] completion_time
|
739
|
-
# The completion time of the export task
|
748
|
+
# The completion time of the export task, expressed as the number of
|
749
|
+
# milliseconds since Jan 1, 1970 00:00:00 UTC.
|
740
750
|
# @return [Integer]
|
741
751
|
#
|
742
752
|
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/ExportTaskExecutionInfo AWS API Documentation
|
@@ -876,7 +886,8 @@ module Aws::CloudWatchLogs
|
|
876
886
|
# @return [String]
|
877
887
|
#
|
878
888
|
# @!attribute [rw] ingestion_time
|
879
|
-
# The time the event was ingested
|
889
|
+
# The time the event was ingested, expressed as the number of
|
890
|
+
# milliseconds since Jan 1, 1970 00:00:00 UTC.
|
880
891
|
# @return [Integer]
|
881
892
|
#
|
882
893
|
# @!attribute [rw] event_id
|
@@ -1044,7 +1055,8 @@ module Aws::CloudWatchLogs
|
|
1044
1055
|
# @return [String]
|
1045
1056
|
#
|
1046
1057
|
# @!attribute [rw] creation_time
|
1047
|
-
# The creation time of the log group
|
1058
|
+
# The creation time of the log group, expressed as the number of
|
1059
|
+
# milliseconds since Jan 1, 1970 00:00:00 UTC.
|
1048
1060
|
# @return [Integer]
|
1049
1061
|
#
|
1050
1062
|
# @!attribute [rw] retention_in_days
|
@@ -1085,7 +1097,8 @@ module Aws::CloudWatchLogs
|
|
1085
1097
|
# @return [String]
|
1086
1098
|
#
|
1087
1099
|
# @!attribute [rw] creation_time
|
1088
|
-
# The creation time of the stream
|
1100
|
+
# The creation time of the stream, expressed as the number of
|
1101
|
+
# milliseconds since Jan 1, 1970 00:00:00 UTC.
|
1089
1102
|
# @return [Integer]
|
1090
1103
|
#
|
1091
1104
|
# @!attribute [rw] first_event_timestamp
|
@@ -1094,12 +1107,16 @@ module Aws::CloudWatchLogs
|
|
1094
1107
|
# @return [Integer]
|
1095
1108
|
#
|
1096
1109
|
# @!attribute [rw] last_event_timestamp
|
1097
|
-
#
|
1098
|
-
#
|
1110
|
+
# the time of the most recent log event in the log stream in
|
1111
|
+
# CloudWatch Logs. This number is expressed as the number of
|
1112
|
+
# milliseconds since Jan 1, 1970 00:00:00 UTC. lastEventTime updates
|
1113
|
+
# on an eventual consistency basis. It typically updates in less than
|
1114
|
+
# an hour from ingestion, but may take longer in some rare situations.
|
1099
1115
|
# @return [Integer]
|
1100
1116
|
#
|
1101
1117
|
# @!attribute [rw] last_ingestion_time
|
1102
|
-
# The ingestion time
|
1118
|
+
# The ingestion time, expressed as the number of milliseconds since
|
1119
|
+
# Jan 1, 1970 00:00:00 UTC.
|
1103
1120
|
# @return [Integer]
|
1104
1121
|
#
|
1105
1122
|
# @!attribute [rw] upload_sequence_token
|
@@ -1148,7 +1165,8 @@ module Aws::CloudWatchLogs
|
|
1148
1165
|
# @return [Array<Types::MetricTransformation>]
|
1149
1166
|
#
|
1150
1167
|
# @!attribute [rw] creation_time
|
1151
|
-
# The creation time of the metric filter
|
1168
|
+
# The creation time of the metric filter, expressed as the number of
|
1169
|
+
# milliseconds since Jan 1, 1970 00:00:00 UTC.
|
1152
1170
|
# @return [Integer]
|
1153
1171
|
#
|
1154
1172
|
# @!attribute [rw] log_group_name
|
@@ -1242,7 +1260,8 @@ module Aws::CloudWatchLogs
|
|
1242
1260
|
# @return [String]
|
1243
1261
|
#
|
1244
1262
|
# @!attribute [rw] ingestion_time
|
1245
|
-
# The time the event was ingested
|
1263
|
+
# The time the event was ingested, expressed as the number of
|
1264
|
+
# milliseconds since Jan 1, 1970 00:00:00 UTC.
|
1246
1265
|
# @return [Integer]
|
1247
1266
|
#
|
1248
1267
|
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/OutputLogEvent AWS API Documentation
|
@@ -1467,7 +1486,11 @@ module Aws::CloudWatchLogs
|
|
1467
1486
|
# @return [String]
|
1468
1487
|
#
|
1469
1488
|
# @!attribute [rw] filter_name
|
1470
|
-
# A name for the subscription filter.
|
1489
|
+
# A name for the subscription filter. If you are updating an existing
|
1490
|
+
# filter, you must specify the correct name in `filterName`.
|
1491
|
+
# Otherwise, the call will fail because you cannot associate a second
|
1492
|
+
# filter with a log group. To find the name of the filter currently
|
1493
|
+
# associated with a log group, use DescribeSubscriptionFilters.
|
1471
1494
|
# @return [String]
|
1472
1495
|
#
|
1473
1496
|
# @!attribute [rw] filter_pattern
|
@@ -1588,7 +1611,8 @@ module Aws::CloudWatchLogs
|
|
1588
1611
|
# @return [String]
|
1589
1612
|
#
|
1590
1613
|
# @!attribute [rw] creation_time
|
1591
|
-
# The creation time of the subscription filter
|
1614
|
+
# The creation time of the subscription filter, expressed as the
|
1615
|
+
# number of milliseconds since Jan 1, 1970 00:00:00 UTC.
|
1592
1616
|
# @return [Integer]
|
1593
1617
|
#
|
1594
1618
|
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/SubscriptionFilter AWS API Documentation
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudwatchlogs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-05-
|
11
|
+
date: 2017-05-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.0.0.
|
19
|
+
version: 3.0.0.rc12
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.0.0.
|
26
|
+
version: 3.0.0.rc12
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: aws-sigv4
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|