Network.DefinitionStages.WithCreate Interface

public interface WithCreate extends Creatable,Resource.DefinitionWithTags

The stage of the virtual network definition which contains all the minimum required inputs for the resource to be created, but also allows for any other optional settings to be specified, except for adding subnets.

Subnets can be added only right after the address space is explicitly specified.

Method Summary

Modifier and Type Method and Description
Network.DefinitionStages.WithCreateAndSubnet withAddressSpace(String cidr)

Explicitly adds an address space to the virtual network.

If no address spaces are explicitly specified, a default address space with the CIDR "10.0.0.0/16" will be assigned to the virtual network.

Note that this method's effect is additive, i.e. each time it is used, a new address space is added to the network. This method does not check for conflicts or overlaps with other address spaces. If there is a conflict, a cloud exception may be thrown at the time the network is created.

Network.DefinitionStages.WithCreate withDnsServer(String ipAddress)

Specifies the IP address of an existing DNS server to associate with the virtual network.

Note this method's effect is additive, i.e. each time it is used, a new dns server is added to the network.

Inherited Members

Method Details

withAddressSpace

public WithCreateAndSubnet withAddressSpace(String cidr)

Explicitly adds an address space to the virtual network.

If no address spaces are explicitly specified, a default address space with the CIDR "10.0.0.0/16" will be assigned to the virtual network.

Note that this method's effect is additive, i.e. each time it is used, a new address space is added to the network. This method does not check for conflicts or overlaps with other address spaces. If there is a conflict, a cloud exception may be thrown at the time the network is created.

Parameters:

cidr - the CIDR representation of the address space

Returns:

the next stage of the definition

withDnsServer

public WithCreate withDnsServer(String ipAddress)

Specifies the IP address of an existing DNS server to associate with the virtual network.

Note this method's effect is additive, i.e. each time it is used, a new dns server is added to the network.

Parameters:

ipAddress - the IP address of the DNS server

Returns:

the next stage of the definition

Applies to