Package com.cloudera.cdp.dw.model
Class ListVwEventsRequest
- java.lang.Object
-
- com.cloudera.cdp.dw.model.ListVwEventsRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-27T13:27:51.717-07:00") public class ListVwEventsRequest extends Object
Request object for the listVwEvents method.
-
-
Constructor Summary
Constructors Constructor Description ListVwEventsRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Boolean
getAscending()
Getter for ascending.String
getClusterId()
Getter for clusterId.Integer
getLimit()
Getter for limit.String
getVwId()
Getter for vwId.int
hashCode()
void
setAscending(Boolean ascending)
Setter for ascending.void
setClusterId(String clusterId)
Setter for clusterId.void
setLimit(Integer limit)
Setter for limit.void
setVwId(String vwId)
Setter for vwId.String
toString()
-
-
-
Method Detail
-
getClusterId
public String getClusterId()
Getter for clusterId. ID of cluster.
-
setClusterId
public void setClusterId(String clusterId)
Setter for clusterId. ID of cluster.
-
getVwId
public String getVwId()
Getter for vwId. ID of the Virtual Warehouse.
-
setVwId
public void setVwId(String vwId)
Setter for vwId. ID of the Virtual Warehouse.
-
getLimit
public Integer getLimit()
Getter for limit. Limit the number of returned rows. If not specified all the events will be returned. Please note the DWX only stores the last 50 events.
-
setLimit
public void setLimit(Integer limit)
Setter for limit. Limit the number of returned rows. If not specified all the events will be returned. Please note the DWX only stores the last 50 events.
-
getAscending
public Boolean getAscending()
Getter for ascending. Provide the result in ascending order, default is descending.
-
setAscending
public void setAscending(Boolean ascending)
Setter for ascending. Provide the result in ascending order, default is descending.
-
-