本文整理汇总了PHP中Amazon_EC2_Interface::describeSubnets方法的典型用法代码示例。如果您正苦于以下问题:PHP Amazon_EC2_Interface::describeSubnets方法的具体用法?PHP Amazon_EC2_Interface::describeSubnets怎么用?PHP Amazon_EC2_Interface::describeSubnets使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Amazon_EC2_Interface
的用法示例。
在下文中一共展示了Amazon_EC2_Interface::describeSubnets方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: invokeDescribeSubnets
/**
* Describe Subnets Action Sample
* Gives you information about your subnets. You can filter the results to
* return information only about subnets that match criteria you specify.
* For example, you could ask to get information about a particular subnet
* (or all) only if the subnet's state is available. You can specify multiple
* filters (e.g., the subnet is in a particular VPC, and the subnet's state is
* available). The result includes information for a particular subnet only
* if the subnet matches all your filters. If there's no match, no special
* message is returned; the response is simply empty. The following table
* shows the available filters.
* @param Amazon_EC2_Interface $service instance of Amazon_EC2_Interface
* @param mixed $request Amazon_EC2_Model_DescribeSubnets or array of parameters
*/
function invokeDescribeSubnets(Amazon_EC2_Interface $service, $request)
{
try {
$response = $service->describeSubnets($request);
echo "Service Response\n";
echo "=============================================================================\n";
echo " DescribeSubnetsResponse\n";
if ($response->isSetResponseMetadata()) {
echo " ResponseMetadata\n";
$responseMetadata = $response->getResponseMetadata();
if ($responseMetadata->isSetRequestId()) {
echo " RequestId\n";
echo " " . $responseMetadata->getRequestId() . "\n";
}
}
if ($response->isSetDescribeSubnetsResult()) {
echo " DescribeSubnetsResult\n";
$describeSubnetsResult = $response->getDescribeSubnetsResult();
$subnetList = $describeSubnetsResult->getSubnet();
foreach ($subnetList as $subnet) {
echo " Subnet\n";
if ($subnet->isSetSubnetId()) {
echo " SubnetId\n";
echo " " . $subnet->getSubnetId() . "\n";
}
if ($subnet->isSetSubnetState()) {
echo " SubnetState\n";
echo " " . $subnet->getSubnetState() . "\n";
}
if ($subnet->isSetVpcId()) {
echo " VpcId\n";
echo " " . $subnet->getVpcId() . "\n";
}
if ($subnet->isSetCidrBlock()) {
echo " CidrBlock\n";
echo " " . $subnet->getCidrBlock() . "\n";
}
if ($subnet->isSetAvailableIpAddressCount()) {
echo " AvailableIpAddressCount\n";
echo " " . $subnet->getAvailableIpAddressCount() . "\n";
}
if ($subnet->isSetAvailabilityZone()) {
echo " AvailabilityZone\n";
echo " " . $subnet->getAvailabilityZone() . "\n";
}
}
}
} catch (Amazon_EC2_Exception $ex) {
echo "Caught Exception: " . $ex->getMessage() . "\n";
echo "Response Status Code: " . $ex->getStatusCode() . "\n";
echo "Error Code: " . $ex->getErrorCode() . "\n";
echo "Error Type: " . $ex->getErrorType() . "\n";
echo "Request ID: " . $ex->getRequestId() . "\n";
echo "XML: " . $ex->getXML() . "\n";
}
}