类 DeleteSubnetRequest
- java.lang.Object
-
- com.baidubce.model.AbstractBceRequest
-
- com.baidubce.services.subnet.model.DeleteSubnetRequest
-
public class DeleteSubnetRequest extends AbstractBceRequest
The request for deleting subnet.
-
-
构造器概要
构造器 构造器 说明 DeleteSubnetRequest()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 StringgetClientToken()StringgetSubnetId()voidsetClientToken(String clientToken)voidsetSubnetId(String subnetId)DeleteSubnetRequestwithClientToken(String clientToken)Configure optional client token for the request.DeleteSubnetRequestwithRequestCredentials(BceCredentials credentials)Configure request credential for the request.DeleteSubnetRequestwithSubnetId(String subnetId)Configure the subnetId for the request.-
从类继承的方法 com.baidubce.model.AbstractBceRequest
getRequestCredentials, setRequestCredentials
-
-
-
-
方法详细资料
-
getSubnetId
public String getSubnetId()
-
setSubnetId
public void setSubnetId(String subnetId)
-
getClientToken
public String getClientToken()
-
setClientToken
public void setClientToken(String clientToken)
-
withClientToken
public DeleteSubnetRequest withClientToken(String clientToken)
Configure optional client token for the request. The request will be idempotent if client token is provided. If the clientToken is not specified by the user, a random String generated by default algorithm will be used.- 参数:
clientToken- An ASCII string whose length is less than 64. See more detail at BCE API doc- 返回:
- DeleteSubnetRequest with specific clientToken
-
withSubnetId
public DeleteSubnetRequest withSubnetId(String subnetId)
Configure the subnetId for the request.- 参数:
subnetId- The id of subnet.- 返回:
- GetSubnetRequest with specified subnetId.
-
withRequestCredentials
public DeleteSubnetRequest withRequestCredentials(BceCredentials credentials)
Configure request credential for the request.- 指定者:
withRequestCredentials在类中AbstractBceRequest- 参数:
credentials- a valid instance of BceCredentials.- 返回:
- DeleteSubnetRequest with credentials.
-
-