Skip to content

Commit

Permalink
Release v1.38.63 (2021-06-16) (#3961)
Browse files Browse the repository at this point in the history
Release v1.38.63 (2021-06-16)
===

### Service Client Updates
* `service/ec2`: Updates service API and documentation
  * This release adds support for VLAN-tagged network traffic over an Elastic Network Interface (ENI). This feature is in limited Preview for this release. Contact your account manager if you are interested in this feature.
* `service/kms`: Updates service API, documentation, and examples
  * Adds support for multi-Region keys
* `service/mediatailor`: Updates service API and documentation
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
  * This release enables fast cloning in Aurora Serverless. You can now clone between Aurora Serverless clusters and Aurora Provisioned clusters.
  • Loading branch information
aws-sdk-go-automation authored Jun 16, 2021
1 parent 8c3b6c6 commit 1153b13
Show file tree
Hide file tree
Showing 18 changed files with 2,947 additions and 639 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.38.63 (2021-06-16)
===

### Service Client Updates
* `service/ec2`: Updates service API and documentation
* This release adds support for VLAN-tagged network traffic over an Elastic Network Interface (ENI). This feature is in limited Preview for this release. Contact your account manager if you are interested in this feature.
* `service/kms`: Updates service API, documentation, and examples
* Adds support for multi-Region keys
* `service/mediatailor`: Updates service API and documentation
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
* This release enables fast cloning in Aurora Serverless. You can now clone between Aurora Serverless clusters and Aurora Provisioned clusters.

Release v1.38.62 (2021-06-15)
===

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.38.62"
const SDKVersion = "1.38.63"
181 changes: 179 additions & 2 deletions models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,15 @@
"input":{"shape":"AssociateTransitGatewayRouteTableRequest"},
"output":{"shape":"AssociateTransitGatewayRouteTableResult"}
},
"AssociateTrunkInterface":{
"name":"AssociateTrunkInterface",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"AssociateTrunkInterfaceRequest"},
"output":{"shape":"AssociateTrunkInterfaceResult"}
},
"AssociateVpcCidrBlock":{
"name":"AssociateVpcCidrBlock",
"http":{
Expand Down Expand Up @@ -2403,6 +2412,15 @@
"input":{"shape":"DescribeTransitGatewaysRequest"},
"output":{"shape":"DescribeTransitGatewaysResult"}
},
"DescribeTrunkInterfaceAssociations":{
"name":"DescribeTrunkInterfaceAssociations",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeTrunkInterfaceAssociationsRequest"},
"output":{"shape":"DescribeTrunkInterfaceAssociationsResult"}
},
"DescribeVolumeAttribute":{
"name":"DescribeVolumeAttribute",
"http":{
Expand Down Expand Up @@ -2739,6 +2757,15 @@
"input":{"shape":"DisassociateTransitGatewayRouteTableRequest"},
"output":{"shape":"DisassociateTransitGatewayRouteTableResult"}
},
"DisassociateTrunkInterface":{
"name":"DisassociateTrunkInterface",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DisassociateTrunkInterfaceRequest"},
"output":{"shape":"DisassociateTrunkInterfaceResult"}
},
"DisassociateVpcCidrBlock":{
"name":"DisassociateVpcCidrBlock",
"http":{
Expand Down Expand Up @@ -5106,6 +5133,37 @@
}
}
},
"AssociateTrunkInterfaceRequest":{
"type":"structure",
"required":[
"BranchInterfaceId",
"TrunkInterfaceId"
],
"members":{
"BranchInterfaceId":{"shape":"NetworkInterfaceId"},
"TrunkInterfaceId":{"shape":"NetworkInterfaceId"},
"VlanId":{"shape":"Integer"},
"GreKey":{"shape":"Integer"},
"ClientToken":{
"shape":"String",
"idempotencyToken":true
},
"DryRun":{"shape":"Boolean"}
}
},
"AssociateTrunkInterfaceResult":{
"type":"structure",
"members":{
"InterfaceAssociation":{
"shape":"TrunkInterfaceAssociation",
"locationName":"interfaceAssociation"
},
"ClientToken":{
"shape":"String",
"locationName":"clientToken"
}
}
},
"AssociateVpcCidrBlockRequest":{
"type":"structure",
"required":["VpcId"],
Expand Down Expand Up @@ -13996,6 +14054,40 @@
}
}
},
"DescribeTrunkInterfaceAssociationsMaxResults":{
"type":"integer",
"max":255,
"min":5
},
"DescribeTrunkInterfaceAssociationsRequest":{
"type":"structure",
"members":{
"AssociationIds":{
"shape":"TrunkInterfaceAssociationIdList",
"locationName":"AssociationId"
},
"DryRun":{"shape":"Boolean"},
"Filters":{
"shape":"FilterList",
"locationName":"Filter"
},
"NextToken":{"shape":"String"},
"MaxResults":{"shape":"DescribeTrunkInterfaceAssociationsMaxResults"}
}
},
"DescribeTrunkInterfaceAssociationsResult":{
"type":"structure",
"members":{
"InterfaceAssociations":{
"shape":"TrunkInterfaceAssociationList",
"locationName":"interfaceAssociationSet"
},
"NextToken":{
"shape":"String",
"locationName":"nextToken"
}
}
},
"DescribeVolumeAttributeRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -15103,6 +15195,31 @@
}
}
},
"DisassociateTrunkInterfaceRequest":{
"type":"structure",
"required":["AssociationId"],
"members":{
"AssociationId":{"shape":"TrunkInterfaceAssociationId"},
"ClientToken":{
"shape":"String",
"idempotencyToken":true
},
"DryRun":{"shape":"Boolean"}
}
},
"DisassociateTrunkInterfaceResult":{
"type":"structure",
"members":{
"Return":{
"shape":"Boolean",
"locationName":"return"
},
"ClientToken":{
"shape":"String",
"locationName":"clientToken"
}
}
},
"DisassociateVpcCidrBlockRequest":{
"type":"structure",
"required":["AssociationId"],
Expand Down Expand Up @@ -20822,6 +20939,13 @@
"EIP-ASSOCIATE"
]
},
"InterfaceProtocolType":{
"type":"string",
"enum":[
"VLAN",
"GRE"
]
},
"InternetGateway":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -24437,7 +24561,11 @@
},
"NetworkInterfaceCreationType":{
"type":"string",
"enum":["efa"]
"enum":[
"efa",
"branch",
"trunk"
]
},
"NetworkInterfaceId":{"type":"string"},
"NetworkInterfaceIdList":{
Expand Down Expand Up @@ -24576,7 +24704,8 @@
"enum":[
"interface",
"natGateway",
"efa"
"efa",
"trunk"
]
},
"NetworkPerformance":{"type":"string"},
Expand Down Expand Up @@ -31934,6 +32063,54 @@
"udp"
]
},
"TrunkInterfaceAssociation":{
"type":"structure",
"members":{
"AssociationId":{
"shape":"TrunkInterfaceAssociationId",
"locationName":"associationId"
},
"BranchInterfaceId":{
"shape":"String",
"locationName":"branchInterfaceId"
},
"TrunkInterfaceId":{
"shape":"String",
"locationName":"trunkInterfaceId"
},
"InterfaceProtocol":{
"shape":"InterfaceProtocolType",
"locationName":"interfaceProtocol"
},
"VlanId":{
"shape":"Integer",
"locationName":"vlanId"
},
"GreKey":{
"shape":"Integer",
"locationName":"greKey"
},
"Tags":{
"shape":"TagList",
"locationName":"tagSet"
}
}
},
"TrunkInterfaceAssociationId":{"type":"string"},
"TrunkInterfaceAssociationIdList":{
"type":"list",
"member":{
"shape":"TrunkInterfaceAssociationId",
"locationName":"item"
}
},
"TrunkInterfaceAssociationList":{
"type":"list",
"member":{
"shape":"TrunkInterfaceAssociation",
"locationName":"item"
}
},
"TunnelInsideIpVersion":{
"type":"string",
"enum":[
Expand Down
Loading

0 comments on commit 1153b13

Please sign in to comment.