aws-sdk-cloudwatchlogs 1.59.0 → 1.61.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 49f0c4a3d43626e0a933285c40bdb54ea7e3603865c42d2d5deda1ca093ab4c6
4
- data.tar.gz: 57666b4c102356595f67702175c26fcc866fc37aead83ec5d5635cc59898de73
3
+ metadata.gz: 4535d4125b8f835e05a0423201dde8ba4d2caccb162f163c247f7afbac4be18f
4
+ data.tar.gz: e040acfaacb216ddaca1ad66f7dde8c39a5703bc7018749e217e2c4f2fb41e53
5
5
  SHA512:
6
- metadata.gz: 55d23914b7c9daa000eb24013104edd1fce730f4685ef09963806f33709eb3e5de32f09c0a8e7f592c45e17e5bc5dfb04f267be0f4ea01ac197c852283aa0601
7
- data.tar.gz: 21fd13627ec5731c651fad8a6d672546136b8bff9408dbf00ac1004308a867bfc00ba375352eb85087b5af52f8b4de04c25f734f1035102082405be131c1ddb9
6
+ metadata.gz: d8a95ffb62792d2eab870c19ce18880ca03105074020ba5ab465d1bc58829d8b70657286f6fc418e2ef29289be73dda08c1a9d1b50a1d3ebfeb5251a497a0559
7
+ data.tar.gz: '039e8de35402c06df62edeb1d0aa105bc081f443c7d8127b870b6fa4a330e7919847ca1163eba291725c37dff08132c7680438a000be8ca294a4040b3a057831'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.61.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
11
+ 1.60.0 (2023-01-12)
12
+ ------------------
13
+
14
+ * Feature - Bug fix: logGroupName is now not a required field in GetLogEvents, FilterLogEvents, GetLogGroupFields, and DescribeLogStreams APIs as logGroupIdentifier can be provided instead
15
+
4
16
  1.59.0 (2023-01-04)
5
17
  ------------------
6
18
 
@@ -365,4 +377,4 @@ Unreleased Changes
365
377
  1.0.0.rc1 (2016-12-05)
366
378
  ------------------
367
379
 
368
- * Feature - Initial preview release of the `aws-sdk-cloudwatchlogs` gem.
380
+ * Feature - Initial preview release of the `aws-sdk-cloudwatchlogs` gem.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.59.0
1
+ 1.61.0
@@ -1146,6 +1146,10 @@ module Aws::CloudWatchLogs
1146
1146
  # the log streams or filter the results by prefix. You can also control
1147
1147
  # how the results are ordered.
1148
1148
  #
1149
+ # You can specify the log group to search by using either
1150
+ # `logGroupIdentifier` or `logGroupName`. You must include one of these
1151
+ # two parameters, but you can't include both.
1152
+ #
1149
1153
  # This operation has a limit of five transactions per second, after
1150
1154
  # which transactions are throttled.
1151
1155
  #
@@ -1158,7 +1162,7 @@ module Aws::CloudWatchLogs
1158
1162
  #
1159
1163
  # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html
1160
1164
  #
1161
- # @option params [required, String] :log_group_name
1165
+ # @option params [String] :log_group_name
1162
1166
  # The name of the log group.
1163
1167
  #
1164
1168
  # <note markdown="1"> If you specify values for both `logGroupName` and
@@ -1172,10 +1176,12 @@ module Aws::CloudWatchLogs
1172
1176
  # group is in a source account and you are using a monitoring account,
1173
1177
  # you must use the log group ARN.
1174
1178
  #
1175
- # If you specify values for both `logGroupName` and
1179
+ # <note markdown="1"> If you specify values for both `logGroupName` and
1176
1180
  # `logGroupIdentifier`, the action returns an
1177
1181
  # `InvalidParameterException` error.
1178
1182
  #
1183
+ # </note>
1184
+ #
1179
1185
  # @option params [String] :log_stream_name_prefix
1180
1186
  # The prefix to match.
1181
1187
  #
@@ -1219,7 +1225,7 @@ module Aws::CloudWatchLogs
1219
1225
  # @example Request syntax with placeholder values
1220
1226
  #
1221
1227
  # resp = client.describe_log_streams({
1222
- # log_group_name: "LogGroupName", # required
1228
+ # log_group_name: "LogGroupName",
1223
1229
  # log_group_identifier: "LogGroupIdentifier",
1224
1230
  # log_stream_name_prefix: "LogStreamName",
1225
1231
  # order_by: "LogStreamName", # accepts LogStreamName, LastEventTime
@@ -1560,6 +1566,10 @@ module Aws::CloudWatchLogs
1560
1566
  # You must have the `logs;FilterLogEvents` permission to perform this
1561
1567
  # operation.
1562
1568
  #
1569
+ # You can specify the log group to search by using either
1570
+ # `logGroupIdentifier` or `logGroupName`. You must include one of these
1571
+ # two parameters, but you can't include both.
1572
+ #
1563
1573
  # By default, this operation returns as many log events as can fit in 1
1564
1574
  # MB (up to 10,000 log events) or all the events found within the
1565
1575
  # specified time range. If the results include a token, that means there
@@ -1581,7 +1591,7 @@ module Aws::CloudWatchLogs
1581
1591
  #
1582
1592
  # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html
1583
1593
  #
1584
- # @option params [required, String] :log_group_name
1594
+ # @option params [String] :log_group_name
1585
1595
  # The name of the log group to search.
1586
1596
  #
1587
1597
  # <note markdown="1"> If you specify values for both `logGroupName` and
@@ -1595,10 +1605,12 @@ module Aws::CloudWatchLogs
1595
1605
  # from. If the log group is in a source account and you are using a
1596
1606
  # monitoring account, you must use the log group ARN.
1597
1607
  #
1598
- # If you specify values for both `logGroupName` and
1608
+ # <note markdown="1"> If you specify values for both `logGroupName` and
1599
1609
  # `logGroupIdentifier`, the action returns an
1600
1610
  # `InvalidParameterException` error.
1601
1611
  #
1612
+ # </note>
1613
+ #
1602
1614
  # @option params [Array<String>] :log_stream_names
1603
1615
  # Filters the results to only logs from the log streams in this list.
1604
1616
  #
@@ -1671,7 +1683,7 @@ module Aws::CloudWatchLogs
1671
1683
  # @example Request syntax with placeholder values
1672
1684
  #
1673
1685
  # resp = client.filter_log_events({
1674
- # log_group_name: "LogGroupName", # required
1686
+ # log_group_name: "LogGroupName",
1675
1687
  # log_group_identifier: "LogGroupIdentifier",
1676
1688
  # log_stream_names: ["LogStreamName"],
1677
1689
  # log_stream_name_prefix: "LogStreamName",
@@ -1753,11 +1765,15 @@ module Aws::CloudWatchLogs
1753
1765
  # source accounts. For more information, see [CloudWatch cross-account
1754
1766
  # observability][1].
1755
1767
  #
1768
+ # You can specify the log group to search by using either
1769
+ # `logGroupIdentifier` or `logGroupName`. You must include one of these
1770
+ # two parameters, but you can't include both.
1771
+ #
1756
1772
  #
1757
1773
  #
1758
1774
  # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html
1759
1775
  #
1760
- # @option params [required, String] :log_group_name
1776
+ # @option params [String] :log_group_name
1761
1777
  # The name of the log group.
1762
1778
  #
1763
1779
  # <note markdown="1"> If you specify values for both `logGroupName` and
@@ -1771,10 +1787,12 @@ module Aws::CloudWatchLogs
1771
1787
  # If the log group is in a source account and you are using a monitoring
1772
1788
  # account, you must use the log group ARN.
1773
1789
  #
1774
- # If you specify values for both `logGroupName` and
1790
+ # <note markdown="1"> If you specify values for both `logGroupName` and
1775
1791
  # `logGroupIdentifier`, the action returns an
1776
1792
  # `InvalidParameterException` error.
1777
1793
  #
1794
+ # </note>
1795
+ #
1778
1796
  # @option params [required, String] :log_stream_name
1779
1797
  # The name of the log stream.
1780
1798
  #
@@ -1825,7 +1843,7 @@ module Aws::CloudWatchLogs
1825
1843
  # @example Request syntax with placeholder values
1826
1844
  #
1827
1845
  # resp = client.get_log_events({
1828
- # log_group_name: "LogGroupName", # required
1846
+ # log_group_name: "LogGroupName",
1829
1847
  # log_group_identifier: "LogGroupIdentifier",
1830
1848
  # log_stream_name: "LogStreamName", # required
1831
1849
  # start_time: 1,
@@ -1859,6 +1877,10 @@ module Aws::CloudWatchLogs
1859
1877
  # contain each field. The search is limited to a time period that you
1860
1878
  # specify.
1861
1879
  #
1880
+ # You can specify the log group to search by using either
1881
+ # `logGroupIdentifier` or `logGroupName`. You must specify one of these
1882
+ # parameters, but you can't specify both.
1883
+ #
1862
1884
  # In the results, fields that start with `@` are fields generated by
1863
1885
  # CloudWatch Logs. For example, `@timestamp` is the timestamp of each
1864
1886
  # log event. For more information about the fields that are generated by
@@ -1877,13 +1899,15 @@ module Aws::CloudWatchLogs
1877
1899
  # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_AnalyzeLogData-discoverable-fields.html
1878
1900
  # [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html
1879
1901
  #
1880
- # @option params [required, String] :log_group_name
1902
+ # @option params [String] :log_group_name
1881
1903
  # The name of the log group to search.
1882
1904
  #
1883
- # If you specify values for both `logGroupName` and
1905
+ # <note markdown="1"> If you specify values for both `logGroupName` and
1884
1906
  # `logGroupIdentifier`, the action returns an
1885
1907
  # `InvalidParameterException` error.
1886
1908
  #
1909
+ # </note>
1910
+ #
1887
1911
  # @option params [Integer] :time
1888
1912
  # The time to set as the center of the query. If you specify `time`, the
1889
1913
  # 15 minutes before this time are queries. If you omit `time`, the 8
@@ -1897,10 +1921,12 @@ module Aws::CloudWatchLogs
1897
1921
  # group is in a source account and you are using a monitoring account,
1898
1922
  # you must specify the ARN.
1899
1923
  #
1900
- # If you specify values for both `logGroupName` and
1924
+ # <note markdown="1"> If you specify values for both `logGroupName` and
1901
1925
  # `logGroupIdentifier`, the action returns an
1902
1926
  # `InvalidParameterException` error.
1903
1927
  #
1928
+ # </note>
1929
+ #
1904
1930
  # @return [Types::GetLogGroupFieldsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1905
1931
  #
1906
1932
  # * {Types::GetLogGroupFieldsResponse#log_group_fields #log_group_fields} => Array&lt;Types::LogGroupField&gt;
@@ -1908,7 +1934,7 @@ module Aws::CloudWatchLogs
1908
1934
  # @example Request syntax with placeholder values
1909
1935
  #
1910
1936
  # resp = client.get_log_group_fields({
1911
- # log_group_name: "LogGroupName", # required
1937
+ # log_group_name: "LogGroupName",
1912
1938
  # time: 1,
1913
1939
  # log_group_identifier: "LogGroupIdentifier",
1914
1940
  # })
@@ -3201,7 +3227,7 @@ module Aws::CloudWatchLogs
3201
3227
  params: params,
3202
3228
  config: config)
3203
3229
  context[:gem_name] = 'aws-sdk-cloudwatchlogs'
3204
- context[:gem_version] = '1.59.0'
3230
+ context[:gem_version] = '1.61.0'
3205
3231
  Seahorse::Client::Request.new(handlers, context)
3206
3232
  end
3207
3233
 
@@ -321,7 +321,7 @@ module Aws::CloudWatchLogs
321
321
  DescribeLogGroupsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
322
322
  DescribeLogGroupsResponse.struct_class = Types::DescribeLogGroupsResponse
323
323
 
324
- DescribeLogStreamsRequest.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, required: true, location_name: "logGroupName"))
324
+ DescribeLogStreamsRequest.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, location_name: "logGroupName"))
325
325
  DescribeLogStreamsRequest.add_member(:log_group_identifier, Shapes::ShapeRef.new(shape: LogGroupIdentifier, location_name: "logGroupIdentifier"))
326
326
  DescribeLogStreamsRequest.add_member(:log_stream_name_prefix, Shapes::ShapeRef.new(shape: LogStreamName, location_name: "logStreamNamePrefix"))
327
327
  DescribeLogStreamsRequest.add_member(:order_by, Shapes::ShapeRef.new(shape: OrderBy, location_name: "orderBy"))
@@ -423,7 +423,7 @@ module Aws::CloudWatchLogs
423
423
  ExtractedValues.key = Shapes::ShapeRef.new(shape: Token)
424
424
  ExtractedValues.value = Shapes::ShapeRef.new(shape: Value)
425
425
 
426
- FilterLogEventsRequest.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, required: true, location_name: "logGroupName"))
426
+ FilterLogEventsRequest.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, location_name: "logGroupName"))
427
427
  FilterLogEventsRequest.add_member(:log_group_identifier, Shapes::ShapeRef.new(shape: LogGroupIdentifier, location_name: "logGroupIdentifier"))
428
428
  FilterLogEventsRequest.add_member(:log_stream_names, Shapes::ShapeRef.new(shape: InputLogStreamNames, location_name: "logStreamNames"))
429
429
  FilterLogEventsRequest.add_member(:log_stream_name_prefix, Shapes::ShapeRef.new(shape: LogStreamName, location_name: "logStreamNamePrefix"))
@@ -458,7 +458,7 @@ module Aws::CloudWatchLogs
458
458
  GetDataProtectionPolicyResponse.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdatedTime"))
459
459
  GetDataProtectionPolicyResponse.struct_class = Types::GetDataProtectionPolicyResponse
460
460
 
461
- GetLogEventsRequest.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, required: true, location_name: "logGroupName"))
461
+ GetLogEventsRequest.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, location_name: "logGroupName"))
462
462
  GetLogEventsRequest.add_member(:log_group_identifier, Shapes::ShapeRef.new(shape: LogGroupIdentifier, location_name: "logGroupIdentifier"))
463
463
  GetLogEventsRequest.add_member(:log_stream_name, Shapes::ShapeRef.new(shape: LogStreamName, required: true, location_name: "logStreamName"))
464
464
  GetLogEventsRequest.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "startTime"))
@@ -474,7 +474,7 @@ module Aws::CloudWatchLogs
474
474
  GetLogEventsResponse.add_member(:next_backward_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextBackwardToken"))
475
475
  GetLogEventsResponse.struct_class = Types::GetLogEventsResponse
476
476
 
477
- GetLogGroupFieldsRequest.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, required: true, location_name: "logGroupName"))
477
+ GetLogGroupFieldsRequest.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, location_name: "logGroupName"))
478
478
  GetLogGroupFieldsRequest.add_member(:time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "time"))
479
479
  GetLogGroupFieldsRequest.add_member(:log_group_identifier, Shapes::ShapeRef.new(shape: LogGroupIdentifier, location_name: "logGroupIdentifier"))
480
480
  GetLogGroupFieldsRequest.struct_class = Types::GetLogGroupFieldsRequest
@@ -9,110 +9,49 @@
9
9
 
10
10
  module Aws::CloudWatchLogs
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint)
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://logs-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.string_equals?(region, "us-gov-east-1")
36
+ return Aws::Endpoints::Endpoint.new(url: "https://logs.us-gov-east-1.amazonaws.com", headers: {}, properties: {})
37
+ end
38
+ if Aws::Endpoints::Matchers.string_equals?(region, "us-gov-west-1")
39
+ return Aws::Endpoints::Endpoint.new(url: "https://logs.us-gov-west-1.amazonaws.com", headers: {}, properties: {})
40
+ end
41
+ return Aws::Endpoints::Endpoint.new(url: "https://logs-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
44
+ end
45
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
46
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
47
+ return Aws::Endpoints::Endpoint.new(url: "https://logs.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
48
+ end
49
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
50
+ end
51
+ return Aws::Endpoints::Endpoint.new(url: "https://logs.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
52
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
53
+ raise ArgumentError, 'No endpoint could be resolved'
24
54
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
55
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
33
- YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
34
- ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
35
- aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
36
- ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
37
- IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
38
- bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
39
- aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
40
- IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
41
- IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
42
- aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
43
- Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
44
- cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
45
- bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
46
- YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
47
- bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
48
- ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
49
- IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
50
- b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
51
- ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
52
- dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
53
- c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfV0sInR5cGUiOiJ0
54
- cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
55
- dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX1dLCJlcnJv
56
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRklQUyBhbmQgY3VzdG9tIGVu
57
- ZHBvaW50IGFyZSBub3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJj
58
- b25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
59
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
60
- VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZp
61
- Z3VyYXRpb246IER1YWxzdGFjayBhbmQgY3VzdG9tIGVuZHBvaW50IGFyZSBu
62
- b3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJjb25kaXRpb25zIjpb
63
- XSwiZW5kcG9pbnQiOnsidXJsIjp7InJlZiI6IkVuZHBvaW50In0sInByb3Bl
64
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
65
- fSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
66
- Olt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX0seyJmbiI6ImJvb2xlYW5FcXVh
67
- bHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0
68
- eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
69
- b2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFy
70
- Z3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJUFMi
71
- XX1dfSx7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
72
- OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
73
- InN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
74
- IjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6
75
- Ly9sb2dzLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3Rh
76
- Y2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwi
77
- dHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6
78
- IkZJUFMgYW5kIER1YWxTdGFjayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFy
79
- dGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoi
80
- ZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxz
81
- IiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0
82
- cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
83
- dWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3si
84
- cmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwi
85
- dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sInR5cGUi
86
- OiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoic3RyaW5n
87
- RXF1YWxzIiwiYXJndiI6W3sicmVmIjoiUmVnaW9uIn0sInVzLWdvdi1lYXN0
88
- LTEiXX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2xvZ3MudXMtZ292
89
- LWVhc3QtMS5hbWF6b25hd3MuY29tIiwicHJvcGVydGllcyI6e30sImhlYWRl
90
- cnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In0seyJjb25kaXRpb25zIjpbeyJm
91
- biI6InN0cmluZ0VxdWFscyIsImFyZ3YiOlt7InJlZiI6IlJlZ2lvbiJ9LCJ1
92
- cy1nb3Ytd2VzdC0xIl19XSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9s
93
- b2dzLnVzLWdvdi13ZXN0LTEuYW1hem9uYXdzLmNvbSIsInByb3BlcnRpZXMi
94
- Ont9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsiY29uZGl0
95
- aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vbG9ncy1maXBz
96
- LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3Bl
97
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
98
- fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMgZW5hYmxlZCBi
99
- dXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBGSVBTIiwidHlw
100
- ZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
101
- dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0s
102
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
103
- Ym9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwi
104
- YXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRHVh
105
- bFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
106
- b25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9sb2dzLntSZWdp
107
- b259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInBy
108
- b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
109
- XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5h
110
- YmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFs
111
- U3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVu
112
- ZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vbG9ncy57UmVnaW9ufS57UGFydGl0
113
- aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVy
114
- cyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
115
-
116
- JSON
117
56
  end
118
57
  end
@@ -525,9 +525,11 @@ module Aws::CloudWatchLogs
525
525
  # group is in a source account and you are using a monitoring account,
526
526
  # you must use the log group ARN.
527
527
  #
528
- # If you specify values for both `logGroupName` and
528
+ # <note markdown="1"> If you specify values for both `logGroupName` and
529
529
  # `logGroupIdentifier`, the action returns an
530
530
  # `InvalidParameterException` error.
531
+ #
532
+ # </note>
531
533
  # @return [String]
532
534
  #
533
535
  # @!attribute [rw] log_stream_name_prefix
@@ -1010,9 +1012,11 @@ module Aws::CloudWatchLogs
1010
1012
  # from. If the log group is in a source account and you are using a
1011
1013
  # monitoring account, you must use the log group ARN.
1012
1014
  #
1013
- # If you specify values for both `logGroupName` and
1015
+ # <note markdown="1"> If you specify values for both `logGroupName` and
1014
1016
  # `logGroupIdentifier`, the action returns an
1015
1017
  # `InvalidParameterException` error.
1018
+ #
1019
+ # </note>
1016
1020
  # @return [String]
1017
1021
  #
1018
1022
  # @!attribute [rw] log_stream_names
@@ -1217,9 +1221,11 @@ module Aws::CloudWatchLogs
1217
1221
  # If the log group is in a source account and you are using a
1218
1222
  # monitoring account, you must use the log group ARN.
1219
1223
  #
1220
- # If you specify values for both `logGroupName` and
1224
+ # <note markdown="1"> If you specify values for both `logGroupName` and
1221
1225
  # `logGroupIdentifier`, the action returns an
1222
1226
  # `InvalidParameterException` error.
1227
+ #
1228
+ # </note>
1223
1229
  # @return [String]
1224
1230
  #
1225
1231
  # @!attribute [rw] log_stream_name
@@ -1314,9 +1320,11 @@ module Aws::CloudWatchLogs
1314
1320
  # @!attribute [rw] log_group_name
1315
1321
  # The name of the log group to search.
1316
1322
  #
1317
- # If you specify values for both `logGroupName` and
1323
+ # <note markdown="1"> If you specify values for both `logGroupName` and
1318
1324
  # `logGroupIdentifier`, the action returns an
1319
1325
  # `InvalidParameterException` error.
1326
+ #
1327
+ # </note>
1320
1328
  # @return [String]
1321
1329
  #
1322
1330
  # @!attribute [rw] time
@@ -1333,9 +1341,11 @@ module Aws::CloudWatchLogs
1333
1341
  # group is in a source account and you are using a monitoring account,
1334
1342
  # you must specify the ARN.
1335
1343
  #
1336
- # If you specify values for both `logGroupName` and
1344
+ # <note markdown="1"> If you specify values for both `logGroupName` and
1337
1345
  # `logGroupIdentifier`, the action returns an
1338
1346
  # `InvalidParameterException` error.
1347
+ #
1348
+ # </note>
1339
1349
  # @return [String]
1340
1350
  #
1341
1351
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetLogGroupFieldsRequest AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-cloudwatchlogs/customizations'
52
52
  # @!group service
53
53
  module Aws::CloudWatchLogs
54
54
 
55
- GEM_VERSION = '1.59.0'
55
+ GEM_VERSION = '1.61.0'
56
56
 
57
57
  end
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.59.0
4
+ version: 1.61.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: 2023-01-04 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core