Interface LocalNetworkGateway.UpdateStages.WithAddressSpace
-
- All Known Subinterfaces:
LocalNetworkGateway.Update
- Enclosing interface:
- LocalNetworkGateway.UpdateStages
public static interface LocalNetworkGateway.UpdateStages.WithAddressSpaceThe stage of the local network gateway update allowing to specify the address spaces.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LocalNetworkGateway.UpdatewithAddressSpace(String cidr)Adds address space.LocalNetworkGateway.UpdatewithoutAddressSpace(String cidr)Remove address space.
-
-
-
Method Detail
-
withAddressSpace
LocalNetworkGateway.Update withAddressSpace(String cidr)
Adds address space. Note: this method's effect is additive, i.e. each time it is used, a new address space is added to the network.- Parameters:
cidr- the CIDR representation of the local network site address space- Returns:
- the next stage of the update
-
withoutAddressSpace
LocalNetworkGateway.Update withoutAddressSpace(String cidr)
Remove address space. Note: address space will be removed only in case of exact cidr string match.- Parameters:
cidr- the CIDR representation of the local network site address space- Returns:
- the next stage of the update
-
-