use of com.sequenceiq.cloudbreak.api.model.v2.NetworkV2Request in project cloudbreak by hortonworks.
the class GcpCloudProvider method network.
@Override
NetworkV2Request network() {
NetworkV2Request network = new NetworkV2Request();
network.setSubnetCIDR("10.0.0.0/16");
return network;
}
use of com.sequenceiq.cloudbreak.api.model.v2.NetworkV2Request in project cloudbreak by hortonworks.
the class AzureCloudProvider method network.
@Override
NetworkV2Request network() {
NetworkV2Request network = new NetworkV2Request();
network.setSubnetCIDR("10.0.0.0/16");
return network;
}
Aggregations