Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit c246bb2

Browse files
Release v1.44.175 (2023-01-06) (#4682)
Release v1.44.175 (2023-01-06) === ### Service Client Updates * `service/acm-pca`: Updates service API and documentation * `service/auditmanager`: Updates service API and documentation
1 parent 455e980 commit c246bb2

File tree

17 files changed

+940
-550
lines changed

17 files changed

+940
-550
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Release v1.44.175 (2023-01-06)
2+
===
3+
4+
### Service Client Updates
5+
* `service/acm-pca`: Updates service API and documentation
6+
* `service/auditmanager`: Updates service API and documentation
7+
18
Release v1.44.174 (2023-01-05)
29
===
310

aws/endpoints/defaults.go

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/version.go

Lines changed: 1 addition & 1 deletion
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.174"
8+
const SDKVersion = "1.44.175"

models/apis/acm-pca/2017-08-22/api-2.json

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -583,6 +583,12 @@
583583
"max":20,
584584
"min":1
585585
},
586+
"CnameString":{
587+
"type":"string",
588+
"max":253,
589+
"min":0,
590+
"pattern":"^[-a-zA-Z0-9;/?:@&=+$,%_.!~*()']*$"
591+
},
586592
"ConcurrentModificationException":{
587593
"type":"structure",
588594
"members":{
@@ -664,8 +670,8 @@
664670
"shape":"Integer1To5000",
665671
"box":true
666672
},
667-
"CustomCname":{"shape":"String253"},
668-
"S3BucketName":{"shape":"String3To255"},
673+
"CustomCname":{"shape":"CnameString"},
674+
"S3BucketName":{"shape":"S3BucketName3To255"},
669675
"S3ObjectAcl":{"shape":"S3ObjectAcl"}
670676
}
671677
},
@@ -1136,7 +1142,7 @@
11361142
"shape":"Boolean",
11371143
"box":true
11381144
},
1139-
"OcspCustomCname":{"shape":"String253"}
1145+
"OcspCustomCname":{"shape":"CnameString"}
11401146
}
11411147
},
11421148
"OtherName":{
@@ -1315,6 +1321,12 @@
13151321
"max":63,
13161322
"min":3
13171323
},
1324+
"S3BucketName3To255":{
1325+
"type":"string",
1326+
"max":255,
1327+
"min":3,
1328+
"pattern":"^[-a-zA-Z0-9._/]+$"
1329+
},
13181330
"S3Key":{
13191331
"type":"string",
13201332
"max":1024
@@ -1373,11 +1385,6 @@
13731385
"max":39,
13741386
"min":0
13751387
},
1376-
"String3To255":{
1377-
"type":"string",
1378-
"max":255,
1379-
"min":3
1380-
},
13811388
"String40":{
13821389
"type":"string",
13831390
"max":40,

models/apis/acm-pca/2017-08-22/docs-2.json

Lines changed: 83 additions & 78 deletions
Large diffs are not rendered by default.

models/apis/acm-pca/2017-08-22/endpoint-rule-set-1.json

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"parameters": {
44
"Region": {
55
"builtIn": "AWS::Region",
6-
"required": false,
6+
"required": true,
77
"documentation": "The AWS region used to dispatch the request.",
88
"type": "String"
99
},
@@ -52,15 +52,6 @@
5252
"ref": "Endpoint"
5353
}
5454
]
55-
},
56-
{
57-
"fn": "parseURL",
58-
"argv": [
59-
{
60-
"ref": "Endpoint"
61-
}
62-
],
63-
"assign": "url"
6455
}
6556
],
6657
"type": "tree",

models/apis/acm-pca/2017-08-22/endpoint-tests-1.json

Lines changed: 208 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,57 @@
11
{
22
"testCases": [
3+
{
4+
"documentation": "For region ap-south-2 with FIPS enabled and DualStack enabled",
5+
"expect": {
6+
"endpoint": {
7+
"url": "https://acm-pca-fips.ap-south-2.api.aws"
8+
}
9+
},
10+
"params": {
11+
"UseFIPS": true,
12+
"Region": "ap-south-2",
13+
"UseDualStack": true
14+
}
15+
},
16+
{
17+
"documentation": "For region ap-south-2 with FIPS enabled and DualStack disabled",
18+
"expect": {
19+
"endpoint": {
20+
"url": "https://acm-pca-fips.ap-south-2.amazonaws.com"
21+
}
22+
},
23+
"params": {
24+
"UseFIPS": true,
25+
"Region": "ap-south-2",
26+
"UseDualStack": false
27+
}
28+
},
29+
{
30+
"documentation": "For region ap-south-2 with FIPS disabled and DualStack enabled",
31+
"expect": {
32+
"endpoint": {
33+
"url": "https://acm-pca.ap-south-2.api.aws"
34+
}
35+
},
36+
"params": {
37+
"UseFIPS": false,
38+
"Region": "ap-south-2",
39+
"UseDualStack": true
40+
}
41+
},
42+
{
43+
"documentation": "For region ap-south-2 with FIPS disabled and DualStack disabled",
44+
"expect": {
45+
"endpoint": {
46+
"url": "https://acm-pca.ap-south-2.amazonaws.com"
47+
}
48+
},
49+
"params": {
50+
"UseFIPS": false,
51+
"Region": "ap-south-2",
52+
"UseDualStack": false
53+
}
54+
},
355
{
456
"documentation": "For region ap-south-1 with FIPS enabled and DualStack enabled",
557
"expect": {
@@ -104,6 +156,58 @@
104156
"UseDualStack": false
105157
}
106158
},
159+
{
160+
"documentation": "For region eu-south-2 with FIPS enabled and DualStack enabled",
161+
"expect": {
162+
"endpoint": {
163+
"url": "https://acm-pca-fips.eu-south-2.api.aws"
164+
}
165+
},
166+
"params": {
167+
"UseFIPS": true,
168+
"Region": "eu-south-2",
169+
"UseDualStack": true
170+
}
171+
},
172+
{
173+
"documentation": "For region eu-south-2 with FIPS enabled and DualStack disabled",
174+
"expect": {
175+
"endpoint": {
176+
"url": "https://acm-pca-fips.eu-south-2.amazonaws.com"
177+
}
178+
},
179+
"params": {
180+
"UseFIPS": true,
181+
"Region": "eu-south-2",
182+
"UseDualStack": false
183+
}
184+
},
185+
{
186+
"documentation": "For region eu-south-2 with FIPS disabled and DualStack enabled",
187+
"expect": {
188+
"endpoint": {
189+
"url": "https://acm-pca.eu-south-2.api.aws"
190+
}
191+
},
192+
"params": {
193+
"UseFIPS": false,
194+
"Region": "eu-south-2",
195+
"UseDualStack": true
196+
}
197+
},
198+
{
199+
"documentation": "For region eu-south-2 with FIPS disabled and DualStack disabled",
200+
"expect": {
201+
"endpoint": {
202+
"url": "https://acm-pca.eu-south-2.amazonaws.com"
203+
}
204+
},
205+
"params": {
206+
"UseFIPS": false,
207+
"Region": "eu-south-2",
208+
"UseDualStack": false
209+
}
210+
},
107211
{
108212
"documentation": "For region us-gov-east-1 with FIPS enabled and DualStack enabled",
109213
"expect": {
@@ -312,6 +416,58 @@
312416
"UseDualStack": false
313417
}
314418
},
419+
{
420+
"documentation": "For region eu-central-2 with FIPS enabled and DualStack enabled",
421+
"expect": {
422+
"endpoint": {
423+
"url": "https://acm-pca-fips.eu-central-2.api.aws"
424+
}
425+
},
426+
"params": {
427+
"UseFIPS": true,
428+
"Region": "eu-central-2",
429+
"UseDualStack": true
430+
}
431+
},
432+
{
433+
"documentation": "For region eu-central-2 with FIPS enabled and DualStack disabled",
434+
"expect": {
435+
"endpoint": {
436+
"url": "https://acm-pca-fips.eu-central-2.amazonaws.com"
437+
}
438+
},
439+
"params": {
440+
"UseFIPS": true,
441+
"Region": "eu-central-2",
442+
"UseDualStack": false
443+
}
444+
},
445+
{
446+
"documentation": "For region eu-central-2 with FIPS disabled and DualStack enabled",
447+
"expect": {
448+
"endpoint": {
449+
"url": "https://acm-pca.eu-central-2.api.aws"
450+
}
451+
},
452+
"params": {
453+
"UseFIPS": false,
454+
"Region": "eu-central-2",
455+
"UseDualStack": true
456+
}
457+
},
458+
{
459+
"documentation": "For region eu-central-2 with FIPS disabled and DualStack disabled",
460+
"expect": {
461+
"endpoint": {
462+
"url": "https://acm-pca.eu-central-2.amazonaws.com"
463+
}
464+
},
465+
"params": {
466+
"UseFIPS": false,
467+
"Region": "eu-central-2",
468+
"UseDualStack": false
469+
}
470+
},
315471
{
316472
"documentation": "For region us-west-1 with FIPS enabled and DualStack enabled",
317473
"expect": {
@@ -1296,6 +1452,58 @@
12961452
"UseDualStack": false
12971453
}
12981454
},
1455+
{
1456+
"documentation": "For region ap-southeast-4 with FIPS enabled and DualStack enabled",
1457+
"expect": {
1458+
"endpoint": {
1459+
"url": "https://acm-pca-fips.ap-southeast-4.api.aws"
1460+
}
1461+
},
1462+
"params": {
1463+
"UseFIPS": true,
1464+
"Region": "ap-southeast-4",
1465+
"UseDualStack": true
1466+
}
1467+
},
1468+
{
1469+
"documentation": "For region ap-southeast-4 with FIPS enabled and DualStack disabled",
1470+
"expect": {
1471+
"endpoint": {
1472+
"url": "https://acm-pca-fips.ap-southeast-4.amazonaws.com"
1473+
}
1474+
},
1475+
"params": {
1476+
"UseFIPS": true,
1477+
"Region": "ap-southeast-4",
1478+
"UseDualStack": false
1479+
}
1480+
},
1481+
{
1482+
"documentation": "For region ap-southeast-4 with FIPS disabled and DualStack enabled",
1483+
"expect": {
1484+
"endpoint": {
1485+
"url": "https://acm-pca.ap-southeast-4.api.aws"
1486+
}
1487+
},
1488+
"params": {
1489+
"UseFIPS": false,
1490+
"Region": "ap-southeast-4",
1491+
"UseDualStack": true
1492+
}
1493+
},
1494+
{
1495+
"documentation": "For region ap-southeast-4 with FIPS disabled and DualStack disabled",
1496+
"expect": {
1497+
"endpoint": {
1498+
"url": "https://acm-pca.ap-southeast-4.amazonaws.com"
1499+
}
1500+
},
1501+
"params": {
1502+
"UseFIPS": false,
1503+
"Region": "ap-southeast-4",
1504+
"UseDualStack": false
1505+
}
1506+
},
12991507
{
13001508
"documentation": "For region us-east-1 with FIPS enabled and DualStack enabled",
13011509
"expect": {

0 commit comments

Comments
 (0)