Skip to content

Commit

Permalink
Release v1.43.26 (2022-03-25) (#4335)
Browse files Browse the repository at this point in the history
Release v1.43.26 (2022-03-25)
===

### Service Client Updates
* `service/batch`: Updates service documentation
  * Bug Fix: Fixed a bug where shapes were marked as unboxed and were not serialized and sent over the wire, causing an API error from the service.
* `service/ec2`: Updates service API and documentation
  * This is release adds support for Amazon VPC Reachability Analyzer to analyze path through a Transit Gateway.
* `service/ssm`: Updates service API and documentation
  * This Patch Manager release supports creating, updating, and deleting Patch Baselines for Rocky Linux OS.
  • Loading branch information
aws-sdk-go-automation committed Mar 25, 2022
1 parent 7752839 commit 7f50d86
Show file tree
Hide file tree
Showing 10 changed files with 425 additions and 74 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Release v1.43.26 (2022-03-25)
===

### Service Client Updates
* `service/batch`: Updates service documentation
* Bug Fix: Fixed a bug where shapes were marked as unboxed and were not serialized and sent over the wire, causing an API error from the service.
* `service/ec2`: Updates service API and documentation
* This is release adds support for Amazon VPC Reachability Analyzer to analyze path through a Transit Gateway.
* `service/ssm`: Updates service API and documentation
* This Patch Manager release supports creating, updating, and deleting Patch Baselines for Rocky Linux OS.

Release v1.43.25 (2022-03-24)
===

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.43.25"
const SDKVersion = "1.43.26"
16 changes: 8 additions & 8 deletions models/apis/batch/2016-08-10/docs-2.json

Large diffs are not rendered by default.

88 changes: 85 additions & 3 deletions models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -5042,6 +5042,26 @@
"Description":{"shape":"String"}
}
},
"AdditionalDetail":{
"type":"structure",
"members":{
"AdditionalDetailType":{
"shape":"String",
"locationName":"additionalDetailType"
},
"Component":{
"shape":"AnalysisComponent",
"locationName":"component"
}
}
},
"AdditionalDetailList":{
"type":"list",
"member":{
"shape":"AdditionalDetail",
"locationName":"item"
}
},
"Address":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -8200,7 +8220,7 @@
"type":"structure",
"members":{
"PoolId":{
"shape":"CoipPoolId",
"shape":"Ipv4PoolCoipId",
"locationName":"poolId"
},
"PoolCidrs":{
Expand All @@ -8225,7 +8245,7 @@
"CoipPoolIdSet":{
"type":"list",
"member":{
"shape":"CoipPoolId",
"shape":"Ipv4PoolCoipId",
"locationName":"item"
}
},
Expand Down Expand Up @@ -18541,6 +18561,22 @@
"VpnGateway":{
"shape":"AnalysisComponent",
"locationName":"vpnGateway"
},
"TransitGateway":{
"shape":"AnalysisComponent",
"locationName":"transitGateway"
},
"TransitGatewayRouteTable":{
"shape":"AnalysisComponent",
"locationName":"transitGatewayRouteTable"
},
"TransitGatewayRouteTableRoute":{
"shape":"TransitGatewayRouteTableRoute",
"locationName":"transitGatewayRouteTableRoute"
},
"TransitGatewayAttachment":{
"shape":"AnalysisComponent",
"locationName":"transitGatewayAttachment"
}
}
},
Expand Down Expand Up @@ -19805,7 +19841,7 @@
"type":"structure",
"required":["PoolId"],
"members":{
"PoolId":{"shape":"CoipPoolId"},
"PoolId":{"shape":"Ipv4PoolCoipId"},
"Filters":{
"shape":"FilterList",
"locationName":"Filter"
Expand Down Expand Up @@ -25029,6 +25065,7 @@
"delete-failed"
]
},
"Ipv4PoolCoipId":{"type":"string"},
"Ipv4PoolEc2Id":{"type":"string"},
"Ipv4PrefixList":{
"type":"list",
Expand Down Expand Up @@ -29686,6 +29723,18 @@
"Vpc":{
"shape":"AnalysisComponent",
"locationName":"vpc"
},
"AdditionalDetails":{
"shape":"AdditionalDetailList",
"locationName":"additionalDetailSet"
},
"TransitGateway":{
"shape":"AnalysisComponent",
"locationName":"transitGateway"
},
"TransitGatewayRouteTableRoute":{
"shape":"TransitGatewayRouteTableRoute",
"locationName":"transitGatewayRouteTableRoute"
}
}
},
Expand Down Expand Up @@ -37608,6 +37657,39 @@
"locationName":"item"
}
},
"TransitGatewayRouteTableRoute":{
"type":"structure",
"members":{
"DestinationCidr":{
"shape":"String",
"locationName":"destinationCidr"
},
"State":{
"shape":"String",
"locationName":"state"
},
"RouteOrigin":{
"shape":"String",
"locationName":"routeOrigin"
},
"PrefixListId":{
"shape":"String",
"locationName":"prefixListId"
},
"AttachmentId":{
"shape":"String",
"locationName":"attachmentId"
},
"ResourceId":{
"shape":"String",
"locationName":"resourceId"
},
"ResourceType":{
"shape":"String",
"locationName":"resourceType"
}
}
},
"TransitGatewayRouteTableState":{
"type":"string",
"enum":[
Expand Down
55 changes: 46 additions & 9 deletions models/apis/ec2/2016-11-15/docs-2.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion models/apis/ssm/2014-11-06/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -7291,7 +7291,8 @@
"ORACLE_LINUX",
"DEBIAN",
"MACOS",
"RASPBIAN"
"RASPBIAN",
"ROCKY_LINUX"
]
},
"OpsAggregator":{
Expand Down
18 changes: 9 additions & 9 deletions models/apis/ssm/2014-11-06/docs-2.json

Large diffs are not rendered by default.

38 changes: 21 additions & 17 deletions service/batch/api.go

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

Loading

0 comments on commit 7f50d86

Please sign in to comment.