Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.44.175 #4682

Merged
merged 1 commit into from Jan 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
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

Release v1.44.174 (2023-01-05)
===

Expand Down
7 changes: 7 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.44.174"
const SDKVersion = "1.44.175"
23 changes: 15 additions & 8 deletions models/apis/acm-pca/2017-08-22/api-2.json
Expand Up @@ -583,6 +583,12 @@
"max":20,
"min":1
},
"CnameString":{
"type":"string",
"max":253,
"min":0,
"pattern":"^[-a-zA-Z0-9;/?:@&=+$,%_.!~*()']*$"
},
"ConcurrentModificationException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -664,8 +670,8 @@
"shape":"Integer1To5000",
"box":true
},
"CustomCname":{"shape":"String253"},
"S3BucketName":{"shape":"String3To255"},
"CustomCname":{"shape":"CnameString"},
"S3BucketName":{"shape":"S3BucketName3To255"},
"S3ObjectAcl":{"shape":"S3ObjectAcl"}
}
},
Expand Down Expand Up @@ -1136,7 +1142,7 @@
"shape":"Boolean",
"box":true
},
"OcspCustomCname":{"shape":"String253"}
"OcspCustomCname":{"shape":"CnameString"}
}
},
"OtherName":{
Expand Down Expand Up @@ -1315,6 +1321,12 @@
"max":63,
"min":3
},
"S3BucketName3To255":{
"type":"string",
"max":255,
"min":3,
"pattern":"^[-a-zA-Z0-9._/]+$"
},
"S3Key":{
"type":"string",
"max":1024
Expand Down Expand Up @@ -1373,11 +1385,6 @@
"max":39,
"min":0
},
"String3To255":{
"type":"string",
"max":255,
"min":3
},
"String40":{
"type":"string",
"max":40,
Expand Down
161 changes: 83 additions & 78 deletions models/apis/acm-pca/2017-08-22/docs-2.json

Large diffs are not rendered by default.

11 changes: 1 addition & 10 deletions models/apis/acm-pca/2017-08-22/endpoint-rule-set-1.json
Expand Up @@ -3,7 +3,7 @@
"parameters": {
"Region": {
"builtIn": "AWS::Region",
"required": false,
"required": true,
"documentation": "The AWS region used to dispatch the request.",
"type": "String"
},
Expand Down Expand Up @@ -52,15 +52,6 @@
"ref": "Endpoint"
}
]
},
{
"fn": "parseURL",
"argv": [
{
"ref": "Endpoint"
}
],
"assign": "url"
}
],
"type": "tree",
Expand Down
208 changes: 208 additions & 0 deletions models/apis/acm-pca/2017-08-22/endpoint-tests-1.json
@@ -1,5 +1,57 @@
{
"testCases": [
{
"documentation": "For region ap-south-2 with FIPS enabled and DualStack enabled",
"expect": {
"endpoint": {
"url": "https://acm-pca-fips.ap-south-2.api.aws"
}
},
"params": {
"UseFIPS": true,
"Region": "ap-south-2",
"UseDualStack": true
}
},
{
"documentation": "For region ap-south-2 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
"url": "https://acm-pca-fips.ap-south-2.amazonaws.com"
}
},
"params": {
"UseFIPS": true,
"Region": "ap-south-2",
"UseDualStack": false
}
},
{
"documentation": "For region ap-south-2 with FIPS disabled and DualStack enabled",
"expect": {
"endpoint": {
"url": "https://acm-pca.ap-south-2.api.aws"
}
},
"params": {
"UseFIPS": false,
"Region": "ap-south-2",
"UseDualStack": true
}
},
{
"documentation": "For region ap-south-2 with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
"url": "https://acm-pca.ap-south-2.amazonaws.com"
}
},
"params": {
"UseFIPS": false,
"Region": "ap-south-2",
"UseDualStack": false
}
},
{
"documentation": "For region ap-south-1 with FIPS enabled and DualStack enabled",
"expect": {
Expand Down Expand Up @@ -104,6 +156,58 @@
"UseDualStack": false
}
},
{
"documentation": "For region eu-south-2 with FIPS enabled and DualStack enabled",
"expect": {
"endpoint": {
"url": "https://acm-pca-fips.eu-south-2.api.aws"
}
},
"params": {
"UseFIPS": true,
"Region": "eu-south-2",
"UseDualStack": true
}
},
{
"documentation": "For region eu-south-2 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
"url": "https://acm-pca-fips.eu-south-2.amazonaws.com"
}
},
"params": {
"UseFIPS": true,
"Region": "eu-south-2",
"UseDualStack": false
}
},
{
"documentation": "For region eu-south-2 with FIPS disabled and DualStack enabled",
"expect": {
"endpoint": {
"url": "https://acm-pca.eu-south-2.api.aws"
}
},
"params": {
"UseFIPS": false,
"Region": "eu-south-2",
"UseDualStack": true
}
},
{
"documentation": "For region eu-south-2 with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
"url": "https://acm-pca.eu-south-2.amazonaws.com"
}
},
"params": {
"UseFIPS": false,
"Region": "eu-south-2",
"UseDualStack": false
}
},
{
"documentation": "For region us-gov-east-1 with FIPS enabled and DualStack enabled",
"expect": {
Expand Down Expand Up @@ -312,6 +416,58 @@
"UseDualStack": false
}
},
{
"documentation": "For region eu-central-2 with FIPS enabled and DualStack enabled",
"expect": {
"endpoint": {
"url": "https://acm-pca-fips.eu-central-2.api.aws"
}
},
"params": {
"UseFIPS": true,
"Region": "eu-central-2",
"UseDualStack": true
}
},
{
"documentation": "For region eu-central-2 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
"url": "https://acm-pca-fips.eu-central-2.amazonaws.com"
}
},
"params": {
"UseFIPS": true,
"Region": "eu-central-2",
"UseDualStack": false
}
},
{
"documentation": "For region eu-central-2 with FIPS disabled and DualStack enabled",
"expect": {
"endpoint": {
"url": "https://acm-pca.eu-central-2.api.aws"
}
},
"params": {
"UseFIPS": false,
"Region": "eu-central-2",
"UseDualStack": true
}
},
{
"documentation": "For region eu-central-2 with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
"url": "https://acm-pca.eu-central-2.amazonaws.com"
}
},
"params": {
"UseFIPS": false,
"Region": "eu-central-2",
"UseDualStack": false
}
},
{
"documentation": "For region us-west-1 with FIPS enabled and DualStack enabled",
"expect": {
Expand Down Expand Up @@ -1296,6 +1452,58 @@
"UseDualStack": false
}
},
{
"documentation": "For region ap-southeast-4 with FIPS enabled and DualStack enabled",
"expect": {
"endpoint": {
"url": "https://acm-pca-fips.ap-southeast-4.api.aws"
}
},
"params": {
"UseFIPS": true,
"Region": "ap-southeast-4",
"UseDualStack": true
}
},
{
"documentation": "For region ap-southeast-4 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
"url": "https://acm-pca-fips.ap-southeast-4.amazonaws.com"
}
},
"params": {
"UseFIPS": true,
"Region": "ap-southeast-4",
"UseDualStack": false
}
},
{
"documentation": "For region ap-southeast-4 with FIPS disabled and DualStack enabled",
"expect": {
"endpoint": {
"url": "https://acm-pca.ap-southeast-4.api.aws"
}
},
"params": {
"UseFIPS": false,
"Region": "ap-southeast-4",
"UseDualStack": true
}
},
{
"documentation": "For region ap-southeast-4 with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
"url": "https://acm-pca.ap-southeast-4.amazonaws.com"
}
},
"params": {
"UseFIPS": false,
"Region": "ap-southeast-4",
"UseDualStack": false
}
},
{
"documentation": "For region us-east-1 with FIPS enabled and DualStack enabled",
"expect": {
Expand Down