aws-sdk-core 2.6.1 → 2.6.2

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
  SHA1:
3
- metadata.gz: 6670eace891cce93cdc82ebb472f56e9e6aae106
4
- data.tar.gz: 1439e21b23d626fc15f3efec6bfc93f2a5c54dc3
3
+ metadata.gz: 0148e834fc9d1a41989880a002b3a77daca02364
4
+ data.tar.gz: 7bed2295783762e6a5e34b706e314217e19fa481
5
5
  SHA512:
6
- metadata.gz: db2b2a10d50a44dc65cdf9d37e8c51d880eaeec7177f359c95fe3643a680bc94a54a0c2f6cd17fb0224f2c885bc1a80fa3c702fda7f06e2193cbf3c4325e5d54
7
- data.tar.gz: e9d196443f770fe7b6444721c7ec40836963319e1801bb8f9743bc4c361c7e51d6ffe76ed5c9365f5a38c1d36dc73c1ad2adc09249f583de01e3298d6dc0b44d
6
+ metadata.gz: 24e13ff2a449b67dac1f5a3be78fefec2adfb0d606c922b4dc1818b30e3005e663e2e782d793099b04754128e3fbfe6b6986a86ac05ca17635ce8f6f570f72b7
7
+ data.tar.gz: baaa17d9c6f3e0383e45d1006d107b0735a2b5623b265a634b3cd390cd86be670cdb1a816cab3f976a34096b1b95c27255218365bea9cad48c7475d283a3b381
@@ -153,11 +153,13 @@
153
153
  {"shape":"InvalidDeploymentGroupNameException"},
154
154
  {"shape":"DeploymentGroupDoesNotExistException"},
155
155
  {"shape":"RevisionRequiredException"},
156
+ {"shape":"RevisionDoesNotExistException"},
156
157
  {"shape":"InvalidRevisionException"},
157
158
  {"shape":"InvalidDeploymentConfigNameException"},
158
159
  {"shape":"DeploymentConfigDoesNotExistException"},
159
160
  {"shape":"DescriptionTooLongException"},
160
- {"shape":"DeploymentLimitExceededException"}
161
+ {"shape":"DeploymentLimitExceededException"},
162
+ {"shape":"InvalidAutoRollbackConfigException"}
161
163
  ]
162
164
  },
163
165
  "CreateDeploymentConfig":{
@@ -201,7 +203,10 @@
201
203
  {"shape":"DeploymentGroupLimitExceededException"},
202
204
  {"shape":"LifecycleHookLimitExceededException"},
203
205
  {"shape":"InvalidTriggerConfigException"},
204
- {"shape":"TriggerTargetsLimitExceededException"}
206
+ {"shape":"TriggerTargetsLimitExceededException"},
207
+ {"shape":"InvalidAlarmConfigException"},
208
+ {"shape":"AlarmsLimitExceededException"},
209
+ {"shape":"InvalidAutoRollbackConfigException"}
205
210
  ]
206
211
  },
207
212
  "DeleteApplication":{
@@ -577,7 +582,10 @@
577
582
  {"shape":"InvalidRoleException"},
578
583
  {"shape":"LifecycleHookLimitExceededException"},
579
584
  {"shape":"InvalidTriggerConfigException"},
580
- {"shape":"TriggerTargetsLimitExceededException"}
585
+ {"shape":"TriggerTargetsLimitExceededException"},
586
+ {"shape":"InvalidAlarmConfigException"},
587
+ {"shape":"AlarmsLimitExceededException"},
588
+ {"shape":"InvalidAutoRollbackConfigException"}
581
589
  ]
582
590
  }
583
591
  },
@@ -593,6 +601,31 @@
593
601
  "instanceNames":{"shape":"InstanceNameList"}
594
602
  }
595
603
  },
604
+ "Alarm":{
605
+ "type":"structure",
606
+ "members":{
607
+ "name":{"shape":"AlarmName"}
608
+ }
609
+ },
610
+ "AlarmConfiguration":{
611
+ "type":"structure",
612
+ "members":{
613
+ "enabled":{"shape":"Boolean"},
614
+ "ignorePollAlarmFailure":{"shape":"Boolean"},
615
+ "alarms":{"shape":"AlarmList"}
616
+ }
617
+ },
618
+ "AlarmList":{
619
+ "type":"list",
620
+ "member":{"shape":"Alarm"}
621
+ },
622
+ "AlarmName":{"type":"string"},
623
+ "AlarmsLimitExceededException":{
624
+ "type":"structure",
625
+ "members":{
626
+ },
627
+ "exception":true
628
+ },
596
629
  "ApplicationAlreadyExistsException":{
597
630
  "type":"structure",
598
631
  "members":{
@@ -648,6 +681,25 @@
648
681
  "type":"list",
649
682
  "member":{"shape":"ApplicationName"}
650
683
  },
684
+ "AutoRollbackConfiguration":{
685
+ "type":"structure",
686
+ "members":{
687
+ "enabled":{"shape":"Boolean"},
688
+ "events":{"shape":"AutoRollbackEventsList"}
689
+ }
690
+ },
691
+ "AutoRollbackEvent":{
692
+ "type":"string",
693
+ "enum":[
694
+ "DEPLOYMENT_FAILURE",
695
+ "DEPLOYMENT_STOP_ON_ALARM",
696
+ "DEPLOYMENT_STOP_ON_REQUEST"
697
+ ]
698
+ },
699
+ "AutoRollbackEventsList":{
700
+ "type":"list",
701
+ "member":{"shape":"AutoRollbackEvent"}
702
+ },
651
703
  "AutoScalingGroup":{
652
704
  "type":"structure",
653
705
  "members":{
@@ -820,7 +872,9 @@
820
872
  "onPremisesInstanceTagFilters":{"shape":"TagFilterList"},
821
873
  "autoScalingGroups":{"shape":"AutoScalingGroupNameList"},
822
874
  "serviceRoleArn":{"shape":"Role"},
823
- "triggerConfigurations":{"shape":"TriggerConfigList"}
875
+ "triggerConfigurations":{"shape":"TriggerConfigList"},
876
+ "alarmConfiguration":{"shape":"AlarmConfiguration"},
877
+ "autoRollbackConfiguration":{"shape":"AutoRollbackConfiguration"}
824
878
  }
825
879
  },
826
880
  "CreateDeploymentGroupOutput":{
@@ -838,7 +892,9 @@
838
892
  "revision":{"shape":"RevisionLocation"},
839
893
  "deploymentConfigName":{"shape":"DeploymentConfigName"},
840
894
  "description":{"shape":"Description"},
841
- "ignoreApplicationStopFailures":{"shape":"Boolean"}
895
+ "ignoreApplicationStopFailures":{"shape":"Boolean"},
896
+ "autoRollbackConfiguration":{"shape":"AutoRollbackConfiguration"},
897
+ "updateOutdatedInstancesOnly":{"shape":"Boolean"}
842
898
  }
843
899
  },
844
900
  "CreateDeploymentOutput":{
@@ -937,7 +993,8 @@
937
993
  "type":"string",
938
994
  "enum":[
939
995
  "user",
940
- "autoscaling"
996
+ "autoscaling",
997
+ "codeDeployRollback"
941
998
  ]
942
999
  },
943
1000
  "DeploymentDoesNotExistException":{
@@ -971,7 +1028,9 @@
971
1028
  "autoScalingGroups":{"shape":"AutoScalingGroupList"},
972
1029
  "serviceRoleArn":{"shape":"Role"},
973
1030
  "targetRevision":{"shape":"RevisionLocation"},
974
- "triggerConfigurations":{"shape":"TriggerConfigList"}
1031
+ "triggerConfigurations":{"shape":"TriggerConfigList"},
1032
+ "alarmConfiguration":{"shape":"AlarmConfiguration"},
1033
+ "autoRollbackConfiguration":{"shape":"AutoRollbackConfiguration"}
975
1034
  }
976
1035
  },
977
1036
  "DeploymentGroupInfoList":{
@@ -1022,7 +1081,10 @@
1022
1081
  "deploymentOverview":{"shape":"DeploymentOverview"},
1023
1082
  "description":{"shape":"Description"},
1024
1083
  "creator":{"shape":"DeploymentCreator"},
1025
- "ignoreApplicationStopFailures":{"shape":"Boolean"}
1084
+ "ignoreApplicationStopFailures":{"shape":"Boolean"},
1085
+ "autoRollbackConfiguration":{"shape":"AutoRollbackConfiguration"},
1086
+ "updateOutdatedInstancesOnly":{"shape":"Boolean"},
1087
+ "rollbackInfo":{"shape":"RollbackInfo"}
1026
1088
  }
1027
1089
  },
1028
1090
  "DeploymentLimitExceededException":{
@@ -1129,7 +1191,12 @@
1129
1191
  "HEALTH_CONSTRAINTS_INVALID",
1130
1192
  "HEALTH_CONSTRAINTS",
1131
1193
  "INTERNAL_ERROR",
1132
- "THROTTLED"
1194
+ "THROTTLED",
1195
+ "ALARM_ACTIVE",
1196
+ "AGENT_ISSUE",
1197
+ "AUTO_SCALING_IAM_ROLE_PERMISSIONS",
1198
+ "AUTO_SCALING_CONFIGURATION",
1199
+ "MANUAL_STOP"
1133
1200
  ]
1134
1201
  },
1135
1202
  "ErrorInformation":{
@@ -1367,12 +1434,24 @@
1367
1434
  "type":"list",
1368
1435
  "member":{"shape":"InstanceId"}
1369
1436
  },
1437
+ "InvalidAlarmConfigException":{
1438
+ "type":"structure",
1439
+ "members":{
1440
+ },
1441
+ "exception":true
1442
+ },
1370
1443
  "InvalidApplicationNameException":{
1371
1444
  "type":"structure",
1372
1445
  "members":{
1373
1446
  },
1374
1447
  "exception":true
1375
1448
  },
1449
+ "InvalidAutoRollbackConfigException":{
1450
+ "type":"structure",
1451
+ "members":{
1452
+ },
1453
+ "exception":true
1454
+ },
1376
1455
  "InvalidAutoScalingGroupException":{
1377
1456
  "type":"structure",
1378
1457
  "members":{
@@ -1698,6 +1777,7 @@
1698
1777
  },
1699
1778
  "MinimumHealthyHostsValue":{"type":"integer"},
1700
1779
  "NextToken":{"type":"string"},
1780
+ "NullableBoolean":{"type":"boolean"},
1701
1781
  "RegisterApplicationRevisionInput":{
1702
1782
  "type":"structure",
1703
1783
  "required":[
@@ -1789,6 +1869,14 @@
1789
1869
  },
1790
1870
  "exception":true
1791
1871
  },
1872
+ "RollbackInfo":{
1873
+ "type":"structure",
1874
+ "members":{
1875
+ "rollbackDeploymentId":{"shape":"DeploymentId"},
1876
+ "rollbackTriggeringDeploymentId":{"shape":"DeploymentId"},
1877
+ "rollbackMessage":{"shape":"Description"}
1878
+ }
1879
+ },
1792
1880
  "S3Bucket":{"type":"string"},
1793
1881
  "S3Key":{"type":"string"},
1794
1882
  "S3Location":{
@@ -1813,7 +1901,8 @@
1813
1901
  "type":"structure",
1814
1902
  "required":["deploymentId"],
1815
1903
  "members":{
1816
- "deploymentId":{"shape":"DeploymentId"}
1904
+ "deploymentId":{"shape":"DeploymentId"},
1905
+ "autoRollbackEnabled":{"shape":"NullableBoolean"}
1817
1906
  }
1818
1907
  },
1819
1908
  "StopDeploymentOutput":{
@@ -1900,6 +1989,7 @@
1900
1989
  "DeploymentSuccess",
1901
1990
  "DeploymentFailure",
1902
1991
  "DeploymentStop",
1992
+ "DeploymentRollback",
1903
1993
  "InstanceStart",
1904
1994
  "InstanceSuccess",
1905
1995
  "InstanceFailure"
@@ -1939,7 +2029,9 @@
1939
2029
  "onPremisesInstanceTagFilters":{"shape":"TagFilterList"},
1940
2030
  "autoScalingGroups":{"shape":"AutoScalingGroupNameList"},
1941
2031
  "serviceRoleArn":{"shape":"Role"},
1942
- "triggerConfigurations":{"shape":"TriggerConfigList"}
2032
+ "triggerConfigurations":{"shape":"TriggerConfigList"},
2033
+ "alarmConfiguration":{"shape":"AlarmConfiguration"},
2034
+ "autoRollbackConfiguration":{"shape":"AutoRollbackConfiguration"}
1943
2035
  }
1944
2036
  },
1945
2037
  "UpdateDeploymentGroupOutput":{
@@ -49,6 +49,32 @@
49
49
  {"shape":"InvalidRequestException"}
50
50
  ]
51
51
  },
52
+ "CreateSecurityConfiguration":{
53
+ "name":"CreateSecurityConfiguration",
54
+ "http":{
55
+ "method":"POST",
56
+ "requestUri":"/"
57
+ },
58
+ "input":{"shape":"CreateSecurityConfigurationInput"},
59
+ "output":{"shape":"CreateSecurityConfigurationOutput"},
60
+ "errors":[
61
+ {"shape":"InternalServerException"},
62
+ {"shape":"InvalidRequestException"}
63
+ ]
64
+ },
65
+ "DeleteSecurityConfiguration":{
66
+ "name":"DeleteSecurityConfiguration",
67
+ "http":{
68
+ "method":"POST",
69
+ "requestUri":"/"
70
+ },
71
+ "input":{"shape":"DeleteSecurityConfigurationInput"},
72
+ "output":{"shape":"DeleteSecurityConfigurationOutput"},
73
+ "errors":[
74
+ {"shape":"InternalServerException"},
75
+ {"shape":"InvalidRequestException"}
76
+ ]
77
+ },
52
78
  "DescribeCluster":{
53
79
  "name":"DescribeCluster",
54
80
  "http":{
@@ -75,6 +101,19 @@
75
101
  ],
76
102
  "deprecated":true
77
103
  },
104
+ "DescribeSecurityConfiguration":{
105
+ "name":"DescribeSecurityConfiguration",
106
+ "http":{
107
+ "method":"POST",
108
+ "requestUri":"/"
109
+ },
110
+ "input":{"shape":"DescribeSecurityConfigurationInput"},
111
+ "output":{"shape":"DescribeSecurityConfigurationOutput"},
112
+ "errors":[
113
+ {"shape":"InternalServerException"},
114
+ {"shape":"InvalidRequestException"}
115
+ ]
116
+ },
78
117
  "DescribeStep":{
79
118
  "name":"DescribeStep",
80
119
  "http":{
@@ -140,6 +179,19 @@
140
179
  {"shape":"InvalidRequestException"}
141
180
  ]
142
181
  },
182
+ "ListSecurityConfigurations":{
183
+ "name":"ListSecurityConfigurations",
184
+ "http":{
185
+ "method":"POST",
186
+ "requestUri":"/"
187
+ },
188
+ "input":{"shape":"ListSecurityConfigurationsInput"},
189
+ "output":{"shape":"ListSecurityConfigurationsOutput"},
190
+ "errors":[
191
+ {"shape":"InternalServerException"},
192
+ {"shape":"InvalidRequestException"}
193
+ ]
194
+ },
143
195
  "ListSteps":{
144
196
  "name":"ListSteps",
145
197
  "http":{
@@ -343,7 +395,8 @@
343
395
  "ServiceRole":{"shape":"String"},
344
396
  "NormalizedInstanceHours":{"shape":"Integer"},
345
397
  "MasterPublicDnsName":{"shape":"String"},
346
- "Configurations":{"shape":"ConfigurationList"}
398
+ "Configurations":{"shape":"ConfigurationList"},
399
+ "SecurityConfiguration":{"shape":"XmlString"}
347
400
  }
348
401
  },
349
402
  "ClusterId":{"type":"string"},
@@ -435,7 +488,41 @@
435
488
  "type":"list",
436
489
  "member":{"shape":"Configuration"}
437
490
  },
491
+ "CreateSecurityConfigurationInput":{
492
+ "type":"structure",
493
+ "required":[
494
+ "Name",
495
+ "SecurityConfiguration"
496
+ ],
497
+ "members":{
498
+ "Name":{"shape":"XmlString"},
499
+ "SecurityConfiguration":{"shape":"String"}
500
+ }
501
+ },
502
+ "CreateSecurityConfigurationOutput":{
503
+ "type":"structure",
504
+ "required":[
505
+ "Name",
506
+ "CreationDateTime"
507
+ ],
508
+ "members":{
509
+ "Name":{"shape":"XmlString"},
510
+ "CreationDateTime":{"shape":"Date"}
511
+ }
512
+ },
438
513
  "Date":{"type":"timestamp"},
514
+ "DeleteSecurityConfigurationInput":{
515
+ "type":"structure",
516
+ "required":["Name"],
517
+ "members":{
518
+ "Name":{"shape":"XmlString"}
519
+ }
520
+ },
521
+ "DeleteSecurityConfigurationOutput":{
522
+ "type":"structure",
523
+ "members":{
524
+ }
525
+ },
439
526
  "DescribeClusterInput":{
440
527
  "type":"structure",
441
528
  "required":["ClusterId"],
@@ -464,6 +551,21 @@
464
551
  "JobFlows":{"shape":"JobFlowDetailList"}
465
552
  }
466
553
  },
554
+ "DescribeSecurityConfigurationInput":{
555
+ "type":"structure",
556
+ "required":["Name"],
557
+ "members":{
558
+ "Name":{"shape":"XmlString"}
559
+ }
560
+ },
561
+ "DescribeSecurityConfigurationOutput":{
562
+ "type":"structure",
563
+ "members":{
564
+ "Name":{"shape":"XmlString"},
565
+ "SecurityConfiguration":{"shape":"String"},
566
+ "CreationDateTime":{"shape":"Date"}
567
+ }
568
+ },
467
569
  "DescribeStepInput":{
468
570
  "type":"structure",
469
571
  "required":[
@@ -1019,6 +1121,19 @@
1019
1121
  "Marker":{"shape":"Marker"}
1020
1122
  }
1021
1123
  },
1124
+ "ListSecurityConfigurationsInput":{
1125
+ "type":"structure",
1126
+ "members":{
1127
+ "Marker":{"shape":"Marker"}
1128
+ }
1129
+ },
1130
+ "ListSecurityConfigurationsOutput":{
1131
+ "type":"structure",
1132
+ "members":{
1133
+ "SecurityConfigurations":{"shape":"SecurityConfigurationList"},
1134
+ "Marker":{"shape":"Marker"}
1135
+ }
1136
+ },
1022
1137
  "ListStepsInput":{
1023
1138
  "type":"structure",
1024
1139
  "required":["ClusterId"],
@@ -1100,7 +1215,8 @@
1100
1215
  "VisibleToAllUsers":{"shape":"Boolean"},
1101
1216
  "JobFlowRole":{"shape":"XmlString"},
1102
1217
  "ServiceRole":{"shape":"XmlString"},
1103
- "Tags":{"shape":"TagList"}
1218
+ "Tags":{"shape":"TagList"},
1219
+ "SecurityConfiguration":{"shape":"XmlString"}
1104
1220
  }
1105
1221
  },
1106
1222
  "RunJobFlowOutput":{
@@ -1117,6 +1233,17 @@
1117
1233
  "Args":{"shape":"XmlStringList"}
1118
1234
  }
1119
1235
  },
1236
+ "SecurityConfigurationList":{
1237
+ "type":"list",
1238
+ "member":{"shape":"SecurityConfigurationSummary"}
1239
+ },
1240
+ "SecurityConfigurationSummary":{
1241
+ "type":"structure",
1242
+ "members":{
1243
+ "Name":{"shape":"XmlString"},
1244
+ "CreationDateTime":{"shape":"Date"}
1245
+ }
1246
+ },
1120
1247
  "SecurityGroupsList":{
1121
1248
  "type":"list",
1122
1249
  "member":{"shape":"XmlStringMaxLen256"}
@@ -1869,7 +1869,8 @@
1869
1869
  "MonitoringInterval":{"shape":"IntegerOptional"},
1870
1870
  "MonitoringRoleArn":{"shape":"String"},
1871
1871
  "DomainIAMRoleName":{"shape":"String"},
1872
- "PromotionTier":{"shape":"IntegerOptional"}
1872
+ "PromotionTier":{"shape":"IntegerOptional"},
1873
+ "Timezone":{"shape":"String"}
1873
1874
  }
1874
1875
  },
1875
1876
  "CreateDBInstanceReadReplicaMessage":{
@@ -2282,7 +2283,8 @@
2282
2283
  "DBEngineVersionDescription":{"shape":"String"},
2283
2284
  "DefaultCharacterSet":{"shape":"CharacterSet"},
2284
2285
  "SupportedCharacterSets":{"shape":"SupportedCharacterSetsList"},
2285
- "ValidUpgradeTarget":{"shape":"ValidUpgradeTargetList"}
2286
+ "ValidUpgradeTarget":{"shape":"ValidUpgradeTargetList"},
2287
+ "SupportedTimezones":{"shape":"SupportedTimezonesList"}
2286
2288
  }
2287
2289
  },
2288
2290
  "DBEngineVersionList":{
@@ -2347,7 +2349,8 @@
2347
2349
  "EnhancedMonitoringResourceArn":{"shape":"String"},
2348
2350
  "MonitoringRoleArn":{"shape":"String"},
2349
2351
  "PromotionTier":{"shape":"IntegerOptional"},
2350
- "DBInstanceArn":{"shape":"String"}
2352
+ "DBInstanceArn":{"shape":"String"},
2353
+ "Timezone":{"shape":"String"}
2351
2354
  },
2352
2355
  "wrapper":true
2353
2356
  },
@@ -2616,7 +2619,8 @@
2616
2619
  "TdeCredentialArn":{"shape":"String"},
2617
2620
  "Encrypted":{"shape":"Boolean"},
2618
2621
  "KmsKeyId":{"shape":"String"},
2619
- "DBSnapshotArn":{"shape":"String"}
2622
+ "DBSnapshotArn":{"shape":"String"},
2623
+ "Timezone":{"shape":"String"}
2620
2624
  },
2621
2625
  "wrapper":true
2622
2626
  },
@@ -2965,7 +2969,8 @@
2965
2969
  "MaxRecords":{"shape":"IntegerOptional"},
2966
2970
  "Marker":{"shape":"String"},
2967
2971
  "DefaultOnly":{"shape":"Boolean"},
2968
- "ListSupportedCharacterSets":{"shape":"BooleanOptional"}
2972
+ "ListSupportedCharacterSets":{"shape":"BooleanOptional"},
2973
+ "ListSupportedTimezones":{"shape":"BooleanOptional"}
2969
2974
  }
2970
2975
  },
2971
2976
  "DescribeDBInstancesMessage":{
@@ -4865,6 +4870,13 @@
4865
4870
  "locationName":"CharacterSet"
4866
4871
  }
4867
4872
  },
4873
+ "SupportedTimezonesList":{
4874
+ "type":"list",
4875
+ "member":{
4876
+ "shape":"Timezone",
4877
+ "locationName":"Timezone"
4878
+ }
4879
+ },
4868
4880
  "TStamp":{"type":"timestamp"},
4869
4881
  "Tag":{
4870
4882
  "type":"structure",
@@ -4886,6 +4898,12 @@
4886
4898
  "TagList":{"shape":"TagList"}
4887
4899
  }
4888
4900
  },
4901
+ "Timezone":{
4902
+ "type":"structure",
4903
+ "members":{
4904
+ "TimezoneName":{"shape":"String"}
4905
+ }
4906
+ },
4889
4907
  "UpgradeTarget":{
4890
4908
  "type":"structure",
4891
4909
  "members":{