截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DescribeInstances.php 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. require_once __DIR__.'/../../../vendor/autoload.php';
  3. // 导入对应产品模块的client
  4. use TencentCloud\Cvm\V20170312\CvmClient;
  5. // 导入要请求接口对应的Request类
  6. use TencentCloud\Cvm\V20170312\Models\DescribeInstancesRequest;
  7. use TencentCloud\Cvm\V20170312\Models\Filter;
  8. use TencentCloud\Common\Exception\TencentCloudSDKException;
  9. use TencentCloud\Common\Credential;
  10. // 导入可选配置类
  11. use TencentCloud\Common\Profile\ClientProfile;
  12. use TencentCloud\Common\Profile\HttpProfile;
  13. try {
  14. // 实例化一个证书对象,入参需要传入腾讯云账户secretId,secretKey
  15. //$cred = new Credential("secretId", "secretKey");
  16. $cred = new Credential(getenv("TENCENTCLOUD_SECRET_ID"), getenv("TENCENTCLOUD_SECRET_KEY"));
  17. // 实例化一个http选项,可选的,没有特殊需求可以跳过
  18. $httpProfile = new HttpProfile();
  19. $httpProfile->setReqMethod("GET"); // post请求(默认为post请求)
  20. $httpProfile->setReqTimeout(30); // 请求超时时间,单位为秒(默认60秒)
  21. $httpProfile->setEndpoint("cvm.ap-shanghai.tencentcloudapi.com"); // 指定接入地域域名(默认就近接入)
  22. //$httpProfile->setRootDomain("ap-shanghai.tencentcloudapi.com"); // 指定根域名,默认为tencentcloudapi.com
  23. //$httpProfile->setKeepAlive(true);
  24. // 实例化一个client选项,可选的,没有特殊需求可以跳过
  25. $clientProfile = new ClientProfile();
  26. $clientProfile->setSignMethod("TC3-HMAC-SHA256"); // 指定签名算法(默认为HmacSHA256)
  27. $clientProfile->setHttpProfile($httpProfile);
  28. // 实例化要请求产品(以cvm为例)的client对象,clientProfile是可选的
  29. $client = new CvmClient($cred, "ap-shanghai", $clientProfile);
  30. // 实例化一个cvm实例信息查询请求对象,每个接口都会对应一个request对象。
  31. $req = new DescribeInstancesRequest();
  32. // 填充请求参数,这里request对象的成员变量即对应接口的入参
  33. // 你可以通过官网接口文档或跳转到request对象的定义处查看请求参数的定义
  34. $respFilter = new Filter(); // 创建Filter对象, 以zone的维度来查询cvm实例
  35. $respFilter->Name = "zone";
  36. $respFilter->Values = ["ap-shanghai-1", "ap-shanghai-2"];
  37. $req->Filters = [$respFilter]; // Filters 是成员为Filter对象的列表
  38. // 这里还支持以标准json格式的string来赋值请求参数的方式。下面的代码跟上面的参数赋值是等效的
  39. $params = [
  40. "Filters" => [
  41. [
  42. "Name" => "zone",
  43. "Values" => ["ap-shanghai-1", "ap-shanghai-2"]
  44. ]
  45. ]
  46. ];
  47. $req->fromJsonString(json_encode($params));
  48. // 通过client对象调用DescribeInstances方法发起请求。注意请求方法名与请求对象是对应的
  49. // 返回的resp是一个DescribeInstancesResponse类的实例,与请求对象对应
  50. $resp = $client->DescribeInstances($req);
  51. // 输出json格式的字符串回包
  52. print_r($resp->toJsonString());
  53. // 也可以取出单个值。
  54. // 你可以通过官网接口文档或跳转到response对象的定义处查看返回字段的定义
  55. print_r($resp->TotalCount);
  56. }
  57. catch(TencentCloudSDKException $e) {
  58. echo $e;
  59. }