Get Migration Package Content Dependencies

get

/rest/v16/migrationPackages/{identifier}/contents/dependencies

Use this endpoint to retrieve content dependencies for a migration package.

Request

Path Parameters
Back to Top

Response

Supported Media Types

Default Response

Migration package content dependencies response
Body ()
Root Schema : dependency-Response
Type: object
Show Source
Nested Schema : List of Dependent Resources
Type: array
Title: List of Dependent Resources
List of dependent resources
Show Source
Nested Schema : dependencyResponse-children
Type: object
Dependency response
Show Source
Nested Schema : List of Resources
Type: array
Title: List of Resources
List of resources
Show Source
Nested Schema : dependencyResponse-subChildren
Type: object
Migration resource
Show Source
Nested Schema : List of Migration Resource Dependencies
Type: array
Title: List of Migration Resource Dependencies
List of migration resource dependencies
Show Source
Nested Schema : dependencyDetails
Type: object
Migration resource dependency
Show Source
  • Title: Migration Resource Category
    Migration resource category
  • Title: Migration Resource Hierarchy
    Hierarchy refers path information of the resource
  • Title: Migration Resource Name
    Name of the resource
  • Title: Migration Resource Dependency Type
    Migration resource dependency type
  • Title: Migration Resource Variable Name
    Migration resource variable name
Back to Top

Examples

The following example shows how to retrieve content dependencies for a migration package by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X POST -i -H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" -H "Content-type: application/json" -H "Accept: application/json"
https://sitename.oracle.com/rest/v16/migrationPackages/migrationPackage_v1/contents/dependencies

Response Body Sample

{
  "items": [{
      "name": "Configuration",
      "category": "CONFIGURATION",
      "children": [{
          "name": "Admin",
          "variableName": "admin",
          "resourceType": "product_family_configuration",
          "dependencies": [{
              "name": "Admin",
              "category": "PRODUCT_DEFINITION",
              "variableName": "admin",
              "type": "HIGH_LEVEL",
              "hierarchy": "CATALOG~Admin"
            }, {
              "name": "Get User Data",
              "category": "UTIL_LIBRARY",
              "variableName": "getUserData",
              "type": "HIGH_LEVEL",
              "hierarchy": "UTIL_LIBRARY~Get User Data"
            }
          ]
        }
      ]
    }, {
      "name": "Commerce",
      "category": "COMMERCE",
      "children": [{
          "name": "Test",
          "variableName": "test",
          "resourceType": "process",
          "dependencies": [{
              "name": "Document - English",
              "category": "DOCUMENT_DESIGNER",
              "variableName": "Document - English",
              "type": "HIGH_LEVEL",
              "hierarchy": "DOCUMENT_DESIGNER~Test/Test~Document - English"
            }
          ]
        }
      ]
    }
  ]
}
Back to Top