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

Commit 65d6bc8

Browse files
committed
Changelog and version bump for release 1.6.2
1 parent 7d4d30a commit 65d6bc8

File tree

3 files changed

+9
-21
lines changed

3 files changed

+9
-21
lines changed

_docs/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
CHANGELOG for the AWS SDK for PHP 1.x
22
=====================================
33

4+
1.6.2 (2013-03-15)
5+
------------------
6+
7+
* Added support for viewing and downloading DB log files to the Amazon RDS client.
8+
* Fixed an issue in the Amazon EC2 service description that was affecting the use of the new `modify_vpc_attribute` and
9+
`describe_vp_attribute` operations.
10+
411
1.6.1 (2013-03-11)
512
------------------
613

sdk.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ class Parser_Exception extends Exception {}
3333
// INTERMEDIARY CONSTANTS
3434

3535
define('CFRUNTIME_NAME', 'aws-sdk-php');
36-
define('CFRUNTIME_VERSION', '1.6.1');
37-
define('CFRUNTIME_BUILD', '20130311100000');
36+
define('CFRUNTIME_VERSION', '1.6.2');
37+
define('CFRUNTIME_BUILD', '20130314130000');
3838
$user_agent = sprintf('%s/%s PHP/%s', CFRUNTIME_NAME, CFRUNTIME_VERSION, PHP_VERSION);
3939
if (function_exists('curl_version'))
4040
{

services/rds.class.php

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1062,25 +1062,6 @@ public function describe_reserved_db_instances_offerings($opt = null)
10621062
return $this->authenticate('DescribeReservedDBInstancesOfferings', $opt);
10631063
}
10641064

1065-
/**
1066-
* Downloads the specified log file.
1067-
*
1068-
* @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
1069-
* <li><code>DBInstanceIdentifier</code> - <code>string</code> - Optional - The customer-assigned name of the DB Instance that contains the log files you want to list. Constraints:<ul><li>Must contain from 1 to 63 alphanumeric characters or hyphens</li><li>First character must be a letter</li><li>Cannot end with a hyphen or contain two consecutive hyphens</li></ul></li>
1070-
* <li><code>LogFileName</code> - <code>string</code> - Optional - The name of the log file to be downloaded.</li>
1071-
* <li><code>Marker</code> - <code>string</code> - Optional - The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.</li>
1072-
* <li><code>NumberOfLines</code> - <code>integer</code> - Optional - The number of lines remaining to be downloaded.</li>
1073-
* <li><code>curlopts</code> - <code>array</code> - Optional - A set of values to pass directly into <code>curl_setopt()</code>, where the key is a pre-defined <code>CURLOPT_*</code> constant.</li>
1074-
* <li><code>returnCurlHandle</code> - <code>boolean</code> - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.</li></ul>
1075-
* @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1076-
*/
1077-
public function download_complete_db_log_file($opt = null)
1078-
{
1079-
if (!$opt) $opt = array();
1080-
1081-
return $this->authenticate('DownloadCompleteDBLogFile', $opt);
1082-
}
1083-
10841065
/**
10851066
* Downloads the last line of the specified log file.
10861067
*

0 commit comments

Comments
 (0)