Skip to content

Commit

Permalink
Release v1.42.49 (2022-02-08) (#4273)
Browse files Browse the repository at this point in the history
Release v1.42.49 (2022-02-08)
===

### Service Client Updates
* `service/apprunner`: Updates service API, documentation, and paginators
* `service/kendra`: Updates service API and documentation
  * Amazon Kendra now provides a data source connector for Amazon FSx. For more information, see https://docs.aws.amazon.com/kendra/latest/dg/data-source-fsx.html
* `service/s3control`: Updates service API and documentation
  * This release adds support for S3 Batch Replication. Batch Replication lets you replicate existing objects, already replicated objects to new destinations, and objects that previously failed to replicate. Customers will receive object-level visibility of progress and a detailed completion report.
* `service/sagemaker`: Updates service API and documentation
  * Autopilot now generates an additional report with information on the performance of the best model, such as a Confusion matrix and  Area under the receiver operating characteristic (AUC-ROC). The path to the report can be found in CandidateArtifactLocations.
  • Loading branch information
aws-sdk-go-automation committed Feb 8, 2022
1 parent 0bf61fd commit 98d8962
Show file tree
Hide file tree
Showing 16 changed files with 2,885 additions and 270 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Release v1.42.49 (2022-02-08)
===

### Service Client Updates
* `service/apprunner`: Updates service API, documentation, and paginators
* `service/kendra`: Updates service API and documentation
* Amazon Kendra now provides a data source connector for Amazon FSx. For more information, see https://docs.aws.amazon.com/kendra/latest/dg/data-source-fsx.html
* `service/s3control`: Updates service API and documentation
* This release adds support for S3 Batch Replication. Batch Replication lets you replicate existing objects, already replicated objects to new destinations, and objects that previously failed to replicate. Customers will receive object-level visibility of progress and a detailed completion report.
* `service/sagemaker`: Updates service API and documentation
* Autopilot now generates an additional report with information on the performance of the best model, such as a Confusion matrix and Area under the receiver operating characteristic (AUC-ROC). The path to the report can be found in CandidateArtifactLocations.

Release v1.42.48 (2022-02-07)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.42.48"
const SDKVersion = "1.42.49"
197 changes: 191 additions & 6 deletions models/apis/apprunner/2020-05-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,20 @@
{"shape":"ServiceQuotaExceededException"}
]
},
"CreateVpcConnector":{
"name":"CreateVpcConnector",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"CreateVpcConnectorRequest"},
"output":{"shape":"CreateVpcConnectorResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InternalServiceErrorException"},
{"shape":"ServiceQuotaExceededException"}
]
},
"DeleteAutoScalingConfiguration":{
"name":"DeleteAutoScalingConfiguration",
"http":{
Expand Down Expand Up @@ -112,6 +126,20 @@
{"shape":"InternalServiceErrorException"}
]
},
"DeleteVpcConnector":{
"name":"DeleteVpcConnector",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteVpcConnectorRequest"},
"output":{"shape":"DeleteVpcConnectorResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InternalServiceErrorException"},
{"shape":"ResourceNotFoundException"}
]
},
"DescribeAutoScalingConfiguration":{
"name":"DescribeAutoScalingConfiguration",
"http":{
Expand Down Expand Up @@ -154,6 +182,20 @@
{"shape":"InternalServiceErrorException"}
]
},
"DescribeVpcConnector":{
"name":"DescribeVpcConnector",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeVpcConnectorRequest"},
"output":{"shape":"DescribeVpcConnectorResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InternalServiceErrorException"},
{"shape":"ResourceNotFoundException"}
]
},
"DisassociateCustomDomain":{
"name":"DisassociateCustomDomain",
"http":{
Expand Down Expand Up @@ -237,6 +279,19 @@
{"shape":"InvalidStateException"}
]
},
"ListVpcConnectors":{
"name":"ListVpcConnectors",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListVpcConnectorsRequest"},
"output":{"shape":"ListVpcConnectorsResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InternalServiceErrorException"}
]
},
"PauseService":{
"name":"PauseService",
"http":{
Expand Down Expand Up @@ -424,6 +479,7 @@
"Boolean":{"type":"boolean"},
"BuildCommand":{
"type":"string",
"pattern":"[^\\x0a\\x0d]+",
"sensitive":true
},
"CertificateValidationRecord":{
Expand Down Expand Up @@ -580,7 +636,8 @@
"Tags":{"shape":"TagList"},
"EncryptionConfiguration":{"shape":"EncryptionConfiguration"},
"HealthCheckConfiguration":{"shape":"HealthCheckConfiguration"},
"AutoScalingConfigurationArn":{"shape":"AppRunnerResourceArn"}
"AutoScalingConfigurationArn":{"shape":"AppRunnerResourceArn"},
"NetworkConfiguration":{"shape":"NetworkConfiguration"}
}
},
"CreateServiceResponse":{
Expand All @@ -594,6 +651,26 @@
"OperationId":{"shape":"UUID"}
}
},
"CreateVpcConnectorRequest":{
"type":"structure",
"required":[
"VpcConnectorName",
"Subnets"
],
"members":{
"VpcConnectorName":{"shape":"VpcConnectorName"},
"Subnets":{"shape":"StringList"},
"SecurityGroups":{"shape":"StringList"},
"Tags":{"shape":"TagList"}
}
},
"CreateVpcConnectorResponse":{
"type":"structure",
"required":["VpcConnector"],
"members":{
"VpcConnector":{"shape":"VpcConnector"}
}
},
"CustomDomain":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -669,6 +746,20 @@
"OperationId":{"shape":"UUID"}
}
},
"DeleteVpcConnectorRequest":{
"type":"structure",
"required":["VpcConnectorArn"],
"members":{
"VpcConnectorArn":{"shape":"AppRunnerResourceArn"}
}
},
"DeleteVpcConnectorResponse":{
"type":"structure",
"required":["VpcConnector"],
"members":{
"VpcConnector":{"shape":"VpcConnector"}
}
},
"DescribeAutoScalingConfigurationRequest":{
"type":"structure",
"required":["AutoScalingConfigurationArn"],
Expand Down Expand Up @@ -725,6 +816,20 @@
"Service":{"shape":"Service"}
}
},
"DescribeVpcConnectorRequest":{
"type":"structure",
"required":["VpcConnectorArn"],
"members":{
"VpcConnectorArn":{"shape":"AppRunnerResourceArn"}
}
},
"DescribeVpcConnectorResponse":{
"type":"structure",
"required":["VpcConnector"],
"members":{
"VpcConnector":{"shape":"VpcConnector"}
}
},
"DisassociateCustomDomainRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -752,7 +857,22 @@
"DomainName":{
"type":"string",
"max":255,
"min":1
"min":1,
"pattern":"[A-Za-z0-9*.-]{1,255}"
},
"EgressConfiguration":{
"type":"structure",
"members":{
"EgressType":{"shape":"EgressType"},
"VpcConnectorArn":{"shape":"AppRunnerResourceArn"}
}
},
"EgressType":{
"type":"string",
"enum":[
"DEFAULT",
"VPC"
]
},
"EncryptionConfiguration":{
"type":"structure",
Expand Down Expand Up @@ -811,7 +931,7 @@
"type":"structure",
"members":{
"RuntimeEnvironmentVariables":{"shape":"RuntimeEnvironmentVariables"},
"StartCommand":{"shape":"String"},
"StartCommand":{"shape":"StartCommand"},
"Port":{"shape":"String"}
}
},
Expand Down Expand Up @@ -959,6 +1079,21 @@
"Tags":{"shape":"TagList"}
}
},
"ListVpcConnectorsRequest":{
"type":"structure",
"members":{
"MaxResults":{"shape":"MaxResults"},
"NextToken":{"shape":"NextToken"}
}
},
"ListVpcConnectorsResponse":{
"type":"structure",
"required":["VpcConnectors"],
"members":{
"VpcConnectors":{"shape":"VpcConnectors"},
"NextToken":{"shape":"NextToken"}
}
},
"MaxResults":{
"type":"integer",
"max":100,
Expand All @@ -970,6 +1105,12 @@
"min":4,
"pattern":"2048|3072|4096|(2|3|4) GB"
},
"NetworkConfiguration":{
"type":"structure",
"members":{
"EgressConfiguration":{"shape":"EgressConfiguration"}
}
},
"NextToken":{
"type":"string",
"max":1024,
Expand Down Expand Up @@ -1076,10 +1217,16 @@
},
"RuntimeEnvironmentVariablesKey":{
"type":"string",
"max":51200,
"min":1,
"pattern":".*",
"sensitive":true
},
"RuntimeEnvironmentVariablesValue":{
"type":"string",
"max":51200,
"min":0,
"pattern":".*",
"sensitive":true
},
"Service":{
Expand All @@ -1094,7 +1241,8 @@
"Status",
"SourceConfiguration",
"InstanceConfiguration",
"AutoScalingConfigurationSummary"
"AutoScalingConfigurationSummary",
"NetworkConfiguration"
],
"members":{
"ServiceName":{"shape":"ServiceName"},
Expand All @@ -1109,7 +1257,8 @@
"InstanceConfiguration":{"shape":"InstanceConfiguration"},
"EncryptionConfiguration":{"shape":"EncryptionConfiguration"},
"HealthCheckConfiguration":{"shape":"HealthCheckConfiguration"},
"AutoScalingConfigurationSummary":{"shape":"AutoScalingConfigurationSummary"}
"AutoScalingConfigurationSummary":{"shape":"AutoScalingConfigurationSummary"},
"NetworkConfiguration":{"shape":"NetworkConfiguration"}
}
},
"ServiceId":{
Expand Down Expand Up @@ -1189,6 +1338,7 @@
},
"StartCommand":{
"type":"string",
"pattern":"[^\\x0a\\x0d]+",
"sensitive":true
},
"StartDeploymentRequest":{
Expand All @@ -1211,6 +1361,10 @@
"min":0,
"pattern":".*"
},
"StringList":{
"type":"list",
"member":{"shape":"String"}
},
"Tag":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1285,7 +1439,8 @@
"SourceConfiguration":{"shape":"SourceConfiguration"},
"InstanceConfiguration":{"shape":"InstanceConfiguration"},
"AutoScalingConfigurationArn":{"shape":"AppRunnerResourceArn"},
"HealthCheckConfiguration":{"shape":"HealthCheckConfiguration"}
"HealthCheckConfiguration":{"shape":"HealthCheckConfiguration"},
"NetworkConfiguration":{"shape":"NetworkConfiguration"}
}
},
"UpdateServiceResponse":{
Expand All @@ -1298,6 +1453,36 @@
"Service":{"shape":"Service"},
"OperationId":{"shape":"UUID"}
}
},
"VpcConnector":{
"type":"structure",
"members":{
"VpcConnectorName":{"shape":"VpcConnectorName"},
"VpcConnectorArn":{"shape":"AppRunnerResourceArn"},
"VpcConnectorRevision":{"shape":"Integer"},
"Subnets":{"shape":"StringList"},
"SecurityGroups":{"shape":"StringList"},
"Status":{"shape":"VpcConnectorStatus"},
"CreatedAt":{"shape":"Timestamp"},
"DeletedAt":{"shape":"Timestamp"}
}
},
"VpcConnectorName":{
"type":"string",
"max":40,
"min":4,
"pattern":"[A-Za-z0-9][A-Za-z0-9\\-_]{3,39}"
},
"VpcConnectorStatus":{
"type":"string",
"enum":[
"ACTIVE",
"INACTIVE"
]
},
"VpcConnectors":{
"type":"list",
"member":{"shape":"VpcConnector"}
}
}
}

0 comments on commit 98d8962

Please sign in to comment.