aws-sdk-elasticbeanstalk 1.102.0 → 1.104.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: 10d0bb51706ac510d272dfa4a6e91f3cee33f7aad76d0b8d2c86fac259311db5
4
- data.tar.gz: 73d3c0ae1843e9d63c38ff939a78efcf46e1ceafebcaaa02b327ab34572bebff
3
+ metadata.gz: ec92c1a2ebcc4c7bfcbc3259a5927aa334753a618d0cebe1b8c587b17585ec59
4
+ data.tar.gz: 7d0bdc814d64d1d1ae604a59934e0220ca75dcaddc9977a81de69d6765b7da3f
5
5
  SHA512:
6
- metadata.gz: 3e8bce16eef7178d2608908993d0a5e6df9558f2cc653a832a41d43cff6a2d46efb4276ecb549b5d83a7e8b4d8dc6a141e9e50a1c1d20ffa8e0a721c17d71ba6
7
- data.tar.gz: 339ebed65a49f9395ef1a358c9e820727c17de802e4b5bf36cae6b0306fe961fc69989fe0cc70c8a4a52b63de1bcb4ef8f83c688f855b428c7b77f7e6f6eb8c9
6
+ metadata.gz: 25d26d2ec4b151428af29e080efe33713faf3946ff1e4027ea1420af5f09a977b62fd5ffdf1b13259aa9642a5220e039cf7443a55e1e8945204566090adf69bf
7
+ data.tar.gz: 91c2d9e06e77fba6bbb975cfdca1bd1ce96cc075a88b524c8bbf67f2b0511ae6c970745236c60f8ca072ae3cfbc5b7cd75e00310281e08dcb4e258013ea622b9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.104.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.103.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.102.0 (2026-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.102.0
1
+ 1.104.0
@@ -199,7 +199,7 @@ module Aws::ElasticBeanstalk
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::ElasticBeanstalk
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
@@ -4657,7 +4655,7 @@ module Aws::ElasticBeanstalk
4657
4655
  tracer: tracer
4658
4656
  )
4659
4657
  context[:gem_name] = 'aws-sdk-elasticbeanstalk'
4660
- context[:gem_version] = '1.102.0'
4658
+ context[:gem_version] = '1.104.0'
4661
4659
  Seahorse::Client::Request.new(handlers, context)
4662
4660
  end
4663
4661
 
@@ -55,7 +55,7 @@ module Aws::ElasticBeanstalk
55
55
  autoload :EndpointProvider, 'aws-sdk-elasticbeanstalk/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-elasticbeanstalk/endpoints'
57
57
 
58
- GEM_VERSION = '1.102.0'
58
+ GEM_VERSION = '1.104.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -139,26 +139,12 @@ module Aws
139
139
  def create_application: (
140
140
  application_name: ::String,
141
141
  ?description: ::String,
142
- ?resource_lifecycle_config: {
143
- service_role: ::String?,
144
- version_lifecycle_config: {
145
- max_count_rule: {
146
- enabled: bool,
147
- max_count: ::Integer?,
148
- delete_source_from_s3: bool?
149
- }?,
150
- max_age_rule: {
151
- enabled: bool,
152
- max_age_in_days: ::Integer?,
153
- delete_source_from_s3: bool?
154
- }?
155
- }?
156
- },
142
+ ?resource_lifecycle_config: Params::application_resource_lifecycle_config,
157
143
  ?tags: Array[
158
144
  {
159
145
  key: ::String?,
160
146
  value: ::String?
161
- },
147
+ }
162
148
  ]
163
149
  ) -> _CreateApplicationResponseSuccess
164
150
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
@@ -194,7 +180,7 @@ module Aws
194
180
  {
195
181
  key: ::String?,
196
182
  value: ::String?
197
- },
183
+ }
198
184
  ]
199
185
  ) -> _CreateApplicationVersionResponseSuccess
200
186
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationVersionResponseSuccess
@@ -230,13 +216,13 @@ module Aws
230
216
  namespace: ::String?,
231
217
  option_name: ::String?,
232
218
  value: ::String?
233
- },
219
+ }
234
220
  ],
235
221
  ?tags: Array[
236
222
  {
237
223
  key: ::String?,
238
224
  value: ::String?
239
- },
225
+ }
240
226
  ]
241
227
  ) -> _CreateConfigurationTemplateResponseSuccess
242
228
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationTemplateResponseSuccess
@@ -281,7 +267,7 @@ module Aws
281
267
  {
282
268
  key: ::String?,
283
269
  value: ::String?
284
- },
270
+ }
285
271
  ],
286
272
  ?version_label: ::String,
287
273
  ?template_name: ::String,
@@ -293,14 +279,14 @@ module Aws
293
279
  namespace: ::String?,
294
280
  option_name: ::String?,
295
281
  value: ::String?
296
- },
282
+ }
297
283
  ],
298
284
  ?options_to_remove: Array[
299
285
  {
300
286
  resource_name: ::String?,
301
287
  namespace: ::String?,
302
288
  option_name: ::String?
303
- },
289
+ }
304
290
  ],
305
291
  ?operations_role: ::String
306
292
  ) -> _CreateEnvironmentResponseSuccess
@@ -326,13 +312,13 @@ module Aws
326
312
  namespace: ::String?,
327
313
  option_name: ::String?,
328
314
  value: ::String?
329
- },
315
+ }
330
316
  ],
331
317
  ?tags: Array[
332
318
  {
333
319
  key: ::String?,
334
320
  value: ::String?
335
- },
321
+ }
336
322
  ]
337
323
  ) -> _CreatePlatformVersionResponseSuccess
338
324
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePlatformVersionResponseSuccess
@@ -434,7 +420,7 @@ module Aws
434
420
  resource_name: ::String?,
435
421
  namespace: ::String?,
436
422
  option_name: ::String?
437
- },
423
+ }
438
424
  ]
439
425
  ) -> _DescribeConfigurationOptionsResponseSuccess
440
426
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConfigurationOptionsResponseSuccess
@@ -599,7 +585,7 @@ module Aws
599
585
  attribute: ::String?,
600
586
  operator: ::String?,
601
587
  values: Array[::String]?
602
- },
588
+ }
603
589
  ],
604
590
  ?max_records: ::Integer,
605
591
  ?next_token: ::String
@@ -618,7 +604,7 @@ module Aws
618
604
  type: ::String?,
619
605
  operator: ::String?,
620
606
  values: Array[::String]?
621
- },
607
+ }
622
608
  ],
623
609
  ?max_records: ::Integer,
624
610
  ?next_token: ::String
@@ -731,21 +717,7 @@ module Aws
731
717
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#update_application_resource_lifecycle-instance_method
732
718
  def update_application_resource_lifecycle: (
733
719
  application_name: ::String,
734
- resource_lifecycle_config: {
735
- service_role: ::String?,
736
- version_lifecycle_config: {
737
- max_count_rule: {
738
- enabled: bool,
739
- max_count: ::Integer?,
740
- delete_source_from_s3: bool?
741
- }?,
742
- max_age_rule: {
743
- enabled: bool,
744
- max_age_in_days: ::Integer?,
745
- delete_source_from_s3: bool?
746
- }?
747
- }?
748
- }
720
+ resource_lifecycle_config: Params::application_resource_lifecycle_config
749
721
  ) -> _UpdateApplicationResourceLifecycleResponseSuccess
750
722
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResourceLifecycleResponseSuccess
751
723
 
@@ -785,14 +757,14 @@ module Aws
785
757
  namespace: ::String?,
786
758
  option_name: ::String?,
787
759
  value: ::String?
788
- },
760
+ }
789
761
  ],
790
762
  ?options_to_remove: Array[
791
763
  {
792
764
  resource_name: ::String?,
793
765
  namespace: ::String?,
794
766
  option_name: ::String?
795
- },
767
+ }
796
768
  ]
797
769
  ) -> _UpdateConfigurationTemplateResponseSuccess
798
770
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigurationTemplateResponseSuccess
@@ -843,14 +815,14 @@ module Aws
843
815
  namespace: ::String?,
844
816
  option_name: ::String?,
845
817
  value: ::String?
846
- },
818
+ }
847
819
  ],
848
820
  ?options_to_remove: Array[
849
821
  {
850
822
  resource_name: ::String?,
851
823
  namespace: ::String?,
852
824
  option_name: ::String?
853
- },
825
+ }
854
826
  ]
855
827
  ) -> _UpdateEnvironmentResponseSuccess
856
828
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentResponseSuccess
@@ -862,7 +834,7 @@ module Aws
862
834
  {
863
835
  key: ::String?,
864
836
  value: ::String?
865
- },
837
+ }
866
838
  ],
867
839
  ?tags_to_remove: Array[::String]
868
840
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -883,7 +855,7 @@ module Aws
883
855
  namespace: ::String?,
884
856
  option_name: ::String?,
885
857
  value: ::String?
886
- },
858
+ }
887
859
  ]
888
860
  ) -> _ValidateConfigurationSettingsResponseSuccess
889
861
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ValidateConfigurationSettingsResponseSuccess
data/sig/params.rbs ADDED
@@ -0,0 +1,31 @@
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 ElasticBeanstalk
10
+ module Params
11
+ type application_version_lifecycle_config = {
12
+ max_count_rule: {
13
+ enabled: bool,
14
+ max_count: ::Integer?,
15
+ delete_source_from_s3: bool?
16
+ }?,
17
+ max_age_rule: {
18
+ enabled: bool,
19
+ max_age_in_days: ::Integer?,
20
+ delete_source_from_s3: bool?
21
+ }?
22
+ }
23
+
24
+ type application_resource_lifecycle_config = {
25
+ service_role: ::String?,
26
+ version_lifecycle_config: Params::application_version_lifecycle_config?
27
+ }
28
+
29
+ end
30
+ end
31
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticbeanstalk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.102.0
4
+ version: 1.104.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
@@ -68,6 +68,7 @@ files:
68
68
  - lib/aws-sdk-elasticbeanstalk/waiters.rb
69
69
  - sig/client.rbs
70
70
  - sig/errors.rbs
71
+ - sig/params.rbs
71
72
  - sig/resource.rbs
72
73
  - sig/types.rbs
73
74
  - sig/waiters.rbs