Skip to main content

◆ adminAlterJobs() [1/2]

AdminAlterJobsResponse kinetica.Kinetica.adminAlterJobs (AdminAlterJobsRequestrequest_)
inline

Perform the requested action on a list of one or more job(s).

Based on the type of job and the current state of execution, the action may not be successfully executed. The final result of the attempted actions for each specified job is returned in the status array of the response. See Job Manager for more information.

Parameters
request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 702 of file KineticaFunctions.cs.

◆ adminAlterJobs() [2/2]

AdminAlterJobsResponse kinetica.Kinetica.adminAlterJobs (IList< long >job_ids,
stringaction,
IDictionary< string, string >options = null )
inline

Perform the requested action on a list of one or more job(s).

Based on the type of job and the current state of execution, the action may not be successfully executed. The final result of the attempted actions for each specified job is returned in the status array of the response. See Job Manager for more information.

Parameters
job_idsJobs to be modified.
actionAction to be performed on the jobs specified by job_ids. Supported values:
optionsOptional parameters.
  • JOB_TAG: Job tag returned in call to create the job.
The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 764 of file KineticaFunctions.cs.

◆ AdminAlterJobsAsync() [1/2]

async System.Threading.Tasks.Task< AdminAlterJobsResponse > kinetica.Kinetica.AdminAlterJobsAsync (AdminAlterJobsRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Perform the requested action on a list of one or more job(s).

(async)

Based on the type of job and the current state of execution, the action may not be successfully executed. The final result of the attempted actions for each specified job is returned in the status array of the response. See Job Manager for more information.

Parameters
request_Request object containing the parameters for the operation.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 724 of file KineticaFunctions.cs.

◆ AdminAlterJobsAsync() [2/2]

async System.Threading.Tasks.Task< AdminAlterJobsResponse > kinetica.Kinetica.AdminAlterJobsAsync (IList< long >job_ids,
stringaction,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Perform the requested action on a list of one or more job(s).

(async)

Based on the type of job and the current state of execution, the action may not be successfully executed. The final result of the attempted actions for each specified job is returned in the status array of the response. See Job Manager for more information.

Parameters
job_idsJobs to be modified.
actionAction to be performed on the jobs specified by job_ids. Supported values:
optionsOptional parameters.
  • JOB_TAG: Job tag returned in call to create the job.
The default value is an empty Dictionary.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 805 of file KineticaFunctions.cs.