Retry the upgrade process

post

/iam/governance/applicationmanagement/api/v1/applications/upgrade/retry

Initiates the upgrade process again for a specific connector only if the last connector upgrade status for this connector was not a success

Request

Body ()
List of all the application diffs
Root Schema : schema
Type: array
Show Source
Nested Schema : ApplicationDiff
Type: object
Show Source
Nested Schema : addedAdvanceConfig
Type: array
Show Source
Nested Schema : addedBasicConfig
Type: array
Show Source
Nested Schema : addedCapabilities
Type: array
Show Source
Nested Schema : addedChildForms
Type: array
Show Source
Nested Schema : addedReconJobs
Type: array
Show Source
Nested Schema : addedSchemaAttributes
Type: array
Show Source
Nested Schema : advanceConfigDiffMap
Type: object
Additional Properties Allowed
Show Source
Nested Schema : appNames
Type: array
Show Source
Nested Schema : basicConfigDiffMap
Type: object
Additional Properties Allowed
Show Source
Nested Schema : capabilityDiffMap
Type: object
Additional Properties Allowed
Show Source
Nested Schema : childFormDiffMap
Type: object
Additional Properties Allowed
Show Source
Nested Schema : childFormModifiedMap
Type: object
Additional Properties Allowed
Show Source
Nested Schema : childFormSchemaAttributesAddedMap
Type: object
Additional Properties Allowed
Show Source
Nested Schema : childFormSchemaDiffMap
Type: object
Additional Properties Allowed
Show Source
Nested Schema : jobDiffMap
Type: object
Additional Properties Allowed
Show Source
Nested Schema : jobModifiedMap
Type: object
Additional Properties Allowed
Show Source
Nested Schema : jobParamDiffMap
Type: object
Additional Properties Allowed
Show Source
Nested Schema : jobParamsAddedMap
Type: object
Additional Properties Allowed
Show Source
Nested Schema : modifiedChildForms
Type: array
Show Source
Nested Schema : modifiedReconJobs
Type: array
Show Source
Nested Schema : removedAdvanceConfig
Type: array
Show Source
Nested Schema : removedBasicConfig
Type: array
Show Source
Nested Schema : removedCapabilities
Type: array
Show Source
Nested Schema : removedChildForms
Type: array
Show Source
Nested Schema : removedReconJobs
Type: array
Show Source
Nested Schema : removedSchemaAttributes
Type: array
Show Source
Nested Schema : schemaAttributeDiffMap
Type: object
Additional Properties Allowed
Show Source
Nested Schema : Attribute
Type: object
Show Source
Nested Schema : BasicAttribute
Type: object
Show Source
Nested Schema : Capability
Type: object
Show Source
Nested Schema : actionScripts
Type: array
Show Source
Nested Schema : FailedTaskAssignConfig
Type: object
Show Source
Nested Schema : FailedTaskRetryConfig
Type: object
Show Source
Nested Schema : ActionScript
Type: object
Show Source
Nested Schema : Form
Type: object
Show Source
Nested Schema : form
Type: array
Show Source
Nested Schema : schemaAttributes
Type: array
Show Source
Nested Schema : SchemaAttribute
Type: object
Show Source
Nested Schema : ReconJobDetail
Type: object
Show Source
Nested Schema : parametersList
Type: array
Show Source
Nested Schema : ReconJobParameter
Type: object
Show Source
Nested Schema : additionalProperties
Type: array
Show Source
Nested Schema : additionalProperties
Type: object
Additional Properties Allowed
Show Source
Nested Schema : additionalProperties
Type: object
Additional Properties Allowed
Show Source
Nested Schema : additionalProperties
Type: array
Show Source
Back to Top

Response

Default Response

Successful operation
Back to Top

Examples

cURL Example

The following example demonstrates the ability to initiate the upgrade process again for a specific connector only if the last connector upgrade status for this connector was not a success.

curl -X GET http://pseudo.com/iam/governance/applicationmanagement/api/v1/applications/upgrade/retry

Request Body Example

[
   {
      "newVersion":"12.2.1.3.0",
      "olderVersion":"11.1.1.6.0",
      "authoritative":true,
      "connectorDisplayName":"Oracle Database Connector",
      "appNames":[
         "DBATAuth"
      ],
      "removedBasicConfig":[         
      ],
      "addedBasicConfig":[

      ],
      "removedAdvanceConfig":[
        
      ],
      "addedAdvanceConfig":[
        
      ],
      "removedSchemaAttributes":[

      ],
      "addedSchemaAttributes":[
        
      ],
      "addedChildForms":[

      ],
      "removedChildForms":[

      ],
      "removedReconJobs":[
        
      ],
      "addedReconJobs":[
         
      ],
      "childFormModifiedMap":{
         "entry":[

         ]
      },
      "jobModifiedMap":{
         "entry":[

         ]
      }
   },
   {
      "newVersion":"12.2.1.3.0",
      "olderVersion":"11.1.1.6.0",
      "authoritative":false,
      "connectorDisplayName":"Oracle Database Connector",
      "appNames":[
         "DBAT"
      ],
      "removedBasicConfig":[        
      ],
      "addedBasicConfig":[
      ],
      "removedAdvanceConfig":[       
      ],
      "addedAdvanceConfig":[        
      ],
      "removedSchemaAttributes":[         
      ],
      "addedSchemaAttributes":[        
      ],
      "addedChildForms":[
      ],
      "removedChildForms":[
      ],
      "removedReconJobs":[       
      ],
      "addedReconJobs":[         
      ],
      "addedCapabilities":[         
      ],
      "removedCapabilities":[
      ],
      "childFormModifiedMap":{
         "entry":[

         ]
      },
      "jobModifiedMap":{
         "entry":[

         ]
      }
   }
]

Response Body Example

SUCCESS
Back to Top