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

Commit dce5731

Browse files
Release v1.44.225 (2023-03-20) (#4766)
Release v1.44.225 (2023-03-20) === ### Service Client Updates * `service/application-autoscaling`: Updates service API, documentation, and examples * `service/neptune`: Updates service API and documentation * This release makes following few changes. db-cluster-identifier is now a required parameter of create-db-instance. describe-db-cluster will now return PendingModifiedValues and GlobalClusterIdentifier fields in the response. * `service/s3outposts`: Updates service API and documentation * `service/workdocs`: Updates service API, documentation, and paginators * This release adds a new API, SearchResources, which enable users to search through metadata and content of folders, documents, document versions and comments in a WorkDocs site.
1 parent 02f19bf commit dce5731

File tree

29 files changed

+4726
-2114
lines changed

29 files changed

+4726
-2114
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Release v1.44.225 (2023-03-20)
2+
===
3+
4+
### Service Client Updates
5+
* `service/application-autoscaling`: Updates service API, documentation, and examples
6+
* `service/neptune`: Updates service API and documentation
7+
* This release makes following few changes. db-cluster-identifier is now a required parameter of create-db-instance. describe-db-cluster will now return PendingModifiedValues and GlobalClusterIdentifier fields in the response.
8+
* `service/s3outposts`: Updates service API and documentation
9+
* `service/workdocs`: Updates service API, documentation, and paginators
10+
* This release adds a new API, SearchResources, which enable users to search through metadata and content of folders, documents, document versions and comments in a WorkDocs site.
11+
112
Release v1.44.224 (2023-03-17)
213
===
314

aws/endpoints/defaults.go

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.224"
8+
const SDKVersion = "1.44.225"

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

Lines changed: 133 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,18 @@
119119
{"shape":"InternalServiceException"}
120120
]
121121
},
122+
"ListTagsForResource":{
123+
"name":"ListTagsForResource",
124+
"http":{
125+
"method":"POST",
126+
"requestUri":"/"
127+
},
128+
"input":{"shape":"ListTagsForResourceRequest"},
129+
"output":{"shape":"ListTagsForResourceResponse"},
130+
"errors":[
131+
{"shape":"ResourceNotFoundException"}
132+
]
133+
},
122134
"PutScalingPolicy":{
123135
"name":"PutScalingPolicy",
124136
"http":{
@@ -166,6 +178,33 @@
166178
{"shape":"ConcurrentUpdateException"},
167179
{"shape":"InternalServiceException"}
168180
]
181+
},
182+
"TagResource":{
183+
"name":"TagResource",
184+
"http":{
185+
"method":"POST",
186+
"requestUri":"/"
187+
},
188+
"input":{"shape":"TagResourceRequest"},
189+
"output":{"shape":"TagResourceResponse"},
190+
"errors":[
191+
{"shape":"ResourceNotFoundException"},
192+
{"shape":"TooManyTagsException"},
193+
{"shape":"ValidationException"}
194+
]
195+
},
196+
"UntagResource":{
197+
"name":"UntagResource",
198+
"http":{
199+
"method":"POST",
200+
"requestUri":"/"
201+
},
202+
"input":{"shape":"UntagResourceRequest"},
203+
"output":{"shape":"UntagResourceResponse"},
204+
"errors":[
205+
{"shape":"ResourceNotFoundException"},
206+
{"shape":"ValidationException"}
207+
]
169208
}
170209
},
171210
"shapes":{
@@ -192,6 +231,12 @@
192231
"type":"list",
193232
"member":{"shape":"Alarm"}
194233
},
234+
"AmazonResourceName":{
235+
"type":"string",
236+
"max":1011,
237+
"min":1,
238+
"pattern":"^arn:.+:application-autoscaling:.+:[0-9]+:scalable-target\\/[a-zA-Z0-9-]+$"
239+
},
195240
"ConcurrentUpdateException":{
196241
"type":"structure",
197242
"members":{
@@ -346,6 +391,7 @@
346391
},
347392
"DisableScaleIn":{"type":"boolean"},
348393
"ErrorMessage":{"type":"string"},
394+
"ExceptionMessage":{"type":"string"},
349395
"Expression":{
350396
"type":"string",
351397
"max":2048,
@@ -387,6 +433,19 @@
387433
},
388434
"exception":true
389435
},
436+
"ListTagsForResourceRequest":{
437+
"type":"structure",
438+
"required":["ResourceARN"],
439+
"members":{
440+
"ResourceARN":{"shape":"AmazonResourceName"}
441+
}
442+
},
443+
"ListTagsForResourceResponse":{
444+
"type":"structure",
445+
"members":{
446+
"Tags":{"shape":"TagMap"}
447+
}
448+
},
390449
"MaxResults":{"type":"integer"},
391450
"MetricAggregationType":{
392451
"type":"string",
@@ -561,12 +620,14 @@
561620
"MinCapacity":{"shape":"ResourceCapacity"},
562621
"MaxCapacity":{"shape":"ResourceCapacity"},
563622
"RoleARN":{"shape":"ResourceIdMaxLen1600"},
564-
"SuspendedState":{"shape":"SuspendedState"}
623+
"SuspendedState":{"shape":"SuspendedState"},
624+
"Tags":{"shape":"TagMap"}
565625
}
566626
},
567627
"RegisterScalableTargetResponse":{
568628
"type":"structure",
569629
"members":{
630+
"ScalableTargetARN":{"shape":"XmlString"}
570631
}
571632
},
572633
"ResourceCapacity":{"type":"integer"},
@@ -590,6 +651,14 @@
590651
"max":1023,
591652
"min":1
592653
},
654+
"ResourceNotFoundException":{
655+
"type":"structure",
656+
"members":{
657+
"Message":{"shape":"ExceptionMessage"},
658+
"ResourceName":{"shape":"AmazonResourceName"}
659+
},
660+
"exception":true
661+
},
593662
"ReturnData":{"type":"boolean"},
594663
"ScalableDimension":{
595664
"type":"string",
@@ -635,7 +704,8 @@
635704
"MaxCapacity":{"shape":"ResourceCapacity"},
636705
"RoleARN":{"shape":"ResourceIdMaxLen1600"},
637706
"CreationTime":{"shape":"TimestampType"},
638-
"SuspendedState":{"shape":"SuspendedState"}
707+
"SuspendedState":{"shape":"SuspendedState"},
708+
"ScalableTargetARN":{"shape":"XmlString"}
639709
}
640710
},
641711
"ScalableTargetAction":{
@@ -805,6 +875,43 @@
805875
"ScheduledScalingSuspended":{"shape":"ScalingSuspended"}
806876
}
807877
},
878+
"TagKey":{
879+
"type":"string",
880+
"max":128,
881+
"min":1
882+
},
883+
"TagKeyList":{
884+
"type":"list",
885+
"member":{"shape":"TagKey"},
886+
"max":200,
887+
"min":0
888+
},
889+
"TagMap":{
890+
"type":"map",
891+
"key":{"shape":"TagKey"},
892+
"value":{"shape":"TagValue"}
893+
},
894+
"TagResourceRequest":{
895+
"type":"structure",
896+
"required":[
897+
"ResourceARN",
898+
"Tags"
899+
],
900+
"members":{
901+
"ResourceARN":{"shape":"AmazonResourceName"},
902+
"Tags":{"shape":"TagMap"}
903+
}
904+
},
905+
"TagResourceResponse":{
906+
"type":"structure",
907+
"members":{
908+
}
909+
},
910+
"TagValue":{
911+
"type":"string",
912+
"max":256,
913+
"min":0
914+
},
808915
"TargetTrackingMetric":{
809916
"type":"structure",
810917
"members":{
@@ -898,6 +1005,30 @@
8981005
}
8991006
},
9001007
"TimestampType":{"type":"timestamp"},
1008+
"TooManyTagsException":{
1009+
"type":"structure",
1010+
"members":{
1011+
"Message":{"shape":"ExceptionMessage"},
1012+
"ResourceName":{"shape":"AmazonResourceName"}
1013+
},
1014+
"exception":true
1015+
},
1016+
"UntagResourceRequest":{
1017+
"type":"structure",
1018+
"required":[
1019+
"ResourceARN",
1020+
"TagKeys"
1021+
],
1022+
"members":{
1023+
"ResourceARN":{"shape":"AmazonResourceName"},
1024+
"TagKeys":{"shape":"TagKeyList"}
1025+
}
1026+
},
1027+
"UntagResourceResponse":{
1028+
"type":"structure",
1029+
"members":{
1030+
}
1031+
},
9011032
"ValidationException":{
9021033
"type":"structure",
9031034
"members":{

0 commit comments

Comments
 (0)