Skip to content

Commit f187dd2

Browse files
Updated API models and rebuilt service gems.
1 parent ffd96a8 commit f187dd2

File tree

97 files changed

+10395
-329
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+10395
-329
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -420,6 +420,7 @@ RubyGems.org page under "LINKS" section.
420420
| AWS Organizations | Aws::Organizations | aws-sdk-organizations | 2016-11-28 |
421421
| AWS Outposts | Aws::Outposts | aws-sdk-outposts | 2019-12-03 |
422422
| AWS Panorama | Aws::Panorama | aws-sdk-panorama | 2019-07-24 |
423+
| AWS Parallel Computing Service | Aws::PCS | aws-sdk-pcs | 2023-02-10 |
423424
| AWS Performance Insights | Aws::PI | aws-sdk-pi | 2018-02-27 |
424425
| AWS Price List Service | Aws::Pricing | aws-sdk-pricing | 2017-10-15 |
425426
| AWS Private 5G | Aws::PrivateNetworks | aws-sdk-privatenetworks | 2021-12-03 |

apis/appconfig/2019-10-09/api-2.json

Lines changed: 84 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,19 @@
227227
{"shape":"InternalServerException"}
228228
]
229229
},
230+
"GetAccountSettings":{
231+
"name":"GetAccountSettings",
232+
"http":{
233+
"method":"GET",
234+
"requestUri":"/settings",
235+
"responseCode":200
236+
},
237+
"output":{"shape":"AccountSettings"},
238+
"errors":[
239+
{"shape":"InternalServerException"},
240+
{"shape":"BadRequestException"}
241+
]
242+
},
230243
"GetApplication":{
231244
"name":"GetApplication",
232245
"http":{
@@ -554,6 +567,20 @@
554567
{"shape":"InternalServerException"}
555568
]
556569
},
570+
"UpdateAccountSettings":{
571+
"name":"UpdateAccountSettings",
572+
"http":{
573+
"method":"PATCH",
574+
"requestUri":"/settings",
575+
"responseCode":200
576+
},
577+
"input":{"shape":"UpdateAccountSettingsRequest"},
578+
"output":{"shape":"AccountSettings"},
579+
"errors":[
580+
{"shape":"BadRequestException"},
581+
{"shape":"InternalServerException"}
582+
]
583+
},
557584
"UpdateApplication":{
558585
"name":"UpdateApplication",
559586
"http":{
@@ -661,6 +688,12 @@
661688
}
662689
},
663690
"shapes":{
691+
"AccountSettings":{
692+
"type":"structure",
693+
"members":{
694+
"DeletionProtection":{"shape":"DeletionProtectionSettings"}
695+
}
696+
},
664697
"Action":{
665698
"type":"structure",
666699
"members":{
@@ -747,7 +780,7 @@
747780
"type":"string",
748781
"max":2048,
749782
"min":20,
750-
"pattern":"arn:(aws[a-zA-Z-]*)?:[a-z]+:([a-z]{2}((-gov)|(-iso(b?)))?-[a-z]+-\\d{1})?:(\\d{12})?:[a-zA-Z0-9-_/:.]+"
783+
"pattern":"arn:(aws[a-zA-Z-]*)?:[a-z]+:([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\\d{1})?:(\\d{12})?:[a-zA-Z0-9-_/:.]+"
751784
},
752785
"BadRequestDetails":{
753786
"type":"structure",
@@ -1027,6 +1060,11 @@
10271060
"shape":"Id",
10281061
"location":"uri",
10291062
"locationName":"ConfigurationProfileId"
1063+
},
1064+
"DeletionProtectionCheck":{
1065+
"shape":"DeletionProtectionCheck",
1066+
"location":"header",
1067+
"locationName":"x-amzn-deletion-protection-check"
10301068
}
10311069
}
10321070
},
@@ -1044,19 +1082,24 @@
10441082
"DeleteEnvironmentRequest":{
10451083
"type":"structure",
10461084
"required":[
1047-
"ApplicationId",
1048-
"EnvironmentId"
1085+
"EnvironmentId",
1086+
"ApplicationId"
10491087
],
10501088
"members":{
1051-
"ApplicationId":{
1089+
"EnvironmentId":{
10521090
"shape":"Id",
10531091
"location":"uri",
1054-
"locationName":"ApplicationId"
1092+
"locationName":"EnvironmentId"
10551093
},
1056-
"EnvironmentId":{
1094+
"ApplicationId":{
10571095
"shape":"Id",
10581096
"location":"uri",
1059-
"locationName":"EnvironmentId"
1097+
"locationName":"ApplicationId"
1098+
},
1099+
"DeletionProtectionCheck":{
1100+
"shape":"DeletionProtectionCheck",
1101+
"location":"header",
1102+
"locationName":"x-amzn-deletion-protection-check"
10601103
}
10611104
}
10621105
},
@@ -1113,6 +1156,33 @@
11131156
}
11141157
}
11151158
},
1159+
"DeletionProtectionCheck":{
1160+
"type":"string",
1161+
"enum":[
1162+
"ACCOUNT_DEFAULT",
1163+
"APPLY",
1164+
"BYPASS"
1165+
]
1166+
},
1167+
"DeletionProtectionDuration":{
1168+
"type":"integer",
1169+
"box":true,
1170+
"max":1440,
1171+
"min":15
1172+
},
1173+
"DeletionProtectionSettings":{
1174+
"type":"structure",
1175+
"members":{
1176+
"Enabled":{
1177+
"shape":"Boolean",
1178+
"box":true
1179+
},
1180+
"ProtectionPeriodInMinutes":{
1181+
"shape":"DeletionProtectionDuration",
1182+
"box":true
1183+
}
1184+
}
1185+
},
11161186
"Deployment":{
11171187
"type":"structure",
11181188
"members":{
@@ -2116,6 +2186,12 @@
21162186
}
21172187
}
21182188
},
2189+
"UpdateAccountSettingsRequest":{
2190+
"type":"structure",
2191+
"members":{
2192+
"DeletionProtection":{"shape":"DeletionProtectionSettings"}
2193+
}
2194+
},
21192195
"UpdateApplicationRequest":{
21202196
"type":"structure",
21212197
"required":["ApplicationId"],
@@ -2146,7 +2222,7 @@
21462222
"location":"uri",
21472223
"locationName":"ConfigurationProfileId"
21482224
},
2149-
"Name":{"shape":"Name"},
2225+
"Name":{"shape":"LongName"},
21502226
"Description":{"shape":"Description"},
21512227
"RetrievalRoleArn":{"shape":"RoleArn"},
21522228
"Validators":{"shape":"ValidatorList"},

0 commit comments

Comments
 (0)