Class CheckEnvironmentConnectivityRequest
- java.lang.Object
-
- com.cloudera.cdp.environments.model.CheckEnvironmentConnectivityRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:18.529-07:00") public class CheckEnvironmentConnectivityRequest extends Object
Request object to check connectivity to private cloud environment.
-
-
Constructor Summary
Constructors Constructor Description CheckEnvironmentConnectivityRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getAddress()
Getter for address.String
getAuthenticationToken()
Getter for authenticationToken.String
getAuthenticationTokenType()
Getter for authenticationTokenType.List<String>
getClusterNames()
Getter for clusterNames.String
getUser()
Getter for user.int
hashCode()
void
setAddress(String address)
Setter for address.void
setAuthenticationToken(String authenticationToken)
Setter for authenticationToken.void
setAuthenticationTokenType(String authenticationTokenType)
Setter for authenticationTokenType.void
setClusterNames(List<String> clusterNames)
Setter for clusterNames.void
setUser(String user)
Setter for user.String
toString()
-
-
-
Method Detail
-
getAddress
public String getAddress()
Getter for address. The address of the Cloudera Manager managing the Datalake cluster.
-
setAddress
public void setAddress(String address)
Setter for address. The address of the Cloudera Manager managing the Datalake cluster.
-
getUser
public String getUser()
Getter for user. User name for accessing the Cloudera Manager.
-
setUser
public void setUser(String user)
Setter for user. User name for accessing the Cloudera Manager.
-
getAuthenticationToken
public String getAuthenticationToken()
Getter for authenticationToken. A string (text or json) used to authenticate to the Cloudera Manager.
-
setAuthenticationToken
public void setAuthenticationToken(String authenticationToken)
Setter for authenticationToken. A string (text or json) used to authenticate to the Cloudera Manager.
-
getAuthenticationTokenType
public String getAuthenticationTokenType()
Getter for authenticationTokenType. How to interpret the authenticationToken field. Defaults to CLEARTEXT_PASSWORD.
-
setAuthenticationTokenType
public void setAuthenticationTokenType(String authenticationTokenType)
Setter for authenticationTokenType. How to interpret the authenticationToken field. Defaults to CLEARTEXT_PASSWORD.
-
getClusterNames
public List<String> getClusterNames()
Getter for clusterNames. The name of the cluster(s) to use as a Datalake for the environment.
-
setClusterNames
public void setClusterNames(List<String> clusterNames)
Setter for clusterNames. The name of the cluster(s) to use as a Datalake for the environment.
-
-