Skip to content

Commit

Permalink
Release v1.40.7 (2021-07-23) (#4024)
Browse files Browse the repository at this point in the history
Release v1.40.7 (2021-07-23)
===

### Service Client Updates
* `service/imagebuilder`: Updates service documentation
* `service/s3outposts`: Updates service API and documentation
* `service/securityhub`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation committed Jul 23, 2021
1 parent 43d05f6 commit 4c222f5
Show file tree
Hide file tree
Showing 12 changed files with 2,182 additions and 634 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,11 @@
Release v1.40.7 (2021-07-23)
===

### Service Client Updates
* `service/imagebuilder`: Updates service documentation
* `service/s3outposts`: Updates service API and documentation
* `service/securityhub`: Updates service API and documentation

Release v1.40.6 (2021-07-22)
===

Expand Down
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.40.6"
const SDKVersion = "1.40.7"
2 changes: 1 addition & 1 deletion models/apis/imagebuilder/2019-12-02/docs-2.json
Expand Up @@ -1452,7 +1452,7 @@
"ImageTestsConfiguration$imageTestsEnabled": "<p>Defines if tests should be executed when building this image.</p>",
"InfrastructureConfiguration$terminateInstanceOnFailure": "<p>The terminate instance on failure configuration of the infrastructure configuration.</p>",
"ListImagesRequest$includeDeprecated": "<p>Includes deprecated images in the response list.</p>",
"SystemsManagerAgent$uninstallAfterBuild": "<p>This property defaults to true. If Image Builder installs the SSM agent on a build instance, it removes the agent before creating a snapshot for the AMI. To ensure that the AMI you create includes the SSM agent, set this property to false.</p>",
"SystemsManagerAgent$uninstallAfterBuild": "<p>Controls whether the SSM agent is removed from your final build image, prior to creating the new AMI. If this is set to true, then the agent is removed from the final image. If it's set to false, then the agent is left in, so that it is included in the new AMI. The default value is false.</p>",
"UpdateImagePipelineRequest$enhancedImageMetadataEnabled": "<p> Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.</p>",
"UpdateInfrastructureConfigurationRequest$terminateInstanceOnFailure": "<p>The terminate instance on failure setting of the infrastructure configuration. Set to false if you want Image Builder to retain the instance used to configure your AMI if the build or test phase of your workflow fails.</p>"
}
Expand Down
52 changes: 27 additions & 25 deletions models/apis/s3outposts/2017-07-25/api-2.json
Expand Up @@ -68,11 +68,7 @@
"error":{"httpStatusCode":403},
"exception":true
},
"CidrBlock":{
"type":"string",
"max":20,
"min":1
},
"CidrBlock":{"type":"string"},
"ConflictException":{
"type":"structure",
"members":{
Expand All @@ -91,7 +87,9 @@
"members":{
"OutpostId":{"shape":"OutpostId"},
"SubnetId":{"shape":"SubnetId"},
"SecurityGroupId":{"shape":"SecurityGroupId"}
"SecurityGroupId":{"shape":"SecurityGroupId"},
"AccessType":{"shape":"EndpointAccessType"},
"CustomerOwnedIpv4Pool":{"shape":"CustomerOwnedIpv4Pool"}
}
},
"CreateEndpointResult":{
Expand All @@ -101,6 +99,10 @@
}
},
"CreationTime":{"type":"timestamp"},
"CustomerOwnedIpv4Pool":{
"type":"string",
"pattern":"^ipv4pool-coip-([0-9a-f]{17})$"
},
"DeleteEndpointRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -128,26 +130,35 @@
"CidrBlock":{"shape":"CidrBlock"},
"Status":{"shape":"EndpointStatus"},
"CreationTime":{"shape":"CreationTime"},
"NetworkInterfaces":{"shape":"NetworkInterfaces"}
"NetworkInterfaces":{"shape":"NetworkInterfaces"},
"VpcId":{"shape":"VpcId"},
"SubnetId":{"shape":"SubnetId"},
"SecurityGroupId":{"shape":"SecurityGroupId"},
"AccessType":{"shape":"EndpointAccessType"},
"CustomerOwnedIpv4Pool":{"shape":"CustomerOwnedIpv4Pool"}
}
},
"EndpointAccessType":{
"type":"string",
"enum":[
"Private",
"CustomerOwnedIp"
]
},
"EndpointArn":{
"type":"string",
"max":500,
"min":5,
"pattern":"^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):s3-outposts:[a-z\\-0-9]*:[0-9]{12}:outpost/(op-[a-f0-9]{17}|ec2)/endpoint/[a-zA-Z0-9]{19}$"
},
"EndpointId":{
"type":"string",
"max":500,
"min":5,
"pattern":"^[a-zA-Z0-9]{19}$"
},
"EndpointStatus":{
"type":"string",
"enum":[
"PENDING",
"AVAILABLE"
"Pending",
"Available",
"Deleting"
]
},
"Endpoints":{
Expand Down Expand Up @@ -197,11 +208,7 @@
"NetworkInterfaceId":{"shape":"NetworkInterfaceId"}
}
},
"NetworkInterfaceId":{
"type":"string",
"max":100,
"min":1
},
"NetworkInterfaceId":{"type":"string"},
"NetworkInterfaces":{
"type":"list",
"member":{"shape":"NetworkInterface"}
Expand All @@ -214,8 +221,6 @@
},
"OutpostId":{
"type":"string",
"max":100,
"min":1,
"pattern":"^(op-[a-f0-9]{17}|\\d{12}|ec2)$"
},
"ResourceNotFoundException":{
Expand All @@ -228,14 +233,10 @@
},
"SecurityGroupId":{
"type":"string",
"max":100,
"min":1,
"pattern":"^sg-([0-9a-f]{8}|[0-9a-f]{17})$"
},
"SubnetId":{
"type":"string",
"max":100,
"min":1,
"pattern":"^subnet-([0-9a-f]{8}|[0-9a-f]{17})$"
},
"ValidationException":{
Expand All @@ -245,6 +246,7 @@
},
"error":{"httpStatusCode":400},
"exception":true
}
},
"VpcId":{"type":"string"}
}
}
44 changes: 33 additions & 11 deletions models/apis/s3outposts/2017-07-25/docs-2.json
Expand Up @@ -2,9 +2,9 @@
"version": "2.0",
"service": "<p>Amazon S3 on Outposts provides access to S3 on Outposts operations.</p>",
"operations": {
"CreateEndpoint": "<p>S3 on Outposts access points simplify managing data access at scale for shared datasets in Amazon S3 on Outposts. S3 on Outposts uses endpoints to connect to Outposts buckets so that you can perform actions within your virtual private cloud (VPC). </p> <p>This action creates an endpoint and associates it with the specified Outpost. </p> <p/> <p>Related actions include:</p> <ul> <li> <p> <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_DeleteEndpoint.html\">DeleteEndpoint</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_ListEndpoints.html\">ListEndpoints</a> </p> </li> </ul>",
"DeleteEndpoint": "<p>S3 on Outposts access points simplify managing data access at scale for shared datasets in Amazon S3 on Outposts. S3 on Outposts uses endpoints to connect to Outposts buckets so that you can perform actions within your virtual private cloud (VPC). </p> <p>This action deletes an endpoint. </p> <p/> <p>Related actions include:</p> <ul> <li> <p> <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_CreateEndpoint.html\">CreateEndpoint</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_ListEndpoints.html\">ListEndpoints</a> </p> </li> </ul>",
"ListEndpoints": "<p>S3 on Outposts access points simplify managing data access at scale for shared datasets in Amazon S3 on Outposts. S3 on Outposts uses endpoints to connect to Outposts buckets so that you can perform actions within your virtual private cloud (VPC). </p> <p>This action lists endpoints associated with the Outpost. </p> <p/> <p>Related actions include:</p> <ul> <li> <p> <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_CreateEndpoint.html\">CreateEndpoint</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_DeleteEndpoint.html\">DeleteEndpoint</a> </p> </li> </ul>"
"CreateEndpoint": "<p>Amazon S3 on Outposts Access Points simplify managing data access at scale for shared datasets in S3 on Outposts. S3 on Outposts uses endpoints to connect to Outposts buckets so that you can perform actions within your virtual private cloud (VPC). For more information, see <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/userguide/AccessingS3Outposts.html\"> Accessing S3 on Outposts using VPC only access points</a>.</p> <p>This action creates an endpoint and associates it with the specified Outposts.</p> <note> <p>It can take up to 5 minutes for this action to complete.</p> </note> <p/> <p>Related actions include:</p> <ul> <li> <p> <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_DeleteEndpoint.html\">DeleteEndpoint</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_ListEndpoints.html\">ListEndpoints</a> </p> </li> </ul>",
"DeleteEndpoint": "<p>Amazon S3 on Outposts Access Points simplify managing data access at scale for shared datasets in S3 on Outposts. S3 on Outposts uses endpoints to connect to Outposts buckets so that you can perform actions within your virtual private cloud (VPC). For more information, see <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/userguide/AccessingS3Outposts.html\"> Accessing S3 on Outposts using VPC only access points</a>.</p> <p>This action deletes an endpoint.</p> <note> <p>It can take up to 5 minutes for this action to complete.</p> </note> <p/> <p>Related actions include:</p> <ul> <li> <p> <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_CreateEndpoint.html\">CreateEndpoint</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_ListEndpoints.html\">ListEndpoints</a> </p> </li> </ul>",
"ListEndpoints": "<p>Amazon S3 on Outposts Access Points simplify managing data access at scale for shared datasets in S3 on Outposts. S3 on Outposts uses endpoints to connect to Outposts buckets so that you can perform actions within your virtual private cloud (VPC). For more information, see <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/userguide/AccessingS3Outposts.html\"> Accessing S3 on Outposts using VPC only access points</a>.</p> <p>This action lists endpoints associated with the Outposts. </p> <p/> <p>Related actions include:</p> <ul> <li> <p> <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_CreateEndpoint.html\">CreateEndpoint</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_DeleteEndpoint.html\">DeleteEndpoint</a> </p> </li> </ul>"
},
"shapes": {
"AccessDeniedException": {
Expand Down Expand Up @@ -39,17 +39,31 @@
"Endpoint$CreationTime": "<p>The time the endpoint was created.</p>"
}
},
"CustomerOwnedIpv4Pool": {
"base": null,
"refs": {
"CreateEndpointRequest$CustomerOwnedIpv4Pool": "<p>The ID of the customer-owned IPv4 pool for the endpoint. IP addresses will be allocated from this pool for the endpoint.</p>",
"Endpoint$CustomerOwnedIpv4Pool": "<p>The ID of the customer-owned IPv4 pool used for the endpoint.</p>"
}
},
"DeleteEndpointRequest": {
"base": null,
"refs": {
}
},
"Endpoint": {
"base": "<p>S3 on Outposts access points simplify managing data access at scale for shared datasets in Amazon S3 on Outposts. S3 on Outposts uses endpoints to connect to Outposts buckets so that you can perform actions within your virtual private cloud (VPC). </p>",
"base": "<p>Amazon S3 on Outposts Access Points simplify managing data access at scale for shared datasets in S3 on Outposts. S3 on Outposts uses endpoints to connect to Outposts buckets so that you can perform actions within your virtual private cloud (VPC). For more information, see <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/userguide/AccessingS3Outposts.html\"> Accessing S3 on Outposts using VPC only access points</a>.</p>",
"refs": {
"Endpoints$member": null
}
},
"EndpointAccessType": {
"base": null,
"refs": {
"CreateEndpointRequest$AccessType": "<p>The type of access for the on-premise network connectivity for the Outpost endpoint. To access the endpoint from an on-premises network, you must specify the access type and provide the customer owned IPv4 pool.</p>",
"Endpoint$AccessType": "<p/>"
}
},
"EndpointArn": {
"base": null,
"refs": {
Expand All @@ -60,7 +74,7 @@
"EndpointId": {
"base": null,
"refs": {
"DeleteEndpointRequest$EndpointId": "<p>The ID of the end point.</p>"
"DeleteEndpointRequest$EndpointId": "<p>The ID of the endpoint.</p>"
}
},
"EndpointStatus": {
Expand All @@ -72,7 +86,7 @@
"Endpoints": {
"base": null,
"refs": {
"ListEndpointsResult$Endpoints": "<p>Returns an array of endpoints associated with AWS Outpost.</p>"
"ListEndpointsResult$Endpoints": "<p>Returns an array of endpoints associated with AWS Outposts.</p>"
}
},
"ErrorMessage": {
Expand Down Expand Up @@ -134,9 +148,9 @@
"OutpostId": {
"base": null,
"refs": {
"CreateEndpointRequest$OutpostId": "<p>The ID of the AWS Outpost. </p>",
"DeleteEndpointRequest$OutpostId": "<p>The ID of the AWS Outpost. </p>",
"Endpoint$OutpostsId": "<p>The ID of the AWS Outpost.</p>"
"CreateEndpointRequest$OutpostId": "<p>The ID of the AWS Outposts. </p>",
"DeleteEndpointRequest$OutpostId": "<p>The ID of the AWS Outposts. </p>",
"Endpoint$OutpostsId": "<p>The ID of the AWS Outposts.</p>"
}
},
"ResourceNotFoundException": {
Expand All @@ -147,19 +161,27 @@
"SecurityGroupId": {
"base": null,
"refs": {
"CreateEndpointRequest$SecurityGroupId": "<p>The ID of the security group to use with the endpoint.</p>"
"CreateEndpointRequest$SecurityGroupId": "<p>The ID of the security group to use with the endpoint.</p>",
"Endpoint$SecurityGroupId": "<p>The ID of the security group used for the endpoint.</p>"
}
},
"SubnetId": {
"base": null,
"refs": {
"CreateEndpointRequest$SubnetId": "<p>The ID of the subnet in the selected VPC.</p>"
"CreateEndpointRequest$SubnetId": "<p>The ID of the subnet in the selected VPC. The endpoint subnet must belong to the Outpost that has the Amazon S3 on Outposts provisioned.</p>",
"Endpoint$SubnetId": "<p>The ID of the subnet used for the endpoint.</p>"
}
},
"ValidationException": {
"base": "<p>There was an exception validating this data.</p>",
"refs": {
}
},
"VpcId": {
"base": null,
"refs": {
"Endpoint$VpcId": "<p>The ID of the VPC used for the endpoint.</p>"
}
}
}
}

0 comments on commit 4c222f5

Please sign in to comment.