Skip to content

Commit 3711e6f

Browse files
AWS SDK for RubyNobody
authored andcommitted
Updated service API models for release.
1 parent 3aaba76 commit 3711e6f

File tree

15 files changed

+771
-91
lines changed

15 files changed

+771
-91
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Unreleased Changes
22
------------------
33

4+
* Feature - Aws::Batch - Updated the API, and documentation for AWS Batch.
5+
6+
* Feature - Aws::ElasticLoadBalancingV2 - Updated the API, and documentation for Elastic Load Balancing.
7+
8+
* Feature - Aws::PersonalizeEvents - Updated the API, and documentation for Amazon Personalize Events.
9+
10+
* Feature - Aws::RDS - Updated the API, and documentation for Amazon Relational Database Service.
11+
12+
* Feature - Aws::S3 - Updated the API, and documentation for Amazon Simple Storage Service.
13+
14+
* Feature - Aws::ServiceDiscovery - Updated the API, and documentation for AWS Cloud Map.
15+
416
2.11.599 (2020-10-01)
517
------------------
618

aws-sdk-core/apis/batch/2016-08-10/api-2.json

Lines changed: 140 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,19 @@
155155
{"shape":"ServerException"}
156156
]
157157
},
158+
"ListTagsForResource":{
159+
"name":"ListTagsForResource",
160+
"http":{
161+
"method":"GET",
162+
"requestUri":"/v1/tags/{resourceArn}"
163+
},
164+
"input":{"shape":"ListTagsForResourceRequest"},
165+
"output":{"shape":"ListTagsForResourceResponse"},
166+
"errors":[
167+
{"shape":"ClientException"},
168+
{"shape":"ServerException"}
169+
]
170+
},
158171
"RegisterJobDefinition":{
159172
"name":"RegisterJobDefinition",
160173
"http":{
@@ -181,6 +194,19 @@
181194
{"shape":"ServerException"}
182195
]
183196
},
197+
"TagResource":{
198+
"name":"TagResource",
199+
"http":{
200+
"method":"POST",
201+
"requestUri":"/v1/tags/{resourceArn}"
202+
},
203+
"input":{"shape":"TagResourceRequest"},
204+
"output":{"shape":"TagResourceResponse"},
205+
"errors":[
206+
{"shape":"ClientException"},
207+
{"shape":"ServerException"}
208+
]
209+
},
184210
"TerminateJob":{
185211
"name":"TerminateJob",
186212
"http":{
@@ -194,6 +220,19 @@
194220
{"shape":"ServerException"}
195221
]
196222
},
223+
"UntagResource":{
224+
"name":"UntagResource",
225+
"http":{
226+
"method":"DELETE",
227+
"requestUri":"/v1/tags/{resourceArn}"
228+
},
229+
"input":{"shape":"UntagResourceRequest"},
230+
"output":{"shape":"UntagResourceResponse"},
231+
"errors":[
232+
{"shape":"ClientException"},
233+
{"shape":"ServerException"}
234+
]
235+
},
197236
"UpdateComputeEnvironment":{
198237
"name":"UpdateComputeEnvironment",
199238
"http":{
@@ -355,6 +394,7 @@
355394
"computeEnvironmentName":{"shape":"String"},
356395
"computeEnvironmentArn":{"shape":"String"},
357396
"ecsClusterArn":{"shape":"String"},
397+
"tags":{"shape":"TagrisTagsMap"},
358398
"type":{"shape":"CEType"},
359399
"state":{"shape":"CEState"},
360400
"status":{"shape":"CEStatus"},
@@ -501,7 +541,8 @@
501541
"type":{"shape":"CEType"},
502542
"state":{"shape":"CEState"},
503543
"computeResources":{"shape":"ComputeResource"},
504-
"serviceRole":{"shape":"String"}
544+
"serviceRole":{"shape":"String"},
545+
"tags":{"shape":"TagrisTagsMap"}
505546
}
506547
},
507548
"CreateComputeEnvironmentResponse":{
@@ -522,7 +563,8 @@
522563
"jobQueueName":{"shape":"String"},
523564
"state":{"shape":"JQState"},
524565
"priority":{"shape":"Integer"},
525-
"computeEnvironmentOrder":{"shape":"ComputeEnvironmentOrders"}
566+
"computeEnvironmentOrder":{"shape":"ComputeEnvironmentOrders"},
567+
"tags":{"shape":"TagrisTagsMap"}
526568
}
527569
},
528570
"CreateJobQueueResponse":{
@@ -704,7 +746,8 @@
704746
"retryStrategy":{"shape":"RetryStrategy"},
705747
"containerProperties":{"shape":"ContainerProperties"},
706748
"timeout":{"shape":"JobTimeout"},
707-
"nodeProperties":{"shape":"NodeProperties"}
749+
"nodeProperties":{"shape":"NodeProperties"},
750+
"tags":{"shape":"TagrisTagsMap"}
708751
}
709752
},
710753
"JobDefinitionList":{
@@ -740,6 +783,7 @@
740783
"jobDefinition"
741784
],
742785
"members":{
786+
"jobArn":{"shape":"String"},
743787
"jobName":{"shape":"String"},
744788
"jobId":{"shape":"String"},
745789
"jobQueue":{"shape":"String"},
@@ -757,7 +801,8 @@
757801
"nodeDetails":{"shape":"NodeDetails"},
758802
"nodeProperties":{"shape":"NodeProperties"},
759803
"arrayProperties":{"shape":"ArrayPropertiesDetail"},
760-
"timeout":{"shape":"JobTimeout"}
804+
"timeout":{"shape":"JobTimeout"},
805+
"tags":{"shape":"TagrisTagsMap"}
761806
}
762807
},
763808
"JobDetailList":{
@@ -780,7 +825,8 @@
780825
"status":{"shape":"JQStatus"},
781826
"statusReason":{"shape":"String"},
782827
"priority":{"shape":"Integer"},
783-
"computeEnvironmentOrder":{"shape":"ComputeEnvironmentOrders"}
828+
"computeEnvironmentOrder":{"shape":"ComputeEnvironmentOrders"},
829+
"tags":{"shape":"TagrisTagsMap"}
784830
}
785831
},
786832
"JobQueueDetailList":{
@@ -806,6 +852,7 @@
806852
"jobName"
807853
],
808854
"members":{
855+
"jobArn":{"shape":"String"},
809856
"jobId":{"shape":"String"},
810857
"jobName":{"shape":"String"},
811858
"createdAt":{"shape":"Long"},
@@ -873,6 +920,23 @@
873920
"nextToken":{"shape":"String"}
874921
}
875922
},
923+
"ListTagsForResourceRequest":{
924+
"type":"structure",
925+
"required":["resourceArn"],
926+
"members":{
927+
"resourceArn":{
928+
"shape":"String",
929+
"location":"uri",
930+
"locationName":"resourceArn"
931+
}
932+
}
933+
},
934+
"ListTagsForResourceResponse":{
935+
"type":"structure",
936+
"members":{
937+
"tags":{"shape":"TagrisTagsMap"}
938+
}
939+
},
876940
"LogConfiguration":{
877941
"type":"structure",
878942
"required":["logDriver"],
@@ -1001,7 +1065,8 @@
10011065
"containerProperties":{"shape":"ContainerProperties"},
10021066
"nodeProperties":{"shape":"NodeProperties"},
10031067
"retryStrategy":{"shape":"RetryStrategy"},
1004-
"timeout":{"shape":"JobTimeout"}
1068+
"timeout":{"shape":"JobTimeout"},
1069+
"tags":{"shape":"TagrisTagsMap"}
10051070
}
10061071
},
10071072
"RegisterJobDefinitionResponse":{
@@ -1088,7 +1153,8 @@
10881153
"containerOverrides":{"shape":"ContainerOverrides"},
10891154
"nodeOverrides":{"shape":"NodeOverrides"},
10901155
"retryStrategy":{"shape":"RetryStrategy"},
1091-
"timeout":{"shape":"JobTimeout"}
1156+
"timeout":{"shape":"JobTimeout"},
1157+
"tags":{"shape":"TagrisTagsMap"}
10921158
}
10931159
},
10941160
"SubmitJobResponse":{
@@ -1098,10 +1164,53 @@
10981164
"jobId"
10991165
],
11001166
"members":{
1167+
"jobArn":{"shape":"String"},
11011168
"jobName":{"shape":"String"},
11021169
"jobId":{"shape":"String"}
11031170
}
11041171
},
1172+
"TagKey":{
1173+
"type":"string",
1174+
"max":128,
1175+
"min":1
1176+
},
1177+
"TagKeysList":{
1178+
"type":"list",
1179+
"member":{"shape":"TagKey"},
1180+
"max":50,
1181+
"min":1
1182+
},
1183+
"TagResourceRequest":{
1184+
"type":"structure",
1185+
"required":[
1186+
"resourceArn",
1187+
"tags"
1188+
],
1189+
"members":{
1190+
"resourceArn":{
1191+
"shape":"String",
1192+
"location":"uri",
1193+
"locationName":"resourceArn"
1194+
},
1195+
"tags":{"shape":"TagrisTagsMap"}
1196+
}
1197+
},
1198+
"TagResourceResponse":{
1199+
"type":"structure",
1200+
"members":{
1201+
}
1202+
},
1203+
"TagValue":{
1204+
"type":"string",
1205+
"max":256
1206+
},
1207+
"TagrisTagsMap":{
1208+
"type":"map",
1209+
"key":{"shape":"TagKey"},
1210+
"value":{"shape":"TagValue"},
1211+
"max":50,
1212+
"min":1
1213+
},
11051214
"TagsMap":{
11061215
"type":"map",
11071216
"key":{"shape":"String"},
@@ -1156,6 +1265,30 @@
11561265
"type":"list",
11571266
"member":{"shape":"Ulimit"}
11581267
},
1268+
"UntagResourceRequest":{
1269+
"type":"structure",
1270+
"required":[
1271+
"resourceArn",
1272+
"tagKeys"
1273+
],
1274+
"members":{
1275+
"resourceArn":{
1276+
"shape":"String",
1277+
"location":"uri",
1278+
"locationName":"resourceArn"
1279+
},
1280+
"tagKeys":{
1281+
"shape":"TagKeysList",
1282+
"location":"querystring",
1283+
"locationName":"tagKeys"
1284+
}
1285+
}
1286+
},
1287+
"UntagResourceResponse":{
1288+
"type":"structure",
1289+
"members":{
1290+
}
1291+
},
11591292
"UpdateComputeEnvironmentRequest":{
11601293
"type":"structure",
11611294
"required":["computeEnvironment"],

0 commit comments

Comments
 (0)