aws-sdk-codedeploy 1.98.0 → 1.99.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: 4eb06699a81489a462988616258598c51043b7d879abf4e8b48a674c6e3e5106
4
- data.tar.gz: 8d8fa949ac41343ff8103d471e91050ce88823e9d4f7678a814f8ea61983c825
3
+ metadata.gz: 189da0a373d990c6f9d9d23c41c94c855d8cce3f61d7d5bfbb5a86a4f95b012c
4
+ data.tar.gz: 2531c66a386df84194d854fff418ae38574613860e7928180cd6463e1e5dffb9
5
5
  SHA512:
6
- metadata.gz: 9f5ac85c93504f0b77301e1ef1afc4f14697933ce192cf02bdbfeb79843c76255d0e9db1f7d1dae51ed95a581535a2c4e1d77b8ab773e785b26e5cb4e9e8c56d
7
- data.tar.gz: a94d9a4bd50a4b30ab96f1781adc29a1e1ce1692f4a6b5312fb2bb1a34b17f546fe4ed277f563e2101c36fcba43accbe555fd5e8f708bba320b38af4374cc613
6
+ metadata.gz: 0ec658c0c18c94a3c285cfb1178b08387424bd3ade14c055fab83208ce427e5220c7adf2c3fa43ce61293a780c5592a319436c78154c29c7cd2d1c3f1fd366df
7
+ data.tar.gz: 6a1bbad2afb86c341f1fcd6868bea3c2133ef83a8a6e2706a73d09cf961d1258c7649ad3f8bf07f50d03aeca79b358eda660ba67c79ff42c0d0d180a3b555de1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.99.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.98.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.98.0
1
+ 1.99.0
@@ -3664,7 +3664,7 @@ module Aws::CodeDeploy
3664
3664
  tracer: tracer
3665
3665
  )
3666
3666
  context[:gem_name] = 'aws-sdk-codedeploy'
3667
- context[:gem_version] = '1.98.0'
3667
+ context[:gem_version] = '1.99.0'
3668
3668
  Seahorse::Client::Request.new(handlers, context)
3669
3669
  end
3670
3670
 
@@ -55,7 +55,7 @@ module Aws::CodeDeploy
55
55
  autoload :EndpointProvider, 'aws-sdk-codedeploy/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-codedeploy/endpoints'
57
57
 
58
- GEM_VERSION = '1.98.0'
58
+ GEM_VERSION = '1.99.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -85,7 +85,7 @@ module Aws
85
85
  {
86
86
  key: ::String?,
87
87
  value: ::String?
88
- },
88
+ }
89
89
  ],
90
90
  instance_names: Array[::String]
91
91
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -101,28 +101,7 @@ module Aws
101
101
  def batch_get_application_revisions: (
102
102
  application_name: ::String,
103
103
  revisions: Array[
104
- {
105
- revision_type: ("S3" | "GitHub" | "String" | "AppSpecContent")?,
106
- s3_location: {
107
- bucket: ::String?,
108
- key: ::String?,
109
- bundle_type: ("tar" | "tgz" | "zip" | "YAML" | "JSON")?,
110
- version: ::String?,
111
- e_tag: ::String?
112
- }?,
113
- git_hub_location: {
114
- repository: ::String?,
115
- commit_id: ::String?
116
- }?,
117
- string: {
118
- content: ::String?,
119
- sha256: ::String?
120
- }?,
121
- app_spec_content: {
122
- content: ::String?,
123
- sha256: ::String?
124
- }?
125
- },
104
+ Params::revision_location
126
105
  ]
127
106
  ) -> _BatchGetApplicationRevisionsResponseSuccess
128
107
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetApplicationRevisionsResponseSuccess
@@ -211,7 +190,7 @@ module Aws
211
190
  {
212
191
  key: ::String?,
213
192
  value: ::String?
214
- },
193
+ }
215
194
  ]
216
195
  ) -> _CreateApplicationResponseSuccess
217
196
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
@@ -224,28 +203,7 @@ module Aws
224
203
  def create_deployment: (
225
204
  application_name: ::String,
226
205
  ?deployment_group_name: ::String,
227
- ?revision: {
228
- revision_type: ("S3" | "GitHub" | "String" | "AppSpecContent")?,
229
- s3_location: {
230
- bucket: ::String?,
231
- key: ::String?,
232
- bundle_type: ("tar" | "tgz" | "zip" | "YAML" | "JSON")?,
233
- version: ::String?,
234
- e_tag: ::String?
235
- }?,
236
- git_hub_location: {
237
- repository: ::String?,
238
- commit_id: ::String?
239
- }?,
240
- string: {
241
- content: ::String?,
242
- sha256: ::String?
243
- }?,
244
- app_spec_content: {
245
- content: ::String?,
246
- sha256: ::String?
247
- }?
248
- },
206
+ ?revision: Params::revision_location,
249
207
  ?deployment_config_name: ::String,
250
208
  ?description: ::String,
251
209
  ?ignore_application_stop_failures: bool,
@@ -255,7 +213,7 @@ module Aws
255
213
  key: ::String?,
256
214
  value: ::String?,
257
215
  type: ("KEY_ONLY" | "VALUE_ONLY" | "KEY_AND_VALUE")?
258
- },
216
+ }
259
217
  ]?,
260
218
  auto_scaling_groups: Array[::String]?,
261
219
  ec2_tag_set: {
@@ -265,8 +223,8 @@ module Aws
265
223
  key: ::String?,
266
224
  value: ::String?,
267
225
  type: ("KEY_ONLY" | "VALUE_ONLY" | "KEY_AND_VALUE")?
268
- },
269
- ],
226
+ }
227
+ ]
270
228
  ]?
271
229
  }?
272
230
  },
@@ -282,7 +240,7 @@ module Aws
282
240
  alarms: Array[
283
241
  {
284
242
  name: ::String?
285
- },
243
+ }
286
244
  ]?
287
245
  }
288
246
  ) -> _CreateDeploymentResponseSuccess
@@ -336,14 +294,14 @@ module Aws
336
294
  key: ::String?,
337
295
  value: ::String?,
338
296
  type: ("KEY_ONLY" | "VALUE_ONLY" | "KEY_AND_VALUE")?
339
- },
297
+ }
340
298
  ],
341
299
  ?on_premises_instance_tag_filters: Array[
342
300
  {
343
301
  key: ::String?,
344
302
  value: ::String?,
345
303
  type: ("KEY_ONLY" | "VALUE_ONLY" | "KEY_AND_VALUE")?
346
- },
304
+ }
347
305
  ],
348
306
  ?auto_scaling_groups: Array[::String],
349
307
  service_role_arn: ::String,
@@ -352,7 +310,7 @@ module Aws
352
310
  trigger_name: ::String?,
353
311
  trigger_target_arn: ::String?,
354
312
  trigger_events: Array[("DeploymentStart" | "DeploymentSuccess" | "DeploymentFailure" | "DeploymentStop" | "DeploymentRollback" | "DeploymentReady" | "InstanceStart" | "InstanceSuccess" | "InstanceFailure" | "InstanceReady")]?
355
- },
313
+ }
356
314
  ],
357
315
  ?alarm_configuration: {
358
316
  enabled: bool?,
@@ -360,7 +318,7 @@ module Aws
360
318
  alarms: Array[
361
319
  {
362
320
  name: ::String?
363
- },
321
+ }
364
322
  ]?
365
323
  },
366
324
  ?auto_rollback_configuration: {
@@ -372,46 +330,8 @@ module Aws
372
330
  deployment_type: ("IN_PLACE" | "BLUE_GREEN")?,
373
331
  deployment_option: ("WITH_TRAFFIC_CONTROL" | "WITHOUT_TRAFFIC_CONTROL")?
374
332
  },
375
- ?blue_green_deployment_configuration: {
376
- terminate_blue_instances_on_deployment_success: {
377
- action: ("TERMINATE" | "KEEP_ALIVE")?,
378
- termination_wait_time_in_minutes: ::Integer?
379
- }?,
380
- deployment_ready_option: {
381
- action_on_timeout: ("CONTINUE_DEPLOYMENT" | "STOP_DEPLOYMENT")?,
382
- wait_time_in_minutes: ::Integer?
383
- }?,
384
- green_fleet_provisioning_option: {
385
- action: ("DISCOVER_EXISTING" | "COPY_AUTO_SCALING_GROUP")?
386
- }?
387
- },
388
- ?load_balancer_info: {
389
- elb_info_list: Array[
390
- {
391
- name: ::String?
392
- },
393
- ]?,
394
- target_group_info_list: Array[
395
- {
396
- name: ::String?
397
- },
398
- ]?,
399
- target_group_pair_info_list: Array[
400
- {
401
- target_groups: Array[
402
- {
403
- name: ::String?
404
- },
405
- ]?,
406
- prod_traffic_route: {
407
- listener_arns: Array[::String]?
408
- }?,
409
- test_traffic_route: {
410
- listener_arns: Array[::String]?
411
- }?
412
- },
413
- ]?
414
- },
333
+ ?blue_green_deployment_configuration: Params::blue_green_deployment_configuration,
334
+ ?load_balancer_info: Params::load_balancer_info,
415
335
  ?ec2_tag_set: {
416
336
  ec2_tag_set_list: Array[
417
337
  Array[
@@ -419,15 +339,15 @@ module Aws
419
339
  key: ::String?,
420
340
  value: ::String?,
421
341
  type: ("KEY_ONLY" | "VALUE_ONLY" | "KEY_AND_VALUE")?
422
- },
423
- ],
342
+ }
343
+ ]
424
344
  ]?
425
345
  },
426
346
  ?ecs_services: Array[
427
347
  {
428
348
  service_name: ::String?,
429
349
  cluster_name: ::String?
430
- },
350
+ }
431
351
  ],
432
352
  ?on_premises_tag_set: {
433
353
  on_premises_tag_set_list: Array[
@@ -436,15 +356,15 @@ module Aws
436
356
  key: ::String?,
437
357
  value: ::String?,
438
358
  type: ("KEY_ONLY" | "VALUE_ONLY" | "KEY_AND_VALUE")?
439
- },
440
- ],
359
+ }
360
+ ]
441
361
  ]?
442
362
  },
443
363
  ?tags: Array[
444
364
  {
445
365
  key: ::String?,
446
366
  value: ::String?
447
- },
367
+ }
448
368
  ],
449
369
  ?termination_hook_enabled: bool
450
370
  ) -> _CreateDeploymentGroupResponseSuccess
@@ -517,28 +437,7 @@ module Aws
517
437
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeDeploy/Client.html#get_application_revision-instance_method
518
438
  def get_application_revision: (
519
439
  application_name: ::String,
520
- revision: {
521
- revision_type: ("S3" | "GitHub" | "String" | "AppSpecContent")?,
522
- s3_location: {
523
- bucket: ::String?,
524
- key: ::String?,
525
- bundle_type: ("tar" | "tgz" | "zip" | "YAML" | "JSON")?,
526
- version: ::String?,
527
- e_tag: ::String?
528
- }?,
529
- git_hub_location: {
530
- repository: ::String?,
531
- commit_id: ::String?
532
- }?,
533
- string: {
534
- content: ::String?,
535
- sha256: ::String?
536
- }?,
537
- app_spec_content: {
538
- content: ::String?,
539
- sha256: ::String?
540
- }?
541
- }
440
+ revision: Params::revision_location
542
441
  ) -> _GetApplicationRevisionResponseSuccess
543
442
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetApplicationRevisionResponseSuccess
544
443
 
@@ -727,7 +626,7 @@ module Aws
727
626
  key: ::String?,
728
627
  value: ::String?,
729
628
  type: ("KEY_ONLY" | "VALUE_ONLY" | "KEY_AND_VALUE")?
730
- },
629
+ }
731
630
  ],
732
631
  ?next_token: ::String
733
632
  ) -> _ListOnPremisesInstancesResponseSuccess
@@ -761,28 +660,7 @@ module Aws
761
660
  def register_application_revision: (
762
661
  application_name: ::String,
763
662
  ?description: ::String,
764
- revision: {
765
- revision_type: ("S3" | "GitHub" | "String" | "AppSpecContent")?,
766
- s3_location: {
767
- bucket: ::String?,
768
- key: ::String?,
769
- bundle_type: ("tar" | "tgz" | "zip" | "YAML" | "JSON")?,
770
- version: ::String?,
771
- e_tag: ::String?
772
- }?,
773
- git_hub_location: {
774
- repository: ::String?,
775
- commit_id: ::String?
776
- }?,
777
- string: {
778
- content: ::String?,
779
- sha256: ::String?
780
- }?,
781
- app_spec_content: {
782
- content: ::String?,
783
- sha256: ::String?
784
- }?
785
- }
663
+ revision: Params::revision_location
786
664
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
787
665
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
788
666
 
@@ -800,7 +678,7 @@ module Aws
800
678
  {
801
679
  key: ::String?,
802
680
  value: ::String?
803
- },
681
+ }
804
682
  ],
805
683
  instance_names: Array[::String]
806
684
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -834,7 +712,7 @@ module Aws
834
712
  {
835
713
  key: ::String?,
836
714
  value: ::String?
837
- },
715
+ }
838
716
  ]
839
717
  ) -> _TagResourceResponseSuccess
840
718
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
@@ -871,14 +749,14 @@ module Aws
871
749
  key: ::String?,
872
750
  value: ::String?,
873
751
  type: ("KEY_ONLY" | "VALUE_ONLY" | "KEY_AND_VALUE")?
874
- },
752
+ }
875
753
  ],
876
754
  ?on_premises_instance_tag_filters: Array[
877
755
  {
878
756
  key: ::String?,
879
757
  value: ::String?,
880
758
  type: ("KEY_ONLY" | "VALUE_ONLY" | "KEY_AND_VALUE")?
881
- },
759
+ }
882
760
  ],
883
761
  ?auto_scaling_groups: Array[::String],
884
762
  ?service_role_arn: ::String,
@@ -887,7 +765,7 @@ module Aws
887
765
  trigger_name: ::String?,
888
766
  trigger_target_arn: ::String?,
889
767
  trigger_events: Array[("DeploymentStart" | "DeploymentSuccess" | "DeploymentFailure" | "DeploymentStop" | "DeploymentRollback" | "DeploymentReady" | "InstanceStart" | "InstanceSuccess" | "InstanceFailure" | "InstanceReady")]?
890
- },
768
+ }
891
769
  ],
892
770
  ?alarm_configuration: {
893
771
  enabled: bool?,
@@ -895,7 +773,7 @@ module Aws
895
773
  alarms: Array[
896
774
  {
897
775
  name: ::String?
898
- },
776
+ }
899
777
  ]?
900
778
  },
901
779
  ?auto_rollback_configuration: {
@@ -907,46 +785,8 @@ module Aws
907
785
  deployment_type: ("IN_PLACE" | "BLUE_GREEN")?,
908
786
  deployment_option: ("WITH_TRAFFIC_CONTROL" | "WITHOUT_TRAFFIC_CONTROL")?
909
787
  },
910
- ?blue_green_deployment_configuration: {
911
- terminate_blue_instances_on_deployment_success: {
912
- action: ("TERMINATE" | "KEEP_ALIVE")?,
913
- termination_wait_time_in_minutes: ::Integer?
914
- }?,
915
- deployment_ready_option: {
916
- action_on_timeout: ("CONTINUE_DEPLOYMENT" | "STOP_DEPLOYMENT")?,
917
- wait_time_in_minutes: ::Integer?
918
- }?,
919
- green_fleet_provisioning_option: {
920
- action: ("DISCOVER_EXISTING" | "COPY_AUTO_SCALING_GROUP")?
921
- }?
922
- },
923
- ?load_balancer_info: {
924
- elb_info_list: Array[
925
- {
926
- name: ::String?
927
- },
928
- ]?,
929
- target_group_info_list: Array[
930
- {
931
- name: ::String?
932
- },
933
- ]?,
934
- target_group_pair_info_list: Array[
935
- {
936
- target_groups: Array[
937
- {
938
- name: ::String?
939
- },
940
- ]?,
941
- prod_traffic_route: {
942
- listener_arns: Array[::String]?
943
- }?,
944
- test_traffic_route: {
945
- listener_arns: Array[::String]?
946
- }?
947
- },
948
- ]?
949
- },
788
+ ?blue_green_deployment_configuration: Params::blue_green_deployment_configuration,
789
+ ?load_balancer_info: Params::load_balancer_info,
950
790
  ?ec2_tag_set: {
951
791
  ec2_tag_set_list: Array[
952
792
  Array[
@@ -954,15 +794,15 @@ module Aws
954
794
  key: ::String?,
955
795
  value: ::String?,
956
796
  type: ("KEY_ONLY" | "VALUE_ONLY" | "KEY_AND_VALUE")?
957
- },
958
- ],
797
+ }
798
+ ]
959
799
  ]?
960
800
  },
961
801
  ?ecs_services: Array[
962
802
  {
963
803
  service_name: ::String?,
964
804
  cluster_name: ::String?
965
- },
805
+ }
966
806
  ],
967
807
  ?on_premises_tag_set: {
968
808
  on_premises_tag_set_list: Array[
@@ -971,8 +811,8 @@ module Aws
971
811
  key: ::String?,
972
812
  value: ::String?,
973
813
  type: ("KEY_ONLY" | "VALUE_ONLY" | "KEY_AND_VALUE")?
974
- },
975
- ],
814
+ }
815
+ ]
976
816
  ]?
977
817
  },
978
818
  ?termination_hook_enabled: bool
data/sig/params.rbs ADDED
@@ -0,0 +1,80 @@
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 CodeDeploy
10
+ module Params
11
+ type revision_location = {
12
+ revision_type: ("S3" | "GitHub" | "String" | "AppSpecContent")?,
13
+ s3_location: {
14
+ bucket: ::String?,
15
+ key: ::String?,
16
+ bundle_type: ("tar" | "tgz" | "zip" | "YAML" | "JSON")?,
17
+ version: ::String?,
18
+ e_tag: ::String?
19
+ }?,
20
+ git_hub_location: {
21
+ repository: ::String?,
22
+ commit_id: ::String?
23
+ }?,
24
+ string: {
25
+ content: ::String?,
26
+ sha256: ::String?
27
+ }?,
28
+ app_spec_content: {
29
+ content: ::String?,
30
+ sha256: ::String?
31
+ }?
32
+ }
33
+
34
+ type blue_green_deployment_configuration = {
35
+ terminate_blue_instances_on_deployment_success: {
36
+ action: ("TERMINATE" | "KEEP_ALIVE")?,
37
+ termination_wait_time_in_minutes: ::Integer?
38
+ }?,
39
+ deployment_ready_option: {
40
+ action_on_timeout: ("CONTINUE_DEPLOYMENT" | "STOP_DEPLOYMENT")?,
41
+ wait_time_in_minutes: ::Integer?
42
+ }?,
43
+ green_fleet_provisioning_option: {
44
+ action: ("DISCOVER_EXISTING" | "COPY_AUTO_SCALING_GROUP")?
45
+ }?
46
+ }
47
+
48
+ type load_balancer_info = {
49
+ elb_info_list: Array[
50
+ {
51
+ name: ::String?
52
+ }
53
+ ]?,
54
+ target_group_info_list: Array[
55
+ {
56
+ name: ::String?
57
+ }
58
+ ]?,
59
+ target_group_pair_info_list: Array[
60
+ Params::target_group_pair_info
61
+ ]?
62
+ }
63
+
64
+ type target_group_pair_info = {
65
+ target_groups: Array[
66
+ {
67
+ name: ::String?
68
+ }
69
+ ]?,
70
+ prod_traffic_route: {
71
+ listener_arns: Array[::String]?
72
+ }?,
73
+ test_traffic_route: {
74
+ listener_arns: Array[::String]?
75
+ }?
76
+ }
77
+
78
+ end
79
+ end
80
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-codedeploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.98.0
4
+ version: 1.99.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -68,6 +68,7 @@ files:
68
68
  - lib/aws-sdk-codedeploy/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