Skip to content

Commit

Permalink
Added support for setting environment variables to the AWS OpsWorks c…
Browse files Browse the repository at this point in the history
…lient.
  • Loading branch information
jeremeamia committed Sep 11, 2014
1 parent 45b7f33 commit 7838202
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -4,7 +4,8 @@ CHANGELOG
Next Release:
-------------

* Added support for tagging to the Amazon Kinesis Client.
* Added support for tagging to the Amazon Kinesis client.
* Added support for setting environment variables to the AWS OpsWorks client.

2.6.15 (2014-08-14)
-------------------
Expand Down
69 changes: 69 additions & 0 deletions src/Aws/OpsWorks/Resources/opsworks-2013-02-18.php
Expand Up @@ -454,6 +454,28 @@
),
),
),
'Environment' => array(
'type' => 'array',
'location' => 'json',
'items' => array(
'name' => 'EnvironmentVariable',
'type' => 'object',
'properties' => array(
'Key' => array(
'required' => true,
'type' => 'string',
),
'Value' => array(
'required' => true,
'type' => 'string',
),
'Secure' => array(
'type' => 'boolean',
'format' => 'boolean-string',
),
),
),
),
),
'errorResponses' => array(
array(
Expand Down Expand Up @@ -1803,6 +1825,10 @@
'type' => 'string',
'location' => 'json',
),
'StackId' => array(
'type' => 'string',
'location' => 'json',
),
'RaidArrayIds' => array(
'type' => 'array',
'location' => 'json',
Expand Down Expand Up @@ -2998,6 +3024,28 @@
),
),
),
'Environment' => array(
'type' => 'array',
'location' => 'json',
'items' => array(
'name' => 'EnvironmentVariable',
'type' => 'object',
'properties' => array(
'Key' => array(
'required' => true,
'type' => 'string',
),
'Value' => array(
'required' => true,
'type' => 'string',
),
'Secure' => array(
'type' => 'boolean',
'format' => 'boolean-string',
),
),
),
),
),
'errorResponses' => array(
array(
Expand Down Expand Up @@ -3811,6 +3859,24 @@
'CreatedAt' => array(
'type' => 'string',
),
'Environment' => array(
'type' => 'array',
'items' => array(
'name' => 'EnvironmentVariable',
'type' => 'object',
'properties' => array(
'Key' => array(
'type' => 'string',
),
'Value' => array(
'type' => 'string',
),
'Secure' => array(
'type' => 'boolean',
),
),
),
),
),
),
),
Expand Down Expand Up @@ -4483,6 +4549,9 @@
'CreatedAt' => array(
'type' => 'string',
),
'StackId' => array(
'type' => 'string',
),
'VolumeType' => array(
'type' => 'string',
),
Expand Down

0 comments on commit 7838202

Please sign in to comment.