POST /katello/api/content_export_incrementals/version
Performs an incremental-export of a content view version.

Examples

POST /katello/api/content_export_incrementals/version
{
  "id": 234564707,
  "destination_server": "example.com",
  "chunk_size_gb": 100,
  "from_history_id": 100,
  "content_export_incremental": {
    "id": 234564707,
    "destination_server": "example.com",
    "chunk_size_gb": 100,
    "from_history_id": 100
  }
}
202
{
  "id": null,
  "label": null,
  "pending": null,
  "username": null,
  "started_at": null,
  "ended_at": null,
  "state": null,
  "result": null,
  "progress": null,
  "input": null,
  "output": {},
  "humanized": null,
  "cli_example": null,
  "available_actions": {
    "cancellable": null,
    "resumable": null
  }
}

Params

Param name Description
id
required

Content view version identifier

Validations:

  • Must be a number.

destination_server
optional

Destination Server name

Validations:

  • String

chunk_size_gb
optional

Split the exported content into archives no greater than the specified size in gigabytes.

Validations:

  • Must be a number.

from_history_id
optional

Export history identifier used for incremental export. If not provided the most recent export history will be used.

Validations:

  • Must be a number.

fail_on_missing_content
optional

Fails if any of the repositories belonging to this version are unexportable. False by default.

Validations:

  • Must be one of: true, false, 1, 0.


POST /katello/api/content_export_incrementals/library
Performs an incremental-export of the repositories in library.

Examples

POST /katello/api/content_export_incrementals/library
{
  "organization_id": 114267492,
  "from_latest_increment": true,
  "content_export_incremental": {
    "organization_id": 114267492,
    "from_latest_increment": true
  }
}
400
{
  "displayMessage": "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment.",
  "errors": [
    "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
  ]
}

Params

Param name Description
organization_id
required

Organization identifier

Validations:

  • Must be a number.

destination_server
optional

Destination Server name

Validations:

  • String

chunk_size_gb
optional

Split the exported content into archives no greater than the specified size in gigabytes.

Validations:

  • Must be a number.

from_history_id
optional

Export history identifier used for incremental export. If not provided the most recent export history will be used.

Validations:

  • Must be a number.

fail_on_missing_content
optional

Fails if any of the repositories belonging to this organization are unexportable. False by default.

Validations:

  • Must be one of: true, false, 1, 0.


POST /katello/api/content_export_incrementals/repository
Performs a incremental-export of the repository in library.

Params

Param name Description
id
required

Repository identifier

Validations:

  • Must be a number.

chunk_size_gb
optional

Split the exported content into archives no greater than the specified size in gigabytes.

Validations:

  • Must be a number.

from_history_id
optional

Export history identifier used for incremental export. If not provided the most recent export history will be used.

Validations:

  • Must be a number.