aws-sdk-chatbot 1.38.0 → 1.40.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: '09795cc0b8809d7fa5b7554f4df4de04507759775df6f8bfc3399ba3b5c4f6d4'
4
- data.tar.gz: 0fa5e9fd070c43bae67b5774748c313b6f65ac4adc3bb719a55e82105107a3b1
3
+ metadata.gz: 428d36c9cf1d716ae26c79c590a16670d230131c03df31d3b93bd08166eaf378
4
+ data.tar.gz: 0572b5fadd9f15b75e30e381418334490b5f9d8e3b8dcf2f1ab425e3ddb736c2
5
5
  SHA512:
6
- metadata.gz: c1985b4b0c5eeb9f5b7bd350472aa381954d71364fa324c0d8050fcc2c2bac79a2638c4e1174fcb482ce32ea22ec55a8ae563d1151b65d9be77d0fc233eaa75b
7
- data.tar.gz: 1b0a76415384433708b3b4936e9c0d8d1b634d844a472090e8c61de8f0774502daacaa8a2efd4db94c534ddee08da61f9f0ae0f341a9dae7efdfa122127809db
6
+ metadata.gz: 5b595a5f6e1bd93f5fb398709bef8b579efb4a769604ee5b2df2252d50033606b134680da0ec5175817ee4b567e1b3d3a709b1bf612a1d9c9a2e79dfff58419f
7
+ data.tar.gz: cea3d34f2c436b89b105e495968c5f49016f8abf6ec5f1e084dc37d742408f2d2ab8a80b67f1a2fac4ae0dd6fecc6832897bec242789acb2edbe4c306d6f8bb3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.40.0 (2026-05-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.39.0 (2026-05-19)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.38.0 (2026-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.38.0
1
+ 1.40.0
@@ -199,7 +199,7 @@ module Aws::Chatbot
199
199
  # the required types.
200
200
  #
201
201
  # @option options [Boolean] :correct_clock_skew (true)
202
- # Used only in `standard` and adaptive retry modes. Specifies whether to apply
202
+ # Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
203
203
  # a clock skew correction and retry requests with skewed client clocks.
204
204
  #
205
205
  # @option options [String] :defaults_mode ("legacy")
@@ -323,17 +323,15 @@ module Aws::Chatbot
323
323
  # @option options [String] :retry_mode ("legacy")
324
324
  # Specifies which retry algorithm to use. Values are:
325
325
  #
326
- # * `legacy` - The pre-existing retry behavior. This is default value if
327
- # no retry mode is provided.
326
+ # * `legacy` - The pre-existing retry behavior. This is the default
327
+ # value if no retry mode is provided.
328
328
  #
329
329
  # * `standard` - A standardized set of retry rules across the AWS SDKs.
330
330
  # This includes support for retry quotas, which limit the number of
331
331
  # unsuccessful retries a client can make.
332
332
  #
333
- # * `adaptive` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
335
- # throttling. This is a provisional mode that may change behavior
336
- # in the future.
333
+ # * `adaptive` - A retry mode that includes all the functionality of
334
+ # `standard` mode along with automatic client side throttling.
337
335
  #
338
336
  # @option options [String] :sdk_ua_app_id
339
337
  # A unique and opaque application ID that is appended to the
@@ -2332,7 +2330,7 @@ module Aws::Chatbot
2332
2330
  tracer: tracer
2333
2331
  )
2334
2332
  context[:gem_name] = 'aws-sdk-chatbot'
2335
- context[:gem_version] = '1.38.0'
2333
+ context[:gem_version] = '1.40.0'
2336
2334
  Seahorse::Client::Request.new(handlers, context)
2337
2335
  end
2338
2336
 
@@ -54,7 +54,7 @@ module Aws::Chatbot
54
54
  autoload :EndpointProvider, 'aws-sdk-chatbot/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-chatbot/endpoints'
56
56
 
57
- GEM_VERSION = '1.38.0'
57
+ GEM_VERSION = '1.40.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -104,7 +104,7 @@ module Aws
104
104
  {
105
105
  tag_key: ::String,
106
106
  tag_value: ::String
107
- },
107
+ }
108
108
  ]
109
109
  ) -> _CreateChimeWebhookConfigurationResponseSuccess
110
110
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChimeWebhookConfigurationResponseSuccess
@@ -120,24 +120,13 @@ module Aws
120
120
  },
121
121
  ?alias_name: ::String,
122
122
  ?attachments: Array[
123
- {
124
- notification_type: ::String?,
125
- button_text: ::String?,
126
- criteria: Array[
127
- {
128
- operator: ("HAS_VALUE" | "EQUALS"),
129
- variable_name: ::String,
130
- value: ::String?
131
- },
132
- ]?,
133
- variables: Hash[::String, ::String]?
134
- },
123
+ Params::custom_action_attachment
135
124
  ],
136
125
  ?tags: Array[
137
126
  {
138
127
  tag_key: ::String,
139
128
  tag_value: ::String
140
- },
129
+ }
141
130
  ],
142
131
  ?client_token: ::String,
143
132
  action_name: ::String
@@ -165,7 +154,7 @@ module Aws
165
154
  {
166
155
  tag_key: ::String,
167
156
  tag_value: ::String
168
- },
157
+ }
169
158
  ]
170
159
  ) -> _CreateMicrosoftTeamsChannelConfigurationResponseSuccess
171
160
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMicrosoftTeamsChannelConfigurationResponseSuccess
@@ -189,7 +178,7 @@ module Aws
189
178
  {
190
179
  tag_key: ::String,
191
180
  tag_value: ::String
192
- },
181
+ }
193
182
  ]
194
183
  ) -> _CreateSlackChannelConfigurationResponseSuccess
195
184
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSlackChannelConfigurationResponseSuccess
@@ -442,7 +431,7 @@ module Aws
442
431
  {
443
432
  tag_key: ::String,
444
433
  tag_value: ::String
445
- },
434
+ }
446
435
  ]
447
436
  ) -> _TagResourceResponseSuccess
448
437
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
@@ -495,18 +484,7 @@ module Aws
495
484
  },
496
485
  ?alias_name: ::String,
497
486
  ?attachments: Array[
498
- {
499
- notification_type: ::String?,
500
- button_text: ::String?,
501
- criteria: Array[
502
- {
503
- operator: ("HAS_VALUE" | "EQUALS"),
504
- variable_name: ::String,
505
- value: ::String?
506
- },
507
- ]?,
508
- variables: Hash[::String, ::String]?
509
- },
487
+ Params::custom_action_attachment
510
488
  ]
511
489
  ) -> _UpdateCustomActionResponseSuccess
512
490
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCustomActionResponseSuccess
data/sig/params.rbs ADDED
@@ -0,0 +1,26 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module Chatbot
10
+ module Params
11
+ type custom_action_attachment = {
12
+ notification_type: ::String?,
13
+ button_text: ::String?,
14
+ criteria: Array[
15
+ {
16
+ operator: ("HAS_VALUE" | "EQUALS"),
17
+ variable_name: ::String,
18
+ value: ::String?
19
+ }
20
+ ]?,
21
+ variables: Hash[::String, ::String]?
22
+ }
23
+
24
+ end
25
+ end
26
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-chatbot
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.38.0
4
+ version: 1.40.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.247.0
21
+ version: 3.248.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -67,6 +67,7 @@ files:
67
67
  - lib/aws-sdk-chatbot/types.rb
68
68
  - sig/client.rbs
69
69
  - sig/errors.rbs
70
+ - sig/params.rbs
70
71
  - sig/resource.rbs
71
72
  - sig/types.rbs
72
73
  - sig/waiters.rbs