Skip to content

Commit

Permalink
Merge branch 'release-1.34.123' into develop
Browse files Browse the repository at this point in the history
* release-1.34.123:
  Bumping version to 1.34.123
  Update endpoints model
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Jun 10, 2024
2 parents 16aba64 + 69e4c3c commit 8560291
Show file tree
Hide file tree
Showing 11 changed files with 2,290 additions and 24 deletions.
17 changes: 17 additions & 0 deletions .changes/1.34.123.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"category": "``application-signals``",
"description": "This is the initial SDK release for Amazon CloudWatch Application Signals. Amazon CloudWatch Application Signals provides curated application performance monitoring for developers to monitor and troubleshoot application health using pre-built dashboards and Service Level Objectives.",
"type": "api-change"
},
{
"category": "``ecs``",
"description": "This release introduces a new cluster configuration to support the customer-managed keys for ECS managed storage encryption.",
"type": "api-change"
},
{
"category": "``imagebuilder``",
"description": "This release updates the regex pattern for Image Builder ARNs.",
"type": "api-change"
}
]
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
CHANGELOG
=========

1.34.123
========

* api-change:``application-signals``: This is the initial SDK release for Amazon CloudWatch Application Signals. Amazon CloudWatch Application Signals provides curated application performance monitoring for developers to monitor and troubleshoot application health using pre-built dashboards and Service Level Objectives.
* api-change:``ecs``: This release introduces a new cluster configuration to support the customer-managed keys for ECS managed storage encryption.
* api-change:``imagebuilder``: This release updates the regex pattern for Image Builder ARNs.


1.34.122
========

Expand Down
2 changes: 1 addition & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import os
import re

__version__ = '1.34.122'
__version__ = '1.34.123'


class NullHandler(logging.Handler):
Expand Down
137 changes: 137 additions & 0 deletions botocore/data/application-signals/2024-04-15/endpoint-rule-set-1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
{
"version": "1.0",
"parameters": {
"UseFIPS": {
"builtIn": "AWS::UseFIPS",
"required": true,
"default": false,
"documentation": "When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.",
"type": "Boolean"
},
"Endpoint": {
"builtIn": "SDK::Endpoint",
"required": false,
"documentation": "Override the endpoint used to send this request",
"type": "String"
},
"Region": {
"builtIn": "AWS::Region",
"required": false,
"documentation": "The AWS region used to dispatch the request.",
"type": "String"
}
},
"rules": [
{
"conditions": [
{
"fn": "isSet",
"argv": [
{
"ref": "Endpoint"
}
]
}
],
"rules": [
{
"conditions": [
{
"fn": "booleanEquals",
"argv": [
{
"ref": "UseFIPS"
},
true
]
}
],
"error": "Invalid Configuration: FIPS and custom endpoint are not supported",
"type": "error"
},
{
"conditions": [],
"endpoint": {
"url": {
"ref": "Endpoint"
},
"properties": {},
"headers": {}
},
"type": "endpoint"
}
],
"type": "tree"
},
{
"conditions": [],
"rules": [
{
"conditions": [
{
"fn": "isSet",
"argv": [
{
"ref": "Region"
}
]
}
],
"rules": [
{
"conditions": [
{
"fn": "aws.partition",
"argv": [
{
"ref": "Region"
}
],
"assign": "PartitionResult"
}
],
"rules": [
{
"conditions": [
{
"fn": "booleanEquals",
"argv": [
{
"ref": "UseFIPS"
},
true
]
}
],
"endpoint": {
"url": "https://application-signals-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
"properties": {},
"headers": {}
},
"type": "endpoint"
},
{
"conditions": [],
"endpoint": {
"url": "https://application-signals.{Region}.{PartitionResult#dualStackDnsSuffix}",
"properties": {},
"headers": {}
},
"type": "endpoint"
}
],
"type": "tree"
}
],
"type": "tree"
},
{
"conditions": [],
"error": "Invalid Configuration: Missing Region",
"type": "error"
}
],
"type": "tree"
}
]
}
34 changes: 34 additions & 0 deletions botocore/data/application-signals/2024-04-15/paginators-1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"pagination": {
"ListServiceDependencies": {
"input_token": "NextToken",
"output_token": "NextToken",
"limit_key": "MaxResults",
"result_key": "ServiceDependencies"
},
"ListServiceDependents": {
"input_token": "NextToken",
"output_token": "NextToken",
"limit_key": "MaxResults",
"result_key": "ServiceDependents"
},
"ListServiceLevelObjectives": {
"input_token": "NextToken",
"output_token": "NextToken",
"limit_key": "MaxResults",
"result_key": "SloSummaries"
},
"ListServiceOperations": {
"input_token": "NextToken",
"output_token": "NextToken",
"limit_key": "MaxResults",
"result_key": "ServiceOperations"
},
"ListServices": {
"input_token": "NextToken",
"output_token": "NextToken",
"limit_key": "MaxResults",
"result_key": "ServiceSummaries"
}
}
}
Loading

0 comments on commit 8560291

Please sign in to comment.