Skip to content

Commit

Permalink
Release v1.44.315 (2023-08-02) (#4935)
Browse files Browse the repository at this point in the history
Release v1.44.315 (2023-08-02)
===

### Service Client Updates
* `service/budgets`: Updates service API and documentation
  * As part of CAE tagging integration we need to update our budget names regex filter to prevent customers from using "/action/" in their budget names.
* `service/cognito-idp`: Updates service API and documentation
* `service/glue`: Updates service API and documentation
  * This release includes additional Glue Streaming KAKFA SASL property types.
* `service/resiliencehub`: Updates service API, documentation, and paginators
* `service/sagemaker`: Updates service API and documentation
  * SageMaker Inference Recommender introduces a new API GetScalingConfigurationRecommendation to recommend auto scaling policies based on completed Inference Recommender jobs.
  • Loading branch information
aws-sdk-go-automation committed Aug 2, 2023
1 parent 8ce2209 commit dd615a4
Show file tree
Hide file tree
Showing 27 changed files with 6,783 additions and 1,481 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Release v1.44.315 (2023-08-02)
===

### Service Client Updates
* `service/budgets`: Updates service API and documentation
* As part of CAE tagging integration we need to update our budget names regex filter to prevent customers from using "/action/" in their budget names.
* `service/cognito-idp`: Updates service API and documentation
* `service/glue`: Updates service API and documentation
* This release includes additional Glue Streaming KAKFA SASL property types.
* `service/resiliencehub`: Updates service API, documentation, and paginators
* `service/sagemaker`: Updates service API and documentation
* SageMaker Inference Recommender introduces a new API GetScalingConfigurationRecommendation to recommend auto scaling policies based on completed Inference Recommender jobs.

Release v1.44.314 (2023-08-01)
===

Expand Down
21 changes: 21 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.44.314"
const SDKVersion = "1.44.315"
2 changes: 1 addition & 1 deletion models/apis/budgets/2016-10-20/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@
"type":"string",
"max":100,
"min":1,
"pattern":"[^:\\\\]+"
"pattern":"^(?![^:\\\\]*/action/)[^:\\\\]+$"
},
"BudgetNotificationsForAccount":{
"type":"structure",
Expand Down
6 changes: 3 additions & 3 deletions models/apis/budgets/2016-10-20/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,10 @@
}
},
"BudgetName": {
"base": "<p> A string that represents the budget name. The \":\" and \"\\\" characters aren't allowed.</p>",
"base": "<p> A string that represents the budget name. The \":\" and \"\\\" characters, and the \"/action/\" substring, aren't allowed.</p>",
"refs": {
"Action$BudgetName": null,
"Budget$BudgetName": "<p>The name of a budget. The name must be unique within an account. The <code>:</code> and <code>\\</code> characters aren't allowed in <code>BudgetName</code>.</p>",
"Budget$BudgetName": "<p>The name of a budget. The name must be unique within an account. The <code>:</code> and <code>\\</code> characters, and the \"/action/\" substring, aren't allowed in <code>BudgetName</code>.</p>",
"BudgetNotificationsForAccount$BudgetName": null,
"BudgetPerformanceHistory$BudgetName": null,
"CreateBudgetActionRequest$BudgetName": null,
Expand Down Expand Up @@ -828,7 +828,7 @@
}
},
"ThrottlingException": {
"base": "<p> The number of API requests has exceeded the maximum allowed API request throttling limit for the account. </p>",
"base": "<p>The number of API requests has exceeded the maximum allowed API request throttling limit for the account.</p>",
"refs": {
}
},
Expand Down
Loading

0 comments on commit dd615a4

Please sign in to comment.