Class NetworkAzureParams
- java.lang.Object
-
- com.cloudera.cdp.environments.model.NetworkAzureParams
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-27T13:27:53.061-07:00") public class NetworkAzureParams extends Object
Azure network parameters.
-
-
Constructor Summary
Constructors Constructor Description NetworkAzureParams()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getAksPrivateDnsZoneId()
Getter for aksPrivateDnsZoneId.String
getDatabasePrivateDnsZoneId()
Getter for databasePrivateDnsZoneId.Boolean
getEnableOutboundLoadBalancer()
Getter for enableOutboundLoadBalancer.String
getNetworkId()
Getter for networkId.String
getResourceGroupName()
Getter for resourceGroupName.Boolean
getUsePublicIp()
Getter for usePublicIp.int
hashCode()
void
setAksPrivateDnsZoneId(String aksPrivateDnsZoneId)
Setter for aksPrivateDnsZoneId.void
setDatabasePrivateDnsZoneId(String databasePrivateDnsZoneId)
Setter for databasePrivateDnsZoneId.void
setEnableOutboundLoadBalancer(Boolean enableOutboundLoadBalancer)
Setter for enableOutboundLoadBalancer.void
setNetworkId(String networkId)
Setter for networkId.void
setResourceGroupName(String resourceGroupName)
Setter for resourceGroupName.void
setUsePublicIp(Boolean usePublicIp)
Setter for usePublicIp.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.
-
getUsePublicIp
public Boolean getUsePublicIp()
Getter for usePublicIp. Whether to associate public ip's to the resources within the network.
-
setUsePublicIp
public void setUsePublicIp(Boolean usePublicIp)
Setter for usePublicIp. Whether to associate public ip's to the resources within the network.
-
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.
-
getAksPrivateDnsZoneId
public String getAksPrivateDnsZoneId()
Getter for aksPrivateDnsZoneId. The ID of an existing private DNS zone used for the AKS.
-
setAksPrivateDnsZoneId
public void setAksPrivateDnsZoneId(String aksPrivateDnsZoneId)
Setter for aksPrivateDnsZoneId. The ID of an existing private DNS zone used for the AKS.
-
getEnableOutboundLoadBalancer
public Boolean getEnableOutboundLoadBalancer()
Getter for enableOutboundLoadBalancer. Whether the outbound load balancer was created for this environment.
-
setEnableOutboundLoadBalancer
public void setEnableOutboundLoadBalancer(Boolean enableOutboundLoadBalancer)
Setter for enableOutboundLoadBalancer. Whether the outbound load balancer was created for this environment.
-
-