aws-sdk-codedeploy 1.52.0 → 1.53.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codedeploy/client.rb +34 -29
- data/lib/aws-sdk-codedeploy/types.rb +60 -62
- data/lib/aws-sdk-codedeploy.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 716c39d530915109a3ebaa39a1ad52ae684ccc0e00dde86c51a2a4ff7904f34d
|
|
4
|
+
data.tar.gz: 92e9315da8735f35d5779fd2fabc4315c1e7872211e4d44cb95e82ab5860bde3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 16651cdbead5b5b55dbd93d5576b202f677483a4d0a7c9a7b6c5cf0ffef9c169833e5d1a026233e4d0bee50f099cfa9779649d86c8fdd0132a4d72f2a0173c40
|
|
7
|
+
data.tar.gz: ae2dda449e1ebd4d63347575952438052b7afe03098ab4dd8852e6f9282cb3e969d6e1f4243262a6b17981ffa0e371d7b13ccc7deef59dd31938ade509fd39b4
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.53.0
|
|
@@ -275,6 +275,11 @@ module Aws::CodeDeploy
|
|
|
275
275
|
# in the future.
|
|
276
276
|
#
|
|
277
277
|
#
|
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
|
279
|
+
# A unique and opaque application ID that is appended to the
|
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
|
281
|
+
# maximum length of 50.
|
|
282
|
+
#
|
|
278
283
|
# @option options [String] :secret_access_key
|
|
279
284
|
#
|
|
280
285
|
# @option options [String] :session_token
|
|
@@ -711,13 +716,13 @@ module Aws::CodeDeploy
|
|
|
711
716
|
# The type of targets returned depends on the deployment's compute
|
|
712
717
|
# platform or deployment method:
|
|
713
718
|
#
|
|
714
|
-
# * **EC2/On-premises
|
|
719
|
+
# * **EC2/On-premises**: Information about Amazon EC2 instance targets.
|
|
715
720
|
#
|
|
716
|
-
# * **Lambda
|
|
721
|
+
# * **Lambda**: Information about Lambda functions targets.
|
|
717
722
|
#
|
|
718
|
-
# * **Amazon ECS
|
|
723
|
+
# * **Amazon ECS**: Information about Amazon ECS service targets.
|
|
719
724
|
#
|
|
720
|
-
# * **CloudFormation
|
|
725
|
+
# * **CloudFormation**: Information about targets of blue/green
|
|
721
726
|
# deployments initiated by a CloudFormation stack update.
|
|
722
727
|
#
|
|
723
728
|
# @option params [String] :deployment_id
|
|
@@ -2338,13 +2343,13 @@ module Aws::CodeDeploy
|
|
|
2338
2343
|
# @option params [String] :sort_by
|
|
2339
2344
|
# The column name to use to sort the list results:
|
|
2340
2345
|
#
|
|
2341
|
-
# * `registerTime
|
|
2346
|
+
# * `registerTime`: Sort by the time the revisions were registered with
|
|
2342
2347
|
# CodeDeploy.
|
|
2343
2348
|
#
|
|
2344
|
-
# * `firstUsedTime
|
|
2345
|
-
#
|
|
2349
|
+
# * `firstUsedTime`: Sort by the time the revisions were first used in a
|
|
2350
|
+
# deployment.
|
|
2346
2351
|
#
|
|
2347
|
-
# * `lastUsedTime
|
|
2352
|
+
# * `lastUsedTime`: Sort by the time the revisions were last used in a
|
|
2348
2353
|
# deployment.
|
|
2349
2354
|
#
|
|
2350
2355
|
# If not specified or set to null, the results are returned in an
|
|
@@ -2353,9 +2358,9 @@ module Aws::CodeDeploy
|
|
|
2353
2358
|
# @option params [String] :sort_order
|
|
2354
2359
|
# The order in which to sort the list results:
|
|
2355
2360
|
#
|
|
2356
|
-
# * `ascending
|
|
2361
|
+
# * `ascending`: ascending order.
|
|
2357
2362
|
#
|
|
2358
|
-
# * `descending
|
|
2363
|
+
# * `descending`: descending order.
|
|
2359
2364
|
#
|
|
2360
2365
|
# If not specified, the results are sorted in ascending order.
|
|
2361
2366
|
#
|
|
@@ -2374,13 +2379,13 @@ module Aws::CodeDeploy
|
|
|
2374
2379
|
# Whether to list revisions based on whether the revision is the target
|
|
2375
2380
|
# revision of a deployment group:
|
|
2376
2381
|
#
|
|
2377
|
-
# * `include
|
|
2382
|
+
# * `include`: List revisions that are target revisions of a deployment
|
|
2378
2383
|
# group.
|
|
2379
2384
|
#
|
|
2380
|
-
# * `exclude
|
|
2385
|
+
# * `exclude`: Do not list revisions that are target revisions of a
|
|
2381
2386
|
# deployment group.
|
|
2382
2387
|
#
|
|
2383
|
-
# * `ignore
|
|
2388
|
+
# * `ignore`: List all revisions.
|
|
2384
2389
|
#
|
|
2385
2390
|
# @option params [String] :next_token
|
|
2386
2391
|
# An identifier returned from the previous `ListApplicationRevisions`
|
|
@@ -2567,18 +2572,18 @@ module Aws::CodeDeploy
|
|
|
2567
2572
|
# @option params [Array<String>] :instance_status_filter
|
|
2568
2573
|
# A subset of instances to list by status:
|
|
2569
2574
|
#
|
|
2570
|
-
# * `Pending
|
|
2575
|
+
# * `Pending`: Include those instances with pending deployments.
|
|
2571
2576
|
#
|
|
2572
|
-
# * `InProgress
|
|
2573
|
-
#
|
|
2577
|
+
# * `InProgress`: Include those instances where deployments are still in
|
|
2578
|
+
# progress.
|
|
2574
2579
|
#
|
|
2575
|
-
# * `Succeeded
|
|
2580
|
+
# * `Succeeded`: Include those instances with successful deployments.
|
|
2576
2581
|
#
|
|
2577
|
-
# * `Failed
|
|
2582
|
+
# * `Failed`: Include those instances with failed deployments.
|
|
2578
2583
|
#
|
|
2579
|
-
# * `Skipped
|
|
2584
|
+
# * `Skipped`: Include those instances with skipped deployments.
|
|
2580
2585
|
#
|
|
2581
|
-
# * `Unknown
|
|
2586
|
+
# * `Unknown`: Include those instances with deployments in an unknown
|
|
2582
2587
|
# state.
|
|
2583
2588
|
#
|
|
2584
2589
|
# @option params [Array<String>] :instance_type_filter
|
|
@@ -2697,18 +2702,18 @@ module Aws::CodeDeploy
|
|
|
2697
2702
|
# @option params [Array<String>] :include_only_statuses
|
|
2698
2703
|
# A subset of deployments to list by status:
|
|
2699
2704
|
#
|
|
2700
|
-
# * `Created
|
|
2705
|
+
# * `Created`: Include created deployments in the resulting list.
|
|
2701
2706
|
#
|
|
2702
|
-
# * `Queued
|
|
2707
|
+
# * `Queued`: Include queued deployments in the resulting list.
|
|
2703
2708
|
#
|
|
2704
|
-
# * `In Progress
|
|
2709
|
+
# * `In Progress`: Include in-progress deployments in the resulting
|
|
2705
2710
|
# list.
|
|
2706
2711
|
#
|
|
2707
|
-
# * `Succeeded
|
|
2712
|
+
# * `Succeeded`: Include successful deployments in the resulting list.
|
|
2708
2713
|
#
|
|
2709
|
-
# * `Failed
|
|
2714
|
+
# * `Failed`: Include failed deployments in the resulting list.
|
|
2710
2715
|
#
|
|
2711
|
-
# * `Stopped
|
|
2716
|
+
# * `Stopped`: Include stopped deployments in the resulting list.
|
|
2712
2717
|
#
|
|
2713
2718
|
# @option params [Types::TimeRange] :create_time_range
|
|
2714
2719
|
# A time range (start and end) for returning a subset of the list of
|
|
@@ -2796,10 +2801,10 @@ module Aws::CodeDeploy
|
|
|
2796
2801
|
# @option params [String] :registration_status
|
|
2797
2802
|
# The registration status of the on-premises instances:
|
|
2798
2803
|
#
|
|
2799
|
-
# * `Deregistered
|
|
2804
|
+
# * `Deregistered`: Include deregistered on-premises instances in the
|
|
2800
2805
|
# resulting list.
|
|
2801
2806
|
#
|
|
2802
|
-
# * `Registered
|
|
2807
|
+
# * `Registered`: Include registered on-premises instances in the
|
|
2803
2808
|
# resulting list.
|
|
2804
2809
|
#
|
|
2805
2810
|
# @option params [Array<Types::TagFilter>] :tag_filters
|
|
@@ -3467,7 +3472,7 @@ module Aws::CodeDeploy
|
|
|
3467
3472
|
params: params,
|
|
3468
3473
|
config: config)
|
|
3469
3474
|
context[:gem_name] = 'aws-sdk-codedeploy'
|
|
3470
|
-
context[:gem_version] = '1.
|
|
3475
|
+
context[:gem_version] = '1.53.0'
|
|
3471
3476
|
Seahorse::Client::Request.new(handlers, context)
|
|
3472
3477
|
end
|
|
3473
3478
|
|
|
@@ -60,10 +60,10 @@ module Aws::CodeDeploy
|
|
|
60
60
|
# the current state of alarms cannot be retrieved from Amazon
|
|
61
61
|
# CloudWatch. The default value is false.
|
|
62
62
|
#
|
|
63
|
-
# * `true
|
|
63
|
+
# * `true`: The deployment proceeds even if alarm status information
|
|
64
64
|
# can't be retrieved from Amazon CloudWatch.
|
|
65
65
|
#
|
|
66
|
-
# * `false
|
|
66
|
+
# * `false`: The deployment stops if alarm status information can't
|
|
67
67
|
# be retrieved from Amazon CloudWatch.
|
|
68
68
|
# @return [Boolean]
|
|
69
69
|
#
|
|
@@ -438,15 +438,15 @@ module Aws::CodeDeploy
|
|
|
438
438
|
# events. The type of the target objects depends on the deployment'
|
|
439
439
|
# compute platform.
|
|
440
440
|
#
|
|
441
|
-
# * **EC2/On-premises
|
|
441
|
+
# * **EC2/On-premises**: Each target object is an Amazon EC2 or
|
|
442
442
|
# on-premises instance.
|
|
443
443
|
#
|
|
444
|
-
# * **Lambda
|
|
444
|
+
# * **Lambda**: The target object is a specific version of an Lambda
|
|
445
445
|
# function.
|
|
446
446
|
#
|
|
447
|
-
# * **Amazon ECS
|
|
447
|
+
# * **Amazon ECS**: The target object is an Amazon ECS service.
|
|
448
448
|
#
|
|
449
|
-
# * **CloudFormation
|
|
449
|
+
# * **CloudFormation**: The target object is an CloudFormation
|
|
450
450
|
# blue/green deployment.
|
|
451
451
|
# @return [Array<Types::DeploymentTarget>]
|
|
452
452
|
#
|
|
@@ -560,10 +560,9 @@ module Aws::CodeDeploy
|
|
|
560
560
|
# The action to take on instances in the original environment after a
|
|
561
561
|
# successful blue/green deployment.
|
|
562
562
|
#
|
|
563
|
-
# * `TERMINATE
|
|
564
|
-
# time.
|
|
563
|
+
# * `TERMINATE`: Instances are terminated after a specified wait time.
|
|
565
564
|
#
|
|
566
|
-
# * `KEEP_ALIVE
|
|
565
|
+
# * `KEEP_ALIVE`: Instances are left running after they are
|
|
567
566
|
# deregistered from the load balancer and removed from the
|
|
568
567
|
# deployment group.
|
|
569
568
|
# @return [String]
|
|
@@ -1549,13 +1548,13 @@ module Aws::CodeDeploy
|
|
|
1549
1548
|
# @!attribute [rw] creator
|
|
1550
1549
|
# The means by which the deployment was created:
|
|
1551
1550
|
#
|
|
1552
|
-
# * `user
|
|
1551
|
+
# * `user`: A user created the deployment.
|
|
1553
1552
|
#
|
|
1554
|
-
# * `autoscaling
|
|
1553
|
+
# * `autoscaling`: Amazon EC2 Auto Scaling created the deployment.
|
|
1555
1554
|
#
|
|
1556
|
-
# * `codeDeployRollback
|
|
1555
|
+
# * `codeDeployRollback`: A rollback process created the deployment.
|
|
1557
1556
|
#
|
|
1558
|
-
# * `CodeDeployAutoUpdate
|
|
1557
|
+
# * `CodeDeployAutoUpdate`: An auto-update process created the
|
|
1559
1558
|
# deployment when it detected outdated Amazon EC2 instances.
|
|
1560
1559
|
# @return [String]
|
|
1561
1560
|
#
|
|
@@ -1639,14 +1638,14 @@ module Aws::CodeDeploy
|
|
|
1639
1638
|
# a deployment target location but weren't part of the previous
|
|
1640
1639
|
# successful deployment.
|
|
1641
1640
|
#
|
|
1642
|
-
# * `DISALLOW
|
|
1641
|
+
# * `DISALLOW`: The deployment fails. This is also the default
|
|
1643
1642
|
# behavior if no option is specified.
|
|
1644
1643
|
#
|
|
1645
|
-
# * `OVERWRITE
|
|
1646
|
-
#
|
|
1647
|
-
#
|
|
1644
|
+
# * `OVERWRITE`: The version of the file from the application revision
|
|
1645
|
+
# currently being deployed replaces the version already on the
|
|
1646
|
+
# instance.
|
|
1648
1647
|
#
|
|
1649
|
-
# * `RETAIN
|
|
1648
|
+
# * `RETAIN`: The version of the file already on the instance is kept
|
|
1650
1649
|
# and used as part of the new deployment.
|
|
1651
1650
|
# @return [String]
|
|
1652
1651
|
#
|
|
@@ -1971,11 +1970,11 @@ module Aws::CodeDeploy
|
|
|
1971
1970
|
# @!attribute [rw] type
|
|
1972
1971
|
# The tag filter type:
|
|
1973
1972
|
#
|
|
1974
|
-
# * `KEY_ONLY
|
|
1973
|
+
# * `KEY_ONLY`: Key only.
|
|
1975
1974
|
#
|
|
1976
|
-
# * `VALUE_ONLY
|
|
1975
|
+
# * `VALUE_ONLY`: Value only.
|
|
1977
1976
|
#
|
|
1978
|
-
# * `KEY_AND_VALUE
|
|
1977
|
+
# * `KEY_AND_VALUE`: Key and value.
|
|
1979
1978
|
# @return [String]
|
|
1980
1979
|
#
|
|
1981
1980
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/EC2TagFilter AWS API Documentation
|
|
@@ -2115,12 +2114,12 @@ module Aws::CodeDeploy
|
|
|
2115
2114
|
# @!attribute [rw] status
|
|
2116
2115
|
# The status of the task set. There are three valid task set statuses:
|
|
2117
2116
|
#
|
|
2118
|
-
# * `PRIMARY
|
|
2117
|
+
# * `PRIMARY`: Indicates the task set is serving production traffic.
|
|
2119
2118
|
#
|
|
2120
|
-
# * `ACTIVE
|
|
2119
|
+
# * `ACTIVE`: Indicates the task set is not serving production
|
|
2121
2120
|
# traffic.
|
|
2122
2121
|
#
|
|
2123
|
-
# * `DRAINING
|
|
2122
|
+
# * `DRAINING`: Indicates the tasks in the task set are being stopped
|
|
2124
2123
|
# and their corresponding targets are being deregistered from their
|
|
2125
2124
|
# target group.
|
|
2126
2125
|
# @return [String]
|
|
@@ -2581,10 +2580,10 @@ module Aws::CodeDeploy
|
|
|
2581
2580
|
# @!attribute [rw] action
|
|
2582
2581
|
# The method used to add instances to a replacement environment.
|
|
2583
2582
|
#
|
|
2584
|
-
# * `DISCOVER_EXISTING
|
|
2583
|
+
# * `DISCOVER_EXISTING`: Use instances that already exist or will be
|
|
2585
2584
|
# created manually.
|
|
2586
2585
|
#
|
|
2587
|
-
# * `COPY_AUTO_SCALING_GROUP
|
|
2586
|
+
# * `COPY_AUTO_SCALING_GROUP`: Use settings from a specified Auto
|
|
2588
2587
|
# Scaling group to define and create instances in a new Auto Scaling
|
|
2589
2588
|
# group.
|
|
2590
2589
|
# @return [String]
|
|
@@ -2719,17 +2718,17 @@ module Aws::CodeDeploy
|
|
|
2719
2718
|
# @!attribute [rw] status
|
|
2720
2719
|
# The deployment status for this instance:
|
|
2721
2720
|
#
|
|
2722
|
-
# * `Pending
|
|
2721
|
+
# * `Pending`: The deployment is pending for this instance.
|
|
2723
2722
|
#
|
|
2724
|
-
# * `In Progress
|
|
2723
|
+
# * `In Progress`: The deployment is in progress for this instance.
|
|
2725
2724
|
#
|
|
2726
|
-
# * `Succeeded
|
|
2725
|
+
# * `Succeeded`: The deployment has succeeded for this instance.
|
|
2727
2726
|
#
|
|
2728
|
-
# * `Failed
|
|
2727
|
+
# * `Failed`: The deployment has failed for this instance.
|
|
2729
2728
|
#
|
|
2730
|
-
# * `Skipped
|
|
2729
|
+
# * `Skipped`: The deployment has been skipped for this instance.
|
|
2731
2730
|
#
|
|
2732
|
-
# * `Unknown
|
|
2731
|
+
# * `Unknown`: The deployment status is unknown for this instance.
|
|
2733
2732
|
# @return [String]
|
|
2734
2733
|
#
|
|
2735
2734
|
# @!attribute [rw] last_updated_at
|
|
@@ -3393,15 +3392,15 @@ module Aws::CodeDeploy
|
|
|
3393
3392
|
# @!attribute [rw] sort_by
|
|
3394
3393
|
# The column name to use to sort the list results:
|
|
3395
3394
|
#
|
|
3396
|
-
# * `registerTime
|
|
3395
|
+
# * `registerTime`: Sort by the time the revisions were registered
|
|
3397
3396
|
# with CodeDeploy.
|
|
3398
3397
|
#
|
|
3399
|
-
# * `firstUsedTime
|
|
3400
|
-
# in a deployment.
|
|
3401
|
-
#
|
|
3402
|
-
# * `lastUsedTime`\: Sort by the time the revisions were last used in
|
|
3398
|
+
# * `firstUsedTime`: Sort by the time the revisions were first used in
|
|
3403
3399
|
# a deployment.
|
|
3404
3400
|
#
|
|
3401
|
+
# * `lastUsedTime`: Sort by the time the revisions were last used in a
|
|
3402
|
+
# deployment.
|
|
3403
|
+
#
|
|
3405
3404
|
# If not specified or set to null, the results are returned in an
|
|
3406
3405
|
# arbitrary order.
|
|
3407
3406
|
# @return [String]
|
|
@@ -3409,9 +3408,9 @@ module Aws::CodeDeploy
|
|
|
3409
3408
|
# @!attribute [rw] sort_order
|
|
3410
3409
|
# The order in which to sort the list results:
|
|
3411
3410
|
#
|
|
3412
|
-
# * `ascending
|
|
3411
|
+
# * `ascending`: ascending order.
|
|
3413
3412
|
#
|
|
3414
|
-
# * `descending
|
|
3413
|
+
# * `descending`: descending order.
|
|
3415
3414
|
#
|
|
3416
3415
|
# If not specified, the results are sorted in ascending order.
|
|
3417
3416
|
#
|
|
@@ -3433,13 +3432,13 @@ module Aws::CodeDeploy
|
|
|
3433
3432
|
# Whether to list revisions based on whether the revision is the
|
|
3434
3433
|
# target revision of a deployment group:
|
|
3435
3434
|
#
|
|
3436
|
-
# * `include
|
|
3435
|
+
# * `include`: List revisions that are target revisions of a
|
|
3437
3436
|
# deployment group.
|
|
3438
3437
|
#
|
|
3439
|
-
# * `exclude
|
|
3438
|
+
# * `exclude`: Do not list revisions that are target revisions of a
|
|
3440
3439
|
# deployment group.
|
|
3441
3440
|
#
|
|
3442
|
-
# * `ignore
|
|
3441
|
+
# * `ignore`: List all revisions.
|
|
3443
3442
|
# @return [String]
|
|
3444
3443
|
#
|
|
3445
3444
|
# @!attribute [rw] next_token
|
|
@@ -3621,18 +3620,18 @@ module Aws::CodeDeploy
|
|
|
3621
3620
|
# @!attribute [rw] instance_status_filter
|
|
3622
3621
|
# A subset of instances to list by status:
|
|
3623
3622
|
#
|
|
3624
|
-
# * `Pending
|
|
3623
|
+
# * `Pending`: Include those instances with pending deployments.
|
|
3625
3624
|
#
|
|
3626
|
-
# * `InProgress
|
|
3625
|
+
# * `InProgress`: Include those instances where deployments are still
|
|
3627
3626
|
# in progress.
|
|
3628
3627
|
#
|
|
3629
|
-
# * `Succeeded
|
|
3628
|
+
# * `Succeeded`: Include those instances with successful deployments.
|
|
3630
3629
|
#
|
|
3631
|
-
# * `Failed
|
|
3630
|
+
# * `Failed`: Include those instances with failed deployments.
|
|
3632
3631
|
#
|
|
3633
|
-
# * `Skipped
|
|
3632
|
+
# * `Skipped`: Include those instances with skipped deployments.
|
|
3634
3633
|
#
|
|
3635
|
-
# * `Unknown
|
|
3634
|
+
# * `Unknown`: Include those instances with deployments in an unknown
|
|
3636
3635
|
# state.
|
|
3637
3636
|
# @return [Array<String>]
|
|
3638
3637
|
#
|
|
@@ -3757,19 +3756,18 @@ module Aws::CodeDeploy
|
|
|
3757
3756
|
# @!attribute [rw] include_only_statuses
|
|
3758
3757
|
# A subset of deployments to list by status:
|
|
3759
3758
|
#
|
|
3760
|
-
# * `Created
|
|
3759
|
+
# * `Created`: Include created deployments in the resulting list.
|
|
3761
3760
|
#
|
|
3762
|
-
# * `Queued
|
|
3761
|
+
# * `Queued`: Include queued deployments in the resulting list.
|
|
3763
3762
|
#
|
|
3764
|
-
# * `In Progress
|
|
3763
|
+
# * `In Progress`: Include in-progress deployments in the resulting
|
|
3765
3764
|
# list.
|
|
3766
3765
|
#
|
|
3767
|
-
# * `Succeeded
|
|
3768
|
-
# list.
|
|
3766
|
+
# * `Succeeded`: Include successful deployments in the resulting list.
|
|
3769
3767
|
#
|
|
3770
|
-
# * `Failed
|
|
3768
|
+
# * `Failed`: Include failed deployments in the resulting list.
|
|
3771
3769
|
#
|
|
3772
|
-
# * `Stopped
|
|
3770
|
+
# * `Stopped`: Include stopped deployments in the resulting list.
|
|
3773
3771
|
# @return [Array<String>]
|
|
3774
3772
|
#
|
|
3775
3773
|
# @!attribute [rw] create_time_range
|
|
@@ -3859,10 +3857,10 @@ module Aws::CodeDeploy
|
|
|
3859
3857
|
# @!attribute [rw] registration_status
|
|
3860
3858
|
# The registration status of the on-premises instances:
|
|
3861
3859
|
#
|
|
3862
|
-
# * `Deregistered
|
|
3860
|
+
# * `Deregistered`: Include deregistered on-premises instances in the
|
|
3863
3861
|
# resulting list.
|
|
3864
3862
|
#
|
|
3865
|
-
# * `Registered
|
|
3863
|
+
# * `Registered`: Include registered on-premises instances in the
|
|
3866
3864
|
# resulting list.
|
|
3867
3865
|
# @return [String]
|
|
3868
3866
|
#
|
|
@@ -3992,10 +3990,10 @@ module Aws::CodeDeploy
|
|
|
3992
3990
|
# @!attribute [rw] type
|
|
3993
3991
|
# The minimum healthy instance type:
|
|
3994
3992
|
#
|
|
3995
|
-
# * `HOST_COUNT
|
|
3993
|
+
# * `HOST_COUNT`: The minimum number of healthy instances as an
|
|
3996
3994
|
# absolute value.
|
|
3997
3995
|
#
|
|
3998
|
-
# * `FLEET_PERCENT
|
|
3996
|
+
# * `FLEET_PERCENT`: The minimum number of healthy instances as a
|
|
3999
3997
|
# percentage of the total number of instances in the deployment.
|
|
4000
3998
|
#
|
|
4001
3999
|
# In an example of nine instances, if a HOST\_COUNT of six is
|
|
@@ -4371,11 +4369,11 @@ module Aws::CodeDeploy
|
|
|
4371
4369
|
# The file type of the application revision. Must be one of the
|
|
4372
4370
|
# following:
|
|
4373
4371
|
#
|
|
4374
|
-
# * `tar
|
|
4372
|
+
# * `tar`: A tar archive file.
|
|
4375
4373
|
#
|
|
4376
|
-
# * `tgz
|
|
4374
|
+
# * `tgz`: A compressed tar archive file.
|
|
4377
4375
|
#
|
|
4378
|
-
# * `zip
|
|
4376
|
+
# * `zip`: A zip archive file.
|
|
4379
4377
|
# @return [String]
|
|
4380
4378
|
#
|
|
4381
4379
|
# @!attribute [rw] version
|
data/lib/aws-sdk-codedeploy.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-codedeploy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.53.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-
|
|
11
|
+
date: 2023-05-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.174.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.174.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|