Skip to content

Commit

Permalink
Update models for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
jeskew committed Oct 1, 2015
1 parent 2c0557b commit f4d8cd6
Show file tree
Hide file tree
Showing 23 changed files with 2,302 additions and 82 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,15 @@
# CHANGELOG

## next release

* `Aws\Cloudtrail` - Added support for log file integrity validation, log
encryption with AWS KMS–Managed Keys (SSE-KMS), and trail tagging.
* `Aws\ElasticsearchService` - Added support for the Amazon Elasticsearch
Service.
* `Aws\Rds` - Added support for resource tags.
* `Aws\S3` - Added support for copying objects of any size.
* `Aws\Workspaces` - Added support for storage volume encryption with AWS KMS.

## 3.4.1 - 2015-09-29

* `Aws\CloudFormation` - Added support for specifying affected resource types
Expand Down
2 changes: 1 addition & 1 deletion build/build-manifest.php
Expand Up @@ -47,6 +47,6 @@

$data = json_encode($manifest, JSON_PRETTY_PRINT);
$file = __DIR__ . '/../src/data/manifest.json';
file_put_contents($file, $data);
file_put_contents($file, "$data\n");

echo "Wrote the following data to {$file}:\n>>>>>\n{$data}<<<<<\n";
16 changes: 16 additions & 0 deletions features/smoke/es/es.feature
@@ -0,0 +1,16 @@
# language: en
@es @elasticsearchservice
Feature: Amazon ElasticsearchService

Scenario: Making a request
When I call the "ListDomainNames" API
Then the value at "DomainNames" should be a list

Scenario: Handling errors
When I attempt to call the "DescribeElasticsearchDomain" API with:
| DomainName | not-a-domain |
Then the error code should be "ResourceNotFoundException"
And I expect the response error message to include:
"""
Domain not found: not-a-domain
"""
9 changes: 9 additions & 0 deletions src/ElasticsearchService/ElasticsearchServiceClient.php
@@ -0,0 +1,9 @@
<?php
namespace Aws\ElasticsearchService;

use Aws\AwsClient;

/**
* This client is used to interact with the **Amazon Elasticsearch Service** service.
*/
class ElasticsearchServiceClient extends AwsClient {}
@@ -0,0 +1,9 @@
<?php
namespace Aws\ElasticsearchService\Exception;

use Aws\Exception\AwsException;

/**
* Represents an error interacting with the **Amazon Elasticsearch Service** service.
*/
class ElasticsearchServiceException extends AwsException {}

0 comments on commit f4d8cd6

Please sign in to comment.