Get Migration Package Properties

get

/rest/v19/migrationPackages/{identifier}

This endpoint retrieves the properties for the specified migration package.

Request

Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

Default Response

Package information
Body ()
Root Schema : migrationPackageContent
Type: object
Show Source
Nested Schema : Migration Package Content
Type: object
Title: Migration Package Content
Contents populate, when expand=contents or expand=all.
Show Source
Nested Schema : Migration Package Dependencies
Type: object
Title: Migration Package Dependencies
Dependent Packages for the Migration Package
Show Source
Nested Schema : This is list of migration package contents
Type: array
Title: This is list of migration package contents
Migration package contents
Show Source
Nested Schema : migrationContent
Type: object
Low-level details
Show Source
Nested Schema : List of children contents
Type: array
Title: List of children contents
List of children contents
Show Source
Nested Schema : migrationContent-children
Type: object
Migration Resource children contents
Show Source
Nested Schema : Migration Package Dependencies list
Type: array
Title: Migration Package Dependencies list
List of Dependencies for Migration Package
Show Source
Nested Schema : migrationPackageDependency
Type: object
Show Source
Back to Top

Examples

The following examples show how to retrieve properties for the specified migration package by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl - X GET -H "Authorization: Bearer <token>" - H "Content-type: application/json" https://sitename.oracle.com/rest/v19/migrationPackages/migrationPackage_v12

Response Body Sample

{
  "name": "Migration Package",
  "identifier": "migrationPackage_v12",
  "version": 2,
  "dateAdded": "2020-04-15T21:01:57.000Z",
  "dateModified": "2020-04-15T21:01:57.000Z",
  "dependencies": {
    "items": []
  },
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/migrationPackages/migrationPackage_v12"
    }
  ]
}
    
Back to Top