/api/space/configuration-management/retry-deploy-configuration

The following operation is supported on this resource:

  • POST - Retry Deploy Configuration
POST /retry-deploy-configurationVersion 4

Retry Deploy Configuration.

Sample Usage

This API makes an asynchronous method call; so, you can optionally specify queue and schedule parameters:

POST /retry-deploy-configuration?queue=<queue>&schedule=<schedule>&old-job=<old-job>


Note: The queue URL denoted by <queue> must have been created already.


  • Parameters:
    NameTypeURI TypeDescriptionRequired
    queueQueue URLQueryA fully qualified queue URL, where job progress notifications will be sent (See Asynchronous API Usage)N
    schedulecron-like-expressionQuerySchedule this API in the future, by specifying a cron-like-expression (See Job Scheduling)N
    old-jobStringQueryOld Job. Example: old-job=/api/space/job-management/jobs/{jobId}Y
  • Sample Input XML:
    <retry-deploy-configuration-request>
         <devices>
               <device href="/api/space/device-management/devices/{id}"/>
         </devices>
    </retry-deploy-configuration-request>

  • Sample Output XML:
    <task href="/api/space/job-management/jobs/3244036">
       <id>3244036</id>
    </task>

  • Sample Input JSON:
    {
       "retry-deploy-configuration-request" : {
         "devices" : {
           "device" : [
             {
               "@href" : "/api/space/device-management/devices/{id}"
             }
           ]
         }
       }
    }

  • Sample Output JSON:
    {
      "task":{
        "@href":"/api/space/job-management/jobs/3244036",
        "id":3244036
      }
    }

  • Access Control

    The following capabilities are required to access this API: DeployCCCap