public class CreateClusterEndpointRequest extends AbstractModel
Constructor and Description |
---|
CreateClusterEndpointRequest() |
CreateClusterEndpointRequest(CreateClusterEndpointRequest source)
NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
|
Modifier and Type | Method and Description |
---|---|
String |
getClusterId()
Get Cluster ID
|
String |
getDomain()
Get The domain name
|
String |
getExtensiveParameters()
Get Parameters used to create a CLB in JSON format.
|
Boolean |
getIsExtranet()
Get Whether public network access is enabled or not (True = public network access, FALSE = private network access, with the default value as FALSE).
|
String |
getSecurityGroup()
Get The security group in use, which must be passed in when public access is enabled.
|
String |
getSubnetId()
Get The ID of the subnet where the cluster's port is located (only needs to be entered when the non-public network access is enabled, and must be within the subnet of the cluster's VPC).
|
void |
setClusterId(String ClusterId)
Set Cluster ID
|
void |
setDomain(String Domain)
Set The domain name
|
void |
setExtensiveParameters(String ExtensiveParameters)
Set Parameters used to create a CLB in JSON format.
|
void |
setIsExtranet(Boolean IsExtranet)
Set Whether public network access is enabled or not (True = public network access, FALSE = private network access, with the default value as FALSE).
|
void |
setSecurityGroup(String SecurityGroup)
Set The security group in use, which must be passed in when public access is enabled.
|
void |
setSubnetId(String SubnetId)
Set The ID of the subnet where the cluster's port is located (only needs to be entered when the non-public network access is enabled, and must be within the subnet of the cluster's VPC).
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, getMultipartRequestParams, set, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, toJsonString
public CreateClusterEndpointRequest()
public CreateClusterEndpointRequest(CreateClusterEndpointRequest source)
public String getClusterId()
public void setClusterId(String ClusterId)
ClusterId
- Cluster IDpublic String getSubnetId()
public void setSubnetId(String SubnetId)
SubnetId
- The ID of the subnet where the cluster's port is located (only needs to be entered when the non-public network access is enabled, and must be within the subnet of the cluster's VPC).public Boolean getIsExtranet()
public void setIsExtranet(Boolean IsExtranet)
IsExtranet
- Whether public network access is enabled or not (True = public network access, FALSE = private network access, with the default value as FALSE).public String getDomain()
public void setDomain(String Domain)
Domain
- The domain namepublic String getSecurityGroup()
public void setSecurityGroup(String SecurityGroup)
SecurityGroup
- The security group in use, which must be passed in when public access is enabled.public String getExtensiveParameters()
public void setExtensiveParameters(String ExtensiveParameters)
ExtensiveParameters
- Parameters used to create a CLB in JSON format. It’s only required for public network access. Example: `{"InternetAccessible":{"InternetChargeType":"TRAFFIC_POSTPAID_BY_HOUR","InternetMaxBandwidthOut":"200"},"VipIsp":"","BandwidthPackageId":""}`.
Parameters:
`InternetAccessible.InternetChargeType`: `TRAFFIC_POSTPAID_BY_HOUR`, `BANDWIDTH_POSTPAID_BY_HOUR`, `InternetAccessible.BANDWIDTH_PACKAGE` (Bill by the bandwidth package)
`InternetMaxBandwidthOut`: Outbound bandwidth cap in Mbps. Range: 0 - 2048. It defaults to 10.
`VipIsp`: The VIP provider. Values: `CMCC` (China Mobile), `CTCC` (China Telecom), `CUCC` (China Unicom). If this parameter is not specified, BGP will be used by default. ISPs supported in a region can be queried with the `DescribeSingleIsp` API. If an ISP is specified, only bill-by-bandwidth-package (BANDWIDTH_PACKAGE) can be used as the network billing mode.
`BandwidthPackageId`: Bandwidth package ID. If this parameter is specified, the network billing mode (`InternetAccessible.InternetChargeType`) will only support bill-by-bandwidth package (`BANDWIDTH_PACKAGE`).Copyright © 2023. All rights reserved.