Skip to content

Commit

Permalink
Release v1.33.21 (2020-08-06) (#3462)
Browse files Browse the repository at this point in the history
Release v1.33.21 (2020-08-06)
===

### Service Client Updates
* `service/ec2`: Updates service API, documentation, and paginators
  * This release supports Wavelength resources, including carrier gateways, and carrier IP addresses.
* `service/lex-models`: Updates service API and documentation
* `service/personalize`: Updates service API and documentation
* `service/personalize-events`: Updates service API and documentation
* `service/personalize-runtime`: Updates service API and documentation
* `service/runtime.lex`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation committed Aug 6, 2020
1 parent 2007a98 commit b811ea8
Show file tree
Hide file tree
Showing 25 changed files with 1,918 additions and 142 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.33.21 (2020-08-06)
===

### Service Client Updates
* `service/ec2`: Updates service API, documentation, and paginators
* This release supports Wavelength resources, including carrier gateways, and carrier IP addresses.
* `service/lex-models`: Updates service API and documentation
* `service/personalize`: Updates service API and documentation
* `service/personalize-events`: Updates service API and documentation
* `service/personalize-runtime`: Updates service API and documentation
* `service/runtime.lex`: Updates service API and documentation

Release v1.33.20 (2020-08-05)
===

Expand Down
1 change: 1 addition & 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
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.33.20"
const SDKVersion = "1.33.21"
177 changes: 177 additions & 0 deletions models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,15 @@
"input":{"shape":"CreateCapacityReservationRequest"},
"output":{"shape":"CreateCapacityReservationResult"}
},
"CreateCarrierGateway":{
"name":"CreateCarrierGateway",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"CreateCarrierGatewayRequest"},
"output":{"shape":"CreateCarrierGatewayResult"}
},
"CreateClientVpnEndpoint":{
"name":"CreateClientVpnEndpoint",
"http":{
Expand Down Expand Up @@ -858,6 +867,15 @@
"input":{"shape":"CreateVpnGatewayRequest"},
"output":{"shape":"CreateVpnGatewayResult"}
},
"DeleteCarrierGateway":{
"name":"DeleteCarrierGateway",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteCarrierGatewayRequest"},
"output":{"shape":"DeleteCarrierGatewayResult"}
},
"DeleteClientVpnEndpoint":{
"name":"DeleteClientVpnEndpoint",
"http":{
Expand Down Expand Up @@ -1377,6 +1395,15 @@
"input":{"shape":"DescribeCapacityReservationsRequest"},
"output":{"shape":"DescribeCapacityReservationsResult"}
},
"DescribeCarrierGateways":{
"name":"DescribeCarrierGateways",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeCarrierGatewaysRequest"},
"output":{"shape":"DescribeCarrierGatewaysResult"}
},
"DescribeClassicLinkInstances":{
"name":"DescribeClassicLinkInstances",
"http":{
Expand Down Expand Up @@ -3912,6 +3939,10 @@
"CustomerOwnedIpv4Pool":{
"shape":"String",
"locationName":"customerOwnedIpv4Pool"
},
"CarrierIp":{
"shape":"String",
"locationName":"carrierIp"
}
}
},
Expand Down Expand Up @@ -3990,6 +4021,10 @@
"CustomerOwnedIpv4Pool":{
"shape":"String",
"locationName":"customerOwnedIpv4Pool"
},
"CarrierIp":{
"shape":"String",
"locationName":"carrierIp"
}
}
},
Expand Down Expand Up @@ -5605,6 +5640,57 @@
"dedicated"
]
},
"CarrierGateway":{
"type":"structure",
"members":{
"CarrierGatewayId":{
"shape":"CarrierGatewayId",
"locationName":"carrierGatewayId"
},
"VpcId":{
"shape":"VpcId",
"locationName":"vpcId"
},
"State":{
"shape":"CarrierGatewayState",
"locationName":"state"
},
"OwnerId":{
"shape":"String",
"locationName":"ownerId"
},
"Tags":{
"shape":"TagList",
"locationName":"tagSet"
}
}
},
"CarrierGatewayId":{"type":"string"},
"CarrierGatewayIdSet":{
"type":"list",
"member":{"shape":"CarrierGatewayId"}
},
"CarrierGatewayMaxResults":{
"type":"integer",
"max":1000,
"min":5
},
"CarrierGatewaySet":{
"type":"list",
"member":{
"shape":"CarrierGateway",
"locationName":"item"
}
},
"CarrierGatewayState":{
"type":"string",
"enum":[
"pending",
"available",
"deleting",
"deleted"
]
},
"CertificateAuthentication":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -6495,6 +6581,31 @@
}
}
},
"CreateCarrierGatewayRequest":{
"type":"structure",
"required":["VpcId"],
"members":{
"VpcId":{"shape":"VpcId"},
"TagSpecifications":{
"shape":"TagSpecificationList",
"locationName":"TagSpecification"
},
"DryRun":{"shape":"Boolean"},
"ClientToken":{
"shape":"String",
"idempotencyToken":true
}
}
},
"CreateCarrierGatewayResult":{
"type":"structure",
"members":{
"CarrierGateway":{
"shape":"CarrierGateway",
"locationName":"carrierGateway"
}
}
},
"CreateClientVpnEndpointRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -7419,6 +7530,7 @@
},
"TransitGatewayId":{"shape":"TransitGatewayId"},
"LocalGatewayId":{"shape":"LocalGatewayId"},
"CarrierGatewayId":{"shape":"CarrierGatewayId"},
"NetworkInterfaceId":{
"shape":"NetworkInterfaceId",
"locationName":"networkInterfaceId"
Expand Down Expand Up @@ -8320,6 +8432,23 @@
]
},
"DefaultingDhcpOptionsId":{"type":"string"},
"DeleteCarrierGatewayRequest":{
"type":"structure",
"required":["CarrierGatewayId"],
"members":{
"CarrierGatewayId":{"shape":"CarrierGatewayId"},
"DryRun":{"shape":"Boolean"}
}
},
"DeleteCarrierGatewayResult":{
"type":"structure",
"members":{
"CarrierGateway":{
"shape":"CarrierGateway",
"locationName":"carrierGateway"
}
}
},
"DeleteClientVpnEndpointRequest":{
"type":"structure",
"required":["ClientVpnEndpointId"],
Expand Down Expand Up @@ -9549,6 +9678,35 @@
}
}
},
"DescribeCarrierGatewaysRequest":{
"type":"structure",
"members":{
"CarrierGatewayIds":{
"shape":"CarrierGatewayIdSet",
"locationName":"CarrierGatewayId"
},
"Filters":{
"shape":"FilterList",
"locationName":"Filter"
},
"MaxResults":{"shape":"CarrierGatewayMaxResults"},
"NextToken":{"shape":"String"},
"DryRun":{"shape":"Boolean"}
}
},
"DescribeCarrierGatewaysResult":{
"type":"structure",
"members":{
"CarrierGateways":{
"shape":"CarrierGatewaySet",
"locationName":"carrierGatewaySet"
},
"NextToken":{
"shape":"String",
"locationName":"nextToken"
}
}
},
"DescribeClassicLinkInstancesMaxResults":{
"type":"integer",
"max":1000,
Expand Down Expand Up @@ -17892,6 +18050,10 @@
"InstanceNetworkInterfaceAssociation":{
"type":"structure",
"members":{
"CarrierIp":{
"shape":"String",
"locationName":"carrierIp"
},
"IpOwnerId":{
"shape":"String",
"locationName":"ipOwnerId"
Expand Down Expand Up @@ -17991,6 +18153,7 @@
"shape":"String",
"locationName":"subnetId"
},
"AssociateCarrierIpAddress":{"shape":"Boolean"},
"InterfaceType":{"shape":"String"}
}
},
Expand Down Expand Up @@ -19518,6 +19681,10 @@
"LaunchTemplateInstanceNetworkInterfaceSpecification":{
"type":"structure",
"members":{
"AssociateCarrierIpAddress":{
"shape":"Boolean",
"locationName":"associateCarrierIpAddress"
},
"AssociatePublicIpAddress":{
"shape":"Boolean",
"locationName":"associatePublicIpAddress"
Expand Down Expand Up @@ -19582,6 +19749,7 @@
"LaunchTemplateInstanceNetworkInterfaceSpecificationRequest":{
"type":"structure",
"members":{
"AssociateCarrierIpAddress":{"shape":"Boolean"},
"AssociatePublicIpAddress":{"shape":"Boolean"},
"DeleteOnTermination":{"shape":"Boolean"},
"Description":{"shape":"String"},
Expand Down Expand Up @@ -21895,6 +22063,10 @@
"PublicIp":{
"shape":"String",
"locationName":"publicIp"
},
"CarrierIp":{
"shape":"String",
"locationName":"carrierIp"
}
}
},
Expand Down Expand Up @@ -23762,6 +23934,7 @@
},
"TransitGatewayId":{"shape":"TransitGatewayId"},
"LocalGatewayId":{"shape":"LocalGatewayId"},
"CarrierGatewayId":{"shape":"CarrierGatewayId"},
"NetworkInterfaceId":{
"shape":"NetworkInterfaceId",
"locationName":"networkInterfaceId"
Expand Down Expand Up @@ -25092,6 +25265,10 @@
"shape":"String",
"locationName":"localGatewayId"
},
"CarrierGatewayId":{
"shape":"CarrierGatewayId",
"locationName":"carrierGatewayId"
},
"NetworkInterfaceId":{
"shape":"String",
"locationName":"networkInterfaceId"
Expand Down
Loading

0 comments on commit b811ea8

Please sign in to comment.