clearTableMonitor
public ClearTableMonitorResponse clearTableMonitor(ClearTableMonitorRequest request) throws GPUdbException Deactivates a table monitor previously created withcreateTableMonitor.Parameters:request-Requestobject containing the parameters for the operation.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.clearTableMonitor
public ClearTableMonitorResponse clearTableMonitor(String topicId, Map<String, String> options) throws GPUdbException Deactivates a table monitor previously created withcreateTableMonitor.Parameters:topicId- The topic ID returned bycreateTableMonitor.options- Optional parameters.KEEP_AUTOGENERATED_SINK: IfTRUE, the auto-generated datasink associated with this monitor, if there is one, will be retained for further use. IfFALSE, then the auto-generated sink will be dropped if there are no other monitors referencing it. Supported values:The default value isFALSE.CLEAR_ALL_REFERENCES: IfTRUE, all references that share the sametopicIdwill be cleared. Supported values:The default value isFALSE.
Map.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.