Skip to content

Commit

Permalink
Release v1.20.14
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Jul 2, 2019
1 parent f90a61d commit 06512ec
Show file tree
Hide file tree
Showing 14 changed files with 905 additions and 38 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Release v1.20.14 (2019-07-02)
===

### Service Client Updates
* `service/appstream`: Updates service API and documentation
* Adding ImageBuilderName in Fleet API and Documentation updates for AppStream.
* `aws/endpoints`: Updated Regions and Endpoints metadata.
* `service/mediastore`: Updates service API, documentation, and paginators
* This release adds support for tagging, untagging, and listing tags for AWS Elemental MediaStore containers.

Release v1.20.13 (2019-07-01)
===

Expand Down
1 change: 1 addition & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.20.13"
const SDKVersion = "1.20.14"
2 changes: 2 additions & 0 deletions models/apis/appstream/2016-12-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1497,6 +1497,7 @@
"State":{"shape":"ImageState"},
"Visibility":{"shape":"VisibilityType"},
"ImageBuilderSupported":{"shape":"Boolean"},
"ImageBuilderName":{"shape":"String"},
"Platform":{"shape":"PlatformType"},
"Description":{"shape":"String"},
"StateChangeReason":{"shape":"ImageStateChangeReason"},
Expand Down Expand Up @@ -1524,6 +1525,7 @@
"CreatedTime":{"shape":"Timestamp"},
"EnableDefaultInternetAccess":{"shape":"BooleanObject"},
"DomainJoinInfo":{"shape":"DomainJoinInfo"},
"NetworkAccessConfiguration":{"shape":"NetworkAccessConfiguration"},
"ImageBuilderErrors":{"shape":"ResourceErrors"},
"AppstreamAgentVersion":{"shape":"AppstreamAgentVersion"}
}
Expand Down
22 changes: 12 additions & 10 deletions models/apis/appstream/2016-12-01/docs-2.json

Large diffs are not rendered by default.

121 changes: 117 additions & 4 deletions models/apis/mediastore/2017-09-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,20 @@
{"shape":"InternalServerError"}
]
},
"ListTagsForResource":{
"name":"ListTagsForResource",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListTagsForResourceInput"},
"output":{"shape":"ListTagsForResourceOutput"},
"errors":[
{"shape":"ContainerInUseException"},
{"shape":"ContainerNotFoundException"},
{"shape":"InternalServerError"}
]
},
"PutContainerPolicy":{
"name":"PutContainerPolicy",
"http":{
Expand Down Expand Up @@ -226,6 +240,34 @@
{"shape":"ContainerNotFoundException"},
{"shape":"InternalServerError"}
]
},
"TagResource":{
"name":"TagResource",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"TagResourceInput"},
"output":{"shape":"TagResourceOutput"},
"errors":[
{"shape":"ContainerInUseException"},
{"shape":"ContainerNotFoundException"},
{"shape":"InternalServerError"}
]
},
"UntagResource":{
"name":"UntagResource",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"UntagResourceInput"},
"output":{"shape":"UntagResourceOutput"},
"errors":[
{"shape":"ContainerInUseException"},
{"shape":"ContainerNotFoundException"},
{"shape":"InternalServerError"}
]
}
},
"shapes":{
Expand Down Expand Up @@ -262,7 +304,7 @@
"type":"string",
"max":1024,
"min":1,
"pattern":"arn:aws:mediastore:[a-z]+-[a-z]+-\\d:\\d{12}:container/\\w{1,255}"
"pattern":"arn:aws:mediastore:[a-z]+-[a-z]+-\\d:\\d{12}:container/[\\w-]{1,255}"
},
"ContainerAccessLoggingEnabled":{"type":"boolean"},
"ContainerInUseException":{
Expand Down Expand Up @@ -298,7 +340,7 @@
"type":"string",
"max":8192,
"min":1,
"pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
"pattern":"[\\x00-\\x7F]+"
},
"ContainerStatus":{
"type":"string",
Expand Down Expand Up @@ -341,7 +383,8 @@
"type":"structure",
"required":["ContainerName"],
"members":{
"ContainerName":{"shape":"ContainerName"}
"ContainerName":{"shape":"ContainerName"},
"Tags":{"shape":"TagList"}
}
},
"CreateContainerOutput":{
Expand Down Expand Up @@ -512,6 +555,19 @@
"NextToken":{"shape":"PaginationToken"}
}
},
"ListTagsForResourceInput":{
"type":"structure",
"required":["Resource"],
"members":{
"Resource":{"shape":"ContainerARN"}
}
},
"ListTagsForResourceOutput":{
"type":"structure",
"members":{
"Tags":{"shape":"TagList"}
}
},
"MaxAgeSeconds":{
"type":"integer",
"max":2147483647,
Expand Down Expand Up @@ -617,6 +673,63 @@
"members":{
}
},
"TimeStamp":{"type":"timestamp"}
"Tag":{
"type":"structure",
"members":{
"Key":{"shape":"TagKey"},
"Value":{"shape":"TagValue"}
}
},
"TagKey":{
"type":"string",
"max":128,
"min":1
},
"TagKeyList":{
"type":"list",
"member":{"shape":"TagKey"}
},
"TagList":{
"type":"list",
"member":{"shape":"Tag"}
},
"TagResourceInput":{
"type":"structure",
"required":[
"Resource",
"Tags"
],
"members":{
"Resource":{"shape":"ContainerARN"},
"Tags":{"shape":"TagList"}
}
},
"TagResourceOutput":{
"type":"structure",
"members":{
}
},
"TagValue":{
"type":"string",
"max":256,
"min":0
},
"TimeStamp":{"type":"timestamp"},
"UntagResourceInput":{
"type":"structure",
"required":[
"Resource",
"TagKeys"
],
"members":{
"Resource":{"shape":"ContainerARN"},
"TagKeys":{"shape":"TagKeyList"}
}
},
"UntagResourceOutput":{
"type":"structure",
"members":{
}
}
}
}
73 changes: 71 additions & 2 deletions models/apis/mediastore/2017-09-01/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@
"GetCorsPolicy": "<p>Returns the cross-origin resource sharing (CORS) configuration information that is set for the container.</p> <p>To use this operation, you must have permission to perform the <code>MediaStore:GetCorsPolicy</code> action. By default, the container owner has this permission and can grant it to others.</p>",
"GetLifecyclePolicy": "<p>Retrieves the object lifecycle policy that is assigned to a container.</p>",
"ListContainers": "<p>Lists the properties of all containers in AWS Elemental MediaStore. </p> <p>You can query to receive all the containers in one response. Or you can include the <code>MaxResults</code> parameter to receive a limited number of containers in each response. In this case, the response includes a token. To get the next set of containers, send the command again, this time with the <code>NextToken</code> parameter (with the returned token as its value). The next set of responses appears, with a token if there are still more containers to receive. </p> <p>See also <a>DescribeContainer</a>, which gets the properties of one container. </p>",
"ListTagsForResource": "<p>Returns a list of the tags assigned to the specified container. </p>",
"PutContainerPolicy": "<p>Creates an access policy for the specified container to restrict the users and clients that can access it. For information about the data that is included in an access policy, see the <a href=\"https://aws.amazon.com/documentation/iam/\">AWS Identity and Access Management User Guide</a>.</p> <p>For this release of the REST API, you can create only one policy for a container. If you enter <code>PutContainerPolicy</code> twice, the second command modifies the existing policy. </p>",
"PutCorsPolicy": "<p>Sets the cross-origin resource sharing (CORS) configuration on a container so that the container can service cross-origin requests. For example, you might want to enable a request whose origin is http://www.example.com to access your AWS Elemental MediaStore container at my.example.container.com by using the browser's XMLHttpRequest capability.</p> <p>To enable CORS on a container, you attach a CORS policy to the container. In the CORS policy, you configure rules that identify origins and the HTTP methods that can be executed on your container. The policy can contain up to 398,000 characters. You can add up to 100 rules to a CORS policy. If more than one rule applies, the service uses the first applicable rule listed.</p> <p>To learn more about CORS, see <a href=\"https://docs.aws.amazon.com/mediastore/latest/ug/cors-policy.html\">Cross-Origin Resource Sharing (CORS) in AWS Elemental MediaStore</a>.</p>",
"PutLifecyclePolicy": "<p>Writes an object lifecycle policy to a container. If the container already has an object lifecycle policy, the service replaces the existing policy with the new policy. It takes up to 20 minutes for the change to take effect.</p> <p>For information about how to construct an object lifecycle policy, see <a href=\"https://docs.aws.amazon.com/mediastore/latest/ug/policies-object-lifecycle-components.html\">Components of an Object Lifecycle Policy</a>.</p>",
"StartAccessLogging": "<p>Starts access logging on the specified container. When you enable access logging on a container, MediaStore delivers access logs for objects stored in that container to Amazon CloudWatch Logs.</p>",
"StopAccessLogging": "<p>Stops access logging on the specified container. When you stop access logging on a container, MediaStore stops sending access logs to Amazon CloudWatch Logs. These access logs are not saved and are not retrievable.</p>"
"StopAccessLogging": "<p>Stops access logging on the specified container. When you stop access logging on a container, MediaStore stops sending access logs to Amazon CloudWatch Logs. These access logs are not saved and are not retrievable.</p>",
"TagResource": "<p>Adds tags to the specified AWS Elemental MediaStore container. Tags are key:value pairs that you can associate with AWS resources. For example, the tag key might be \"customer\" and the tag value might be \"companyA.\" You can specify one or more tags to add to each container. You can add up to 50 tags to each container. For more information about tagging, including naming and usage conventions, see <a href=\"https://aws.amazon.com/documentation/mediastore/tagging\">Tagging Resources in MediaStore</a>.</p>",
"UntagResource": "<p>Removes tags from the specified container. You can specify one or more tags to remove. </p>"
},
"shapes": {
"AllowedHeaders": {
Expand Down Expand Up @@ -48,7 +51,10 @@
"ContainerARN": {
"base": null,
"refs": {
"Container$ARN": "<p>The Amazon Resource Name (ARN) of the container. The ARN has the following format:</p> <p>arn:aws:&lt;region&gt;:&lt;account that owns this container&gt;:container/&lt;name of container&gt; </p> <p>For example: arn:aws:mediastore:us-west-2:111122223333:container/movies </p>"
"Container$ARN": "<p>The Amazon Resource Name (ARN) of the container. The ARN has the following format:</p> <p>arn:aws:&lt;region&gt;:&lt;account that owns this container&gt;:container/&lt;name of container&gt; </p> <p>For example: arn:aws:mediastore:us-west-2:111122223333:container/movies </p>",
"ListTagsForResourceInput$Resource": "<p>The Amazon Resource Name (ARN) for the container.</p>",
"TagResourceInput$Resource": "<p>The Amazon Resource Name (ARN) for the container. </p>",
"UntagResourceInput$Resource": "<p>The Amazon Resource Name (ARN) for the container.</p>"
}
},
"ContainerAccessLoggingEnabled": {
Expand Down Expand Up @@ -277,6 +283,16 @@
"refs": {
}
},
"ListTagsForResourceInput": {
"base": null,
"refs": {
}
},
"ListTagsForResourceOutput": {
"base": null,
"refs": {
}
},
"MaxAgeSeconds": {
"base": null,
"refs": {
Expand Down Expand Up @@ -357,11 +373,64 @@
"refs": {
}
},
"Tag": {
"base": "<p>A collection of tags associated with a container. Each tag consists of a key:value pair, which can be anything you define. Typically, the tag key represents a category (such as \"environment\") and the tag value represents a specific value within that category (such as \"test,\" \"development,\" or \"production\"). You can add up to 50 tags to each container. For more information about tagging, including naming and usage conventions, see <a href=\"https://aws.amazon.com/documentation/mediastore/tagging\">Tagging Resources in MediaStore</a>.</p>",
"refs": {
"TagList$member": null
}
},
"TagKey": {
"base": null,
"refs": {
"Tag$Key": "<p>Part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as \"customer.\" Tag keys are case-sensitive.</p>",
"TagKeyList$member": null
}
},
"TagKeyList": {
"base": null,
"refs": {
"UntagResourceInput$TagKeys": "<p>A comma-separated list of keys for tags that you want to remove from the container. For example, if your container has two tags (customer:CompanyA and priority:High) and you want to remove one of the tags (priority:High), you specify the key for the tag that you want to remove (priority).</p>"
}
},
"TagList": {
"base": null,
"refs": {
"CreateContainerInput$Tags": "<p>An array of key:value pairs that you define. These values can be anything that you want. Typically, the tag key represents a category (such as \"environment\") and the tag value represents a specific value within that category (such as \"test,\" \"development,\" or \"production\"). You can add up to 50 tags to each container. For more information about tagging, including naming and usage conventions, see <a href=\"https://aws.amazon.com/documentation/mediastore/tagging\">Tagging Resources in MediaStore</a>.</p>",
"ListTagsForResourceOutput$Tags": "<p>An array of key:value pairs that are assigned to the container.</p>",
"TagResourceInput$Tags": "<p>An array of key:value pairs that you want to add to the container. You need to specify only the tags that you want to add or update. For example, suppose a container already has two tags (customer:CompanyA and priority:High). You want to change the priority tag and also add a third tag (type:Contract). For TagResource, you specify the following tags: priority:Medium, type:Contract. The result is that your container has three tags: customer:CompanyA, priority:Medium, and type:Contract.</p>"
}
},
"TagResourceInput": {
"base": null,
"refs": {
}
},
"TagResourceOutput": {
"base": null,
"refs": {
}
},
"TagValue": {
"base": null,
"refs": {
"Tag$Value": "<p>Part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as \"companyA\" or \"companyB.\" Tag values are case-sensitive.</p>"
}
},
"TimeStamp": {
"base": null,
"refs": {
"Container$CreationTime": "<p>Unix timestamp.</p>"
}
},
"UntagResourceInput": {
"base": null,
"refs": {
}
},
"UntagResourceOutput": {
"base": null,
"refs": {
}
}
}
}
5 changes: 5 additions & 0 deletions models/apis/mediastore/2017-09-01/paginators-1.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{
"pagination": {
"ListContainers": {
"input_token": "NextToken",
"output_token": "NextToken",
"limit_key": "MaxResults"
}
}
}
1 change: 1 addition & 0 deletions models/endpoints/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -3813,6 +3813,7 @@
},
"codebuild" : {
"endpoints" : {
"us-gov-east-1" : { },
"us-gov-west-1" : { }
}
},
Expand Down
Loading

0 comments on commit 06512ec

Please sign in to comment.