change_tracker_set_params
Set parameters for Guardium change tracker tasks.
For use by IBM Guardium support only.
This API is available in Guardium V10.1.4 and later.
REST API syntax
This API is available as a REST service with the
PUT method. Call this API as follows:
PUT https://[Guardium hostname or IP address]:8443/restAPI/change_tracker_set_params
GuardAPI syntax
change_tracker_set_params parameter=valueParameters
| Parameter | Value type | Description |
|---|---|---|
| paramName | String | Required. The name of a parameter for the specified task. |
| paramValue | String | Required. The new value for the task parameter. |
| task | String | Required. The task for which you want to change a parameter value. For a list of available tasks, use the change_tracker_get_tasks API. |
| api_target_host | String |
Specifies the target hosts where the API executes. Valid values:
IP addresses must conform to the IP mode of your network. For dual IP mode, use the same IP protocol with which the managed unit is registered with the central manager. For example, if the registration uses IPv6, specify an IPv6 address. The hostname is independent of IP mode and can be used with any mode. |
Examples
The following examples change the RUN_INTERVAL parameter for the SCHEDULED_JOBS task to
62.
change_tracker_set_params task="SCHEDULED_JOBS"
paramName="RUN_INTERVAL"
paramValue="62"curl -k --header "Authorization: Bearer bRVbgnfK0yfnJdlSVv6Mt532Zog" --include
--header "Content-Type: application/json" -X PUT --data
'{"task":"SCHEDULED_JOBS","paramName":"RUN_INTERVAL","paramValue":"62"}'
https://<appliance_hostname>:8443/restAPI/change_tracker_set_params