Skip to content

Commit

Permalink
Added support for user data to Amazon Elastic Transcoder.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdowling committed Dec 11, 2014
1 parent ad08d03 commit 5e62c31
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# CHANGELOG

## 2.7.10 - Unreleased

* Added support for user data to Amazon Elastic Transcoder.

## 2.7.9 - 2014-12-08

* The Amazon Simple Queue Service client adds support for the PurgeQueue
Expand Down
Expand Up @@ -721,6 +721,16 @@
),
),
),
'UserMetadata' => array(
'type' => 'object',
'location' => 'json',
'additionalProperties' => array(
'type' => 'string',
'data' => array(
'shape_name' => 'String',
),
),
),
),
'errorResponses' => array(
array(
Expand Down Expand Up @@ -2353,6 +2363,12 @@
'Status' => array(
'type' => 'string',
),
'UserMetadata' => array(
'type' => 'object',
'additionalProperties' => array(
'type' => 'string',
),
),
),
),
),
Expand Down Expand Up @@ -3259,6 +3275,12 @@
'Status' => array(
'type' => 'string',
),
'UserMetadata' => array(
'type' => 'object',
'additionalProperties' => array(
'type' => 'string',
),
),
),
),
),
Expand Down Expand Up @@ -3874,6 +3896,12 @@
'Status' => array(
'type' => 'string',
),
'UserMetadata' => array(
'type' => 'object',
'additionalProperties' => array(
'type' => 'string',
),
),
),
),
),
Expand Down Expand Up @@ -4794,6 +4822,12 @@
'Status' => array(
'type' => 'string',
),
'UserMetadata' => array(
'type' => 'object',
'additionalProperties' => array(
'type' => 'string',
),
),
),
),
),
Expand Down

0 comments on commit 5e62c31

Please sign in to comment.