Skip to content

Commit

Permalink
Updated service API models for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS SDK for Ruby authored and Nobody committed Oct 2, 2020
1 parent 3aaba76 commit 3711e6f
Show file tree
Hide file tree
Showing 15 changed files with 771 additions and 91 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Unreleased Changes
------------------

* Feature - Aws::Batch - Updated the API, and documentation for AWS Batch.

* Feature - Aws::ElasticLoadBalancingV2 - Updated the API, and documentation for Elastic Load Balancing.

* Feature - Aws::PersonalizeEvents - Updated the API, and documentation for Amazon Personalize Events.

* Feature - Aws::RDS - Updated the API, and documentation for Amazon Relational Database Service.

* Feature - Aws::S3 - Updated the API, and documentation for Amazon Simple Storage Service.

* Feature - Aws::ServiceDiscovery - Updated the API, and documentation for AWS Cloud Map.

2.11.599 (2020-10-01)
------------------

Expand Down
147 changes: 140 additions & 7 deletions aws-sdk-core/apis/batch/2016-08-10/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,19 @@
{"shape":"ServerException"}
]
},
"ListTagsForResource":{
"name":"ListTagsForResource",
"http":{
"method":"GET",
"requestUri":"/v1/tags/{resourceArn}"
},
"input":{"shape":"ListTagsForResourceRequest"},
"output":{"shape":"ListTagsForResourceResponse"},
"errors":[
{"shape":"ClientException"},
{"shape":"ServerException"}
]
},
"RegisterJobDefinition":{
"name":"RegisterJobDefinition",
"http":{
Expand All @@ -181,6 +194,19 @@
{"shape":"ServerException"}
]
},
"TagResource":{
"name":"TagResource",
"http":{
"method":"POST",
"requestUri":"/v1/tags/{resourceArn}"
},
"input":{"shape":"TagResourceRequest"},
"output":{"shape":"TagResourceResponse"},
"errors":[
{"shape":"ClientException"},
{"shape":"ServerException"}
]
},
"TerminateJob":{
"name":"TerminateJob",
"http":{
Expand All @@ -194,6 +220,19 @@
{"shape":"ServerException"}
]
},
"UntagResource":{
"name":"UntagResource",
"http":{
"method":"DELETE",
"requestUri":"/v1/tags/{resourceArn}"
},
"input":{"shape":"UntagResourceRequest"},
"output":{"shape":"UntagResourceResponse"},
"errors":[
{"shape":"ClientException"},
{"shape":"ServerException"}
]
},
"UpdateComputeEnvironment":{
"name":"UpdateComputeEnvironment",
"http":{
Expand Down Expand Up @@ -355,6 +394,7 @@
"computeEnvironmentName":{"shape":"String"},
"computeEnvironmentArn":{"shape":"String"},
"ecsClusterArn":{"shape":"String"},
"tags":{"shape":"TagrisTagsMap"},
"type":{"shape":"CEType"},
"state":{"shape":"CEState"},
"status":{"shape":"CEStatus"},
Expand Down Expand Up @@ -501,7 +541,8 @@
"type":{"shape":"CEType"},
"state":{"shape":"CEState"},
"computeResources":{"shape":"ComputeResource"},
"serviceRole":{"shape":"String"}
"serviceRole":{"shape":"String"},
"tags":{"shape":"TagrisTagsMap"}
}
},
"CreateComputeEnvironmentResponse":{
Expand All @@ -522,7 +563,8 @@
"jobQueueName":{"shape":"String"},
"state":{"shape":"JQState"},
"priority":{"shape":"Integer"},
"computeEnvironmentOrder":{"shape":"ComputeEnvironmentOrders"}
"computeEnvironmentOrder":{"shape":"ComputeEnvironmentOrders"},
"tags":{"shape":"TagrisTagsMap"}
}
},
"CreateJobQueueResponse":{
Expand Down Expand Up @@ -704,7 +746,8 @@
"retryStrategy":{"shape":"RetryStrategy"},
"containerProperties":{"shape":"ContainerProperties"},
"timeout":{"shape":"JobTimeout"},
"nodeProperties":{"shape":"NodeProperties"}
"nodeProperties":{"shape":"NodeProperties"},
"tags":{"shape":"TagrisTagsMap"}
}
},
"JobDefinitionList":{
Expand Down Expand Up @@ -740,6 +783,7 @@
"jobDefinition"
],
"members":{
"jobArn":{"shape":"String"},
"jobName":{"shape":"String"},
"jobId":{"shape":"String"},
"jobQueue":{"shape":"String"},
Expand All @@ -757,7 +801,8 @@
"nodeDetails":{"shape":"NodeDetails"},
"nodeProperties":{"shape":"NodeProperties"},
"arrayProperties":{"shape":"ArrayPropertiesDetail"},
"timeout":{"shape":"JobTimeout"}
"timeout":{"shape":"JobTimeout"},
"tags":{"shape":"TagrisTagsMap"}
}
},
"JobDetailList":{
Expand All @@ -780,7 +825,8 @@
"status":{"shape":"JQStatus"},
"statusReason":{"shape":"String"},
"priority":{"shape":"Integer"},
"computeEnvironmentOrder":{"shape":"ComputeEnvironmentOrders"}
"computeEnvironmentOrder":{"shape":"ComputeEnvironmentOrders"},
"tags":{"shape":"TagrisTagsMap"}
}
},
"JobQueueDetailList":{
Expand All @@ -806,6 +852,7 @@
"jobName"
],
"members":{
"jobArn":{"shape":"String"},
"jobId":{"shape":"String"},
"jobName":{"shape":"String"},
"createdAt":{"shape":"Long"},
Expand Down Expand Up @@ -873,6 +920,23 @@
"nextToken":{"shape":"String"}
}
},
"ListTagsForResourceRequest":{
"type":"structure",
"required":["resourceArn"],
"members":{
"resourceArn":{
"shape":"String",
"location":"uri",
"locationName":"resourceArn"
}
}
},
"ListTagsForResourceResponse":{
"type":"structure",
"members":{
"tags":{"shape":"TagrisTagsMap"}
}
},
"LogConfiguration":{
"type":"structure",
"required":["logDriver"],
Expand Down Expand Up @@ -1001,7 +1065,8 @@
"containerProperties":{"shape":"ContainerProperties"},
"nodeProperties":{"shape":"NodeProperties"},
"retryStrategy":{"shape":"RetryStrategy"},
"timeout":{"shape":"JobTimeout"}
"timeout":{"shape":"JobTimeout"},
"tags":{"shape":"TagrisTagsMap"}
}
},
"RegisterJobDefinitionResponse":{
Expand Down Expand Up @@ -1088,7 +1153,8 @@
"containerOverrides":{"shape":"ContainerOverrides"},
"nodeOverrides":{"shape":"NodeOverrides"},
"retryStrategy":{"shape":"RetryStrategy"},
"timeout":{"shape":"JobTimeout"}
"timeout":{"shape":"JobTimeout"},
"tags":{"shape":"TagrisTagsMap"}
}
},
"SubmitJobResponse":{
Expand All @@ -1098,10 +1164,53 @@
"jobId"
],
"members":{
"jobArn":{"shape":"String"},
"jobName":{"shape":"String"},
"jobId":{"shape":"String"}
}
},
"TagKey":{
"type":"string",
"max":128,
"min":1
},
"TagKeysList":{
"type":"list",
"member":{"shape":"TagKey"},
"max":50,
"min":1
},
"TagResourceRequest":{
"type":"structure",
"required":[
"resourceArn",
"tags"
],
"members":{
"resourceArn":{
"shape":"String",
"location":"uri",
"locationName":"resourceArn"
},
"tags":{"shape":"TagrisTagsMap"}
}
},
"TagResourceResponse":{
"type":"structure",
"members":{
}
},
"TagValue":{
"type":"string",
"max":256
},
"TagrisTagsMap":{
"type":"map",
"key":{"shape":"TagKey"},
"value":{"shape":"TagValue"},
"max":50,
"min":1
},
"TagsMap":{
"type":"map",
"key":{"shape":"String"},
Expand Down Expand Up @@ -1156,6 +1265,30 @@
"type":"list",
"member":{"shape":"Ulimit"}
},
"UntagResourceRequest":{
"type":"structure",
"required":[
"resourceArn",
"tagKeys"
],
"members":{
"resourceArn":{
"shape":"String",
"location":"uri",
"locationName":"resourceArn"
},
"tagKeys":{
"shape":"TagKeysList",
"location":"querystring",
"locationName":"tagKeys"
}
}
},
"UntagResourceResponse":{
"type":"structure",
"members":{
}
},
"UpdateComputeEnvironmentRequest":{
"type":"structure",
"required":["computeEnvironment"],
Expand Down
Loading

0 comments on commit 3711e6f

Please sign in to comment.