AssignPrivateIpAddressesProps
Properties for defining a AssignPrivateIpAddresses.
See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-ecs-assignprivateipaddresses
Initializer
using AlibabaCloud.SDK.ROS.CDK.Ecs;
new AssignPrivateIpAddressesProps {
object NetworkInterfaceId,
object Ipv4PrefixCount = null,
object Ipv4Prefixes = null,
object PrivateIpAddresses = null,
object SecondaryPrivateIpAddressCount = null
};
Properties
| Name | Type | Description |
|---|---|---|
NetworkInterfaceId | object | Property networkInterfaceId: The ID of the ENI. |
Ipv4PrefixCount | object | Property ipv4PrefixCount: The number of IPv4 prefixes to be randomly generated for the ENI. |
Ipv4Prefixes | object | Property ipv4Prefixes: One or multiple IPv4 prefixes to be assigned to the ENI. |
PrivateIpAddresses | object | Property privateIpAddresses: One or multiple secondary private IP addresses selected from the CIDR block of the VSwitch that hosts the ENI. |
SecondaryPrivateIpAddressCount | object | Property secondaryPrivateIpAddressCount: The number of private IP addresses to be automatically assigned from the CIDR block of the vSwitch that is connected to the ENI. |
NetworkInterfaceIdRequired
public object NetworkInterfaceId { get; set; }
- Type: object
Property networkInterfaceId: The ID of the ENI.
Ipv4PrefixCountOptional
public object Ipv4PrefixCount { get; set; }
- Type: object
Property ipv4PrefixCount: The number of IPv4 prefixes to be randomly generated for the ENI.
Valid values: 1 to 10.
To assign IPv4 prefixes to the ENI, you must specify the Ipv4Prefix.N or Ipv4PrefixCount parameter, but not both.
Ipv4PrefixesOptional
public object Ipv4Prefixes { get; set; }
- Type: object
Property ipv4Prefixes: One or multiple IPv4 prefixes to be assigned to the ENI.
PrivateIpAddressesOptional
public object PrivateIpAddresses { get; set; }
- Type: object
Property privateIpAddresses: One or multiple secondary private IP addresses selected from the CIDR block of the VSwitch that hosts the ENI.
Valid values of number of private ip addresses: When the ENI is in the Available state: 1 to 10. When the ENI is in the InUse state: limited by the instance type. For more information, see Instance type families. You must specify either the PrivateIpAddresses parameter or the SecondaryPrivateIpAddressCount parameter to assign secondary private IP addresses.
SecondaryPrivateIpAddressCountOptional
public object SecondaryPrivateIpAddressCount { get; set; }
- Type: object
Property secondaryPrivateIpAddressCount: The number of private IP addresses to be automatically assigned from the CIDR block of the vSwitch that is connected to the ENI.
To assign secondary private IP addresses to the ENI, you must specify PrivateIpAddress.N or SecondaryPrivateIpAddressCount but not both.