aws-sdk-codedeploy 1.32.1 → 1.37.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-codedeploy.rb +5 -2
- data/lib/aws-sdk-codedeploy/client.rb +25 -8
- data/lib/aws-sdk-codedeploy/client_api.rb +2 -0
- data/lib/aws-sdk-codedeploy/customizations.rb +1 -0
- data/lib/aws-sdk-codedeploy/errors.rb +2 -0
- data/lib/aws-sdk-codedeploy/resource.rb +2 -0
- data/lib/aws-sdk-codedeploy/types.rb +136 -0
- data/lib/aws-sdk-codedeploy/waiters.rb +2 -0
- 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: fbe545cfb55da496cb80976f5474439e30d6cf32fa89469bab213cac06b25467
|
4
|
+
data.tar.gz: 2bee89cd28be8b0cb54ae9c74f466c345a91efb49b33eb26b2539a607c3c7879
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a882371d79489db507533a5f9330e8504843efba310ee7dd3060c4eebfca3831e71deb0f4c1974114cec06d10e27319232a1e0415e91d1f070b3513bc7d8138b
|
7
|
+
data.tar.gz: d887a7e530555a61fbe30c679167e37c42b31f644fb940d40efcb7f2f8e06a048437873bf88b915554ba05430bf49316df50411fca5f2fbdb48afc51e8ede271
|
data/lib/aws-sdk-codedeploy.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -43,9 +46,9 @@ require_relative 'aws-sdk-codedeploy/customizations'
|
|
43
46
|
#
|
44
47
|
# See {Errors} for more information.
|
45
48
|
#
|
46
|
-
#
|
49
|
+
# @!group service
|
47
50
|
module Aws::CodeDeploy
|
48
51
|
|
49
|
-
GEM_VERSION = '1.
|
52
|
+
GEM_VERSION = '1.37.0'
|
50
53
|
|
51
54
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -83,13 +85,28 @@ module Aws::CodeDeploy
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::CodeDeploy
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -3323,7 +3340,7 @@ module Aws::CodeDeploy
|
|
3323
3340
|
params: params,
|
3324
3341
|
config: config)
|
3325
3342
|
context[:gem_name] = 'aws-sdk-codedeploy'
|
3326
|
-
context[:gem_version] = '1.
|
3343
|
+
context[:gem_version] = '1.37.0'
|
3327
3344
|
Seahorse::Client::Request.new(handlers, context)
|
3328
3345
|
end
|
3329
3346
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -40,6 +42,7 @@ module Aws::CodeDeploy
|
|
40
42
|
class AddTagsToOnPremisesInstancesInput < Struct.new(
|
41
43
|
:tags,
|
42
44
|
:instance_names)
|
45
|
+
SENSITIVE = []
|
43
46
|
include Aws::Structure
|
44
47
|
end
|
45
48
|
|
@@ -61,6 +64,7 @@ module Aws::CodeDeploy
|
|
61
64
|
#
|
62
65
|
class Alarm < Struct.new(
|
63
66
|
:name)
|
67
|
+
SENSITIVE = []
|
64
68
|
include Aws::Structure
|
65
69
|
end
|
66
70
|
|
@@ -106,6 +110,7 @@ module Aws::CodeDeploy
|
|
106
110
|
:enabled,
|
107
111
|
:ignore_poll_alarm_failure,
|
108
112
|
:alarms)
|
113
|
+
SENSITIVE = []
|
109
114
|
include Aws::Structure
|
110
115
|
end
|
111
116
|
|
@@ -154,6 +159,7 @@ module Aws::CodeDeploy
|
|
154
159
|
class AppSpecContent < Struct.new(
|
155
160
|
:content,
|
156
161
|
:sha256)
|
162
|
+
SENSITIVE = []
|
157
163
|
include Aws::Structure
|
158
164
|
end
|
159
165
|
|
@@ -207,6 +213,7 @@ module Aws::CodeDeploy
|
|
207
213
|
:linked_to_git_hub,
|
208
214
|
:git_hub_account_name,
|
209
215
|
:compute_platform)
|
216
|
+
SENSITIVE = []
|
210
217
|
include Aws::Structure
|
211
218
|
end
|
212
219
|
|
@@ -255,6 +262,7 @@ module Aws::CodeDeploy
|
|
255
262
|
class AutoRollbackConfiguration < Struct.new(
|
256
263
|
:enabled,
|
257
264
|
:events)
|
265
|
+
SENSITIVE = []
|
258
266
|
include Aws::Structure
|
259
267
|
end
|
260
268
|
|
@@ -273,6 +281,7 @@ module Aws::CodeDeploy
|
|
273
281
|
class AutoScalingGroup < Struct.new(
|
274
282
|
:name,
|
275
283
|
:hook)
|
284
|
+
SENSITIVE = []
|
276
285
|
include Aws::Structure
|
277
286
|
end
|
278
287
|
|
@@ -326,6 +335,7 @@ module Aws::CodeDeploy
|
|
326
335
|
class BatchGetApplicationRevisionsInput < Struct.new(
|
327
336
|
:application_name,
|
328
337
|
:revisions)
|
338
|
+
SENSITIVE = []
|
329
339
|
include Aws::Structure
|
330
340
|
end
|
331
341
|
|
@@ -351,6 +361,7 @@ module Aws::CodeDeploy
|
|
351
361
|
:application_name,
|
352
362
|
:error_message,
|
353
363
|
:revisions)
|
364
|
+
SENSITIVE = []
|
354
365
|
include Aws::Structure
|
355
366
|
end
|
356
367
|
|
@@ -372,6 +383,7 @@ module Aws::CodeDeploy
|
|
372
383
|
#
|
373
384
|
class BatchGetApplicationsInput < Struct.new(
|
374
385
|
:application_names)
|
386
|
+
SENSITIVE = []
|
375
387
|
include Aws::Structure
|
376
388
|
end
|
377
389
|
|
@@ -385,6 +397,7 @@ module Aws::CodeDeploy
|
|
385
397
|
#
|
386
398
|
class BatchGetApplicationsOutput < Struct.new(
|
387
399
|
:applications_info)
|
400
|
+
SENSITIVE = []
|
388
401
|
include Aws::Structure
|
389
402
|
end
|
390
403
|
|
@@ -412,6 +425,7 @@ module Aws::CodeDeploy
|
|
412
425
|
class BatchGetDeploymentGroupsInput < Struct.new(
|
413
426
|
:application_name,
|
414
427
|
:deployment_group_names)
|
428
|
+
SENSITIVE = []
|
415
429
|
include Aws::Structure
|
416
430
|
end
|
417
431
|
|
@@ -431,6 +445,7 @@ module Aws::CodeDeploy
|
|
431
445
|
class BatchGetDeploymentGroupsOutput < Struct.new(
|
432
446
|
:deployment_groups_info,
|
433
447
|
:error_message)
|
448
|
+
SENSITIVE = []
|
434
449
|
include Aws::Structure
|
435
450
|
end
|
436
451
|
|
@@ -458,6 +473,7 @@ module Aws::CodeDeploy
|
|
458
473
|
class BatchGetDeploymentInstancesInput < Struct.new(
|
459
474
|
:deployment_id,
|
460
475
|
:instance_ids)
|
476
|
+
SENSITIVE = []
|
461
477
|
include Aws::Structure
|
462
478
|
end
|
463
479
|
|
@@ -477,6 +493,7 @@ module Aws::CodeDeploy
|
|
477
493
|
class BatchGetDeploymentInstancesOutput < Struct.new(
|
478
494
|
:instances_summary,
|
479
495
|
:error_message)
|
496
|
+
SENSITIVE = []
|
480
497
|
include Aws::Structure
|
481
498
|
end
|
482
499
|
|
@@ -520,6 +537,7 @@ module Aws::CodeDeploy
|
|
520
537
|
class BatchGetDeploymentTargetsInput < Struct.new(
|
521
538
|
:deployment_id,
|
522
539
|
:target_ids)
|
540
|
+
SENSITIVE = []
|
523
541
|
include Aws::Structure
|
524
542
|
end
|
525
543
|
|
@@ -545,6 +563,7 @@ module Aws::CodeDeploy
|
|
545
563
|
#
|
546
564
|
class BatchGetDeploymentTargetsOutput < Struct.new(
|
547
565
|
:deployment_targets)
|
566
|
+
SENSITIVE = []
|
548
567
|
include Aws::Structure
|
549
568
|
end
|
550
569
|
|
@@ -566,6 +585,7 @@ module Aws::CodeDeploy
|
|
566
585
|
#
|
567
586
|
class BatchGetDeploymentsInput < Struct.new(
|
568
587
|
:deployment_ids)
|
588
|
+
SENSITIVE = []
|
569
589
|
include Aws::Structure
|
570
590
|
end
|
571
591
|
|
@@ -579,6 +599,7 @@ module Aws::CodeDeploy
|
|
579
599
|
#
|
580
600
|
class BatchGetDeploymentsOutput < Struct.new(
|
581
601
|
:deployments_info)
|
602
|
+
SENSITIVE = []
|
582
603
|
include Aws::Structure
|
583
604
|
end
|
584
605
|
|
@@ -601,6 +622,7 @@ module Aws::CodeDeploy
|
|
601
622
|
#
|
602
623
|
class BatchGetOnPremisesInstancesInput < Struct.new(
|
603
624
|
:instance_names)
|
625
|
+
SENSITIVE = []
|
604
626
|
include Aws::Structure
|
605
627
|
end
|
606
628
|
|
@@ -614,6 +636,7 @@ module Aws::CodeDeploy
|
|
614
636
|
#
|
615
637
|
class BatchGetOnPremisesInstancesOutput < Struct.new(
|
616
638
|
:instance_infos)
|
639
|
+
SENSITIVE = []
|
617
640
|
include Aws::Structure
|
618
641
|
end
|
619
642
|
|
@@ -665,6 +688,7 @@ module Aws::CodeDeploy
|
|
665
688
|
:terminate_blue_instances_on_deployment_success,
|
666
689
|
:deployment_ready_option,
|
667
690
|
:green_fleet_provisioning_option)
|
691
|
+
SENSITIVE = []
|
668
692
|
include Aws::Structure
|
669
693
|
end
|
670
694
|
|
@@ -710,6 +734,7 @@ module Aws::CodeDeploy
|
|
710
734
|
class BlueInstanceTerminationOption < Struct.new(
|
711
735
|
:action,
|
712
736
|
:termination_wait_time_in_minutes)
|
737
|
+
SENSITIVE = []
|
713
738
|
include Aws::Structure
|
714
739
|
end
|
715
740
|
|
@@ -766,6 +791,7 @@ module Aws::CodeDeploy
|
|
766
791
|
:status,
|
767
792
|
:resource_type,
|
768
793
|
:target_version_weight)
|
794
|
+
SENSITIVE = []
|
769
795
|
include Aws::Structure
|
770
796
|
end
|
771
797
|
|
@@ -794,6 +820,7 @@ module Aws::CodeDeploy
|
|
794
820
|
class ContinueDeploymentInput < Struct.new(
|
795
821
|
:deployment_id,
|
796
822
|
:deployment_wait_type)
|
823
|
+
SENSITIVE = []
|
797
824
|
include Aws::Structure
|
798
825
|
end
|
799
826
|
|
@@ -835,6 +862,7 @@ module Aws::CodeDeploy
|
|
835
862
|
:application_name,
|
836
863
|
:compute_platform,
|
837
864
|
:tags)
|
865
|
+
SENSITIVE = []
|
838
866
|
include Aws::Structure
|
839
867
|
end
|
840
868
|
|
@@ -848,6 +876,7 @@ module Aws::CodeDeploy
|
|
848
876
|
#
|
849
877
|
class CreateApplicationOutput < Struct.new(
|
850
878
|
:application_id)
|
879
|
+
SENSITIVE = []
|
851
880
|
include Aws::Structure
|
852
881
|
end
|
853
882
|
|
@@ -920,6 +949,7 @@ module Aws::CodeDeploy
|
|
920
949
|
:minimum_healthy_hosts,
|
921
950
|
:traffic_routing_config,
|
922
951
|
:compute_platform)
|
952
|
+
SENSITIVE = []
|
923
953
|
include Aws::Structure
|
924
954
|
end
|
925
955
|
|
@@ -933,6 +963,7 @@ module Aws::CodeDeploy
|
|
933
963
|
#
|
934
964
|
class CreateDeploymentConfigOutput < Struct.new(
|
935
965
|
:deployment_config_id)
|
966
|
+
SENSITIVE = []
|
936
967
|
include Aws::Structure
|
937
968
|
end
|
938
969
|
|
@@ -1192,6 +1223,7 @@ module Aws::CodeDeploy
|
|
1192
1223
|
:ecs_services,
|
1193
1224
|
:on_premises_tag_set,
|
1194
1225
|
:tags)
|
1226
|
+
SENSITIVE = []
|
1195
1227
|
include Aws::Structure
|
1196
1228
|
end
|
1197
1229
|
|
@@ -1205,6 +1237,7 @@ module Aws::CodeDeploy
|
|
1205
1237
|
#
|
1206
1238
|
class CreateDeploymentGroupOutput < Struct.new(
|
1207
1239
|
:deployment_group_id)
|
1240
|
+
SENSITIVE = []
|
1208
1241
|
include Aws::Structure
|
1209
1242
|
end
|
1210
1243
|
|
@@ -1373,6 +1406,7 @@ module Aws::CodeDeploy
|
|
1373
1406
|
:auto_rollback_configuration,
|
1374
1407
|
:update_outdated_instances_only,
|
1375
1408
|
:file_exists_behavior)
|
1409
|
+
SENSITIVE = []
|
1376
1410
|
include Aws::Structure
|
1377
1411
|
end
|
1378
1412
|
|
@@ -1386,6 +1420,7 @@ module Aws::CodeDeploy
|
|
1386
1420
|
#
|
1387
1421
|
class CreateDeploymentOutput < Struct.new(
|
1388
1422
|
:deployment_id)
|
1423
|
+
SENSITIVE = []
|
1389
1424
|
include Aws::Structure
|
1390
1425
|
end
|
1391
1426
|
|
@@ -1407,6 +1442,7 @@ module Aws::CodeDeploy
|
|
1407
1442
|
#
|
1408
1443
|
class DeleteApplicationInput < Struct.new(
|
1409
1444
|
:application_name)
|
1445
|
+
SENSITIVE = []
|
1410
1446
|
include Aws::Structure
|
1411
1447
|
end
|
1412
1448
|
|
@@ -1428,6 +1464,7 @@ module Aws::CodeDeploy
|
|
1428
1464
|
#
|
1429
1465
|
class DeleteDeploymentConfigInput < Struct.new(
|
1430
1466
|
:deployment_config_name)
|
1467
|
+
SENSITIVE = []
|
1431
1468
|
include Aws::Structure
|
1432
1469
|
end
|
1433
1470
|
|
@@ -1455,6 +1492,7 @@ module Aws::CodeDeploy
|
|
1455
1492
|
class DeleteDeploymentGroupInput < Struct.new(
|
1456
1493
|
:application_name,
|
1457
1494
|
:deployment_group_name)
|
1495
|
+
SENSITIVE = []
|
1458
1496
|
include Aws::Structure
|
1459
1497
|
end
|
1460
1498
|
|
@@ -1474,6 +1512,7 @@ module Aws::CodeDeploy
|
|
1474
1512
|
#
|
1475
1513
|
class DeleteDeploymentGroupOutput < Struct.new(
|
1476
1514
|
:hooks_not_cleaned_up)
|
1515
|
+
SENSITIVE = []
|
1477
1516
|
include Aws::Structure
|
1478
1517
|
end
|
1479
1518
|
|
@@ -1494,6 +1533,7 @@ module Aws::CodeDeploy
|
|
1494
1533
|
#
|
1495
1534
|
class DeleteGitHubAccountTokenInput < Struct.new(
|
1496
1535
|
:token_name)
|
1536
|
+
SENSITIVE = []
|
1497
1537
|
include Aws::Structure
|
1498
1538
|
end
|
1499
1539
|
|
@@ -1507,6 +1547,7 @@ module Aws::CodeDeploy
|
|
1507
1547
|
#
|
1508
1548
|
class DeleteGitHubAccountTokenOutput < Struct.new(
|
1509
1549
|
:token_name)
|
1550
|
+
SENSITIVE = []
|
1510
1551
|
include Aws::Structure
|
1511
1552
|
end
|
1512
1553
|
|
@@ -1526,6 +1567,7 @@ module Aws::CodeDeploy
|
|
1526
1567
|
#
|
1527
1568
|
class DeleteResourcesByExternalIdInput < Struct.new(
|
1528
1569
|
:external_id)
|
1570
|
+
SENSITIVE = []
|
1529
1571
|
include Aws::Structure
|
1530
1572
|
end
|
1531
1573
|
|
@@ -1605,6 +1647,7 @@ module Aws::CodeDeploy
|
|
1605
1647
|
:create_time,
|
1606
1648
|
:compute_platform,
|
1607
1649
|
:traffic_routing_config)
|
1650
|
+
SENSITIVE = []
|
1608
1651
|
include Aws::Structure
|
1609
1652
|
end
|
1610
1653
|
|
@@ -1776,6 +1819,7 @@ module Aws::CodeDeploy
|
|
1776
1819
|
:on_premises_tag_set,
|
1777
1820
|
:compute_platform,
|
1778
1821
|
:ecs_services)
|
1822
|
+
SENSITIVE = []
|
1779
1823
|
include Aws::Structure
|
1780
1824
|
end
|
1781
1825
|
|
@@ -2006,6 +2050,7 @@ module Aws::CodeDeploy
|
|
2006
2050
|
:deployment_status_messages,
|
2007
2051
|
:compute_platform,
|
2008
2052
|
:external_id)
|
2053
|
+
SENSITIVE = []
|
2009
2054
|
include Aws::Structure
|
2010
2055
|
end
|
2011
2056
|
|
@@ -2066,6 +2111,7 @@ module Aws::CodeDeploy
|
|
2066
2111
|
:failed,
|
2067
2112
|
:skipped,
|
2068
2113
|
:ready)
|
2114
|
+
SENSITIVE = []
|
2069
2115
|
include Aws::Structure
|
2070
2116
|
end
|
2071
2117
|
|
@@ -2107,6 +2153,7 @@ module Aws::CodeDeploy
|
|
2107
2153
|
class DeploymentReadyOption < Struct.new(
|
2108
2154
|
:action_on_timeout,
|
2109
2155
|
:wait_time_in_minutes)
|
2156
|
+
SENSITIVE = []
|
2110
2157
|
include Aws::Structure
|
2111
2158
|
end
|
2112
2159
|
|
@@ -2137,6 +2184,7 @@ module Aws::CodeDeploy
|
|
2137
2184
|
class DeploymentStyle < Struct.new(
|
2138
2185
|
:deployment_type,
|
2139
2186
|
:deployment_option)
|
2187
|
+
SENSITIVE = []
|
2140
2188
|
include Aws::Structure
|
2141
2189
|
end
|
2142
2190
|
|
@@ -2176,6 +2224,7 @@ module Aws::CodeDeploy
|
|
2176
2224
|
:lambda_target,
|
2177
2225
|
:ecs_target,
|
2178
2226
|
:cloud_formation_target)
|
2227
|
+
SENSITIVE = []
|
2179
2228
|
include Aws::Structure
|
2180
2229
|
end
|
2181
2230
|
|
@@ -2217,6 +2266,7 @@ module Aws::CodeDeploy
|
|
2217
2266
|
#
|
2218
2267
|
class DeregisterOnPremisesInstanceInput < Struct.new(
|
2219
2268
|
:instance_name)
|
2269
|
+
SENSITIVE = []
|
2220
2270
|
include Aws::Structure
|
2221
2271
|
end
|
2222
2272
|
|
@@ -2271,6 +2321,7 @@ module Aws::CodeDeploy
|
|
2271
2321
|
:script_name,
|
2272
2322
|
:message,
|
2273
2323
|
:log_tail)
|
2324
|
+
SENSITIVE = []
|
2274
2325
|
include Aws::Structure
|
2275
2326
|
end
|
2276
2327
|
|
@@ -2309,6 +2360,7 @@ module Aws::CodeDeploy
|
|
2309
2360
|
:key,
|
2310
2361
|
:value,
|
2311
2362
|
:type)
|
2363
|
+
SENSITIVE = []
|
2312
2364
|
include Aws::Structure
|
2313
2365
|
end
|
2314
2366
|
|
@@ -2339,6 +2391,7 @@ module Aws::CodeDeploy
|
|
2339
2391
|
#
|
2340
2392
|
class EC2TagSet < Struct.new(
|
2341
2393
|
:ec2_tag_set_list)
|
2394
|
+
SENSITIVE = []
|
2342
2395
|
include Aws::Structure
|
2343
2396
|
end
|
2344
2397
|
|
@@ -2367,6 +2420,7 @@ module Aws::CodeDeploy
|
|
2367
2420
|
class ECSService < Struct.new(
|
2368
2421
|
:service_name,
|
2369
2422
|
:cluster_name)
|
2423
|
+
SENSITIVE = []
|
2370
2424
|
include Aws::Structure
|
2371
2425
|
end
|
2372
2426
|
|
@@ -2420,6 +2474,7 @@ module Aws::CodeDeploy
|
|
2420
2474
|
:lifecycle_events,
|
2421
2475
|
:status,
|
2422
2476
|
:task_sets_info)
|
2477
|
+
SENSITIVE = []
|
2423
2478
|
include Aws::Structure
|
2424
2479
|
end
|
2425
2480
|
|
@@ -2494,6 +2549,7 @@ module Aws::CodeDeploy
|
|
2494
2549
|
:traffic_weight,
|
2495
2550
|
:target_group,
|
2496
2551
|
:task_set_label)
|
2552
|
+
SENSITIVE = []
|
2497
2553
|
include Aws::Structure
|
2498
2554
|
end
|
2499
2555
|
|
@@ -2521,6 +2577,7 @@ module Aws::CodeDeploy
|
|
2521
2577
|
#
|
2522
2578
|
class ELBInfo < Struct.new(
|
2523
2579
|
:name)
|
2580
|
+
SENSITIVE = []
|
2524
2581
|
include Aws::Structure
|
2525
2582
|
end
|
2526
2583
|
|
@@ -2587,6 +2644,7 @@ module Aws::CodeDeploy
|
|
2587
2644
|
class ErrorInformation < Struct.new(
|
2588
2645
|
:code,
|
2589
2646
|
:message)
|
2647
|
+
SENSITIVE = []
|
2590
2648
|
include Aws::Structure
|
2591
2649
|
end
|
2592
2650
|
|
@@ -2620,6 +2678,7 @@ module Aws::CodeDeploy
|
|
2620
2678
|
:first_used_time,
|
2621
2679
|
:last_used_time,
|
2622
2680
|
:register_time)
|
2681
|
+
SENSITIVE = []
|
2623
2682
|
include Aws::Structure
|
2624
2683
|
end
|
2625
2684
|
|
@@ -2641,6 +2700,7 @@ module Aws::CodeDeploy
|
|
2641
2700
|
#
|
2642
2701
|
class GetApplicationInput < Struct.new(
|
2643
2702
|
:application_name)
|
2703
|
+
SENSITIVE = []
|
2644
2704
|
include Aws::Structure
|
2645
2705
|
end
|
2646
2706
|
|
@@ -2654,6 +2714,7 @@ module Aws::CodeDeploy
|
|
2654
2714
|
#
|
2655
2715
|
class GetApplicationOutput < Struct.new(
|
2656
2716
|
:application)
|
2717
|
+
SENSITIVE = []
|
2657
2718
|
include Aws::Structure
|
2658
2719
|
end
|
2659
2720
|
|
@@ -2702,6 +2763,7 @@ module Aws::CodeDeploy
|
|
2702
2763
|
class GetApplicationRevisionInput < Struct.new(
|
2703
2764
|
:application_name,
|
2704
2765
|
:revision)
|
2766
|
+
SENSITIVE = []
|
2705
2767
|
include Aws::Structure
|
2706
2768
|
end
|
2707
2769
|
|
@@ -2726,6 +2788,7 @@ module Aws::CodeDeploy
|
|
2726
2788
|
:application_name,
|
2727
2789
|
:revision,
|
2728
2790
|
:revision_info)
|
2791
|
+
SENSITIVE = []
|
2729
2792
|
include Aws::Structure
|
2730
2793
|
end
|
2731
2794
|
|
@@ -2747,6 +2810,7 @@ module Aws::CodeDeploy
|
|
2747
2810
|
#
|
2748
2811
|
class GetDeploymentConfigInput < Struct.new(
|
2749
2812
|
:deployment_config_name)
|
2813
|
+
SENSITIVE = []
|
2750
2814
|
include Aws::Structure
|
2751
2815
|
end
|
2752
2816
|
|
@@ -2760,6 +2824,7 @@ module Aws::CodeDeploy
|
|
2760
2824
|
#
|
2761
2825
|
class GetDeploymentConfigOutput < Struct.new(
|
2762
2826
|
:deployment_config_info)
|
2827
|
+
SENSITIVE = []
|
2763
2828
|
include Aws::Structure
|
2764
2829
|
end
|
2765
2830
|
|
@@ -2787,6 +2852,7 @@ module Aws::CodeDeploy
|
|
2787
2852
|
class GetDeploymentGroupInput < Struct.new(
|
2788
2853
|
:application_name,
|
2789
2854
|
:deployment_group_name)
|
2855
|
+
SENSITIVE = []
|
2790
2856
|
include Aws::Structure
|
2791
2857
|
end
|
2792
2858
|
|
@@ -2800,6 +2866,7 @@ module Aws::CodeDeploy
|
|
2800
2866
|
#
|
2801
2867
|
class GetDeploymentGroupOutput < Struct.new(
|
2802
2868
|
:deployment_group_info)
|
2869
|
+
SENSITIVE = []
|
2803
2870
|
include Aws::Structure
|
2804
2871
|
end
|
2805
2872
|
|
@@ -2821,6 +2888,7 @@ module Aws::CodeDeploy
|
|
2821
2888
|
#
|
2822
2889
|
class GetDeploymentInput < Struct.new(
|
2823
2890
|
:deployment_id)
|
2891
|
+
SENSITIVE = []
|
2824
2892
|
include Aws::Structure
|
2825
2893
|
end
|
2826
2894
|
|
@@ -2847,6 +2915,7 @@ module Aws::CodeDeploy
|
|
2847
2915
|
class GetDeploymentInstanceInput < Struct.new(
|
2848
2916
|
:deployment_id,
|
2849
2917
|
:instance_id)
|
2918
|
+
SENSITIVE = []
|
2850
2919
|
include Aws::Structure
|
2851
2920
|
end
|
2852
2921
|
|
@@ -2860,6 +2929,7 @@ module Aws::CodeDeploy
|
|
2860
2929
|
#
|
2861
2930
|
class GetDeploymentInstanceOutput < Struct.new(
|
2862
2931
|
:instance_summary)
|
2932
|
+
SENSITIVE = []
|
2863
2933
|
include Aws::Structure
|
2864
2934
|
end
|
2865
2935
|
|
@@ -2873,6 +2943,7 @@ module Aws::CodeDeploy
|
|
2873
2943
|
#
|
2874
2944
|
class GetDeploymentOutput < Struct.new(
|
2875
2945
|
:deployment_info)
|
2946
|
+
SENSITIVE = []
|
2876
2947
|
include Aws::Structure
|
2877
2948
|
end
|
2878
2949
|
|
@@ -2897,6 +2968,7 @@ module Aws::CodeDeploy
|
|
2897
2968
|
class GetDeploymentTargetInput < Struct.new(
|
2898
2969
|
:deployment_id,
|
2899
2970
|
:target_id)
|
2971
|
+
SENSITIVE = []
|
2900
2972
|
include Aws::Structure
|
2901
2973
|
end
|
2902
2974
|
|
@@ -2912,6 +2984,7 @@ module Aws::CodeDeploy
|
|
2912
2984
|
#
|
2913
2985
|
class GetDeploymentTargetOutput < Struct.new(
|
2914
2986
|
:deployment_target)
|
2987
|
+
SENSITIVE = []
|
2915
2988
|
include Aws::Structure
|
2916
2989
|
end
|
2917
2990
|
|
@@ -2932,6 +3005,7 @@ module Aws::CodeDeploy
|
|
2932
3005
|
#
|
2933
3006
|
class GetOnPremisesInstanceInput < Struct.new(
|
2934
3007
|
:instance_name)
|
3008
|
+
SENSITIVE = []
|
2935
3009
|
include Aws::Structure
|
2936
3010
|
end
|
2937
3011
|
|
@@ -2945,6 +3019,7 @@ module Aws::CodeDeploy
|
|
2945
3019
|
#
|
2946
3020
|
class GetOnPremisesInstanceOutput < Struct.new(
|
2947
3021
|
:instance_info)
|
3022
|
+
SENSITIVE = []
|
2948
3023
|
include Aws::Structure
|
2949
3024
|
end
|
2950
3025
|
|
@@ -2990,6 +3065,7 @@ module Aws::CodeDeploy
|
|
2990
3065
|
class GitHubLocation < Struct.new(
|
2991
3066
|
:repository,
|
2992
3067
|
:commit_id)
|
3068
|
+
SENSITIVE = []
|
2993
3069
|
include Aws::Structure
|
2994
3070
|
end
|
2995
3071
|
|
@@ -3018,6 +3094,7 @@ module Aws::CodeDeploy
|
|
3018
3094
|
#
|
3019
3095
|
class GreenFleetProvisioningOption < Struct.new(
|
3020
3096
|
:action)
|
3097
|
+
SENSITIVE = []
|
3021
3098
|
include Aws::Structure
|
3022
3099
|
end
|
3023
3100
|
|
@@ -3101,6 +3178,7 @@ module Aws::CodeDeploy
|
|
3101
3178
|
:register_time,
|
3102
3179
|
:deregister_time,
|
3103
3180
|
:tags)
|
3181
|
+
SENSITIVE = []
|
3104
3182
|
include Aws::Structure
|
3105
3183
|
end
|
3106
3184
|
|
@@ -3182,6 +3260,7 @@ module Aws::CodeDeploy
|
|
3182
3260
|
:last_updated_at,
|
3183
3261
|
:lifecycle_events,
|
3184
3262
|
:instance_type)
|
3263
|
+
SENSITIVE = []
|
3185
3264
|
include Aws::Structure
|
3186
3265
|
end
|
3187
3266
|
|
@@ -3229,6 +3308,7 @@ module Aws::CodeDeploy
|
|
3229
3308
|
:last_updated_at,
|
3230
3309
|
:lifecycle_events,
|
3231
3310
|
:instance_label)
|
3311
|
+
SENSITIVE = []
|
3232
3312
|
include Aws::Structure
|
3233
3313
|
end
|
3234
3314
|
|
@@ -3662,6 +3742,7 @@ module Aws::CodeDeploy
|
|
3662
3742
|
:current_version,
|
3663
3743
|
:target_version,
|
3664
3744
|
:target_version_weight)
|
3745
|
+
SENSITIVE = []
|
3665
3746
|
include Aws::Structure
|
3666
3747
|
end
|
3667
3748
|
|
@@ -3710,6 +3791,7 @@ module Aws::CodeDeploy
|
|
3710
3791
|
:last_updated_at,
|
3711
3792
|
:lifecycle_events,
|
3712
3793
|
:lambda_function_info)
|
3794
|
+
SENSITIVE = []
|
3713
3795
|
include Aws::Structure
|
3714
3796
|
end
|
3715
3797
|
|
@@ -3741,6 +3823,7 @@ module Aws::CodeDeploy
|
|
3741
3823
|
:status,
|
3742
3824
|
:end_time,
|
3743
3825
|
:create_time)
|
3826
|
+
SENSITIVE = []
|
3744
3827
|
include Aws::Structure
|
3745
3828
|
end
|
3746
3829
|
|
@@ -3790,6 +3873,7 @@ module Aws::CodeDeploy
|
|
3790
3873
|
:start_time,
|
3791
3874
|
:end_time,
|
3792
3875
|
:status)
|
3876
|
+
SENSITIVE = []
|
3793
3877
|
include Aws::Structure
|
3794
3878
|
end
|
3795
3879
|
|
@@ -3894,6 +3978,7 @@ module Aws::CodeDeploy
|
|
3894
3978
|
:s3_key_prefix,
|
3895
3979
|
:deployed,
|
3896
3980
|
:next_token)
|
3981
|
+
SENSITIVE = []
|
3897
3982
|
include Aws::Structure
|
3898
3983
|
end
|
3899
3984
|
|
@@ -3914,6 +3999,7 @@ module Aws::CodeDeploy
|
|
3914
3999
|
class ListApplicationRevisionsOutput < Struct.new(
|
3915
4000
|
:revisions,
|
3916
4001
|
:next_token)
|
4002
|
+
SENSITIVE = []
|
3917
4003
|
include Aws::Structure
|
3918
4004
|
end
|
3919
4005
|
|
@@ -3935,6 +4021,7 @@ module Aws::CodeDeploy
|
|
3935
4021
|
#
|
3936
4022
|
class ListApplicationsInput < Struct.new(
|
3937
4023
|
:next_token)
|
4024
|
+
SENSITIVE = []
|
3938
4025
|
include Aws::Structure
|
3939
4026
|
end
|
3940
4027
|
|
@@ -3955,6 +4042,7 @@ module Aws::CodeDeploy
|
|
3955
4042
|
class ListApplicationsOutput < Struct.new(
|
3956
4043
|
:applications,
|
3957
4044
|
:next_token)
|
4045
|
+
SENSITIVE = []
|
3958
4046
|
include Aws::Structure
|
3959
4047
|
end
|
3960
4048
|
|
@@ -3977,6 +4065,7 @@ module Aws::CodeDeploy
|
|
3977
4065
|
#
|
3978
4066
|
class ListDeploymentConfigsInput < Struct.new(
|
3979
4067
|
:next_token)
|
4068
|
+
SENSITIVE = []
|
3980
4069
|
include Aws::Structure
|
3981
4070
|
end
|
3982
4071
|
|
@@ -3999,6 +4088,7 @@ module Aws::CodeDeploy
|
|
3999
4088
|
class ListDeploymentConfigsOutput < Struct.new(
|
4000
4089
|
:deployment_configs_list,
|
4001
4090
|
:next_token)
|
4091
|
+
SENSITIVE = []
|
4002
4092
|
include Aws::Structure
|
4003
4093
|
end
|
4004
4094
|
|
@@ -4028,6 +4118,7 @@ module Aws::CodeDeploy
|
|
4028
4118
|
class ListDeploymentGroupsInput < Struct.new(
|
4029
4119
|
:application_name,
|
4030
4120
|
:next_token)
|
4121
|
+
SENSITIVE = []
|
4031
4122
|
include Aws::Structure
|
4032
4123
|
end
|
4033
4124
|
|
@@ -4053,6 +4144,7 @@ module Aws::CodeDeploy
|
|
4053
4144
|
:application_name,
|
4054
4145
|
:deployment_groups,
|
4055
4146
|
:next_token)
|
4147
|
+
SENSITIVE = []
|
4056
4148
|
include Aws::Structure
|
4057
4149
|
end
|
4058
4150
|
|
@@ -4110,6 +4202,7 @@ module Aws::CodeDeploy
|
|
4110
4202
|
:next_token,
|
4111
4203
|
:instance_status_filter,
|
4112
4204
|
:instance_type_filter)
|
4205
|
+
SENSITIVE = []
|
4113
4206
|
include Aws::Structure
|
4114
4207
|
end
|
4115
4208
|
|
@@ -4130,6 +4223,7 @@ module Aws::CodeDeploy
|
|
4130
4223
|
class ListDeploymentInstancesOutput < Struct.new(
|
4131
4224
|
:instances_list,
|
4132
4225
|
:next_token)
|
4226
|
+
SENSITIVE = []
|
4133
4227
|
include Aws::Structure
|
4134
4228
|
end
|
4135
4229
|
|
@@ -4171,6 +4265,7 @@ module Aws::CodeDeploy
|
|
4171
4265
|
:deployment_id,
|
4172
4266
|
:next_token,
|
4173
4267
|
:target_filters)
|
4268
|
+
SENSITIVE = []
|
4174
4269
|
include Aws::Structure
|
4175
4270
|
end
|
4176
4271
|
|
@@ -4190,6 +4285,7 @@ module Aws::CodeDeploy
|
|
4190
4285
|
class ListDeploymentTargetsOutput < Struct.new(
|
4191
4286
|
:target_ids,
|
4192
4287
|
:next_token)
|
4288
|
+
SENSITIVE = []
|
4193
4289
|
include Aws::Structure
|
4194
4290
|
end
|
4195
4291
|
|
@@ -4273,6 +4369,7 @@ module Aws::CodeDeploy
|
|
4273
4369
|
:include_only_statuses,
|
4274
4370
|
:create_time_range,
|
4275
4371
|
:next_token)
|
4372
|
+
SENSITIVE = []
|
4276
4373
|
include Aws::Structure
|
4277
4374
|
end
|
4278
4375
|
|
@@ -4293,6 +4390,7 @@ module Aws::CodeDeploy
|
|
4293
4390
|
class ListDeploymentsOutput < Struct.new(
|
4294
4391
|
:deployments,
|
4295
4392
|
:next_token)
|
4393
|
+
SENSITIVE = []
|
4296
4394
|
include Aws::Structure
|
4297
4395
|
end
|
4298
4396
|
|
@@ -4315,6 +4413,7 @@ module Aws::CodeDeploy
|
|
4315
4413
|
#
|
4316
4414
|
class ListGitHubAccountTokenNamesInput < Struct.new(
|
4317
4415
|
:next_token)
|
4416
|
+
SENSITIVE = []
|
4318
4417
|
include Aws::Structure
|
4319
4418
|
end
|
4320
4419
|
|
@@ -4336,6 +4435,7 @@ module Aws::CodeDeploy
|
|
4336
4435
|
class ListGitHubAccountTokenNamesOutput < Struct.new(
|
4337
4436
|
:token_name_list,
|
4338
4437
|
:next_token)
|
4438
|
+
SENSITIVE = []
|
4339
4439
|
include Aws::Structure
|
4340
4440
|
end
|
4341
4441
|
|
@@ -4383,6 +4483,7 @@ module Aws::CodeDeploy
|
|
4383
4483
|
:registration_status,
|
4384
4484
|
:tag_filters,
|
4385
4485
|
:next_token)
|
4486
|
+
SENSITIVE = []
|
4386
4487
|
include Aws::Structure
|
4387
4488
|
end
|
4388
4489
|
|
@@ -4403,6 +4504,7 @@ module Aws::CodeDeploy
|
|
4403
4504
|
class ListOnPremisesInstancesOutput < Struct.new(
|
4404
4505
|
:instance_names,
|
4405
4506
|
:next_token)
|
4507
|
+
SENSITIVE = []
|
4406
4508
|
include Aws::Structure
|
4407
4509
|
end
|
4408
4510
|
|
@@ -4430,6 +4532,7 @@ module Aws::CodeDeploy
|
|
4430
4532
|
class ListTagsForResourceInput < Struct.new(
|
4431
4533
|
:resource_arn,
|
4432
4534
|
:next_token)
|
4535
|
+
SENSITIVE = []
|
4433
4536
|
include Aws::Structure
|
4434
4537
|
end
|
4435
4538
|
|
@@ -4450,6 +4553,7 @@ module Aws::CodeDeploy
|
|
4450
4553
|
class ListTagsForResourceOutput < Struct.new(
|
4451
4554
|
:tags,
|
4452
4555
|
:next_token)
|
4556
|
+
SENSITIVE = []
|
4453
4557
|
include Aws::Structure
|
4454
4558
|
end
|
4455
4559
|
|
@@ -4518,6 +4622,7 @@ module Aws::CodeDeploy
|
|
4518
4622
|
:elb_info_list,
|
4519
4623
|
:target_group_info_list,
|
4520
4624
|
:target_group_pair_info_list)
|
4625
|
+
SENSITIVE = []
|
4521
4626
|
include Aws::Structure
|
4522
4627
|
end
|
4523
4628
|
|
@@ -4578,6 +4683,7 @@ module Aws::CodeDeploy
|
|
4578
4683
|
class MinimumHealthyHosts < Struct.new(
|
4579
4684
|
:value,
|
4580
4685
|
:type)
|
4686
|
+
SENSITIVE = []
|
4581
4687
|
include Aws::Structure
|
4582
4688
|
end
|
4583
4689
|
|
@@ -4615,6 +4721,7 @@ module Aws::CodeDeploy
|
|
4615
4721
|
#
|
4616
4722
|
class OnPremisesTagSet < Struct.new(
|
4617
4723
|
:on_premises_tag_set_list)
|
4724
|
+
SENSITIVE = []
|
4618
4725
|
include Aws::Structure
|
4619
4726
|
end
|
4620
4727
|
|
@@ -4655,6 +4762,7 @@ module Aws::CodeDeploy
|
|
4655
4762
|
:deployment_id,
|
4656
4763
|
:lifecycle_event_hook_execution_id,
|
4657
4764
|
:status)
|
4765
|
+
SENSITIVE = []
|
4658
4766
|
include Aws::Structure
|
4659
4767
|
end
|
4660
4768
|
|
@@ -4667,6 +4775,7 @@ module Aws::CodeDeploy
|
|
4667
4775
|
#
|
4668
4776
|
class PutLifecycleEventHookExecutionStatusOutput < Struct.new(
|
4669
4777
|
:lifecycle_event_hook_execution_id)
|
4778
|
+
SENSITIVE = []
|
4670
4779
|
include Aws::Structure
|
4671
4780
|
end
|
4672
4781
|
|
@@ -4697,6 +4806,7 @@ module Aws::CodeDeploy
|
|
4697
4806
|
class RawString < Struct.new(
|
4698
4807
|
:content,
|
4699
4808
|
:sha256)
|
4809
|
+
SENSITIVE = []
|
4700
4810
|
include Aws::Structure
|
4701
4811
|
end
|
4702
4812
|
|
@@ -4752,6 +4862,7 @@ module Aws::CodeDeploy
|
|
4752
4862
|
:application_name,
|
4753
4863
|
:description,
|
4754
4864
|
:revision)
|
4865
|
+
SENSITIVE = []
|
4755
4866
|
include Aws::Structure
|
4756
4867
|
end
|
4757
4868
|
|
@@ -4785,6 +4896,7 @@ module Aws::CodeDeploy
|
|
4785
4896
|
:instance_name,
|
4786
4897
|
:iam_session_arn,
|
4787
4898
|
:iam_user_arn)
|
4899
|
+
SENSITIVE = []
|
4788
4900
|
include Aws::Structure
|
4789
4901
|
end
|
4790
4902
|
|
@@ -4817,6 +4929,7 @@ module Aws::CodeDeploy
|
|
4817
4929
|
class RemoveTagsFromOnPremisesInstancesInput < Struct.new(
|
4818
4930
|
:tags,
|
4819
4931
|
:instance_names)
|
4932
|
+
SENSITIVE = []
|
4820
4933
|
include Aws::Structure
|
4821
4934
|
end
|
4822
4935
|
|
@@ -4854,6 +4967,7 @@ module Aws::CodeDeploy
|
|
4854
4967
|
class RevisionInfo < Struct.new(
|
4855
4968
|
:revision_location,
|
4856
4969
|
:generic_revision_info)
|
4970
|
+
SENSITIVE = []
|
4857
4971
|
include Aws::Structure
|
4858
4972
|
end
|
4859
4973
|
|
@@ -4930,6 +5044,7 @@ module Aws::CodeDeploy
|
|
4930
5044
|
:git_hub_location,
|
4931
5045
|
:string,
|
4932
5046
|
:app_spec_content)
|
5047
|
+
SENSITIVE = []
|
4933
5048
|
include Aws::Structure
|
4934
5049
|
end
|
4935
5050
|
|
@@ -4968,6 +5083,7 @@ module Aws::CodeDeploy
|
|
4968
5083
|
:rollback_deployment_id,
|
4969
5084
|
:rollback_triggering_deployment_id,
|
4970
5085
|
:rollback_message)
|
5086
|
+
SENSITIVE = []
|
4971
5087
|
include Aws::Structure
|
4972
5088
|
end
|
4973
5089
|
|
@@ -5030,6 +5146,7 @@ module Aws::CodeDeploy
|
|
5030
5146
|
:bundle_type,
|
5031
5147
|
:version,
|
5032
5148
|
:e_tag)
|
5149
|
+
SENSITIVE = []
|
5033
5150
|
include Aws::Structure
|
5034
5151
|
end
|
5035
5152
|
|
@@ -5049,6 +5166,7 @@ module Aws::CodeDeploy
|
|
5049
5166
|
#
|
5050
5167
|
class SkipWaitTimeForInstanceTerminationInput < Struct.new(
|
5051
5168
|
:deployment_id)
|
5169
|
+
SENSITIVE = []
|
5052
5170
|
include Aws::Structure
|
5053
5171
|
end
|
5054
5172
|
|
@@ -5077,6 +5195,7 @@ module Aws::CodeDeploy
|
|
5077
5195
|
class StopDeploymentInput < Struct.new(
|
5078
5196
|
:deployment_id,
|
5079
5197
|
:auto_rollback_enabled)
|
5198
|
+
SENSITIVE = []
|
5080
5199
|
include Aws::Structure
|
5081
5200
|
end
|
5082
5201
|
|
@@ -5099,6 +5218,7 @@ module Aws::CodeDeploy
|
|
5099
5218
|
class StopDeploymentOutput < Struct.new(
|
5100
5219
|
:status,
|
5101
5220
|
:status_message)
|
5221
|
+
SENSITIVE = []
|
5102
5222
|
include Aws::Structure
|
5103
5223
|
end
|
5104
5224
|
|
@@ -5125,6 +5245,7 @@ module Aws::CodeDeploy
|
|
5125
5245
|
class Tag < Struct.new(
|
5126
5246
|
:key,
|
5127
5247
|
:value)
|
5248
|
+
SENSITIVE = []
|
5128
5249
|
include Aws::Structure
|
5129
5250
|
end
|
5130
5251
|
|
@@ -5163,6 +5284,7 @@ module Aws::CodeDeploy
|
|
5163
5284
|
:key,
|
5164
5285
|
:value,
|
5165
5286
|
:type)
|
5287
|
+
SENSITIVE = []
|
5166
5288
|
include Aws::Structure
|
5167
5289
|
end
|
5168
5290
|
|
@@ -5206,6 +5328,7 @@ module Aws::CodeDeploy
|
|
5206
5328
|
class TagResourceInput < Struct.new(
|
5207
5329
|
:resource_arn,
|
5208
5330
|
:tags)
|
5331
|
+
SENSITIVE = []
|
5209
5332
|
include Aws::Structure
|
5210
5333
|
end
|
5211
5334
|
|
@@ -5245,6 +5368,7 @@ module Aws::CodeDeploy
|
|
5245
5368
|
#
|
5246
5369
|
class TargetGroupInfo < Struct.new(
|
5247
5370
|
:name)
|
5371
|
+
SENSITIVE = []
|
5248
5372
|
include Aws::Structure
|
5249
5373
|
end
|
5250
5374
|
|
@@ -5292,6 +5416,7 @@ module Aws::CodeDeploy
|
|
5292
5416
|
:target_groups,
|
5293
5417
|
:prod_traffic_route,
|
5294
5418
|
:test_traffic_route)
|
5419
|
+
SENSITIVE = []
|
5295
5420
|
include Aws::Structure
|
5296
5421
|
end
|
5297
5422
|
|
@@ -5347,6 +5472,7 @@ module Aws::CodeDeploy
|
|
5347
5472
|
:tag_filters,
|
5348
5473
|
:auto_scaling_groups,
|
5349
5474
|
:ec2_tag_set)
|
5475
|
+
SENSITIVE = []
|
5350
5476
|
include Aws::Structure
|
5351
5477
|
end
|
5352
5478
|
|
@@ -5384,6 +5510,7 @@ module Aws::CodeDeploy
|
|
5384
5510
|
class TimeBasedCanary < Struct.new(
|
5385
5511
|
:canary_percentage,
|
5386
5512
|
:canary_interval)
|
5513
|
+
SENSITIVE = []
|
5387
5514
|
include Aws::Structure
|
5388
5515
|
end
|
5389
5516
|
|
@@ -5416,6 +5543,7 @@ module Aws::CodeDeploy
|
|
5416
5543
|
class TimeBasedLinear < Struct.new(
|
5417
5544
|
:linear_percentage,
|
5418
5545
|
:linear_interval)
|
5546
|
+
SENSITIVE = []
|
5419
5547
|
include Aws::Structure
|
5420
5548
|
end
|
5421
5549
|
|
@@ -5450,6 +5578,7 @@ module Aws::CodeDeploy
|
|
5450
5578
|
class TimeRange < Struct.new(
|
5451
5579
|
:start,
|
5452
5580
|
:end)
|
5581
|
+
SENSITIVE = []
|
5453
5582
|
include Aws::Structure
|
5454
5583
|
end
|
5455
5584
|
|
@@ -5474,6 +5603,7 @@ module Aws::CodeDeploy
|
|
5474
5603
|
#
|
5475
5604
|
class TrafficRoute < Struct.new(
|
5476
5605
|
:listener_arns)
|
5606
|
+
SENSITIVE = []
|
5477
5607
|
include Aws::Structure
|
5478
5608
|
end
|
5479
5609
|
|
@@ -5523,6 +5653,7 @@ module Aws::CodeDeploy
|
|
5523
5653
|
:type,
|
5524
5654
|
:time_based_canary,
|
5525
5655
|
:time_based_linear)
|
5656
|
+
SENSITIVE = []
|
5526
5657
|
include Aws::Structure
|
5527
5658
|
end
|
5528
5659
|
|
@@ -5557,6 +5688,7 @@ module Aws::CodeDeploy
|
|
5557
5688
|
:trigger_name,
|
5558
5689
|
:trigger_target_arn,
|
5559
5690
|
:trigger_events)
|
5691
|
+
SENSITIVE = []
|
5560
5692
|
include Aws::Structure
|
5561
5693
|
end
|
5562
5694
|
|
@@ -5598,6 +5730,7 @@ module Aws::CodeDeploy
|
|
5598
5730
|
class UntagResourceInput < Struct.new(
|
5599
5731
|
:resource_arn,
|
5600
5732
|
:tag_keys)
|
5733
|
+
SENSITIVE = []
|
5601
5734
|
include Aws::Structure
|
5602
5735
|
end
|
5603
5736
|
|
@@ -5628,6 +5761,7 @@ module Aws::CodeDeploy
|
|
5628
5761
|
class UpdateApplicationInput < Struct.new(
|
5629
5762
|
:application_name,
|
5630
5763
|
:new_application_name)
|
5764
|
+
SENSITIVE = []
|
5631
5765
|
include Aws::Structure
|
5632
5766
|
end
|
5633
5767
|
|
@@ -5867,6 +6001,7 @@ module Aws::CodeDeploy
|
|
5867
6001
|
:ec2_tag_set,
|
5868
6002
|
:ecs_services,
|
5869
6003
|
:on_premises_tag_set)
|
6004
|
+
SENSITIVE = []
|
5870
6005
|
include Aws::Structure
|
5871
6006
|
end
|
5872
6007
|
|
@@ -5885,6 +6020,7 @@ module Aws::CodeDeploy
|
|
5885
6020
|
#
|
5886
6021
|
class UpdateDeploymentGroupOutput < Struct.new(
|
5887
6022
|
:hooks_not_cleaned_up)
|
6023
|
+
SENSITIVE = []
|
5888
6024
|
include Aws::Structure
|
5889
6025
|
end
|
5890
6026
|
|
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.37.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: 2020-
|
11
|
+
date: 2020-09-30 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.109.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.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|