Skip to content

Commit d0700c1

Browse files
Release v1.44.200 (2023-02-13) (#4723)
Release v1.44.200 (2023-02-13) === ### Service Client Updates * `service/account`: Updates service API, documentation, and paginators * `service/appconfigdata`: Updates service API and documentation * `service/snowball`: Updates service API and documentation * Adds support for EKS Anywhere on Snowball. AWS Snow Family customers can now install EKS Anywhere service on Snowball Edge Compute Optimized devices.
1 parent 41717ba commit d0700c1

24 files changed

+5378
-89
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
Release v1.44.200 (2023-02-13)
2+
===
3+
4+
### Service Client Updates
5+
* `service/account`: Updates service API, documentation, and paginators
6+
* `service/appconfigdata`: Updates service API and documentation
7+
* `service/snowball`: Updates service API and documentation
8+
* Adds support for EKS Anywhere on Snowball. AWS Snow Family customers can now install EKS Anywhere service on Snowball Edge Compute Optimized devices.
9+
110
Release v1.44.199 (2023-02-10)
211
===
312

aws/endpoints/defaults.go

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.44.199"
8+
const SDKVersion = "1.44.200"

models/apis/account/2021-02-01/api-2.json

+193-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,38 @@
2929
],
3030
"idempotent":true
3131
},
32+
"DisableRegion":{
33+
"name":"DisableRegion",
34+
"http":{
35+
"method":"POST",
36+
"requestUri":"/disableRegion",
37+
"responseCode":200
38+
},
39+
"input":{"shape":"DisableRegionRequest"},
40+
"errors":[
41+
{"shape":"ValidationException"},
42+
{"shape":"ConflictException"},
43+
{"shape":"AccessDeniedException"},
44+
{"shape":"TooManyRequestsException"},
45+
{"shape":"InternalServerException"}
46+
]
47+
},
48+
"EnableRegion":{
49+
"name":"EnableRegion",
50+
"http":{
51+
"method":"POST",
52+
"requestUri":"/enableRegion",
53+
"responseCode":200
54+
},
55+
"input":{"shape":"EnableRegionRequest"},
56+
"errors":[
57+
{"shape":"ValidationException"},
58+
{"shape":"ConflictException"},
59+
{"shape":"AccessDeniedException"},
60+
{"shape":"TooManyRequestsException"},
61+
{"shape":"InternalServerException"}
62+
]
63+
},
3264
"GetAlternateContact":{
3365
"name":"GetAlternateContact",
3466
"http":{
@@ -63,6 +95,38 @@
6395
{"shape":"InternalServerException"}
6496
]
6597
},
98+
"GetRegionOptStatus":{
99+
"name":"GetRegionOptStatus",
100+
"http":{
101+
"method":"POST",
102+
"requestUri":"/getRegionOptStatus",
103+
"responseCode":200
104+
},
105+
"input":{"shape":"GetRegionOptStatusRequest"},
106+
"output":{"shape":"GetRegionOptStatusResponse"},
107+
"errors":[
108+
{"shape":"ValidationException"},
109+
{"shape":"AccessDeniedException"},
110+
{"shape":"TooManyRequestsException"},
111+
{"shape":"InternalServerException"}
112+
]
113+
},
114+
"ListRegions":{
115+
"name":"ListRegions",
116+
"http":{
117+
"method":"POST",
118+
"requestUri":"/listRegions",
119+
"responseCode":200
120+
},
121+
"input":{"shape":"ListRegionsRequest"},
122+
"output":{"shape":"ListRegionsResponse"},
123+
"errors":[
124+
{"shape":"ValidationException"},
125+
{"shape":"AccessDeniedException"},
126+
{"shape":"TooManyRequestsException"},
127+
{"shape":"InternalServerException"}
128+
]
129+
},
66130
"PutAlternateContact":{
67131
"name":"PutAlternateContact",
68132
"http":{
@@ -149,6 +213,18 @@
149213
"min":1,
150214
"sensitive":true
151215
},
216+
"ConflictException":{
217+
"type":"structure",
218+
"required":["message"],
219+
"members":{
220+
"message":{"shape":"String"}
221+
},
222+
"error":{
223+
"httpStatusCode":409,
224+
"senderFault":true
225+
},
226+
"exception":true
227+
},
152228
"ContactInformation":{
153229
"type":"structure",
154230
"required":[
@@ -195,6 +271,14 @@
195271
"AlternateContactType":{"shape":"AlternateContactType"}
196272
}
197273
},
274+
"DisableRegionRequest":{
275+
"type":"structure",
276+
"required":["RegionName"],
277+
"members":{
278+
"AccountId":{"shape":"AccountId"},
279+
"RegionName":{"shape":"RegionName"}
280+
}
281+
},
198282
"DistrictOrCounty":{
199283
"type":"string",
200284
"max":50,
@@ -208,6 +292,14 @@
208292
"pattern":"^[\\s]*[\\w+=.#!&-]+@[\\w.-]+\\.[\\w]+[\\s]*$",
209293
"sensitive":true
210294
},
295+
"EnableRegionRequest":{
296+
"type":"structure",
297+
"required":["RegionName"],
298+
"members":{
299+
"AccountId":{"shape":"AccountId"},
300+
"RegionName":{"shape":"RegionName"}
301+
}
302+
},
211303
"FullName":{
212304
"type":"string",
213305
"max":50,
@@ -240,6 +332,21 @@
240332
"ContactInformation":{"shape":"ContactInformation"}
241333
}
242334
},
335+
"GetRegionOptStatusRequest":{
336+
"type":"structure",
337+
"required":["RegionName"],
338+
"members":{
339+
"AccountId":{"shape":"AccountId"},
340+
"RegionName":{"shape":"RegionName"}
341+
}
342+
},
343+
"GetRegionOptStatusResponse":{
344+
"type":"structure",
345+
"members":{
346+
"RegionName":{"shape":"RegionName"},
347+
"RegionOptStatus":{"shape":"RegionOptStatus"}
348+
}
349+
},
243350
"InternalServerException":{
244351
"type":"structure",
245352
"required":["message"],
@@ -251,6 +358,33 @@
251358
"fault":true,
252359
"retryable":{"throttling":false}
253360
},
361+
"ListRegionsRequest":{
362+
"type":"structure",
363+
"members":{
364+
"AccountId":{"shape":"AccountId"},
365+
"MaxResults":{"shape":"ListRegionsRequestMaxResultsInteger"},
366+
"NextToken":{"shape":"ListRegionsRequestNextTokenString"},
367+
"RegionOptStatusContains":{"shape":"RegionOptStatusList"}
368+
}
369+
},
370+
"ListRegionsRequestMaxResultsInteger":{
371+
"type":"integer",
372+
"box":true,
373+
"max":50,
374+
"min":1
375+
},
376+
"ListRegionsRequestNextTokenString":{
377+
"type":"string",
378+
"max":1000,
379+
"min":0
380+
},
381+
"ListRegionsResponse":{
382+
"type":"structure",
383+
"members":{
384+
"NextToken":{"shape":"String"},
385+
"Regions":{"shape":"RegionOptList"}
386+
}
387+
},
254388
"Name":{
255389
"type":"string",
256390
"max":64,
@@ -296,6 +430,36 @@
296430
"ContactInformation":{"shape":"ContactInformation"}
297431
}
298432
},
433+
"Region":{
434+
"type":"structure",
435+
"members":{
436+
"RegionName":{"shape":"RegionName"},
437+
"RegionOptStatus":{"shape":"RegionOptStatus"}
438+
}
439+
},
440+
"RegionName":{
441+
"type":"string",
442+
"max":50,
443+
"min":1
444+
},
445+
"RegionOptList":{
446+
"type":"list",
447+
"member":{"shape":"Region"}
448+
},
449+
"RegionOptStatus":{
450+
"type":"string",
451+
"enum":[
452+
"ENABLED",
453+
"ENABLING",
454+
"DISABLING",
455+
"DISABLED",
456+
"ENABLED_BY_DEFAULT"
457+
]
458+
},
459+
"RegionOptStatusList":{
460+
"type":"list",
461+
"member":{"shape":"RegionOptStatus"}
462+
},
299463
"ResourceNotFoundException":{
300464
"type":"structure",
301465
"required":["message"],
@@ -308,6 +472,10 @@
308472
},
309473
"exception":true
310474
},
475+
"SensitiveString":{
476+
"type":"string",
477+
"sensitive":true
478+
},
311479
"StateOrRegion":{
312480
"type":"string",
313481
"max":50,
@@ -338,14 +506,38 @@
338506
"type":"structure",
339507
"required":["message"],
340508
"members":{
341-
"message":{"shape":"String"}
509+
"fieldList":{"shape":"ValidationExceptionFieldList"},
510+
"message":{"shape":"SensitiveString"},
511+
"reason":{"shape":"ValidationExceptionReason"}
342512
},
343513
"error":{
344514
"httpStatusCode":400,
345515
"senderFault":true
346516
},
347517
"exception":true
348518
},
519+
"ValidationExceptionField":{
520+
"type":"structure",
521+
"required":[
522+
"message",
523+
"name"
524+
],
525+
"members":{
526+
"message":{"shape":"SensitiveString"},
527+
"name":{"shape":"String"}
528+
}
529+
},
530+
"ValidationExceptionFieldList":{
531+
"type":"list",
532+
"member":{"shape":"ValidationExceptionField"}
533+
},
534+
"ValidationExceptionReason":{
535+
"type":"string",
536+
"enum":[
537+
"invalidRegionOptTarget",
538+
"fieldValidationFailed"
539+
]
540+
},
349541
"WebsiteUrl":{
350542
"type":"string",
351543
"max":256,

0 commit comments

Comments
 (0)