aws-sdk-cloudwatchlogs 1.13.0 → 1.14.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/lib/aws-sdk-cloudwatchlogs.rb +1 -1
- data/lib/aws-sdk-cloudwatchlogs/client.rb +14 -12
- data/lib/aws-sdk-cloudwatchlogs/types.rb +11 -8
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: df1f777b29d535138bff2bc85cfcd56f022cf64d
|
|
4
|
+
data.tar.gz: be839c0cacb0c4ff6f47622fec40eb9c2d8972b6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c3065610905de2af236cf1d1c12daeaea3f2668c3304aa4f51ab79fa779d3624e87579ae39c5e1940e3c4d3b602cb358e56a753a64efb574fdd9695323e4337a
|
|
7
|
+
data.tar.gz: 6ca354f9bed0b7610a7c3887b856d728bf65dce89975c9e12efa4d180a875a44edcc848eaa32c3e81c905f023f00349396667d28c998fbc4e9cfa1db1af7ea4b
|
|
@@ -243,7 +243,7 @@ module Aws::CloudWatchLogs
|
|
|
243
243
|
#
|
|
244
244
|
#
|
|
245
245
|
#
|
|
246
|
-
# [1]:
|
|
246
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kms
|
|
247
247
|
#
|
|
248
248
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
249
249
|
#
|
|
@@ -393,7 +393,7 @@ module Aws::CloudWatchLogs
|
|
|
393
393
|
#
|
|
394
394
|
#
|
|
395
395
|
#
|
|
396
|
-
# [1]:
|
|
396
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kms
|
|
397
397
|
#
|
|
398
398
|
# @option params [Hash<String,String>] :tags
|
|
399
399
|
# The key-value pairs to use for the tags.
|
|
@@ -1158,7 +1158,7 @@ module Aws::CloudWatchLogs
|
|
|
1158
1158
|
#
|
|
1159
1159
|
#
|
|
1160
1160
|
#
|
|
1161
|
-
# [1]:
|
|
1161
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/FilterAndPatternSyntax.html
|
|
1162
1162
|
#
|
|
1163
1163
|
# @option params [String] :next_token
|
|
1164
1164
|
# The token for the next set of events to return. (You received this
|
|
@@ -1511,7 +1511,7 @@ module Aws::CloudWatchLogs
|
|
|
1511
1511
|
#
|
|
1512
1512
|
#
|
|
1513
1513
|
#
|
|
1514
|
-
# [1]:
|
|
1514
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies_overview.html
|
|
1515
1515
|
#
|
|
1516
1516
|
# @option params [required, String] :destination_name
|
|
1517
1517
|
# A name for an existing destination.
|
|
@@ -1845,18 +1845,20 @@ module Aws::CloudWatchLogs
|
|
|
1845
1845
|
#
|
|
1846
1846
|
#
|
|
1847
1847
|
#
|
|
1848
|
-
# [1]:
|
|
1848
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_QuerySyntax.html
|
|
1849
1849
|
#
|
|
1850
1850
|
# @option params [required, String] :log_group_name
|
|
1851
1851
|
# The log group on which to perform the query.
|
|
1852
1852
|
#
|
|
1853
1853
|
# @option params [required, Integer] :start_time
|
|
1854
|
-
# The beginning of the time range to query.
|
|
1855
|
-
#
|
|
1854
|
+
# The beginning of the time range to query. The range is inclusive, so
|
|
1855
|
+
# the specified start time is included in the query. Specified as epoch
|
|
1856
|
+
# time, the number of seconds since January 1, 1970, 00:00:00 UTC.
|
|
1856
1857
|
#
|
|
1857
1858
|
# @option params [required, Integer] :end_time
|
|
1858
|
-
# The end of the time range to query.
|
|
1859
|
-
#
|
|
1859
|
+
# The end of the time range to query. The range is inclusive, so the
|
|
1860
|
+
# specified end time is included in the query. Specified as epoch time,
|
|
1861
|
+
# the number of seconds since January 1, 1970, 00:00:00 UTC.
|
|
1860
1862
|
#
|
|
1861
1863
|
# @option params [required, String] :query_string
|
|
1862
1864
|
# The query string to use. For more information, see [CloudWatch Logs
|
|
@@ -1864,7 +1866,7 @@ module Aws::CloudWatchLogs
|
|
|
1864
1866
|
#
|
|
1865
1867
|
#
|
|
1866
1868
|
#
|
|
1867
|
-
# [1]:
|
|
1869
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_QuerySyntax.html
|
|
1868
1870
|
#
|
|
1869
1871
|
# @option params [Integer] :limit
|
|
1870
1872
|
# The maximum number of log events to return in the query. If the query
|
|
@@ -1939,7 +1941,7 @@ module Aws::CloudWatchLogs
|
|
|
1939
1941
|
#
|
|
1940
1942
|
#
|
|
1941
1943
|
#
|
|
1942
|
-
# [1]:
|
|
1944
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/log-group-tagging.html
|
|
1943
1945
|
#
|
|
1944
1946
|
# @option params [required, String] :log_group_name
|
|
1945
1947
|
# The name of the log group.
|
|
@@ -2050,7 +2052,7 @@ module Aws::CloudWatchLogs
|
|
|
2050
2052
|
params: params,
|
|
2051
2053
|
config: config)
|
|
2052
2054
|
context[:gem_name] = 'aws-sdk-cloudwatchlogs'
|
|
2053
|
-
context[:gem_version] = '1.
|
|
2055
|
+
context[:gem_version] = '1.14.0'
|
|
2054
2056
|
Seahorse::Client::Request.new(handlers, context)
|
|
2055
2057
|
end
|
|
2056
2058
|
|
|
@@ -27,7 +27,7 @@ module Aws::CloudWatchLogs
|
|
|
27
27
|
#
|
|
28
28
|
#
|
|
29
29
|
#
|
|
30
|
-
# [1]:
|
|
30
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kms
|
|
31
31
|
# @return [String]
|
|
32
32
|
#
|
|
33
33
|
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/AssociateKmsKeyRequest AWS API Documentation
|
|
@@ -150,7 +150,7 @@ module Aws::CloudWatchLogs
|
|
|
150
150
|
#
|
|
151
151
|
#
|
|
152
152
|
#
|
|
153
|
-
# [1]:
|
|
153
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kms
|
|
154
154
|
# @return [String]
|
|
155
155
|
#
|
|
156
156
|
# @!attribute [rw] tags
|
|
@@ -1014,7 +1014,7 @@ module Aws::CloudWatchLogs
|
|
|
1014
1014
|
#
|
|
1015
1015
|
#
|
|
1016
1016
|
#
|
|
1017
|
-
# [1]:
|
|
1017
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/FilterAndPatternSyntax.html
|
|
1018
1018
|
# @return [String]
|
|
1019
1019
|
#
|
|
1020
1020
|
# @!attribute [rw] next_token
|
|
@@ -2149,13 +2149,16 @@ module Aws::CloudWatchLogs
|
|
|
2149
2149
|
# @return [String]
|
|
2150
2150
|
#
|
|
2151
2151
|
# @!attribute [rw] start_time
|
|
2152
|
-
# The beginning of the time range to query.
|
|
2153
|
-
# the
|
|
2152
|
+
# The beginning of the time range to query. The range is inclusive, so
|
|
2153
|
+
# the specified start time is included in the query. Specified as
|
|
2154
|
+
# epoch time, the number of seconds since January 1, 1970, 00:00:00
|
|
2155
|
+
# UTC.
|
|
2154
2156
|
# @return [Integer]
|
|
2155
2157
|
#
|
|
2156
2158
|
# @!attribute [rw] end_time
|
|
2157
|
-
# The end of the time range to query.
|
|
2158
|
-
#
|
|
2159
|
+
# The end of the time range to query. The range is inclusive, so the
|
|
2160
|
+
# specified end time is included in the query. Specified as epoch
|
|
2161
|
+
# time, the number of seconds since January 1, 1970, 00:00:00 UTC.
|
|
2159
2162
|
# @return [Integer]
|
|
2160
2163
|
#
|
|
2161
2164
|
# @!attribute [rw] query_string
|
|
@@ -2164,7 +2167,7 @@ module Aws::CloudWatchLogs
|
|
|
2164
2167
|
#
|
|
2165
2168
|
#
|
|
2166
2169
|
#
|
|
2167
|
-
# [1]:
|
|
2170
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_QuerySyntax.html
|
|
2168
2171
|
# @return [String]
|
|
2169
2172
|
#
|
|
2170
2173
|
# @!attribute [rw] limit
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.14.0
|
|
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: 2019-
|
|
11
|
+
date: 2019-03-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|