EipBP实例
更新时间:2023-08-31
EipBp实例是百度智能云上的创建一个带宽包实例。 创建带宽包需要实名认证,若未通过实名认证可以前往百度开放云官网控制台中的安全认证下的实名认证中进行认证,目前仅支持预付费EIP共享带宽的创建
创建带宽包实例
使用以下代码可以创建带宽包实例。
public function testCreateEipBp()
{
$resp = $this->client->createEipBp($this->eip, null, $this->createBandwidthInMbps, $this->name, $this->autoReleaseTime);
print_r($resp);
$this->assertNotNull($resp);
}
带宽包带宽扩缩容
指定带宽包的带宽扩缩容。
public function testResizeEipBp()
{
$this->client->resizeEipBp($this->id, $this->newBandwidthInMbps);
}
查询带宽包详情
查询带宽包详情。
public function testGetEipBp()
{
$this->client->getEipBp($this->id);
}
查询带宽包列表
查询带宽包列表。
- 可根据多重条件查询带宽包列表。
- 若不提供查询条件,则默认查询覆盖所有带宽包。
- 返回结果为多重条件交集的查询结果,即提供多重条件的情况下,返回同时满足所有条件的带宽包。
- 以上查询结果支持marker分页,分页大小默认为1000,可通过maxKeys参数指定。
public function testListEipBps()
{
$this->client->listEipBps();
}
更新带宽包名称
更新指定带宽包名称。
public function testRenameEipBp()
{
$this->client->renameEipBp($this->id, $this->newName);
}
更新带宽包自动释放时间
更新指定带宽包的自动释放时间。
public function testUpdateEipBpAutoReleaseTime()
{
$this->client->updateEipBpAutoReleaseTime($this->id, $this->newAutoReleaseTime);
}
释放带宽包
释放指定带宽包。
public function testReleaseEipBp()
{
$this->client->releaseEipBp($this->id);
}