Skip to content

Commit

Permalink
Release v1.44.173 (2023-01-04) (#4680)
Browse files Browse the repository at this point in the history
Release v1.44.173 (2023-01-04)
===

### Service Client Updates
* `service/application-autoscaling`: Updates service API and documentation
* `service/logs`: Updates service documentation
  * Update to remove sequenceToken as a required field in PutLogEvents calls.
* `service/ssm`: Updates service API and documentation
  * Adding support for QuickSetup Document Type in Systems Manager
  • Loading branch information
aws-sdk-go-automation committed Jan 4, 2023
1 parent 2d87e1b commit 67d3a1d
Show file tree
Hide file tree
Showing 15 changed files with 3,247 additions and 658 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,13 @@
Release v1.44.173 (2023-01-04)
===

### Service Client Updates
* `service/application-autoscaling`: Updates service API and documentation
* `service/logs`: Updates service documentation
* Update to remove sequenceToken as a required field in PutLogEvents calls.
* `service/ssm`: Updates service API and documentation
* Adding support for QuickSetup Document Type in Systems Manager

Release v1.44.172 (2023-01-03)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.44.172"
const SDKVersion = "1.44.173"
21 changes: 19 additions & 2 deletions models/apis/application-autoscaling/2016-02-06/api-2.json
Expand Up @@ -299,7 +299,8 @@
"ResourceId":{"shape":"ResourceIdMaxLen1600"},
"ScalableDimension":{"shape":"ScalableDimension"},
"MaxResults":{"shape":"MaxResults"},
"NextToken":{"shape":"XmlString"}
"NextToken":{"shape":"XmlString"},
"IncludeNotScaledActivities":{"shape":"IncludeNotScaledActivities"}
}
},
"DescribeScalingActivitiesResponse":{
Expand Down Expand Up @@ -356,6 +357,7 @@
},
"exception":true
},
"IncludeNotScaledActivities":{"type":"boolean"},
"InternalServiceException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -444,6 +446,20 @@
},
"MetricUnit":{"type":"string"},
"MinAdjustmentMagnitude":{"type":"integer"},
"NotScaledReason":{
"type":"structure",
"required":["Code"],
"members":{
"Code":{"shape":"XmlString"},
"MaxCapacity":{"shape":"ResourceCapacity"},
"MinCapacity":{"shape":"ResourceCapacity"},
"CurrentCapacity":{"shape":"ResourceCapacity"}
}
},
"NotScaledReasons":{
"type":"list",
"member":{"shape":"NotScaledReason"}
},
"ObjectNotFoundException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -651,7 +667,8 @@
"EndTime":{"shape":"TimestampType"},
"StatusCode":{"shape":"ScalingActivityStatusCode"},
"StatusMessage":{"shape":"XmlString"},
"Details":{"shape":"XmlString"}
"Details":{"shape":"XmlString"},
"NotScaledReasons":{"shape":"NotScaledReasons"}
}
},
"ScalingActivityStatusCode":{
Expand Down
82 changes: 52 additions & 30 deletions models/apis/application-autoscaling/2016-02-06/docs-2.json

Large diffs are not rendered by default.

@@ -0,0 +1,315 @@
{
"version": "1.0",
"parameters": {
"Region": {
"builtIn": "AWS::Region",
"required": true,
"documentation": "The AWS region used to dispatch the request.",
"type": "String"
},
"UseDualStack": {
"builtIn": "AWS::UseDualStack",
"required": true,
"default": false,
"documentation": "When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.",
"type": "Boolean"
},
"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"
}
},
"rules": [
{
"conditions": [
{
"fn": "aws.partition",
"argv": [
{
"ref": "Region"
}
],
"assign": "PartitionResult"
}
],
"type": "tree",
"rules": [
{
"conditions": [
{
"fn": "isSet",
"argv": [
{
"ref": "Endpoint"
}
]
},
{
"fn": "parseURL",
"argv": [
{
"ref": "Endpoint"
}
],
"assign": "url"
}
],
"type": "tree",
"rules": [
{
"conditions": [
{
"fn": "booleanEquals",
"argv": [
{
"ref": "UseFIPS"
},
true
]
}
],
"error": "Invalid Configuration: FIPS and custom endpoint are not supported",
"type": "error"
},
{
"conditions": [],
"type": "tree",
"rules": [
{
"conditions": [
{
"fn": "booleanEquals",
"argv": [
{
"ref": "UseDualStack"
},
true
]
}
],
"error": "Invalid Configuration: Dualstack and custom endpoint are not supported",
"type": "error"
},
{
"conditions": [],
"endpoint": {
"url": {
"ref": "Endpoint"
},
"properties": {},
"headers": {}
},
"type": "endpoint"
}
]
}
]
},
{
"conditions": [
{
"fn": "booleanEquals",
"argv": [
{
"ref": "UseFIPS"
},
true
]
},
{
"fn": "booleanEquals",
"argv": [
{
"ref": "UseDualStack"
},
true
]
}
],
"type": "tree",
"rules": [
{
"conditions": [
{
"fn": "booleanEquals",
"argv": [
true,
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
"supportsFIPS"
]
}
]
},
{
"fn": "booleanEquals",
"argv": [
true,
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
"supportsDualStack"
]
}
]
}
],
"type": "tree",
"rules": [
{
"conditions": [],
"endpoint": {
"url": "https://application-autoscaling-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
"properties": {},
"headers": {}
},
"type": "endpoint"
}
]
},
{
"conditions": [],
"error": "FIPS and DualStack are enabled, but this partition does not support one or both",
"type": "error"
}
]
},
{
"conditions": [
{
"fn": "booleanEquals",
"argv": [
{
"ref": "UseFIPS"
},
true
]
}
],
"type": "tree",
"rules": [
{
"conditions": [
{
"fn": "booleanEquals",
"argv": [
true,
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
"supportsFIPS"
]
}
]
}
],
"type": "tree",
"rules": [
{
"conditions": [],
"type": "tree",
"rules": [
{
"conditions": [],
"endpoint": {
"url": "https://application-autoscaling-fips.{Region}.{PartitionResult#dnsSuffix}",
"properties": {},
"headers": {}
},
"type": "endpoint"
}
]
}
]
},
{
"conditions": [],
"error": "FIPS is enabled but this partition does not support FIPS",
"type": "error"
}
]
},
{
"conditions": [
{
"fn": "booleanEquals",
"argv": [
{
"ref": "UseDualStack"
},
true
]
}
],
"type": "tree",
"rules": [
{
"conditions": [
{
"fn": "booleanEquals",
"argv": [
true,
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
"supportsDualStack"
]
}
]
}
],
"type": "tree",
"rules": [
{
"conditions": [],
"endpoint": {
"url": "https://application-autoscaling.{Region}.{PartitionResult#dualStackDnsSuffix}",
"properties": {},
"headers": {}
},
"type": "endpoint"
}
]
},
{
"conditions": [],
"error": "DualStack is enabled but this partition does not support DualStack",
"type": "error"
}
]
},
{
"conditions": [],
"endpoint": {
"url": "https://application-autoscaling.{Region}.{PartitionResult#dnsSuffix}",
"properties": {},
"headers": {}
},
"type": "endpoint"
}
]
}
]
}

0 comments on commit 67d3a1d

Please sign in to comment.