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 Dec 18, 2019
1 parent 76ec588 commit 8118c0e
Show file tree
Hide file tree
Showing 9 changed files with 277 additions and 47 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Unreleased Changes
------------------

* Feature - Aws::CloudFront - Updated the documentation for Amazon CloudFront.

* Feature - Aws::EC2 - Updated the API, and documentation for Amazon Elastic Compute Cloud.

* Feature - Aws::OpsWorksCM - Updated the API, and documentation for AWS OpsWorks CM.

* Feature - Aws::ResourceGroupsTaggingAPI - Updated the documentation for AWS Resource Groups Tagging API.

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

2.11.418 (2019-12-17)
------------------

Expand Down
30 changes: 15 additions & 15 deletions aws-sdk-core/apis/cloudfront/2019-03-26/docs-2.json

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions aws-sdk-core/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -13448,6 +13448,10 @@
"InstanceId":{
"shape":"String",
"locationName":"instanceId"
},
"Tags":{
"shape":"TagList",
"locationName":"tagSet"
}
}
},
Expand Down
1 change: 1 addition & 0 deletions aws-sdk-core/apis/ec2/2016-11-15/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -12993,6 +12993,7 @@
"CustomerGateway$Tags": "<p>Any tags assigned to the customer gateway.</p>",
"DeleteTagsRequest$Tags": "<p>The tags to delete. Specify a tag key and an optional tag value to delete specific tags. If you specify a tag key without a tag value, we delete any tag with this key regardless of its value. If you specify a tag key with an empty string as the tag value, we delete the tag only if its value is an empty string.</p> <p>If you omit this parameter, we delete all user-defined tags for the specified resources. We do not delete AWS-generated tags (tags that have the <code>aws:</code> prefix).</p>",
"DhcpOptions$Tags": "<p>Any tags assigned to the DHCP options set.</p>",
"ElasticGpus$Tags": "<p>The tags assigned to the Elastic Graphics accelerator.</p>",
"FleetData$Tags": "<p>The tags for an EC2 Fleet resource.</p>",
"FpgaImage$Tags": "<p>Any tags assigned to the AFI.</p>",
"Host$Tags": "<p>Any tags assigned to the Dedicated Host.</p>",
Expand Down
132 changes: 131 additions & 1 deletion aws-sdk-core/apis/opsworkscm/2016-11-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,19 @@
{"shape":"InvalidStateException"}
]
},
"ListTagsForResource":{
"name":"ListTagsForResource",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListTagsForResourceRequest"},
"output":{"shape":"ListTagsForResourceResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"ValidationException"}
]
},
"RestoreServer":{
"name":"RestoreServer",
"http":{
Expand Down Expand Up @@ -206,6 +219,34 @@
{"shape":"ValidationException"}
]
},
"TagResource":{
"name":"TagResource",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"TagResourceRequest"},
"output":{"shape":"TagResourceResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"ValidationException"},
{"shape":"InvalidStateException"}
]
},
"UntagResource":{
"name":"UntagResource",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"UntagResourceRequest"},
"output":{"shape":"UntagResourceResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"ValidationException"},
{"shape":"InvalidStateException"}
]
},
"UpdateServer":{
"name":"UpdateServer",
"http":{
Expand Down Expand Up @@ -236,6 +277,10 @@
}
},
"shapes":{
"AWSOpsWorksCMResourceArn":{
"type":"string",
"pattern":"arn:aws.*:opsworks-cm:.*:[0-9]{12}:.*"
},
"AccountAttribute":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -348,7 +393,8 @@
"required":["ServerName"],
"members":{
"ServerName":{"shape":"ServerName"},
"Description":{"shape":"String"}
"Description":{"shape":"String"},
"Tags":{"shape":"TagList"}
}
},
"CreateBackupResponse":{
Expand Down Expand Up @@ -385,6 +431,7 @@
"SecurityGroupIds":{"shape":"Strings"},
"ServiceRoleArn":{"shape":"ServiceRoleArn"},
"SubnetIds":{"shape":"Strings"},
"Tags":{"shape":"TagList"},
"BackupId":{"shape":"BackupId"}
}
},
Expand Down Expand Up @@ -601,6 +648,22 @@
},
"exception":true
},
"ListTagsForResourceRequest":{
"type":"structure",
"required":["ResourceArn"],
"members":{
"ResourceArn":{"shape":"AWSOpsWorksCMResourceArn"},
"NextToken":{"shape":"NextToken"},
"MaxResults":{"shape":"MaxResults"}
}
},
"ListTagsForResourceResponse":{
"type":"structure",
"members":{
"Tags":{"shape":"TagList"},
"NextToken":{"shape":"NextToken"}
}
},
"MaintenanceStatus":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -765,12 +828,79 @@
"type":"list",
"member":{"shape":"String"}
},
"Tag":{
"type":"structure",
"required":[
"Key",
"Value"
],
"members":{
"Key":{"shape":"TagKey"},
"Value":{"shape":"TagValue"}
}
},
"TagKey":{
"type":"string",
"max":128,
"min":1,
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:\\/=+\\\\\\-@]*)$"
},
"TagKeyList":{
"type":"list",
"member":{"shape":"TagKey"},
"max":200,
"min":0
},
"TagList":{
"type":"list",
"member":{"shape":"Tag"},
"max":200,
"min":0
},
"TagResourceRequest":{
"type":"structure",
"required":[
"ResourceArn",
"Tags"
],
"members":{
"ResourceArn":{"shape":"AWSOpsWorksCMResourceArn"},
"Tags":{"shape":"TagList"}
}
},
"TagResourceResponse":{
"type":"structure",
"members":{
}
},
"TagValue":{
"type":"string",
"max":256,
"min":0,
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:\\/=+\\\\\\-@]*)$"
},
"TimeWindowDefinition":{
"type":"string",
"max":10000,
"pattern":"^((Mon|Tue|Wed|Thu|Fri|Sat|Sun):)?([0-1][0-9]|2[0-3]):[0-5][0-9]$"
},
"Timestamp":{"type":"timestamp"},
"UntagResourceRequest":{
"type":"structure",
"required":[
"ResourceArn",
"TagKeys"
],
"members":{
"ResourceArn":{"shape":"AWSOpsWorksCMResourceArn"},
"TagKeys":{"shape":"TagKeyList"}
}
},
"UntagResourceResponse":{
"type":"structure",
"members":{
}
},
"UpdateServerEngineAttributesRequest":{
"type":"structure",
"required":[
Expand Down
Loading

0 comments on commit 8118c0e

Please sign in to comment.