Network Args
data class NetworkArgs(val cidrBlock: Output<String>? = null, val description: Output<String>? = null, val dryRun: Output<Boolean>? = null, val enableIpv6: Output<Boolean>? = null, val name: Output<String>? = null, val resourceGroupId: Output<String>? = null, val secondaryCidrBlocks: Output<List<String>>? = null, val tags: Output<Map<String, Any>>? = null, val userCidrs: Output<List<String>>? = null, val vpcName: Output<String>? = null) : ConvertibleToJava<NetworkArgs>
Import
VPC can be imported using the id, e.g.
$ pulumi import alicloud:vpc/network:Network example vpc-abc123456
Content copied to clipboard
Constructors
Link copied to clipboard
fun NetworkArgs(cidrBlock: Output<String>? = null, description: Output<String>? = null, dryRun: Output<Boolean>? = null, enableIpv6: Output<Boolean>? = null, name: Output<String>? = null, resourceGroupId: Output<String>? = null, secondaryCidrBlocks: Output<List<String>>? = null, tags: Output<Map<String, Any>>? = null, userCidrs: Output<List<String>>? = null, vpcName: Output<String>? = null)
Functions
Properties
Link copied to clipboard
Link copied to clipboard
Specifies whether to enable the IPv6 CIDR block. Valid values: false
(Default): disables IPv6 CIDR blocks. true
: enables IPv6 CIDR blocks. If the enable_ipv6
is true
, the system will automatically create a free version of an IPv6 gateway for your private network and assign an IPv6 network segment assigned as /56.
Link copied to clipboard