Cisco Prime Infrastructure API
Prime Infrastructure API Documentation

PUT jobService/suspend

Disable the trigger temporarily. The job will no longer run when suspended. To re-enable the job trigger, use 'Resume A Job' service. Suspending a job in running status dose not impact the running instance.

Since Product Version: 2.2

Resource Information

Rate Limiting?

Yes

Sorting?

No

Paging?

No

Filtering?

No

Aggregation?

No

Response Formats

xml

json

User Group

NBI Write

HTTP Methods

PUT

DevNet Discussions

Resource URL

/webacs/api/v1/op/jobService/suspend

Request Payload Parameters

Attribute Description

jobId Long[]

The id of a job on which the operation will be performed

Response Parameters

Attribute Description

failure OperationResultStatus[]

A list of job ids that fail in the operation

message String

A system generated message

operation OperationEnum

The service name

Allowed values:

  • SUSPEND
  • RESUME
  • CANCEL
  • CANCELRUNNING

success OperationResultStatus[]

A list of job ids that succeed in the operation

Sample Payloads

Sample payloads are for information only. They are automatically generated and the values included may not be representative of actual valid data values.

Sample XML Request Payload

https://localhost/webacs/api/v1/op/jobService/suspend

<?xml version="1.0" ?>
<jobOperationPayload>
  <jobIds>
    <jobId>15</jobId>
  </jobIds>
</jobOperationPayload>

Sample JSON Request Payload

https://localhost/webacs/api/v1/op/jobService/suspend.json

{
  "jobOperationPayload" : {
    "jobIds" : {
      "jobId" : 15
    }
  }
}

Sample XML Response Payload

https://localhost/webacs/api/v1/op/jobService/suspend

<?xml version="1.0" ?>
<mgmtResponse responseType="operation" requestUrl="https://localhost/webacs/api/v1/op/jobService/suspend" rootUrl="https://localhost/webacs/api/v1/op">
  <operationResult>
    <failure>
      <failure>
        <id>2</id>
        <message>String value</message>
        <status>String value</status>
      </failure>
    </failure>
    <message>String value</message>
    <operation>SUSPEND</operation>
    <success>
      <success>
        <id>2</id>
        <message>String value</message>
        <status>String value</status>
      </success>
    </success>
  </operationResult>
</mgmtResponse>

Sample JSON Response Payload

https://localhost/webacs/api/v1/op/jobService/suspend.json

{
  "mgmtResponse" : {
    "@responseType" : "operation",
    "@requestUrl" : "https : \/\/localhost\/webacs\/api\/v1\/op\/jobService\/suspend",
    "@rootUrl" : "https : \/\/localhost\/webacs\/api\/v1\/op",
    "operationResult" : {
      "failure" : {
        "failure" : {
          "id" : 2,
          "message" : "String value",
          "status" : "String value"
        }
      },
      "message" : "String value",
      "operation" : "SUSPEND",
      "success" : {
        "success" : {
          "id" : 2,
          "message" : "String value",
          "status" : "String value"
        }
      }
    }
  }
}