Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.45.13 #4992

Merged
merged 1 commit into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Release v1.45.13 (2023-09-19)
===

### Service Client Updates
* `service/ec2`: Updates service API
* This release adds support for C7i, and R7a instance types.
* `service/outposts`: Updates service API and documentation
* `service/sagemaker`: Updates service API and documentation
* This release adds support for one-time model monitoring schedules that are executed immediately without delay, explicit data analysis windows for model monitoring schedules and exclude features attributes to remove features from model monitor analysis.

Release v1.45.12 (2023-09-18)
===

Expand Down
3 changes: 3 additions & 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.45.12"
const SDKVersion = "1.45.13"
22 changes: 21 additions & 1 deletion models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -27476,7 +27476,27 @@
"r7gd.4xlarge",
"r7gd.8xlarge",
"r7gd.12xlarge",
"r7gd.16xlarge"
"r7gd.16xlarge",
"r7a.medium",
"r7a.large",
"r7a.xlarge",
"r7a.2xlarge",
"r7a.4xlarge",
"r7a.8xlarge",
"r7a.12xlarge",
"r7a.16xlarge",
"r7a.24xlarge",
"r7a.32xlarge",
"r7a.48xlarge",
"c7i.large",
"c7i.xlarge",
"c7i.2xlarge",
"c7i.4xlarge",
"c7i.8xlarge",
"c7i.12xlarge",
"c7i.16xlarge",
"c7i.24xlarge",
"c7i.48xlarge"
]
},
"InstanceTypeHypervisor":{
Expand Down
13 changes: 12 additions & 1 deletion models/apis/outposts/2019-12-03/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,8 @@
"type":"structure",
"members":{
"HostId":{"shape":"HostId"},
"State":{"shape":"ComputeAssetState"}
"State":{"shape":"ComputeAssetState"},
"InstanceFamilies":{"shape":"InstanceFamilies"}
}
},
"ConflictException":{
Expand Down Expand Up @@ -974,6 +975,16 @@
"member":{"shape":"HostId"}
},
"ISO8601Timestamp":{"type":"timestamp"},
"InstanceFamilies":{
"type":"list",
"member":{"shape":"InstanceFamilyName"}
},
"InstanceFamilyName":{
"type":"string",
"max":200,
"min":1,
"pattern":"^(?:.{1,200}/)?(?:[a-z0-9-_A-Z])+$"
},
"InstanceType":{"type":"string"},
"InstanceTypeItem":{
"type":"structure",
Expand Down
20 changes: 16 additions & 4 deletions models/apis/outposts/2019-12-03/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,18 @@
"OrderSummary$OrderFulfilledDate": "<p> The fulfilment date for the order. </p>"
}
},
"InstanceFamilies": {
"base": null,
"refs": {
"ComputeAttributes$InstanceFamilies": "<p>A list of the names of instance families that are currently associated with a given asset.</p>"
}
},
"InstanceFamilyName": {
"base": null,
"refs": {
"InstanceFamilies$member": null
}
},
"InstanceType": {
"base": "<p>The instance type.</p>",
"refs": {
Expand Down Expand Up @@ -719,7 +731,7 @@
"refs": {
"CancelOrderInput$OrderId": "<p> The ID of the order. </p>",
"GetOrderInput$OrderId": "<p>The ID of the order.</p>",
"LineItem$PreviousOrderId": "<p>The ID of the previous order item.</p>",
"LineItem$PreviousOrderId": "<p>The ID of the previous order.</p>",
"Order$OrderId": "<p>The ID of the order.</p>",
"OrderSummary$OrderId": "<p> The ID of the order. </p>"
}
Expand All @@ -746,8 +758,8 @@
"OrderType": {
"base": null,
"refs": {
"Order$OrderType": "<p>Type of order.</p>",
"OrderSummary$OrderType": "<p> The type of order. </p>"
"Order$OrderType": "<p>The type of order.</p>",
"OrderSummary$OrderType": "<p>The type of order.</p>"
}
},
"Outpost": {
Expand Down Expand Up @@ -977,7 +989,7 @@
"refs": {
"CatalogItem$CatalogItemId": "<p> The ID of the catalog item. </p>",
"GetCatalogItemInput$CatalogItemId": "<p>The ID of the catalog item.</p>",
"LineItem$CatalogItemId": "<p> The ID of the catalog item. </p>",
"LineItem$CatalogItemId": "<p> The ID of the catalog item.</p>",
"LineItemRequest$CatalogItemId": "<p>The ID of the catalog item.</p>"
}
},
Expand Down
Loading