Service/Amazon/Ec2/Instance/Reserved.php

Show: inherited
Table of Contents

Zend Framework

LICENSE

This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to [email protected] so we can send you a copy immediately.

Category
Zend  
Copyright
Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  
Package
Zend_Service_Amazon  
Subpackage
Ec2  
Version
$Id: Reserved.php 24593 2012-01-05 20:35:02Z matthew $  

\Zend_Service_Amazon_Ec2_Instance_Reserved

Package: Zend\Service\Amazon\Ec2

Allows you to interface with the reserved instances on Amazon Ec2

Parent(s)
\Zend_Service_Amazon_Ec2_Abstract < \Zend_Service_Amazon_Abstract < \Zend_Service_Abstract
Category
Zend  
Copyright
Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  

Properties

Propertyprotectedstring $_accessKey =
Propertyprotectedstring $_defaultAccessKey = null
Default valuenullDetails
Type
string
Inherited_from
\Zend_Service_Amazon_Abstract::$$_defaultAccessKey  
Inherited_from
\Zend_Service_Amazon_Ec2_Abstract::$$_defaultAccessKey  
Propertyprotectedstring $_defaultRegion = null
staticinherited

<p>Amazon Region</p>Inherited from: \Zend_Service_Amazon_Ec2_Abstract::$$_defaultRegion
Default valuenullDetails
Type
string
Inherited_from
\Zend_Service_Amazon_Ec2_Abstract::$$_defaultRegion  
Propertyprotectedstring $_defaultSecretKey = null
Default valuenullDetails
Type
string
Inherited_from
\Zend_Service_Amazon_Abstract::$$_defaultSecretKey  
Inherited_from
\Zend_Service_Amazon_Ec2_Abstract::$$_defaultSecretKey  
Propertyprotected$_ec2ApiVersion = '2009-04-04'
inherited

The API version to use

Inherited from: \Zend_Service_Amazon_Ec2_Abstract::$$_ec2ApiVersion
Default value'2009-04-04'Details
Type
n/a
Inherited_from
\Zend_Service_Amazon_Ec2_Abstract::$$_ec2ApiVersion  
Propertyprotected$_ec2Endpoint = 'ec2.amazonaws.com'
inherited

The HTTP query server

Inherited from: \Zend_Service_Amazon_Ec2_Abstract::$$_ec2Endpoint
Default value'ec2.amazonaws.com'Details
Type
n/a
Inherited_from
\Zend_Service_Amazon_Ec2_Abstract::$$_ec2Endpoint  
Propertyprotected$_ec2SignatureMethod = 'HmacSHA256'
inherited

Signature Encoding Method

Inherited from: \Zend_Service_Amazon_Ec2_Abstract::$$_ec2SignatureMethod
Default value'HmacSHA256'Details
Type
n/a
Inherited_from
\Zend_Service_Amazon_Ec2_Abstract::$$_ec2SignatureMethod  
Propertyprotected$_ec2SignatureVersion = '2'
inherited

Signature Version

Inherited from: \Zend_Service_Amazon_Ec2_Abstract::$$_ec2SignatureVersion
Default value'2'Details
Type
n/a
Inherited_from
\Zend_Service_Amazon_Ec2_Abstract::$$_ec2SignatureVersion  
Propertyprotected\Zend_Http_Client $_httpClient = null
Propertyprotected$_httpTimeout = 10
inherited

Period after which HTTP request will timeout in seconds

Inherited from: \Zend_Service_Amazon_Ec2_Abstract::$$_httpTimeout
Default value10Details
Type
n/a
Inherited_from
\Zend_Service_Amazon_Ec2_Abstract::$$_httpTimeout  
Propertyprotectedstring $_region =
inherited

<p>Amazon Region</p>Inherited from: \Zend_Service_Amazon_Ec2_Abstract::$$_region
Details
Type
string
Inherited_from
\Zend_Service_Amazon_Ec2_Abstract::$$_region  
Propertyprotectedstring $_secretKey =
Propertyprotectedarray $_validEc2Regions = array('eu-west-1', 'us-east-1')
staticinherited

An array that contains all the valid Amazon Ec2 Regions.

Inherited from: \Zend_Service_Amazon_Ec2_Abstract::$$_validEc2Regions
Default valuearray('eu-west-1', 'us-east-1')Details
Type
array
Inherited_from
\Zend_Service_Amazon_Ec2_Abstract::$$_validEc2Regions  

Methods

methodpublic__construct( $accessKey = null,  $secretKey = null, string $region = null) : void
inherited

Create Amazon client.

Inherited from: \Zend_Service_Amazon_Ec2_Abstract::__construct()
Parameters
Name Type Description
$accessKey
$secretKey
$region string

Sets the AWS Region

methodprotected_getAccessKey() : string
Returns
Type Description
string
methodprotected_getRegion() : string
inherited

Method to fetch the AWS Region

Inherited from: \Zend_Service_Amazon_Ec2_Abstract::_getRegion()
Returns
Type Description
string
methodprotected_getSecretKey() : string
Returns
Type Description
string
methodprotectedaddRequiredParameters(array $parameters) : array
inherited

Adds required authentication and version parameters to an array of parameters

Inherited from: \Zend_Service_Amazon_Ec2_Abstract::addRequiredParameters()

The required parameters are: - AWSAccessKey - SignatureVersion - Timestamp - Version and - Signature

If a required parameter is already set in the $parameters array, it is overwritten.

Parameters
Name Type Description
$parameters array

the array to which to add the required parameters.

Returns
Type Description
array
methodprivatecheckForErrors(\Zend_Service_Amazon_Ec2_Response $response) : void
inherited

Checks for errors responses from Amazon

Inherited from: \Zend_Service_Amazon_Ec2_Abstract::checkForErrors()
Parameters
Name Type Description
$response \Zend_Service_Amazon_Ec2_Response

the response object to check.

Throws
Exception Description
\Zend_Service_Amazon_Ec2_Exception if one or more errors are returned from Amazon.
methodpublicdescribeInstances(string | array $instanceId) : array

Describes Reserved Instances that you purchased.

Parameters
Name Type Description
$instanceId string | array

IDs of the Reserved Instance to describe.

Returns
Type Description
array
methodpublicdescribeOfferings() : array

Describes Reserved Instance offerings that are available for purchase.

With Amazon EC2 Reserved Instances, you purchase the right to launch Amazon EC2 instances for a period of time (without getting insufficient capacity errors) and pay a lower usage rate for the actual time used.

Returns
Type Description
array
methodpublicpurchaseOffering(string $offeringId, integer $intanceCount = 1) : string

Purchases a Reserved Instance for use with your account.

With Amazon EC2 Reserved Instances, you purchase the right to launch Amazon EC2 instances for a period of time (without getting insufficient capacity errors) and pay a lower usage rate for the actual time used.

Parameters
Name Type Description
$offeringId string

The offering ID of the Reserved Instance to purchase

$intanceCount integer

The number of Reserved Instances to purchase.

Returns
Type Description
string The ID of the purchased Reserved Instances.
methodprotectedsendRequest(array $params = array()) : \Zend_Service_Amazon_Ec2_Response
inherited

Sends a HTTP request to the queue service using Zend_Http_Client

Inherited from: \Zend_Service_Amazon_Ec2_Abstract::sendRequest()
Parameters
Name Type Description
$params array

List of parameters to send with the request

Returns
Type Description
\Zend_Service_Amazon_Ec2_Response
Throws
Exception Description
\Zend_Service_Amazon_Ec2_Exception
methodpublicsetHttpClient(\Zend_Http_Client $httpClient) : void
staticfinalinherited

Sets the HTTP client object to use for retrieving the feeds.

Inherited from: \Zend_Service_Abstract::setHttpClient()\Zend_Service_Amazon_Abstract::setHttpClient()\Zend_Service_Amazon_Ec2_Abstract::setHttpClient()

If none is set, the default Zend_Http_Client will be used.

Parameters
Name Type Description
$httpClient \Zend_Http_Client
methodpublicsetKeys( $accessKey,  $secretKey) : void
staticinherited

Set the keys to use when accessing SQS.

Inherited from: \Zend_Service_Amazon_Abstract::setKeys()\Zend_Service_Amazon_Ec2_Abstract::setKeys()
Parameters
Name Type Description
$accessKey
$secretKey
methodpublicsetRegion(string $region) : void
staticinherited

Set which region you are working in.

Inherited from: \Zend_Service_Amazon_Ec2_Abstract::setRegion()

It will append the end point automaticly

Parameters
Name Type Description
$region string
methodprotectedsignParameters( $paramaters) : string
inherited

Computes the RFC 2104-compliant HMAC signature for request parameters

Inherited from: \Zend_Service_Amazon_Ec2_Abstract::signParameters()

This implements the Amazon Web Services signature, as per the following specification:

  1. Sort all request parameters (including SignatureVersion and excluding Signature, the value of which is being created), ignoring case.

  2. Iterate over the sorted list and append the parameter name (in its original case) and then its value. Do not URL-encode the parameter values before constructing this string. Do not use any separator characters when appending strings.

Parameters
Name Type Description
$paramaters
Returns
Type Description
string the signed data.
Documentation was generated by phpDocumentor 2.0.0a8.