aws-sdk-iot 1.99.0 → 1.100.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 44067f3125ce33aa321e981987eb97ba919ed1638c0367144f9ad24fab9b386a
4
- data.tar.gz: 3721a84965df24762a2dddd1406200ea405fd068572de94f243a470c99043121
3
+ metadata.gz: a2ce5d3794d27ca0e3ec42661d0cd377e460f3fce246e515606a3098a272b078
4
+ data.tar.gz: 0f0cac12014418d2e4a53ff54250799a37431596acbf4fcb7b46e895ba47dc89
5
5
  SHA512:
6
- metadata.gz: d865713df153f2ce1e3460832f77dadcb50a105f6e4113435c4a1b7082fb2d81d4d9a371e2b8e3bc182908d28d9b3b4a88b74b95f9c98adbf0b7913c4b197902
7
- data.tar.gz: 5de11a6806de24d3fe4cf550c190336a1de7a51125aa5a7cd1336961451bcef71dc43e578432b5058c227ab1d4bf04c4c4f49d84d6d2b1cc2046ef3674d0be69
6
+ metadata.gz: b5d9ab463fe7db463cdc4500ad683311061527103ab7fd19a7248542f39fe05d6e1729c55bd51016564b7d48886922cdfc8a070c05cc9e06775cbf830259785e
7
+ data.tar.gz: 61aa63f3914268ec53b5c69401d57d10c257e63a6b6ccdc710d91789f7f1ce67c4666df944774f287c1ba13ddfe5691f8d9ae80538e369b51877adb341d07c89
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.100.0 (2023-01-31)
5
+ ------------------
6
+
7
+ * Feature - Added support for IoT Rules Engine Cloudwatch Logs action batch mode.
8
+
4
9
  1.99.0 (2023-01-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.99.0
1
+ 1.100.0
@@ -3266,6 +3266,7 @@ module Aws::IoT
3266
3266
  # cloudwatch_logs: {
3267
3267
  # role_arn: "AwsArn", # required
3268
3268
  # log_group_name: "LogGroupName", # required
3269
+ # batch_mode: false,
3269
3270
  # },
3270
3271
  # elasticsearch: {
3271
3272
  # role_arn: "AwsArn", # required
@@ -3468,6 +3469,7 @@ module Aws::IoT
3468
3469
  # cloudwatch_logs: {
3469
3470
  # role_arn: "AwsArn", # required
3470
3471
  # log_group_name: "LogGroupName", # required
3472
+ # batch_mode: false,
3471
3473
  # },
3472
3474
  # elasticsearch: {
3473
3475
  # role_arn: "AwsArn", # required
@@ -7292,6 +7294,7 @@ module Aws::IoT
7292
7294
  # resp.rule.actions[0].cloudwatch_alarm.state_value #=> String
7293
7295
  # resp.rule.actions[0].cloudwatch_logs.role_arn #=> String
7294
7296
  # resp.rule.actions[0].cloudwatch_logs.log_group_name #=> String
7297
+ # resp.rule.actions[0].cloudwatch_logs.batch_mode #=> Boolean
7295
7298
  # resp.rule.actions[0].elasticsearch.role_arn #=> String
7296
7299
  # resp.rule.actions[0].elasticsearch.endpoint #=> String
7297
7300
  # resp.rule.actions[0].elasticsearch.index #=> String
@@ -7413,6 +7416,7 @@ module Aws::IoT
7413
7416
  # resp.rule.error_action.cloudwatch_alarm.state_value #=> String
7414
7417
  # resp.rule.error_action.cloudwatch_logs.role_arn #=> String
7415
7418
  # resp.rule.error_action.cloudwatch_logs.log_group_name #=> String
7419
+ # resp.rule.error_action.cloudwatch_logs.batch_mode #=> Boolean
7416
7420
  # resp.rule.error_action.elasticsearch.role_arn #=> String
7417
7421
  # resp.rule.error_action.elasticsearch.endpoint #=> String
7418
7422
  # resp.rule.error_action.elasticsearch.index #=> String
@@ -11404,6 +11408,7 @@ module Aws::IoT
11404
11408
  # cloudwatch_logs: {
11405
11409
  # role_arn: "AwsArn", # required
11406
11410
  # log_group_name: "LogGroupName", # required
11411
+ # batch_mode: false,
11407
11412
  # },
11408
11413
  # elasticsearch: {
11409
11414
  # role_arn: "AwsArn", # required
@@ -11606,6 +11611,7 @@ module Aws::IoT
11606
11611
  # cloudwatch_logs: {
11607
11612
  # role_arn: "AwsArn", # required
11608
11613
  # log_group_name: "LogGroupName", # required
11614
+ # batch_mode: false,
11609
11615
  # },
11610
11616
  # elasticsearch: {
11611
11617
  # role_arn: "AwsArn", # required
@@ -14061,7 +14067,7 @@ module Aws::IoT
14061
14067
  params: params,
14062
14068
  config: config)
14063
14069
  context[:gem_name] = 'aws-sdk-iot'
14064
- context[:gem_version] = '1.99.0'
14070
+ context[:gem_version] = '1.100.0'
14065
14071
  Seahorse::Client::Request.new(handlers, context)
14066
14072
  end
14067
14073
 
@@ -1763,6 +1763,7 @@ module Aws::IoT
1763
1763
 
1764
1764
  CloudwatchLogsAction.add_member(:role_arn, Shapes::ShapeRef.new(shape: AwsArn, required: true, location_name: "roleArn"))
1765
1765
  CloudwatchLogsAction.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, required: true, location_name: "logGroupName"))
1766
+ CloudwatchLogsAction.add_member(:batch_mode, Shapes::ShapeRef.new(shape: BatchMode, location_name: "batchMode"))
1766
1767
  CloudwatchLogsAction.struct_class = Types::CloudwatchLogsAction
1767
1768
 
1768
1769
  CloudwatchMetricAction.add_member(:role_arn, Shapes::ShapeRef.new(shape: AwsArn, required: true, location_name: "roleArn"))
@@ -15,7 +15,7 @@ module Aws::IoT
15
15
  use_fips = parameters.use_fips
16
16
  endpoint = parameters.endpoint
17
17
  if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
- if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
18
+ if Aws::Endpoints::Matchers.set?(endpoint)
19
19
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
20
  raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
21
  end
@@ -1969,9 +1969,16 @@ module Aws::IoT
1969
1969
  # The CloudWatch log group to which the action sends data.
1970
1970
  # @return [String]
1971
1971
  #
1972
+ # @!attribute [rw] batch_mode
1973
+ # Indicates whether batches of log records will be extracted and
1974
+ # uploaded into CloudWatch. Values include `true` or `false`
1975
+ # *(default)*.
1976
+ # @return [Boolean]
1977
+ #
1972
1978
  class CloudwatchLogsAction < Struct.new(
1973
1979
  :role_arn,
1974
- :log_group_name)
1980
+ :log_group_name,
1981
+ :batch_mode)
1975
1982
  SENSITIVE = []
1976
1983
  include Aws::Structure
1977
1984
  end
data/lib/aws-sdk-iot.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-iot/customizations'
52
52
  # @!group service
53
53
  module Aws::IoT
54
54
 
55
- GEM_VERSION = '1.99.0'
55
+ GEM_VERSION = '1.100.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iot
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.99.0
4
+ version: 1.100.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-18 00:00:00.000000000 Z
11
+ date: 2023-01-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core