Package com.cloudera.cdp.df.model
Class ImportFlowDefinitionResponse
- java.lang.Object
-
- com.cloudera.cdp.client.BaseResponse
-
- com.cloudera.cdp.client.CdpResponse
-
- com.cloudera.cdp.df.model.ImportFlowDefinitionResponse
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:19.717-07:00") public class ImportFlowDefinitionResponse extends CdpResponse
Response object for ImportFlowDefinition
-
-
Field Summary
-
Fields inherited from class com.cloudera.cdp.client.CdpResponse
ALTUS_HEADER_REQUESTID, CDP_HEADER_REQUESTID
-
-
Constructor Summary
Constructors Constructor Description ImportFlowDefinitionResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getAuthor()
Getter for author.Long
getCreatedTimestamp()
Getter for createdTimestamp.String
getCrn()
Getter for crn.String
getDescription()
Getter for description.Long
getModifiedTimestamp()
Getter for modifiedTimestamp.String
getName()
Getter for name.Integer
getVersionCount()
Getter for versionCount.List<FlowVersion>
getVersions()
Getter for versions.int
hashCode()
void
setAuthor(String author)
Setter for author.void
setCreatedTimestamp(Long createdTimestamp)
Setter for createdTimestamp.void
setCrn(String crn)
Setter for crn.void
setDescription(String description)
Setter for description.void
setModifiedTimestamp(Long modifiedTimestamp)
Setter for modifiedTimestamp.void
setName(String name)
Setter for name.void
setVersionCount(Integer versionCount)
Setter for versionCount.void
setVersions(List<FlowVersion> versions)
Setter for versions.String
toString()
-
Methods inherited from class com.cloudera.cdp.client.CdpResponse
getRequestId
-
Methods inherited from class com.cloudera.cdp.client.BaseResponse
getHttpCode, getResponseHeaders
-
-
-
-
Method Detail
-
getCrn
public String getCrn()
Getter for crn. The artifact CRN
-
setCrn
public void setCrn(String crn)
Setter for crn. The artifact CRN
-
getName
public String getName()
Getter for name. The artifact name.
-
setName
public void setName(String name)
Setter for name. The artifact name.
-
getVersionCount
public Integer getVersionCount()
Getter for versionCount. The number of versions uploaded to the catalog.
-
setVersionCount
public void setVersionCount(Integer versionCount)
Setter for versionCount. The number of versions uploaded to the catalog.
-
getCreatedTimestamp
public Long getCreatedTimestamp()
Getter for createdTimestamp. The created timestamp.
-
setCreatedTimestamp
public void setCreatedTimestamp(Long createdTimestamp)
Setter for createdTimestamp. The created timestamp.
-
getAuthor
public String getAuthor()
Getter for author. Author of the most recent version
-
setAuthor
public void setAuthor(String author)
Setter for author. Author of the most recent version
-
getDescription
public String getDescription()
Getter for description. The artifact description.
-
setDescription
public void setDescription(String description)
Setter for description. The artifact description.
-
getModifiedTimestamp
public Long getModifiedTimestamp()
Getter for modifiedTimestamp. The modified timestamp.
-
setModifiedTimestamp
public void setModifiedTimestamp(Long modifiedTimestamp)
Setter for modifiedTimestamp. The modified timestamp.
-
getVersions
public List<FlowVersion> getVersions()
Getter for versions. The list of artifactDetail versions
-
setVersions
public void setVersions(List<FlowVersion> versions)
Setter for versions. The list of artifactDetail versions
-
-