Class GetCredentialsRequest
- java.lang.Object
-
- com.cloudera.cdp.replicationmanager.model.GetCredentialsRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:20.396-07:00") public class GetCredentialsRequest extends Object
Request object to retrieve specific cloud credentials.
-
-
Constructor Summary
Constructors Constructor Description GetCredentialsRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getClusterCrn()
Getter for clusterCrn.String
getCredentialId()
Getter for credentialId.String
getCredentialName()
Getter for credentialName.int
hashCode()
void
setClusterCrn(String clusterCrn)
Setter for clusterCrn.void
setCredentialId(String credentialId)
Setter for credentialId.void
setCredentialName(String credentialName)
Setter for credentialName.String
toString()
-
-
-
Method Detail
-
getClusterCrn
public String getClusterCrn()
Getter for clusterCrn. CRN of the cluster where the credential is.
-
setClusterCrn
public void setClusterCrn(String clusterCrn)
Setter for clusterCrn. CRN of the cluster where the credential is.
-
getCredentialName
public String getCredentialName()
Getter for credentialName. Name of the credential. If both name and Id are specified, the Id is considered.
-
setCredentialName
public void setCredentialName(String credentialName)
Setter for credentialName. Name of the credential. If both name and Id are specified, the Id is considered.
-
getCredentialId
public String getCredentialId()
Getter for credentialId. Id of the credential. If both name and Id are specified, the Id is considered.
-
setCredentialId
public void setCredentialId(String credentialId)
Setter for credentialId. Id of the credential. If both name and Id are specified, the Id is considered.
-
-