Skip to content

Commit

Permalink
Adding new service updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdowling committed May 27, 2015
1 parent 8a9da3e commit 51c0e00
Show file tree
Hide file tree
Showing 40 changed files with 6,364 additions and 621 deletions.
9 changes: 9 additions & 0 deletions src/DirectoryService/DirectoryServiceClient.php
@@ -0,0 +1,9 @@
<?php
namespace Aws\DirectoryService;

use Aws\AwsClient;

/**
* AWS Directory Service client
*/
class DirectoryServiceClient extends AwsClient {}
9 changes: 9 additions & 0 deletions src/DirectoryService/Exception/DirectoryServiceException.php
@@ -0,0 +1,9 @@
<?php
namespace Aws\DirectoryService\Exception;

use Aws\Exception\AwsException;

/**
* AWS Directory Service Exception
*/
class DirectoryServiceException extends AwsException {}
9 changes: 9 additions & 0 deletions src/Efs/EfsClient.php
@@ -0,0 +1,9 @@
<?php
namespace Aws\Efs;

use Aws\AwsClient;

/**
* This client is used to interact with **Amazon EFS**.
*/
class EfsClient extends AwsClient {}
9 changes: 9 additions & 0 deletions src/Efs/Exception/EfsException.php
@@ -0,0 +1,9 @@
<?php
namespace Aws\Efs\Exception;

use Aws\Exception\AwsException;

/**
* Amazon EFS exception.
*/
class EfsException extends AwsException {}
18 changes: 16 additions & 2 deletions src/data/cloudformation/2010-05-15/api-2.json
@@ -1,4 +1,5 @@
{
"version":"2.0",
"metadata":{
"apiVersion":"2010-05-15",
"endpointPrefix":"cloudformation",
Expand Down Expand Up @@ -238,6 +239,11 @@
}
},
"shapes":{
"AllowedValue":{"type":"string"},
"AllowedValues":{
"type":"list",
"member":{"shape":"AllowedValue"}
},
"AlreadyExistsException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -415,7 +421,8 @@
"Description":{"shape":"Description"},
"Capabilities":{"shape":"Capabilities"},
"CapabilitiesReason":{"shape":"CapabilitiesReason"},
"Version":{"shape":"Version"}
"Version":{"shape":"Version"},
"Metadata":{"shape":"Metadata"}
}
},
"InsufficientCapabilitiesException":{
Expand Down Expand Up @@ -514,14 +521,21 @@
"UsePreviousValue":{"shape":"UsePreviousValue"}
}
},
"ParameterConstraints":{
"type":"structure",
"members":{
"AllowedValues":{"shape":"AllowedValues"}
}
},
"ParameterDeclaration":{
"type":"structure",
"members":{
"ParameterKey":{"shape":"ParameterKey"},
"DefaultValue":{"shape":"ParameterValue"},
"ParameterType":{"shape":"ParameterType"},
"NoEcho":{"shape":"NoEcho"},
"Description":{"shape":"Description"}
"Description":{"shape":"Description"},
"ParameterConstraints":{"shape":"ParameterConstraints"}
}
},
"ParameterDeclarations":{
Expand Down
40 changes: 30 additions & 10 deletions src/data/cloudformation/2010-05-15/docs-2.json

Large diffs are not rendered by default.

70 changes: 70 additions & 0 deletions src/data/cloudformation/2010-05-15/waiters-2.json
@@ -0,0 +1,70 @@
{
"version": 2,
"waiters": {
"StackCreateComplete": {
"delay": 30,
"operation": "DescribeStacks",
"maxAttempts": 50,
"description": "Wait until stack status is CREATE_COMPLETE.",
"acceptors": [
{
"expected": "CREATE_COMPLETE",
"matcher": "pathAll",
"state": "success",
"argument": "Stacks[].StackStatus"
},
{
"expected": "CREATE_FAILED",
"matcher": "pathAny",
"state": "failure",
"argument": "Stacks[].StackStatus"
}
]
},
"StackDeleteComplete": {
"delay": 30,
"operation": "DescribeStacks",
"maxAttempts": 25,
"description": "Wait until stack status is DELETE_COMPLETE.",
"acceptors": [
{
"expected": "DELETE_COMPLETE",
"matcher": "pathAll",
"state": "success",
"argument": "Stacks[].StackStatus"
},
{
"expected": "ValidationError",
"matcher": "error",
"state": "success"
},
{
"expected": "DELETE_FAILED",
"matcher": "pathAny",
"state": "failure",
"argument": "Stacks[].StackStatus"
}
]
},
"StackUpdateComplete": {
"delay": 30,
"operation": "DescribeStacks",
"maxAttempts": 5,
"description": "Wait until stack status is UPDATE_COMPLETE.",
"acceptors": [
{
"expected": "UPDATE_COMPLETE",
"matcher": "pathAll",
"state": "success",
"argument": "Stacks[].StackStatus"
},
{
"expected": "UPDATE_FAILED",
"matcher": "pathAny",
"state": "failure",
"argument": "Stacks[].StackStatus"
}
]
}
}
}

0 comments on commit 51c0e00

Please sign in to comment.