Interface Network.DefinitionStages.WithSubnet

    • Method Detail

      • withSubnet

        Network.DefinitionStages.WithCreateAndSubnet withSubnet​(String name,
                                                                String cidr)
        Explicitly adds a subnet to the virtual network.

        If no subnets are explicitly specified, a default subnet called "subnet1" covering the entire first address space will be created.

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

        Parameters:
        name - the name to assign to the subnet
        cidr - the address space of the subnet, within the address space of the network, using the CIDR notation
        Returns:
        the next stage of the definition
      • withSubnets

        Network.DefinitionStages.WithCreateAndSubnet withSubnets​(Map<String,​String> nameCidrPairs)
        Explicitly defines subnets in the virtual network based on the provided map.
        Parameters:
        nameCidrPairs - a Map of CIDR addresses for the subnets, indexed by the name of each subnet to be defined
        Returns:
        the next stage of the definition