Package com.cloudera.cdp.iam.model
Class AccessKey
- java.lang.Object
-
- com.cloudera.cdp.iam.model.AccessKey
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-12-01T13:59:42.174-08:00") public class AccessKey extends Object
Information about a Cloudera CDP access key.
-
-
Constructor Summary
Constructors Constructor Description AccessKey()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getAccessKeyId()
Getter for accessKeyId.String
getActorCrn()
Getter for actorCrn.ZonedDateTime
getCreationDate()
Getter for creationDate.String
getCrn()
Getter for crn.AccessKeyLastUsage
getLastUsage()
Getter for lastUsage.String
getStatus()
Getter for status.String
getType()
Getter for type.int
hashCode()
void
setAccessKeyId(String accessKeyId)
Setter for accessKeyId.void
setActorCrn(String actorCrn)
Setter for actorCrn.void
setCreationDate(ZonedDateTime creationDate)
Setter for creationDate.void
setCrn(String crn)
Setter for crn.void
setLastUsage(AccessKeyLastUsage lastUsage)
Setter for lastUsage.void
setStatus(String status)
Setter for status.void
setType(String type)
Setter for type.String
toString()
-
-
-
Method Detail
-
getAccessKeyId
public String getAccessKeyId()
Getter for accessKeyId. The ID of the access key.
-
setAccessKeyId
public void setAccessKeyId(String accessKeyId)
Setter for accessKeyId. The ID of the access key.
-
getCrn
public String getCrn()
Getter for crn. The CRN of the access key.
-
setCrn
public void setCrn(String crn)
Setter for crn. The CRN of the access key.
-
getActorCrn
public String getActorCrn()
Getter for actorCrn. The CRN of the actor with which this access key is associated.
-
setActorCrn
public void setActorCrn(String actorCrn)
Setter for actorCrn. The CRN of the actor with which this access key is associated.
-
getCreationDate
public ZonedDateTime getCreationDate()
Getter for creationDate. The date when the access key was created.
-
setCreationDate
public void setCreationDate(ZonedDateTime creationDate)
Setter for creationDate. The date when the access key was created.
-
getStatus
public String getStatus()
Getter for status. The status of an access key.
-
setStatus
public void setStatus(String status)
Setter for status. The status of an access key.
-
getType
public String getType()
Getter for type. The type of an access key.
-
setType
public void setType(String type)
Setter for type. The type of an access key.
-
getLastUsage
public AccessKeyLastUsage getLastUsage()
Getter for lastUsage. Information on the last time this access key was used.
-
setLastUsage
public void setLastUsage(AccessKeyLastUsage lastUsage)
Setter for lastUsage. Information on the last time this access key was used.
-
-