Skip to content
This repository has been archived by the owner on Jul 22, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
skyzyx authored and amazonwebservices committed Nov 9, 2011
1 parent f86f8f0 commit 5e28b93
Show file tree
Hide file tree
Showing 15 changed files with 231 additions and 110 deletions.
50 changes: 50 additions & 0 deletions _docs/CHANGELOG.md
@@ -1,3 +1,53 @@
# Changelog: 1.4.7 "Yuna"
<http://finalfantasy.wikia.com/wiki/Yuna>

Launched Wednesday, November 9, 2011

## Service Classes
### AmazonAS
* **New:** Support for the US-West 2 (Oregon) region has been added to the SDK.

### AmazonCloudFormation
* **New:** Support for the US-West 2 (Oregon) region has been added to the SDK.

### AmazonCloudWatch
* **New:** Support for the US-West 2 (Oregon) region has been added to the SDK.
* **New:** Support for the US GovCloud region has been added to the SDK.

### AmazonEC2
* **New:** Support for the US-West 2 (Oregon) region has been added to the SDK.
* **New:** Support for the US GovCloud region has been added to the SDK.

### AmazonELB
* **New:** Support for the US-West 2 (Oregon) region has been added to the SDK.

### AmazonEMR
* **New:** Support for the US-West 2 (Oregon) region has been added to the SDK.

### AmazonIAM
* **New:** Support for the US GovCloud region has been added to the SDK.

### AmazonRDS
* **New:** Support for the US-West 2 (Oregon) region has been added to the SDK.

### AmazonS3
* **New:** Support for the US-West 2 (Oregon) region has been added to the SDK.
* **Fixed:** Resolved an issue where certain bits of metadata were not maintained during a copy operation. <https://forums.aws.amazon.com/thread.jspa?threadID=77630>
* **Fixed:** Resolved an issue where an unsuccessful lookup of an existing content-type would throw a warning. <https://forums.aws.amazon.com/thread.jspa?threadID=78121>
* **Fixed:** Resolved an issue where an exception would be thrown when a filesize lookup was attempted on an object that didn't exist. <https://forums.aws.amazon.com/thread.jspa?threadID=78197>

### AmazonSDB
* **New:** Support for the US-West 2 (Oregon) region has been added to the SDK.

### AmazonSNS
* **New:** Support for the US-West 2 (Oregon) region has been added to the SDK.

### AmazonSQS
* **New:** Support for the US-West 2 (Oregon) region has been added to the SDK.


----

# Changelog: 1.4.6 "Xezat"
<http://finalfantasy.wikia.com/wiki/Xezat>

Expand Down
16 changes: 8 additions & 8 deletions package.xml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions sdk.class.php
Expand Up @@ -125,9 +125,9 @@ function __aws_sdk_ua_callback()
// INTERMEDIARY CONSTANTS

define('CFRUNTIME_NAME', 'aws-sdk-php');
define('CFRUNTIME_VERSION', '1.4.6');
define('CFRUNTIME_VERSION', '1.4.7');
// define('CFRUNTIME_BUILD', gmdate('YmdHis', filemtime(__FILE__))); // @todo: Hardcode for release.
define('CFRUNTIME_BUILD', '20111103191027');
define('CFRUNTIME_BUILD', '20111109191027');
define('CFRUNTIME_USERAGENT', CFRUNTIME_NAME . '/' . CFRUNTIME_VERSION . ' PHP/' . PHP_VERSION . ' ' . str_replace(' ', '_', php_uname('s')) . '/' . str_replace(' ', '_', php_uname('r')) . ' Arch/' . php_uname('m') . ' SAPI/' . php_sapi_name() . ' Integer/' . PHP_INT_MAX . ' Build/' . CFRUNTIME_BUILD . __aws_sdk_ua_callback());


Expand Down
23 changes: 14 additions & 9 deletions services/as.class.php
Expand Up @@ -51,35 +51,40 @@ class AmazonAS extends CFRuntime
// CLASS CONSTANTS

/**
* Specify the default queue URL.
* Specify the queue URL for the United States East (Northern Virginia) Region.
*/
const DEFAULT_URL = 'autoscaling.us-east-1.amazonaws.com';
const REGION_US_E1 = 'autoscaling.us-east-1.amazonaws.com';

/**
* Specify the queue URL for the US-East (Northern Virginia) Region.
* Specify the queue URL for the United States West (Northern California) Region.
*/
const REGION_US_E1 = self::DEFAULT_URL;
const REGION_US_W1 = 'autoscaling.us-west-1.amazonaws.com';

/**
* Specify the queue URL for the US-West (Northern California) Region.
* Specify the queue URL for the United States West (Oregon) Region.
*/
const REGION_US_W1 = 'autoscaling.us-west-1.amazonaws.com';
const REGION_US_W2 = 'autoscaling.us-west-2.amazonaws.com';

/**
* Specify the queue URL for the EU (Ireland) Region.
* Specify the queue URL for the Europe West (Ireland) Region.
*/
const REGION_EU_W1 = 'autoscaling.eu-west-1.amazonaws.com';

/**
* Specify the queue URL for the Asia Pacific (Singapore) Region.
* Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
*/
const REGION_APAC_SE1 = 'autoscaling.ap-southeast-1.amazonaws.com';

/**
* Specify the queue URL for the Asia Pacific (Japan) Region.
* Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
*/
const REGION_APAC_NE1 = 'autoscaling.ap-northeast-1.amazonaws.com';

/**
* Default service endpoint.
*/
const DEFAULT_URL = self::REGION_US_E1;


/*%******************************************************************************************%*/
// SETTERS
Expand Down
23 changes: 14 additions & 9 deletions services/cloudformation.class.php
Expand Up @@ -61,35 +61,40 @@ class AmazonCloudFormation extends CFRuntime
// CLASS CONSTANTS

/**
* Specify the default queue URL.
* Specify the queue URL for the United States East (Northern Virginia) Region.
*/
const DEFAULT_URL = 'cloudformation.us-east-1.amazonaws.com';
const REGION_US_E1 = 'cloudformation.us-east-1.amazonaws.com';

/**
* Specify the queue URL for the US-East (Northern Virginia) Region.
* Specify the queue URL for the United States West (Northern California) Region.
*/
const REGION_US_E1 = self::DEFAULT_URL;
const REGION_US_W1 = 'cloudformation.us-west-1.amazonaws.com';

/**
* Specify the queue URL for the US-West (Northern California) Region.
* Specify the queue URL for the United States West (Oregon) Region.
*/
const REGION_US_W1 = 'cloudformation.us-west-1.amazonaws.com';
const REGION_US_W2 = 'cloudformation.us-west-2.amazonaws.com';

/**
* Specify the queue URL for the EU (Ireland) Region.
* Specify the queue URL for the Europe West (Ireland) Region.
*/
const REGION_EU_W1 = 'cloudformation.eu-west-1.amazonaws.com';

/**
* Specify the queue URL for the Asia Pacific (Singapore) Region.
* Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
*/
const REGION_APAC_SE1 = 'cloudformation.ap-southeast-1.amazonaws.com';

/**
* Specify the queue URL for the Asia Pacific (Japan) Region.
* Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
*/
const REGION_APAC_NE1 = 'cloudformation.ap-northeast-1.amazonaws.com';

/**
* Default service endpoint.
*/
const DEFAULT_URL = self::REGION_US_E1;


/*%******************************************************************************************%*/
// SETTERS
Expand Down
34 changes: 22 additions & 12 deletions services/cloudwatch.class.php
Expand Up @@ -60,34 +60,44 @@ class AmazonCloudWatch extends CFRuntime
// CLASS CONSTANTS

/**
* Specify the default queue URL.
* Specify the queue URL for the United States East (Northern Virginia) Region.
*/
const DEFAULT_URL = 'monitoring.amazonaws.com';
const REGION_US_E1 = 'monitoring.us-east-1.amazonaws.com';

/**
* Specify the queue URL for the US-East (Northern Virginia) Region.
* Specify the queue URL for the United States West (Northern California) Region.
*/
const REGION_US_E1 = 'us-east-1';
const REGION_US_W1 = 'monitoring.us-west-1.amazonaws.com';

/**
* Specify the queue URL for the US-West (Northern California) Region.
* Specify the queue URL for the United States West (Oregon) Region.
*/
const REGION_US_W1 = 'us-west-1';
const REGION_US_W2 = 'monitoring.us-west-2.amazonaws.com';

/**
* Specify the queue URL for the EU (Ireland) Region.
* Specify the queue URL for the Europe West (Ireland) Region.
*/
const REGION_EU_W1 = 'eu-west-1';
const REGION_EU_W1 = 'monitoring.eu-west-1.amazonaws.com';

/**
* Specify the queue URL for the Asia Pacific (Singapore) Region.
* Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
*/
const REGION_APAC_SE1 = 'ap-southeast-1';
const REGION_APAC_SE1 = 'monitoring.ap-southeast-1.amazonaws.com';

/**
* Specify the queue URL for the Asia Pacific (Japan) Region.
* Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
*/
const REGION_APAC_NE1 = 'ap-northeast-1';
const REGION_APAC_NE1 = 'monitoring.ap-northeast-1.amazonaws.com';

/**
* Specify the queue URL for the United States GovCloud Region.
*/
const REGION_US_GOV1 = 'monitoring.us-gov-west-1.amazonaws.com';

/**
* Default service endpoint.
*/
const DEFAULT_URL = self::REGION_US_E1;


/*%******************************************************************************************%*/
Expand Down
34 changes: 22 additions & 12 deletions services/ec2.class.php
Expand Up @@ -40,34 +40,44 @@ class AmazonEC2 extends CFRuntime
// CLASS CONSTANTS

/**
* Specify the default queue URL.
* Specify the queue URL for the United States East (Northern Virginia) Region.
*/
const DEFAULT_URL = 'ec2.amazonaws.com';
const REGION_US_E1 = 'ec2.us-east-1.amazonaws.com';

/**
* Specify the queue URL for the US-East (Northern Virginia) Region.
* Specify the queue URL for the United States West (Northern California) Region.
*/
const REGION_US_E1 = 'us-east-1';
const REGION_US_W1 = 'ec2.us-west-1.amazonaws.com';

/**
* Specify the queue URL for the US-West (Northern California) Region.
* Specify the queue URL for the United States West (Oregon) Region.
*/
const REGION_US_W1 = 'us-west-1';
const REGION_US_W2 = 'ec2.us-west-2.amazonaws.com';

/**
* Specify the queue URL for the EU (Ireland) Region.
* Specify the queue URL for the Europe West (Ireland) Region.
*/
const REGION_EU_W1 = 'eu-west-1';
const REGION_EU_W1 = 'ec2.eu-west-1.amazonaws.com';

/**
* Specify the queue URL for the Asia Pacific (Singapore) Region.
* Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
*/
const REGION_APAC_SE1 = 'ap-southeast-1';
const REGION_APAC_SE1 = 'ec2.ap-southeast-1.amazonaws.com';

/**
* Specify the queue URL for the Asia Pacific (Japan) Region.
* Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
*/
const REGION_APAC_NE1 = 'ap-northeast-1';
const REGION_APAC_NE1 = 'ec2.ap-northeast-1.amazonaws.com';

/**
* Specify the queue URL for the United States GovCloud Region.
*/
const REGION_US_GOV1 = 'ec2.us-gov-west-1.amazonaws.com';

/**
* Default service endpoint.
*/
const DEFAULT_URL = self::REGION_US_E1;

/**
* The "pending" state code of an EC2 instance. Useful for conditionals.
Expand Down
23 changes: 14 additions & 9 deletions services/elb.class.php
Expand Up @@ -34,35 +34,40 @@ class AmazonELB extends CFRuntime
// CLASS CONSTANTS

/**
* Specify the default queue URL.
* Specify the queue URL for the United States East (Northern Virginia) Region.
*/
const DEFAULT_URL = 'elasticloadbalancing.us-east-1.amazonaws.com';
const REGION_US_E1 = 'elasticloadbalancing.us-east-1.amazonaws.com';

/**
* Specify the queue URL for the US-East (Northern Virginia) Region.
* Specify the queue URL for the United States West (Northern California) Region.
*/
const REGION_US_E1 = self::DEFAULT_URL;
const REGION_US_W1 = 'elasticloadbalancing.us-west-1.amazonaws.com';

/**
* Specify the queue URL for the US-West (Northern California) Region.
* Specify the queue URL for the United States West (Oregon) Region.
*/
const REGION_US_W1 = 'elasticloadbalancing.us-west-1.amazonaws.com';
const REGION_US_W2 = 'elasticloadbalancing.us-west-2.amazonaws.com';

/**
* Specify the queue URL for the EU (Ireland) Region.
* Specify the queue URL for the Europe West (Ireland) Region.
*/
const REGION_EU_W1 = 'elasticloadbalancing.eu-west-1.amazonaws.com';

/**
* Specify the queue URL for the Asia Pacific (Singapore) Region.
* Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
*/
const REGION_APAC_SE1 = 'elasticloadbalancing.ap-southeast-1.amazonaws.com';

/**
* Specify the queue URL for the Asia Pacific (Japan) Region.
* Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
*/
const REGION_APAC_NE1 = 'elasticloadbalancing.ap-northeast-1.amazonaws.com';

/**
* Default service endpoint.
*/
const DEFAULT_URL = self::REGION_US_E1;


/*%******************************************************************************************%*/
// SETTERS
Expand Down
29 changes: 17 additions & 12 deletions services/emr.class.php
Expand Up @@ -36,34 +36,39 @@ class AmazonEMR extends CFRuntime
// CLASS CONSTANTS

/**
* Specify the default queue URL.
* Specify the queue URL for the United States East (Northern Virginia) Region.
*/
const DEFAULT_URL = 'us-east-1.elasticmapreduce.amazonaws.com';
const REGION_US_E1 = 'elasticmapreduce.us-east-1.amazonaws.com';

/**
* Specify the queue URL for the US-East (Northern Virginia) Region.
* Specify the queue URL for the United States West (Northern California) Region.
*/
const REGION_US_E1 = self::DEFAULT_URL;
const REGION_US_W1 = 'elasticmapreduce.us-west-1.amazonaws.com';

/**
* Specify the queue URL for the US-West (Northern California) Region.
* Specify the queue URL for the United States West (Oregon) Region.
*/
const REGION_US_W1 = 'us-west-1.elasticmapreduce.amazonaws.com';
const REGION_US_W2 = 'elasticmapreduce.us-west-2.amazonaws.com';

/**
* Specify the queue URL for the EU (Ireland) Region.
* Specify the queue URL for the Europe West (Ireland) Region.
*/
const REGION_EU_W1 = 'eu-west-1.elasticmapreduce.amazonaws.com';
const REGION_EU_W1 = 'elasticmapreduce.eu-west-1.amazonaws.com';

/**
* Specify the queue URL for the Asia Pacific (Singapore) Region.
* Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
*/
const REGION_APAC_SE1 = 'ap-southeast-1.elasticmapreduce.amazonaws.com';
const REGION_APAC_SE1 = 'elasticmapreduce.ap-southeast-1.amazonaws.com';

/**
* Specify the queue URL for the Asia Pacific (Japan) Region.
* Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
*/
const REGION_APAC_NE1 = 'ap-northeast-1.elasticmapreduce.amazonaws.com';
const REGION_APAC_NE1 = 'elasticmapreduce.ap-northeast-1.amazonaws.com';

/**
* Default service endpoint.
*/
const DEFAULT_URL = self::REGION_US_E1;


/*%******************************************************************************************%*/
Expand Down
5 changes: 5 additions & 0 deletions services/iam.class.php
Expand Up @@ -51,6 +51,11 @@ class AmazonIAM extends CFRuntime
*/
const REGION_US_E1 = 'iam.amazonaws.com';

/**
* Specify the queue URL for the United States GovCloud Region.
*/
const REGION_US_GOV1 = 'iam.us-gov.amazonaws.com';

/**
* Default service endpoint.
*/
Expand Down

0 comments on commit 5e28b93

Please sign in to comment.