Class ExistingGCPNetworkRequest
- java.lang.Object
-
- com.cloudera.cdp.environments.model.ExistingGCPNetworkRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-27T13:27:53.061-07:00") public class ExistingGCPNetworkRequest extends Object
Request object for creating an GCP environment using existing VPC and subnets.
-
-
Constructor Summary
Constructors Constructor Description ExistingGCPNetworkRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getNetworkName()
Getter for networkName.String
getSharedProjectId()
Getter for sharedProjectId.List<String>
getSubnetNames()
Getter for subnetNames.int
hashCode()
void
setNetworkName(String networkName)
Setter for networkName.void
setSharedProjectId(String sharedProjectId)
Setter for sharedProjectId.void
setSubnetNames(List<String> subnetNames)
Setter for subnetNames.String
toString()
-
-
-
Method Detail
-
getNetworkName
public String getNetworkName()
Getter for networkName. The name of the GCP VPC.
-
setNetworkName
public void setNetworkName(String networkName)
Setter for networkName. The name of the GCP VPC.
-
getSubnetNames
public List<String> getSubnetNames()
Getter for subnetNames. One or more subnet names within the VPC. Google VPC's are global, please give subnets from single geographic region only to reduce latency.
-
setSubnetNames
public void setSubnetNames(List<String> subnetNames)
Setter for subnetNames. One or more subnet names within the VPC. Google VPC's are global, please give subnets from single geographic region only to reduce latency.
-
getSharedProjectId
public String getSharedProjectId()
Getter for sharedProjectId. The ID of the Google project associated with the VPC.
-
setSharedProjectId
public void setSharedProjectId(String sharedProjectId)
Setter for sharedProjectId. The ID of the Google project associated with the VPC.
-
-