Class AuthenticationRequest
- java.lang.Object
-
- com.cloudera.cdp.environments.model.AuthenticationRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:18.529-07:00") public class AuthenticationRequest extends Object
Additional SSH key authentication configuration for accessing cluster node.
-
-
Constructor Summary
Constructors Constructor Description AuthenticationRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getPublicKey()
Getter for publicKey.String
getPublicKeyId()
Getter for publicKeyId.int
hashCode()
void
setPublicKey(String publicKey)
Setter for publicKey.void
setPublicKeyId(String publicKeyId)
Setter for publicKeyId.String
toString()
-
-
-
Method Detail
-
getPublicKey
public String getPublicKey()
Getter for publicKey. Public SSH key string. Mutually exclusive with publicKeyId.
-
setPublicKey
public void setPublicKey(String publicKey)
Setter for publicKey. Public SSH key string. Mutually exclusive with publicKeyId.
-
getPublicKeyId
public String getPublicKeyId()
Getter for publicKeyId. Public SSH key ID already registered in the cloud provider. Mutually exclusive with publicKey.
-
setPublicKeyId
public void setPublicKeyId(String publicKeyId)
Setter for publicKeyId. Public SSH key ID already registered in the cloud provider. Mutually exclusive with publicKey.
-
-