Class NetworkCreationOptions
- java.lang.Object
-
- org.jclouds.googlecomputeengine.options.NetworkCreationOptions
-
public abstract class NetworkCreationOptions extends Object
Represents a network used to enable instance communication.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
NetworkCreationOptions.Builder
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Boolean
autoCreateSubnetworks()
static NetworkCreationOptions
create(String name, String description, String rangeIPv4, String gatewayIPv4, Boolean autoCreateSubnetworks)
abstract String
description()
abstract String
gatewayIPv4()
This must be within the range specified by IPv4Range, and is typically the first usable address in that range.abstract String
name()
abstract String
rangeIPv4()
The range of internal addresses that are legal on this network.
-
-
-
Method Detail
-
name
public abstract String name()
-
rangeIPv4
@Nullable public abstract String rangeIPv4()
The range of internal addresses that are legal on this network. This range is a CIDR specification, for example:192.168.0.0/16
.
-
gatewayIPv4
@Nullable public abstract String gatewayIPv4()
This must be within the range specified by IPv4Range, and is typically the first usable address in that range. If not specified, the default value is the first usable address in IPv4Range.
-
-