-
Notifications
You must be signed in to change notification settings - Fork 0
Cloud Resources
<?php
require ‘./tarzan/tarzan.class.php’;
$bucket=“robertcarr”;
$ec2 = new AmazonEC2();
$db = new AmazonSDB();
$obj = $ec2→describe_snapshots();
#print_r($obj);
foreach ($obj→{’body’}→{’snapshotSet’}→{’item’} as $test) {
print $test→{’snapshotId’};
print “\n”;
}
?>
~
~
~
~
~