Class ExistingAzureNetworkRequest
- java.lang.Object
-
- com.cloudera.cdp.environments.model.ExistingAzureNetworkRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-01-18T15:00:50.178-08:00") public class ExistingAzureNetworkRequest extends Object
Request object for creating an Azure environment using existing VNet and subnets.
-
-
Constructor Summary
Constructors Constructor Description ExistingAzureNetworkRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getDatabasePrivateDnsZoneId()
Getter for databasePrivateDnsZoneId.String
getNetworkId()
Getter for networkId.String
getResourceGroupName()
Getter for resourceGroupName.List<String>
getSubnetIds()
Getter for subnetIds.int
hashCode()
void
setDatabasePrivateDnsZoneId(String databasePrivateDnsZoneId)
Setter for databasePrivateDnsZoneId.void
setNetworkId(String networkId)
Setter for networkId.void
setResourceGroupName(String resourceGroupName)
Setter for resourceGroupName.void
setSubnetIds(List<String> subnetIds)
Setter for subnetIds.String
toString()
-
-
-
Method Detail
-
getNetworkId
public String getNetworkId()
Getter for networkId. The id of the Azure VNet.
-
setNetworkId
public void setNetworkId(String networkId)
Setter for networkId. The id of the Azure VNet.
-
getResourceGroupName
public String getResourceGroupName()
Getter for resourceGroupName. The name of the resource group associated with the VNet.
-
setResourceGroupName
public void setResourceGroupName(String resourceGroupName)
Setter for resourceGroupName. The name of the resource group associated with the VNet.
-
getSubnetIds
public List<String> getSubnetIds()
Getter for subnetIds. One or more subnet ids within the VNet.
-
setSubnetIds
public void setSubnetIds(List<String> subnetIds)
Setter for subnetIds. One or more subnet ids within the VNet.
-
getDatabasePrivateDnsZoneId
public String getDatabasePrivateDnsZoneId()
Getter for databasePrivateDnsZoneId. The ID of an existing private DNS zone used for the database.
-
setDatabasePrivateDnsZoneId
public void setDatabasePrivateDnsZoneId(String databasePrivateDnsZoneId)
Setter for databasePrivateDnsZoneId. The ID of an existing private DNS zone used for the database.
-
-