Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit 67d3a1d

Browse files
Release v1.44.173 (2023-01-04) (#4680)
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
1 parent 2d87e1b commit 67d3a1d

File tree

15 files changed

+3247
-658
lines changed

15 files changed

+3247
-658
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Release v1.44.173 (2023-01-04)
2+
===
3+
4+
### Service Client Updates
5+
* `service/application-autoscaling`: Updates service API and documentation
6+
* `service/logs`: Updates service documentation
7+
* Update to remove sequenceToken as a required field in PutLogEvents calls.
8+
* `service/ssm`: Updates service API and documentation
9+
* Adding support for QuickSetup Document Type in Systems Manager
10+
111
Release v1.44.172 (2023-01-03)
212
===
313

aws/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.44.172"
8+
const SDKVersion = "1.44.173"

models/apis/application-autoscaling/2016-02-06/api-2.json

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,8 @@
299299
"ResourceId":{"shape":"ResourceIdMaxLen1600"},
300300
"ScalableDimension":{"shape":"ScalableDimension"},
301301
"MaxResults":{"shape":"MaxResults"},
302-
"NextToken":{"shape":"XmlString"}
302+
"NextToken":{"shape":"XmlString"},
303+
"IncludeNotScaledActivities":{"shape":"IncludeNotScaledActivities"}
303304
}
304305
},
305306
"DescribeScalingActivitiesResponse":{
@@ -356,6 +357,7 @@
356357
},
357358
"exception":true
358359
},
360+
"IncludeNotScaledActivities":{"type":"boolean"},
359361
"InternalServiceException":{
360362
"type":"structure",
361363
"members":{
@@ -444,6 +446,20 @@
444446
},
445447
"MetricUnit":{"type":"string"},
446448
"MinAdjustmentMagnitude":{"type":"integer"},
449+
"NotScaledReason":{
450+
"type":"structure",
451+
"required":["Code"],
452+
"members":{
453+
"Code":{"shape":"XmlString"},
454+
"MaxCapacity":{"shape":"ResourceCapacity"},
455+
"MinCapacity":{"shape":"ResourceCapacity"},
456+
"CurrentCapacity":{"shape":"ResourceCapacity"}
457+
}
458+
},
459+
"NotScaledReasons":{
460+
"type":"list",
461+
"member":{"shape":"NotScaledReason"}
462+
},
447463
"ObjectNotFoundException":{
448464
"type":"structure",
449465
"members":{
@@ -651,7 +667,8 @@
651667
"EndTime":{"shape":"TimestampType"},
652668
"StatusCode":{"shape":"ScalingActivityStatusCode"},
653669
"StatusMessage":{"shape":"XmlString"},
654-
"Details":{"shape":"XmlString"}
670+
"Details":{"shape":"XmlString"},
671+
"NotScaledReasons":{"shape":"NotScaledReasons"}
655672
}
656673
},
657674
"ScalingActivityStatusCode":{

models/apis/application-autoscaling/2016-02-06/docs-2.json

Lines changed: 52 additions & 30 deletions
Large diffs are not rendered by default.
Lines changed: 315 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,315 @@
1+
{
2+
"version": "1.0",
3+
"parameters": {
4+
"Region": {
5+
"builtIn": "AWS::Region",
6+
"required": true,
7+
"documentation": "The AWS region used to dispatch the request.",
8+
"type": "String"
9+
},
10+
"UseDualStack": {
11+
"builtIn": "AWS::UseDualStack",
12+
"required": true,
13+
"default": false,
14+
"documentation": "When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.",
15+
"type": "Boolean"
16+
},
17+
"UseFIPS": {
18+
"builtIn": "AWS::UseFIPS",
19+
"required": true,
20+
"default": false,
21+
"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.",
22+
"type": "Boolean"
23+
},
24+
"Endpoint": {
25+
"builtIn": "SDK::Endpoint",
26+
"required": false,
27+
"documentation": "Override the endpoint used to send this request",
28+
"type": "String"
29+
}
30+
},
31+
"rules": [
32+
{
33+
"conditions": [
34+
{
35+
"fn": "aws.partition",
36+
"argv": [
37+
{
38+
"ref": "Region"
39+
}
40+
],
41+
"assign": "PartitionResult"
42+
}
43+
],
44+
"type": "tree",
45+
"rules": [
46+
{
47+
"conditions": [
48+
{
49+
"fn": "isSet",
50+
"argv": [
51+
{
52+
"ref": "Endpoint"
53+
}
54+
]
55+
},
56+
{
57+
"fn": "parseURL",
58+
"argv": [
59+
{
60+
"ref": "Endpoint"
61+
}
62+
],
63+
"assign": "url"
64+
}
65+
],
66+
"type": "tree",
67+
"rules": [
68+
{
69+
"conditions": [
70+
{
71+
"fn": "booleanEquals",
72+
"argv": [
73+
{
74+
"ref": "UseFIPS"
75+
},
76+
true
77+
]
78+
}
79+
],
80+
"error": "Invalid Configuration: FIPS and custom endpoint are not supported",
81+
"type": "error"
82+
},
83+
{
84+
"conditions": [],
85+
"type": "tree",
86+
"rules": [
87+
{
88+
"conditions": [
89+
{
90+
"fn": "booleanEquals",
91+
"argv": [
92+
{
93+
"ref": "UseDualStack"
94+
},
95+
true
96+
]
97+
}
98+
],
99+
"error": "Invalid Configuration: Dualstack and custom endpoint are not supported",
100+
"type": "error"
101+
},
102+
{
103+
"conditions": [],
104+
"endpoint": {
105+
"url": {
106+
"ref": "Endpoint"
107+
},
108+
"properties": {},
109+
"headers": {}
110+
},
111+
"type": "endpoint"
112+
}
113+
]
114+
}
115+
]
116+
},
117+
{
118+
"conditions": [
119+
{
120+
"fn": "booleanEquals",
121+
"argv": [
122+
{
123+
"ref": "UseFIPS"
124+
},
125+
true
126+
]
127+
},
128+
{
129+
"fn": "booleanEquals",
130+
"argv": [
131+
{
132+
"ref": "UseDualStack"
133+
},
134+
true
135+
]
136+
}
137+
],
138+
"type": "tree",
139+
"rules": [
140+
{
141+
"conditions": [
142+
{
143+
"fn": "booleanEquals",
144+
"argv": [
145+
true,
146+
{
147+
"fn": "getAttr",
148+
"argv": [
149+
{
150+
"ref": "PartitionResult"
151+
},
152+
"supportsFIPS"
153+
]
154+
}
155+
]
156+
},
157+
{
158+
"fn": "booleanEquals",
159+
"argv": [
160+
true,
161+
{
162+
"fn": "getAttr",
163+
"argv": [
164+
{
165+
"ref": "PartitionResult"
166+
},
167+
"supportsDualStack"
168+
]
169+
}
170+
]
171+
}
172+
],
173+
"type": "tree",
174+
"rules": [
175+
{
176+
"conditions": [],
177+
"endpoint": {
178+
"url": "https://application-autoscaling-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
179+
"properties": {},
180+
"headers": {}
181+
},
182+
"type": "endpoint"
183+
}
184+
]
185+
},
186+
{
187+
"conditions": [],
188+
"error": "FIPS and DualStack are enabled, but this partition does not support one or both",
189+
"type": "error"
190+
}
191+
]
192+
},
193+
{
194+
"conditions": [
195+
{
196+
"fn": "booleanEquals",
197+
"argv": [
198+
{
199+
"ref": "UseFIPS"
200+
},
201+
true
202+
]
203+
}
204+
],
205+
"type": "tree",
206+
"rules": [
207+
{
208+
"conditions": [
209+
{
210+
"fn": "booleanEquals",
211+
"argv": [
212+
true,
213+
{
214+
"fn": "getAttr",
215+
"argv": [
216+
{
217+
"ref": "PartitionResult"
218+
},
219+
"supportsFIPS"
220+
]
221+
}
222+
]
223+
}
224+
],
225+
"type": "tree",
226+
"rules": [
227+
{
228+
"conditions": [],
229+
"type": "tree",
230+
"rules": [
231+
{
232+
"conditions": [],
233+
"endpoint": {
234+
"url": "https://application-autoscaling-fips.{Region}.{PartitionResult#dnsSuffix}",
235+
"properties": {},
236+
"headers": {}
237+
},
238+
"type": "endpoint"
239+
}
240+
]
241+
}
242+
]
243+
},
244+
{
245+
"conditions": [],
246+
"error": "FIPS is enabled but this partition does not support FIPS",
247+
"type": "error"
248+
}
249+
]
250+
},
251+
{
252+
"conditions": [
253+
{
254+
"fn": "booleanEquals",
255+
"argv": [
256+
{
257+
"ref": "UseDualStack"
258+
},
259+
true
260+
]
261+
}
262+
],
263+
"type": "tree",
264+
"rules": [
265+
{
266+
"conditions": [
267+
{
268+
"fn": "booleanEquals",
269+
"argv": [
270+
true,
271+
{
272+
"fn": "getAttr",
273+
"argv": [
274+
{
275+
"ref": "PartitionResult"
276+
},
277+
"supportsDualStack"
278+
]
279+
}
280+
]
281+
}
282+
],
283+
"type": "tree",
284+
"rules": [
285+
{
286+
"conditions": [],
287+
"endpoint": {
288+
"url": "https://application-autoscaling.{Region}.{PartitionResult#dualStackDnsSuffix}",
289+
"properties": {},
290+
"headers": {}
291+
},
292+
"type": "endpoint"
293+
}
294+
]
295+
},
296+
{
297+
"conditions": [],
298+
"error": "DualStack is enabled but this partition does not support DualStack",
299+
"type": "error"
300+
}
301+
]
302+
},
303+
{
304+
"conditions": [],
305+
"endpoint": {
306+
"url": "https://application-autoscaling.{Region}.{PartitionResult#dnsSuffix}",
307+
"properties": {},
308+
"headers": {}
309+
},
310+
"type": "endpoint"
311+
}
312+
]
313+
}
314+
]
315+
}

0 commit comments

Comments
 (0)