From b7f328edda1a24a231e6859b1f0f723fa4115bba Mon Sep 17 00:00:00 2001 From: Christian Loos Date: Thu, 8 Feb 2024 14:41:38 +0100 Subject: [PATCH] Add support for rpm_distribution repository attribute fixes #131 --- plugins/modules/rpm_distribution.py | 24 +- tests/fixtures/rpm_distribution-0.yml | 57937 ++++++++++++++++-------- tests/fixtures/rpm_distribution-1.yml | 226 +- tests/fixtures/rpm_distribution-2.yml | 262 +- tests/fixtures/rpm_distribution-3.yml | 18 +- tests/fixtures/rpm_distribution-4.yml | 108 +- tests/fixtures/rpm_distribution-5.yml | 213 +- tests/fixtures/rpm_distribution-6.yml | 98 + tests/fixtures/rpm_distribution-7.yml | 146 + tests/fixtures/rpm_distribution-8.yml | 50 + tests/playbooks/rpm_distribution.yaml | 30 + 11 files changed, 39562 insertions(+), 19550 deletions(-) create mode 100644 tests/fixtures/rpm_distribution-6.yml create mode 100644 tests/fixtures/rpm_distribution-7.yml create mode 100644 tests/fixtures/rpm_distribution-8.yml diff --git a/plugins/modules/rpm_distribution.py b/plugins/modules/rpm_distribution.py index 0589d75a..a7394f9e 100644 --- a/plugins/modules/rpm_distribution.py +++ b/plugins/modules/rpm_distribution.py @@ -32,6 +32,12 @@ - Href of the publication to be served type: str required: false + repository: + description: + - Name of the repository to be served + type: str + required: false + version_added: "0.0.15" content_guard: description: - Name of the content guard for the served content @@ -91,26 +97,40 @@ PulpContentGuard, PulpEntityAnsibleModule, PulpRpmDistribution, + PulpRpmRepository, ) def main(): with PulpEntityAnsibleModule( - argument_spec=dict(name=dict(), base_path=dict(), publication=dict(), content_guard=dict()), + argument_spec=dict(name=dict(), base_path=dict(), publication=dict(), repository=dict(), content_guard=dict()), required_if=[ ("state", "present", ["name", "base_path"]), ("state", "absent", ["name"]), ], + mutually_exclusive=[ + ("publication", "repository") + ], ) as module: content_guard_name = module.params["content_guard"] + repository_name = module.params["repository"] natural_key = {"name": module.params["name"]} desired_attributes = { key: module.params[key] - for key in ["base_path", "publication"] + for key in ["base_path", "publication", "repository"] if module.params[key] is not None } + # support switching between using publication and repository + if module.params["publication"] is not None: + desired_attributes["repository"] = None + elif repository_name is not None: + desired_attributes["publication"] = None + repository = PulpRpmRepository(module, {"name": repository_name}) + repository.find(failsafe=False) + desired_attributes["repository"] = repository.href + if content_guard_name is not None: if content_guard_name: content_guard = PulpContentGuard(module, {"name": content_guard_name}) diff --git a/tests/fixtures/rpm_distribution-0.yml b/tests/fixtures/rpm_distribution-0.yml index 89c2dc30..f386e137 100644 --- a/tests/fixtures/rpm_distribution-0.yml +++ b/tests/fixtures/rpm_distribution-0.yml @@ -9,9 +9,9 @@ interactions: Content-Type: - application/json Host: - - localhost:80 + - localhost:8080 User-Agent: - - Python-urllib/3.9 + - Python-urllib/3.10 method: GET uri: http://pulp.example.org/pulp/api/v3/docs/api.json response: @@ -23,73 +23,97 @@ interactions: \ \"url\": \"https://pulpproject.org\"\n },\n \"license\": {\n \"name\": \"GPLv2+\",\n \"url\": \"https://raw.githubusercontent.com/pulp/pulpcore/master/LICENSE\"\n \ },\n \"x-logo\": {\n \"url\": \"https://pulp.plan.io/attachments/download/517478/pulp_logo_word_rectangle.svg\"\n - \ },\n \"x-pulp-app-versions\": {\n \"core\": \"3.21.2\",\n - \ \"rpm\": \"3.18.7\",\n \"python\": \"3.7.3\",\n \"maven\": - \"0.3.3\",\n \"file\": \"1.11.2\",\n \"deb\": \"2.20.0\",\n - \ \"container\": \"2.14.2\",\n \"certguard\": \"1.5.5\",\n - \ \"ansible\": \"0.15.0\"\n }\n },\n \"paths\": {\n - \ \"/ansible/collections/\": {\n \"post\": {\n \"operationId\": - \"upload_collection\",\n \"description\": \"Create an artifact - and trigger an asynchronous task to create Collection content from it.\",\n - \ \"summary\": \"Upload a collection\",\n \"tags\": - [\n \"Ansible: Collections\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/CollectionOneShot\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": + \ },\n \"x-pulp-app-versions\": {\n \"core\": \"3.45.1\",\n + \ \"ansible\": \"0.21.1\",\n \"container\": \"2.18.0\",\n + \ \"deb\": \"3.1.1\",\n \"gem\": \"0.4.0\",\n \"maven\": + \"0.8.0\",\n \"ostree\": \"2.2.1\",\n \"python\": \"3.11.0\",\n + \ \"rpm\": \"3.25.0\",\n \"certguard\": \"3.45.1\",\n + \ \"file\": \"3.45.1\"\n },\n \"x-pulp-domain-enabled\": + false\n },\n \"paths\": {\n \"/ansible/collections/\": {\n \"post\": + {\n \"operationId\": \"upload_collection\",\n \"description\": + \"Create an artifact and trigger an asynchronous task to create Collection + content from it.\",\n \"summary\": \"Upload a collection\",\n + \ \"tags\": [\n \"Ansible: Collections\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/CollectionOneShot\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/CollectionOneShot\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/access_policies/\": {\n - \ \"get\": {\n \"operationId\": \"access_policies_list\",\n - \ \"description\": \"ViewSet for AccessPolicy.\\n\\nNOTE: This - API endpoint is in \\\"tech preview\\\" and subject to change\",\n \"summary\": - \"List access policys\",\n \"parameters\": [\n {\n - \ \"in\": \"query\",\n \"name\": - \"customized\",\n \"schema\": {\n \"type\": - \"boolean\"\n }\n },\n {\n - \ \"name\": \"limit\",\n \"required\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"deprecated\": true,\n \"responses\": {\n + \ \"202\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/access_policies/\": {\n \"get\": {\n \"operationId\": + \"access_policies_list\",\n \"description\": \"ViewSet for + AccessPolicy.\\n\\nNOTE: This API endpoint is in \\\"tech preview\\\" and + subject to change\",\n \"summary\": \"List access policys\",\n + \ \"parameters\": [\n {\n \"in\": + \"query\",\n \"name\": \"customized\",\n \"schema\": + {\n \"type\": \"boolean\"\n },\n + \ \"description\": \"Filter results where customized + matches value\"\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": + \"The initial index from which to return the results.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"name\": - \"offset\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"The initial index from - which to return the results.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"ordering\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-creation_hooks\",\n - \ \"-customized\",\n \"-group_roles\",\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-creation_hooks\",\n \"-customized\",\n \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-queryset_scoping\",\n - \ \"-statements\",\n \"-user_roles\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-queryset_scoping\",\n \"-statements\",\n \ \"-viewset_name\",\n \"creation_hooks\",\n - \ \"customized\",\n \"group_roles\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"customized\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n \ \"pulp_last_updated\",\n \"queryset_scoping\",\n - \ \"statements\",\n \"user_roles\",\n - \ \"viewset_name\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"viewset_name\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where viewset_name - matches value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"viewset_name__contains\",\n - \ \"schema\": {\n \"type\": + \ \"statements\",\n \"viewset_name\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `creation_hooks` - Creation hooks\\n* `-creation_hooks` - Creation hooks (descending)\\n* + `statements` - Statements\\n* `-statements` - Statements (descending)\\n* + `viewset_name` - Viewset name\\n* `-viewset_name` - Viewset name (descending)\\n* + `customized` - Customized\\n* `-customized` - Customized (descending)\\n* + `queryset_scoping` - Queryset scoping\\n* `-queryset_scoping` - Queryset scoping + (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"viewset_name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where viewset_name matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"viewset_name__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where viewset_name contains value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": @@ -97,28 +121,46 @@ interactions: \"string\"\n },\n \"description\": \"Filter results where viewset_name contains value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"viewset_name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where viewset_name matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"viewset_name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": \"Filter results where viewset_name is in a comma-separated list of values\",\n \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"viewset_name__startswith\",\n + \"query\",\n \"name\": \"viewset_name__iregex\",\n \ \"schema\": {\n \"type\": \"string\"\n },\n \"description\": + \"Filter results where viewset_name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"viewset_name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": \"Filter results where viewset_name starts with value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \"viewset_name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where viewset_name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"viewset_name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": + \"Filter results where viewset_name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Access_Policies\"\n \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedAccessPolicyResponseList\"\n @@ -134,16 +176,18 @@ interactions: \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Access_Policies\"\n \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AccessPolicyResponse\"\n @@ -167,8 +211,8 @@ interactions: {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AccessPolicy\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": @@ -195,8 +239,8 @@ interactions: \"#/components/schemas/PatchedAccessPolicy\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AccessPolicyResponse\"\n @@ -210,8 +254,8 @@ interactions: \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": [\n \"Access_Policies\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": @@ -229,7 +273,8 @@ interactions: \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"name__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": @@ -239,12 +284,28 @@ interactions: \"string\"\n },\n \"description\": \"Filter results where name contains value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": \"Filter results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where name starts with value\"\n },\n @@ -256,39 +317,56 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-file_filealternatecontentsource\",\n - \ \"-group_roles\",\n \"-last_refreshed\",\n - \ \"-name\",\n \"-paths\",\n + [\n \"-last_refreshed\",\n \"-name\",\n \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-remote\",\n \"-rpm_rpmalternatecontentsource\",\n - \ \"-user_roles\",\n \"file_filealternatecontentsource\",\n - \ \"group_roles\",\n \"last_refreshed\",\n - \ \"name\",\n \"paths\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"remote\",\n \"rpm_rpmalternatecontentsource\",\n - \ \"user_roles\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"last_refreshed\",\n + \ \"name\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `last_refreshed` - Last refreshed\\n* + `-last_refreshed` - Last refreshed (descending)\\n* `pk` - Pk\\n* `-pk` - + Pk (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Acs: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedfile.FileAlternateContentSourceResponseList\"\n + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Acs: + File\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedfile.FileAlternateContentSourceResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": @@ -307,8 +385,8 @@ interactions: \"#/components/schemas/file.FileAlternateContentSource\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/file.FileAlternateContentSourceResponse\"\n @@ -325,16 +403,18 @@ interactions: \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Acs: File\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/file.FileAlternateContentSourceResponse\"\n @@ -360,8 +440,8 @@ interactions: \"#/components/schemas/file.FileAlternateContentSource\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n @@ -387,8 +467,8 @@ interactions: \"#/components/schemas/Patchedfile.FileAlternateContentSource\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n @@ -403,8 +483,8 @@ interactions: {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n \ \"tags\": [\n \"Acs: File\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": {\n \"202\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": @@ -414,13 +494,13 @@ interactions: \ }\n },\n \"{file_file_alternate_content_source_href}add_role/\": {\n \"post\": {\n \"operationId\": \"acs_file_file_add_role\",\n \ \"description\": \"Add a role for this object to users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"file_file_alternate_content_source_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Acs: File\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"file_file_alternate_content_source_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Acs: File\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NestedRole\"\n }\n },\n \ \"application/x-www-form-urlencoded\": {\n \"schema\": @@ -429,8 +509,8 @@ interactions: {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NestedRole\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": {\n \"201\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": @@ -440,48 +520,53 @@ interactions: \ }\n },\n \"{file_file_alternate_content_source_href}list_roles/\": {\n \"get\": {\n \"operationId\": \"acs_file_file_list_roles\",\n \ \"description\": \"List roles assigned to this object.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"file_file_alternate_content_source_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Acs: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ObjectRolesResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{file_file_alternate_content_source_href}my_permissions/\": {\n - \ \"get\": {\n \"operationId\": \"acs_file_file_my_permissions\",\n - \ \"description\": \"List permissions available to the current - user on this object.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": \"file_file_alternate_content_source_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Acs: + File\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_alternate_content_source_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"acs_file_file_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"file_file_alternate_content_source_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Acs: File\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n @@ -497,8 +582,8 @@ interactions: \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": [\n \"Acs: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": @@ -507,8 +592,9 @@ interactions: \"\"\n }\n }\n }\n },\n \ \"{file_file_alternate_content_source_href}remove_role/\": {\n \"post\": {\n \"operationId\": \"acs_file_file_remove_role\",\n \"description\": - \"Remove a role for this object from users/groups.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": + \"Remove a role for this object from users/groups.\",\n \"summary\": + \"Remove a role\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": \"file_file_alternate_content_source_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n @@ -522,8 +608,8 @@ interactions: {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NestedRole\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": {\n \"201\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": @@ -540,7 +626,8 @@ interactions: \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"name__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": @@ -550,12 +637,28 @@ interactions: \"string\"\n },\n \"description\": \"Filter results where name contains value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": \"Filter results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where name starts with value\"\n },\n @@ -567,39 +670,56 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-file_filealternatecontentsource\",\n - \ \"-group_roles\",\n \"-last_refreshed\",\n - \ \"-name\",\n \"-paths\",\n + [\n \"-last_refreshed\",\n \"-name\",\n \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-remote\",\n \"-rpm_rpmalternatecontentsource\",\n - \ \"-user_roles\",\n \"file_filealternatecontentsource\",\n - \ \"group_roles\",\n \"last_refreshed\",\n - \ \"name\",\n \"paths\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"remote\",\n \"rpm_rpmalternatecontentsource\",\n - \ \"user_roles\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"last_refreshed\",\n + \ \"name\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `last_refreshed` - Last refreshed\\n* + `-last_refreshed` - Last refreshed (descending)\\n* `pk` - Pk\\n* `-pk` - + Pk (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Acs: Rpm\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedrpm.RpmAlternateContentSourceResponseList\"\n + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Acs: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedrpm.RpmAlternateContentSourceResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": @@ -617,8 +737,8 @@ interactions: \"#/components/schemas/rpm.RpmAlternateContentSource\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/rpm.RpmAlternateContentSourceResponse\"\n @@ -634,16 +754,18 @@ interactions: \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Acs: Rpm\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/rpm.RpmAlternateContentSourceResponse\"\n @@ -669,8 +791,8 @@ interactions: \"#/components/schemas/rpm.RpmAlternateContentSource\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n @@ -696,8 +818,8 @@ interactions: \"#/components/schemas/Patchedrpm.RpmAlternateContentSource\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n @@ -712,14 +834,95 @@ interactions: {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n \ \"tags\": [\n \"Acs: Rpm\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": {\n \"202\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_alternate_content_source_href}add_role/\": + {\n \"post\": {\n \"operationId\": \"acs_rpm_rpm_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_alternate_content_source_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Acs: Rpm\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_alternate_content_source_href}list_roles/\": + {\n \"get\": {\n \"operationId\": \"acs_rpm_rpm_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_alternate_content_source_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Acs: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_alternate_content_source_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"acs_rpm_rpm_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_rpm_alternate_content_source_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Acs: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n \ }\n },\n \"{rpm_rpm_alternate_content_source_href}refresh/\": {\n \"post\": {\n \"operationId\": \"acs_rpm_rpm_refresh\",\n \ \"description\": \"Trigger an asynchronous task to create @@ -729,14 +932,40 @@ interactions: {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n \ \"tags\": [\n \"Acs: Rpm\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": {\n \"202\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/TaskGroupOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_alternate_content_source_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"acs_rpm_rpm_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_alternate_content_source_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Acs: Rpm\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n \ }\n },\n \"/pulp/api/v3/ansible/collections/\": {\n \"get\": {\n \"operationId\": \"ansible_collections_list\",\n \ \"description\": \"Viewset for Ansible Collections.\",\n \"summary\": @@ -759,56 +988,185 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-group_roles\",\n - \ \"-name\",\n \"-namespace\",\n - \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-user_roles\",\n - \ \"-versions\",\n \"group_roles\",\n - \ \"name\",\n \"namespace\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"user_roles\",\n - \ \"versions\"\n ]\n + \"string\",\n \"enum\": [\n \"-name\",\n + \ \"-namespace\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"name\",\n + \ \"namespace\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\"\n ]\n \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `namespace` - Namespace\\n* `-namespace` - Namespace + (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* `pk` - + Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n + \ \"style\": \"form\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Ansible: + Collections\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedansible.CollectionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_collection_href}\": {\n \"get\": + {\n \"operationId\": \"galaxy_collection_detail_get\",\n \"description\": + \"Get the detail view of a Collection.\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_collection_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Ansible: Collections\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Galaxy: + Detail\"\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedansible.CollectionResponseList\"\n }\n + \"#/components/schemas/GalaxyCollectionResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{ansible_collection_href}\": {\n \"get\": {\n \"operationId\": - \"galaxy_collection_detail_get\",\n \"description\": \"Get - the detail view of a Collection.\",\n \"parameters\": [\n {\n + \ \"{ansible_collection_href}add_role/\": {\n \"post\": {\n + \ \"operationId\": \"ansible_collections_add_role\",\n \"description\": + \"Add a role for this object to users/groups.\",\n \"summary\": + \"Add a role\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": \"ansible_collection_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Ansible: Collections\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_collection_href}list_roles/\": + {\n \"get\": {\n \"operationId\": \"ansible_collections_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_collection_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Galaxy: Detail\"\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Ansible: + Collections\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_collection_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"ansible_collections_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_collection_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Ansible: + Collections\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_collection_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"ansible_collections_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_collection_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Ansible: Collections\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/GalaxyCollectionResponse\"\n + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ }\n },\n \"/pulp/api/v3/ansible/copy/\": {\n \"post\": @@ -826,8 +1184,8 @@ interactions: {\n \"$ref\": \"#/components/schemas/Copy\"\n \ }\n }\n },\n \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": @@ -868,153 +1226,183 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-content\",\n - \ \"-content_memberships\",\n \"-file\",\n - \ \"-group_roles\",\n \"-md5\",\n - \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n + \"string\",\n \"enum\": [\n \"-file\",\n + \ \"-md5\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n \ \"-pulp_last_updated\",\n \"-sha1\",\n \ \"-sha224\",\n \"-sha256\",\n \ \"-sha384\",\n \"-sha512\",\n \ \"-size\",\n \"-timestamp_of_interest\",\n - \ \"-uploads\",\n \"-user_roles\",\n - \ \"content\",\n \"content_memberships\",\n - \ \"file\",\n \"group_roles\",\n - \ \"md5\",\n \"pk\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n + \ \"file\",\n \"md5\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n \ \"sha1\",\n \"sha224\",\n \ \"sha256\",\n \"sha384\",\n \ \"sha512\",\n \"size\",\n - \ \"timestamp_of_interest\",\n \"uploads\",\n - \ \"user_roles\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"sha1\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where sha1 matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"sha224\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where sha224 matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"sha256\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where sha256 matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"sha384\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where sha384 matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"sha512\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where sha512 matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Artifacts\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": + \ \"timestamp_of_interest\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `file` - File\\n* `-file` - File (descending)\\n* + `size` - Size\\n* `-size` - Size (descending)\\n* `md5` - Md5\\n* `-md5` - + Md5 (descending)\\n* `sha1` - Sha1\\n* `-sha1` - Sha1 (descending)\\n* `sha224` + - Sha224\\n* `-sha224` - Sha224 (descending)\\n* `sha256` - Sha256\\n* `-sha256` + - Sha256 (descending)\\n* `sha384` - Sha384\\n* `-sha384` - Sha384 (descending)\\n* + `sha512` - Sha512\\n* `-sha512` - Sha512 (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Artifacts have been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"sha1\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where sha1 matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"sha224\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where sha224 matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"sha256\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where sha256 matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"sha384\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where sha384 matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"sha512\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where sha512 matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Artifacts\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedArtifactResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"artifacts_create\",\n \"description\": \"A customized named + ModelViewSet that knows how to register itself with the Pulp API router.\\n\\nThis + viewset is discoverable by its name.\\n\\\"Normal\\\" Django Models and Master/Detail + models are supported by the ``register_with`` method.\\n\\nAttributes:\\n + \ lookup_field (str): The name of the field by which an object should be + looked up, in\\n addition to any parent lookups if this ViewSet is + nested. Defaults to 'pk'\\n endpoint_name (str): The name of the final + path segment that should identify the ViewSet's\\n collection endpoint.\\n + \ nest_prefix (str): Optional prefix under which this ViewSet should be + nested. This must\\n correspond to the \\\"parent_prefix\\\" of a router + with rest_framework_nested.NestedMixin.\\n None indicates this ViewSet + should not be nested.\\n parent_lookup_kwargs (dict): Optional mapping + of key names that would appear in self.kwargs\\n to django model filter + expressions that can be used with the corresponding value from\\n self.kwargs, + used only by a nested ViewSet to filter based on the parent object's\\n identity.\\n + \ schema (DefaultSchema): The schema class to use by default in a viewset.\",\n + \ \"summary\": \"Create an artifact\",\n \"tags\": + [\n \"Artifacts\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Artifact\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Artifact\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PaginatedArtifactResponseList\"\n }\n + \"#/components/schemas/ArtifactResponse\"\n }\n \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"artifacts_create\",\n \"description\": - \"A customized named ModelViewSet that knows how to register itself with the - Pulp API router.\\n\\nThis viewset is discoverable by its name.\\n\\\"Normal\\\" - Django Models and Master/Detail models are supported by the ``register_with`` - method.\\n\\nAttributes:\\n lookup_field (str): The name of the field by - which an object should be looked up, in\\n addition to any parent lookups - if this ViewSet is nested. Defaults to 'pk'\\n endpoint_name (str): The - name of the final path segment that should identify the ViewSet's\\n collection - endpoint.\\n nest_prefix (str): Optional prefix under which this ViewSet - should be nested. This must\\n correspond to the \\\"parent_prefix\\\" - of a router with rest_framework_nested.NestedMixin.\\n None indicates - this ViewSet should not be nested.\\n parent_lookup_kwargs (dict): Optional - mapping of key names that would appear in self.kwargs\\n to django - model filter expressions that can be used with the corresponding value from\\n - \ self.kwargs, used only by a nested ViewSet to filter based on the - parent object's\\n identity.\\n schema (DefaultSchema): The schema - class to use by default in a viewset.\",\n \"summary\": \"Create - an artifact\",\n \"tags\": [\n \"Artifacts\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Artifact\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Artifact\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ArtifactResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{artifact_href}\": {\n \"get\": - {\n \"operationId\": \"artifacts_read\",\n \"description\": - \"A customized named ModelViewSet that knows how to register itself with the - Pulp API router.\\n\\nThis viewset is discoverable by its name.\\n\\\"Normal\\\" - Django Models and Master/Detail models are supported by the ``register_with`` - method.\\n\\nAttributes:\\n lookup_field (str): The name of the field by - which an object should be looked up, in\\n addition to any parent lookups - if this ViewSet is nested. Defaults to 'pk'\\n endpoint_name (str): The - name of the final path segment that should identify the ViewSet's\\n collection - endpoint.\\n nest_prefix (str): Optional prefix under which this ViewSet - should be nested. This must\\n correspond to the \\\"parent_prefix\\\" - of a router with rest_framework_nested.NestedMixin.\\n None indicates - this ViewSet should not be nested.\\n parent_lookup_kwargs (dict): Optional - mapping of key names that would appear in self.kwargs\\n to django - model filter expressions that can be used with the corresponding value from\\n - \ self.kwargs, used only by a nested ViewSet to filter based on the - parent object's\\n identity.\\n schema (DefaultSchema): The schema - class to use by default in a viewset.\",\n \"summary\": \"Inspect - an artifact\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": + \"\"\n }\n }\n }\n },\n + \ \"{artifact_href}\": {\n \"get\": {\n \"operationId\": + \"artifacts_read\",\n \"description\": \"A customized named + ModelViewSet that knows how to register itself with the Pulp API router.\\n\\nThis + viewset is discoverable by its name.\\n\\\"Normal\\\" Django Models and Master/Detail + models are supported by the ``register_with`` method.\\n\\nAttributes:\\n + \ lookup_field (str): The name of the field by which an object should be + looked up, in\\n addition to any parent lookups if this ViewSet is + nested. Defaults to 'pk'\\n endpoint_name (str): The name of the final + path segment that should identify the ViewSet's\\n collection endpoint.\\n + \ nest_prefix (str): Optional prefix under which this ViewSet should be + nested. This must\\n correspond to the \\\"parent_prefix\\\" of a router + with rest_framework_nested.NestedMixin.\\n None indicates this ViewSet + should not be nested.\\n parent_lookup_kwargs (dict): Optional mapping + of key names that would appear in self.kwargs\\n to django model filter + expressions that can be used with the corresponding value from\\n self.kwargs, + used only by a nested ViewSet to filter based on the parent object's\\n identity.\\n + \ schema (DefaultSchema): The schema class to use by default in a viewset.\",\n + \ \"summary\": \"Inspect an artifact\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": \"artifact_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Artifacts\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ArtifactResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"artifacts_delete\",\n \"description\": - \"Remove Artifact only if it is not associated with any Content.\",\n \"summary\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Artifacts\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ArtifactResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"artifacts_delete\",\n \"description\": \"Remove Artifact + only if it is not associated with any Content.\",\n \"summary\": \"Delete an artifact\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": \"artifact_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": [\n \"Artifacts\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"204\": {\n \"description\": \"No response body\"\n }\n \ }\n }\n },\n \"/pulp/api/v3/content/\": @@ -1036,14 +1424,144 @@ interactions: \"string\",\n \"enum\": [\n \"-pk\",\n \ \"pk\"\n ]\n \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \"Ordering\\n\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_type\",\n \"schema\": {\n \"type\": + \"string\",\n \"enum\": [\n \"ansible.collection_deprecation\",\n + \ \"ansible.collection_mark\",\n \"ansible.collection_signature\",\n + \ \"ansible.collection_version\",\n \"ansible.namespace\",\n + \ \"ansible.role\",\n \"container.blob\",\n + \ \"container.manifest\",\n \"container.signature\",\n + \ \"container.tag\",\n \"core.publishedmetadata\",\n + \ \"deb.generic\",\n \"deb.installer_file_index\",\n + \ \"deb.installer_package\",\n \"deb.package\",\n + \ \"deb.package_index\",\n \"deb.package_release_component\",\n + \ \"deb.release\",\n \"deb.release_architecture\",\n + \ \"deb.release_component\",\n \"deb.release_file\",\n + \ \"deb.source_index\",\n \"deb.source_package\",\n + \ \"deb.source_package_release_component\",\n + \ \"file.file\",\n \"gem.gem\",\n + \ \"maven.artifact\",\n \"maven.metadata\",\n + \ \"ostree.commit\",\n \"ostree.config\",\n + \ \"ostree.content\",\n \"ostree.object\",\n + \ \"ostree.refs\",\n \"ostree.summary\",\n + \ \"python.python\",\n \"rpm.advisory\",\n + \ \"rpm.distribution_tree\",\n \"rpm.modulemd\",\n + \ \"rpm.modulemd_defaults\",\n \"rpm.modulemd_obsolete\",\n + \ \"rpm.package\",\n \"rpm.packagecategory\",\n + \ \"rpm.packageenvironment\",\n \"rpm.packagegroup\",\n + \ \"rpm.packagelangpacks\",\n \"rpm.repo_metadata_file\"\n + \ ]\n },\n \"description\": + \"Pulp type\\n\\n* `core.publishedmetadata` - core.publishedmetadata\\n* `ansible.role` + - ansible.role\\n* `ansible.collection_version` - ansible.collection_version\\n* + `ansible.collection_mark` - ansible.collection_mark\\n* `ansible.collection_signature` + - ansible.collection_signature\\n* `ansible.namespace` - ansible.namespace\\n* + `ansible.collection_deprecation` - ansible.collection_deprecation\\n* `container.blob` + - container.blob\\n* `container.manifest` - container.manifest\\n* `container.tag` + - container.tag\\n* `container.signature` - container.signature\\n* `deb.package` + - deb.package\\n* `deb.installer_package` - deb.installer_package\\n* `deb.generic` + - deb.generic\\n* `deb.source_package` - deb.source_package\\n* `deb.release` + - deb.release\\n* `deb.release_architecture` - deb.release_architecture\\n* + `deb.release_component` - deb.release_component\\n* `deb.package_release_component` + - deb.package_release_component\\n* `deb.source_package_release_component` + - deb.source_package_release_component\\n* `deb.release_file` - deb.release_file\\n* + `deb.package_index` - deb.package_index\\n* `deb.installer_file_index` - deb.installer_file_index\\n* + `deb.source_index` - deb.source_index\\n* `gem.gem` - gem.gem\\n* `maven.artifact` + - maven.artifact\\n* `maven.metadata` - maven.metadata\\n* `ostree.object` + - ostree.object\\n* `ostree.commit` - ostree.commit\\n* `ostree.refs` - ostree.refs\\n* + `ostree.content` - ostree.content\\n* `ostree.config` - ostree.config\\n* + `ostree.summary` - ostree.summary\\n* `python.python` - python.python\\n* + `rpm.advisory` - rpm.advisory\\n* `rpm.packagegroup` - rpm.packagegroup\\n* + `rpm.packagecategory` - rpm.packagecategory\\n* `rpm.packageenvironment` - + rpm.packageenvironment\\n* `rpm.packagelangpacks` - rpm.packagelangpacks\\n* + `rpm.repo_metadata_file` - rpm.repo_metadata_file\\n* `rpm.distribution_tree` + - rpm.distribution_tree\\n* `rpm.package` - rpm.package\\n* `rpm.modulemd` + - rpm.modulemd\\n* `rpm.modulemd_defaults` - rpm.modulemd_defaults\\n* `rpm.modulemd_obsolete` + - rpm.modulemd_obsolete\\n* `file.file` - file.file\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_type__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"ansible.collection_deprecation\",\n + \ \"ansible.collection_mark\",\n \"ansible.collection_signature\",\n + \ \"ansible.collection_version\",\n \"ansible.namespace\",\n + \ \"ansible.role\",\n \"container.blob\",\n + \ \"container.manifest\",\n \"container.signature\",\n + \ \"container.tag\",\n \"core.publishedmetadata\",\n + \ \"deb.generic\",\n \"deb.installer_file_index\",\n + \ \"deb.installer_package\",\n \"deb.package\",\n + \ \"deb.package_index\",\n \"deb.package_release_component\",\n + \ \"deb.release\",\n \"deb.release_architecture\",\n + \ \"deb.release_component\",\n \"deb.release_file\",\n + \ \"deb.source_index\",\n \"deb.source_package\",\n + \ \"deb.source_package_release_component\",\n + \ \"file.file\",\n \"gem.gem\",\n + \ \"maven.artifact\",\n \"maven.metadata\",\n + \ \"ostree.commit\",\n \"ostree.config\",\n + \ \"ostree.content\",\n \"ostree.object\",\n + \ \"ostree.refs\",\n \"ostree.summary\",\n + \ \"python.python\",\n \"rpm.advisory\",\n + \ \"rpm.distribution_tree\",\n \"rpm.modulemd\",\n + \ \"rpm.modulemd_defaults\",\n \"rpm.modulemd_obsolete\",\n + \ \"rpm.package\",\n \"rpm.packagecategory\",\n + \ \"rpm.packageenvironment\",\n \"rpm.packagegroup\",\n + \ \"rpm.packagelangpacks\",\n \"rpm.repo_metadata_file\"\n + \ ]\n }\n },\n + \ \"description\": \"Multiple values may be separated + by commas.\\n\\n* `core.publishedmetadata` - core.publishedmetadata\\n* `ansible.role` + - ansible.role\\n* `ansible.collection_version` - ansible.collection_version\\n* + `ansible.collection_mark` - ansible.collection_mark\\n* `ansible.collection_signature` + - ansible.collection_signature\\n* `ansible.namespace` - ansible.namespace\\n* + `ansible.collection_deprecation` - ansible.collection_deprecation\\n* `container.blob` + - container.blob\\n* `container.manifest` - container.manifest\\n* `container.tag` + - container.tag\\n* `container.signature` - container.signature\\n* `deb.package` + - deb.package\\n* `deb.installer_package` - deb.installer_package\\n* `deb.generic` + - deb.generic\\n* `deb.source_package` - deb.source_package\\n* `deb.release` + - deb.release\\n* `deb.release_architecture` - deb.release_architecture\\n* + `deb.release_component` - deb.release_component\\n* `deb.package_release_component` + - deb.package_release_component\\n* `deb.source_package_release_component` + - deb.source_package_release_component\\n* `deb.release_file` - deb.release_file\\n* + `deb.package_index` - deb.package_index\\n* `deb.installer_file_index` - deb.installer_file_index\\n* + `deb.source_index` - deb.source_index\\n* `gem.gem` - gem.gem\\n* `maven.artifact` + - maven.artifact\\n* `maven.metadata` - maven.metadata\\n* `ostree.object` + - ostree.object\\n* `ostree.commit` - ostree.commit\\n* `ostree.refs` - ostree.refs\\n* + `ostree.content` - ostree.content\\n* `ostree.config` - ostree.config\\n* + `ostree.summary` - ostree.summary\\n* `python.python` - python.python\\n* + `rpm.advisory` - rpm.advisory\\n* `rpm.packagegroup` - rpm.packagegroup\\n* + `rpm.packagecategory` - rpm.packagecategory\\n* `rpm.packageenvironment` - + rpm.packageenvironment\\n* `rpm.packagelangpacks` - rpm.packagelangpacks\\n* + `rpm.repo_metadata_file` - rpm.repo_metadata_file\\n* `rpm.distribution_tree` + - rpm.distribution_tree\\n* `rpm.package` - rpm.package\\n* `rpm.modulemd` + - rpm.modulemd\\n* `rpm.modulemd_defaults` - rpm.modulemd_defaults\\n* `rpm.modulemd_obsolete` + - rpm.modulemd_obsolete\\n* `file.file` - file.file\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": @@ -1052,16 +1570,18 @@ interactions: \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content\"\n \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedMultipleArtifactContentResponseList\"\n @@ -1086,14 +1606,35 @@ interactions: \"string\",\n \"enum\": [\n \"-pk\",\n \ \"pk\"\n ]\n \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \"Ordering\\n\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": @@ -1102,16 +1643,18 @@ interactions: \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Collection_Deprecations\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": @@ -1133,8 +1676,8 @@ interactions: \"#/components/schemas/ansible.Collection\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/ansible.CollectionResponse\"\n @@ -1150,64 +1693,226 @@ interactions: \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Collection_Deprecations\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ansible.CollectionResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/content/ansible/collection_signatures/\": - {\n \"get\": {\n \"operationId\": \"content_ansible_collection_signatures_list\",\n - \ \"description\": \"ViewSet for looking at signature objects - for CollectionVersion content.\",\n \"summary\": \"List collection - version signatures\",\n \"parameters\": [\n {\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Collection_Deprecations\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.CollectionResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/content/ansible/collection_marks/\": {\n \"get\": + {\n \"operationId\": \"content_ansible_collection_marks_list\",\n + \ \"description\": \"ViewSet for looking at mark objects for + CollectionVersion content.\",\n \"summary\": \"List collection + version marks\",\n \"parameters\": [\n {\n \ \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"name\": - \"offset\",\n \"required\": false,\n \"in\": + \ },\n {\n \"in\": + \"query\",\n \"name\": \"marked_collection\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"uuid\"\n },\n \"description\": + \"Filter marks for collection version\"\n },\n {\n + \ \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-timestamp_of_interest\",\n + \ \"-upstream_id\",\n \"-value\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"timestamp_of_interest\",\n + \ \"upstream_id\",\n \"value\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `value` - Value\\n* `-value` - Value (descending)\\n* `pk` + - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_removed\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"value\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter marks by value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"value__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where value is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Collection_Marks\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Paginatedansible.CollectionVersionMarkResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"content_ansible_collection_marks_create\",\n \"description\": + \"ViewSet for looking at mark objects for CollectionVersion content.\",\n + \ \"summary\": \"Create a collection version mark\",\n \"tags\": + [\n \"Content: Collection_Marks\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.CollectionVersionMark\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.CollectionVersionMark\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.CollectionVersionMark\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ansible.CollectionVersionMarkResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_collection_version_mark_href}\": + {\n \"get\": {\n \"operationId\": \"content_ansible_collection_marks_read\",\n + \ \"description\": \"ViewSet for looking at mark objects for + CollectionVersion content.\",\n \"summary\": \"Inspect a collection + version mark\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ansible_collection_version_mark_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Collection_Marks\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.CollectionVersionMarkResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/content/ansible/collection_signatures/\": {\n \"get\": + {\n \"operationId\": \"content_ansible_collection_signatures_list\",\n + \ \"description\": \"ViewSet for looking at signature objects + for CollectionVersion content.\",\n \"summary\": \"List collection + version signatures\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-_artifacts\",\n - \ \"-content_ptr\",\n \"-contentartifact\",\n - \ \"-data\",\n \"-digest\",\n - \ \"-download_logs\",\n \"-group_roles\",\n - \ \"-pk\",\n \"-pubkey_fingerprint\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-repositories\",\n - \ \"-signed_collection\",\n \"-signing_service\",\n - \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n - \ \"-user_roles\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"content_ptr\",\n - \ \"contentartifact\",\n \"data\",\n - \ \"digest\",\n \"download_logs\",\n - \ \"group_roles\",\n \"pk\",\n + \"string\",\n \"enum\": [\n \"-data\",\n + \ \"-digest\",\n \"-pk\",\n + \ \"-pubkey_fingerprint\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-timestamp_of_interest\",\n + \ \"-upstream_id\",\n \"data\",\n + \ \"digest\",\n \"pk\",\n \ \"pubkey_fingerprint\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"repositories\",\n \"signed_collection\",\n - \ \"signing_service\",\n \"timestamp_of_interest\",\n - \ \"upstream_id\",\n \"user_roles\",\n - \ \"version_memberships\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"timestamp_of_interest\",\n + \ \"upstream_id\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `data` - Data\\n* `-data` - Data + (descending)\\n* `digest` - Digest\\n* `-digest` - Digest (descending)\\n* + `pubkey_fingerprint` - Pubkey fingerprint\\n* `-pubkey_fingerprint` - Pubkey + fingerprint (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": \"query\",\n \"name\": \"pubkey_fingerprint\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"description\": \"Filter results where pubkey_fingerprint @@ -1219,12 +1924,28 @@ interactions: \"Filter results where pubkey_fingerprint is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": @@ -1242,16 +1963,18 @@ interactions: \"Filter signatures produced by signature service\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Collection_Signatures\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": @@ -1271,8 +1994,8 @@ interactions: \"#/components/schemas/ansible.CollectionVersionSignature\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n @@ -1289,16 +2012,18 @@ interactions: \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Collection_Signatures\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": @@ -1330,56 +2055,93 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-_artifacts\",\n - \ \"-authors\",\n \"-collection\",\n - \ \"-content_ptr\",\n \"-contentartifact\",\n + \"string\",\n \"enum\": [\n \"-authors\",\n \ \"-contents\",\n \"-dependencies\",\n \ \"-description\",\n \"-docs_blob\",\n - \ \"-documentation\",\n \"-download_logs\",\n - \ \"-files\",\n \"-group_roles\",\n + \ \"-documentation\",\n \"-files\",\n \ \"-homepage\",\n \"-is_highest\",\n \ \"-issues\",\n \"-license\",\n \ \"-manifest\",\n \"-name\",\n \ \"-namespace\",\n \"-pk\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-repositories\",\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n \ \"-repository\",\n \"-requires_ansible\",\n - \ \"-search_vector\",\n \"-signatures\",\n - \ \"-tags\",\n \"-timestamp_of_interest\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"authors\",\n - \ \"collection\",\n \"content_ptr\",\n - \ \"contentartifact\",\n \"contents\",\n + \ \"-search_vector\",\n \"-timestamp_of_interest\",\n + \ \"-upstream_id\",\n \"-version\",\n + \ \"-version_major\",\n \"-version_minor\",\n + \ \"-version_patch\",\n \"-version_prerelease\",\n + \ \"authors\",\n \"contents\",\n \ \"dependencies\",\n \"description\",\n \ \"docs_blob\",\n \"documentation\",\n - \ \"download_logs\",\n \"files\",\n - \ \"group_roles\",\n \"homepage\",\n + \ \"files\",\n \"homepage\",\n \ \"is_highest\",\n \"issues\",\n \ \"license\",\n \"manifest\",\n \ \"name\",\n \"namespace\",\n \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"repositories\",\n \"repository\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"repository\",\n \ \"requires_ansible\",\n \"search_vector\",\n - \ \"signatures\",\n \"tags\",\n \ \"timestamp_of_interest\",\n \"upstream_id\",\n - \ \"user_roles\",\n \"version\",\n - \ \"version_memberships\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"q\",\n \"schema\": - {\n \"type\": \"string\"\n }\n + \ \"version\",\n \"version_major\",\n + \ \"version_minor\",\n \"version_patch\",\n + \ \"version_prerelease\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `authors` - Authors\\n* `-authors` + - Authors (descending)\\n* `contents` - Contents\\n* `-contents` - Contents + (descending)\\n* `dependencies` - Dependencies\\n* `-dependencies` - Dependencies + (descending)\\n* `description` - Description\\n* `-description` - Description + (descending)\\n* `docs_blob` - Docs blob\\n* `-docs_blob` - Docs blob (descending)\\n* + `manifest` - Manifest\\n* `-manifest` - Manifest (descending)\\n* `files` + - Files\\n* `-files` - Files (descending)\\n* `documentation` - Documentation\\n* + `-documentation` - Documentation (descending)\\n* `homepage` - Homepage\\n* + `-homepage` - Homepage (descending)\\n* `issues` - Issues\\n* `-issues` - + Issues (descending)\\n* `license` - License\\n* `-license` - License (descending)\\n* + `name` - Name\\n* `-name` - Name (descending)\\n* `namespace` - Namespace\\n* + `-namespace` - Namespace (descending)\\n* `repository` - Repository\\n* `-repository` + - Repository (descending)\\n* `requires_ansible` - Requires ansible\\n* `-requires_ansible` + - Requires ansible (descending)\\n* `version` - Version\\n* `-version` - Version + (descending)\\n* `version_major` - Version major\\n* `-version_major` - Version + major (descending)\\n* `version_minor` - Version minor\\n* `-version_minor` + - Version minor (descending)\\n* `version_patch` - Version patch\\n* `-version_patch` + - Version patch (descending)\\n* `version_prerelease` - Version prerelease\\n* + `-version_prerelease` - Version prerelease (descending)\\n* `is_highest` - + Is highest\\n* `-is_highest` - Is highest (descending)\\n* `search_vector` + - Search vector\\n* `-search_vector` - Search vector (descending)\\n* `pk` + - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n \ },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": @@ -1396,16 +2158,18 @@ interactions: \"Filter results where version matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Collection_Versions\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": @@ -1425,8 +2189,8 @@ interactions: \"#/components/schemas/ansible.CollectionVersion\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n @@ -1442,26 +2206,272 @@ interactions: \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Collection_Versions\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/ansible.CollectionVersionResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/content/ansible/roles/\": {\n \"get\": {\n - \ \"operationId\": \"content_ansible_roles_list\",\n \"description\": - \"ViewSet for Role.\",\n \"summary\": \"List roles\",\n \"parameters\": - [\n {\n \"name\": \"limit\",\n \"required\": + \ \"/pulp/api/v3/content/ansible/namespaces/\": {\n \"get\": + {\n \"operationId\": \"content_ansible_namespaces_list\",\n + \ \"description\": \"ViewSet for AnsibleNamespace.\",\n \"summary\": + \"List ansible namespace metadatas\",\n \"parameters\": [\n + \ {\n \"in\": \"query\",\n \"name\": + \"company\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"company__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"company__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"company__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"company__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where company is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"company__iregex\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where company matches + regex value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"company__istartswith\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"company__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"company__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company starts with value\"\n },\n + \ {\n \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"metadata_sha256\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where metadata_sha256 + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"metadata_sha256__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where metadata_sha256 is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-avatar_sha256\",\n \"-company\",\n + \ \"-description\",\n \"-email\",\n + \ \"-links\",\n \"-metadata_sha256\",\n + \ \"-name\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"-resources\",\n \"-timestamp_of_interest\",\n + \ \"-upstream_id\",\n \"avatar_sha256\",\n + \ \"company\",\n \"description\",\n + \ \"email\",\n \"links\",\n + \ \"metadata_sha256\",\n \"name\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"resources\",\n + \ \"timestamp_of_interest\",\n \"upstream_id\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* `company` + - Company\\n* `-company` - Company (descending)\\n* `email` - Email\\n* `-email` + - Email (descending)\\n* `description` - Description\\n* `-description` - + Description (descending)\\n* `resources` - Resources\\n* `-resources` - Resources + (descending)\\n* `links` - Links\\n* `-links` - Links (descending)\\n* `avatar_sha256` + - Avatar sha256\\n* `-avatar_sha256` - Avatar sha256 (descending)\\n* `metadata_sha256` + - Metadata sha256\\n* `-metadata_sha256` - Metadata sha256 (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_removed\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Namespaces\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedansible.AnsibleNamespaceMetadataResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_ansible_namespace_metadata_href}\": + {\n \"get\": {\n \"operationId\": \"content_ansible_namespaces_read\",\n + \ \"description\": \"ViewSet for AnsibleNamespace.\",\n \"summary\": + \"Inspect an ansible namespace metadata\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_ansible_namespace_metadata_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Namespaces\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ansible.AnsibleNamespaceMetadataResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_ansible_namespace_metadata_href}avatar/\": + {\n \"get\": {\n \"operationId\": \"content_ansible_namespaces_avatar\",\n + \ \"description\": \"Get the logo for the this namespace.\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_ansible_namespace_metadata_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Namespaces\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"302\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"type\": \"object\",\n \"description\": + \"Unspecified response body\"\n }\n }\n + \ },\n \"description\": \"\"\n + \ }\n }\n }\n },\n \"/pulp/api/v3/content/ansible/roles/\": + {\n \"get\": {\n \"operationId\": \"content_ansible_roles_list\",\n + \ \"description\": \"ViewSet for Role.\",\n \"summary\": + \"List roles\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n @@ -1481,35 +2491,56 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-_artifacts\",\n - \ \"-content_ptr\",\n \"-contentartifact\",\n - \ \"-download_logs\",\n \"-group_roles\",\n - \ \"-name\",\n \"-namespace\",\n - \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n + \"string\",\n \"enum\": [\n \"-name\",\n + \ \"-namespace\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-repositories\",\n \"-timestamp_of_interest\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"content_ptr\",\n - \ \"contentartifact\",\n \"download_logs\",\n - \ \"group_roles\",\n \"name\",\n + \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n + \ \"-version\",\n \"name\",\n \ \"namespace\",\n \"pk\",\n \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"repositories\",\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n \ \"timestamp_of_interest\",\n \"upstream_id\",\n - \ \"user_roles\",\n \"version\",\n - \ \"version_memberships\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \ \"version\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `namespace` - Namespace\\n* `-namespace` + - Namespace (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* + `version` - Version\\n* `-version` - Version (descending)\\n* `pk` - Pk\\n* + `-pk` - Pk (descending)\",\n \"explode\": false,\n + \ \"style\": \"form\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": @@ -1522,16 +2553,18 @@ interactions: \"Filter results where version matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Roles\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Paginatedansible.RoleResponseList\"\n @@ -1550,8 +2583,8 @@ interactions: {\n \"schema\": {\n \"$ref\": \"#/components/schemas/ansible.Role\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": {\n \"201\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": @@ -1567,16 +2600,18 @@ interactions: \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Roles\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/ansible.RoleResponse\"\n @@ -1609,30 +2644,47 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-_artifacts\",\n \"-config_blob\",\n - \ \"-container_manifest\",\n \"-content_ptr\",\n - \ \"-contentartifact\",\n \"-digest\",\n - \ \"-download_logs\",\n \"-group_roles\",\n - \ \"-manifest_blobs\",\n \"-pk\",\n + [\n \"-digest\",\n \"-pk\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-repositories\",\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n - \ \"-user_roles\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"config_blob\",\n - \ \"container_manifest\",\n \"content_ptr\",\n - \ \"contentartifact\",\n \"digest\",\n - \ \"download_logs\",\n \"group_roles\",\n - \ \"manifest_blobs\",\n \"pk\",\n + \ \"digest\",\n \"pk\",\n \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"repositories\",\n - \ \"timestamp_of_interest\",\n \"upstream_id\",\n - \ \"user_roles\",\n \"version_memberships\"\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"timestamp_of_interest\",\n \"upstream_id\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `digest` - Digest\\n* `-digest` - Digest (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"repository_version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n @@ -1646,16 +2698,18 @@ interactions: \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Blobs\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Paginatedcontainer.BlobResponseList\"\n @@ -1670,16 +2724,18 @@ interactions: \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Blobs\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/container.BlobResponse\"\n @@ -1713,53 +2769,71 @@ interactions: \ \"application/vnd.oci.image.index.v1+json\",\n \ \"application/vnd.oci.image.manifest.v1+json\"\n \ ]\n }\n },\n - \ \"explode\": true,\n \"style\": - \"form\"\n },\n {\n \"name\": - \"offset\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"The initial index from - which to return the results.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"ordering\",\n \"schema\": {\n \"type\": + \ \"description\": \"* `application/vnd.docker.distribution.manifest.v1+json` + - application/vnd.docker.distribution.manifest.v1+json\\n* `application/vnd.docker.distribution.manifest.v2+json` + - application/vnd.docker.distribution.manifest.v2+json\\n* `application/vnd.docker.distribution.manifest.list.v2+json` + - application/vnd.docker.distribution.manifest.list.v2+json\\n* `application/vnd.oci.image.manifest.v1+json` + - application/vnd.oci.image.manifest.v1+json\\n* `application/vnd.oci.image.index.v1+json` + - application/vnd.oci.image.index.v1+json\",\n \"explode\": + true,\n \"style\": \"form\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-digest\",\n \"-media_type\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-schema_version\",\n + \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n + \ \"digest\",\n \"media_type\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"schema_version\",\n + \ \"timestamp_of_interest\",\n \"upstream_id\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `digest` - Digest\\n* `-digest` - Digest (descending)\\n* + `schema_version` - Schema version\\n* `-schema_version` - Schema version (descending)\\n* + `media_type` - Media type\\n* `-media_type` - Media type (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-_artifacts\",\n - \ \"-blob_manifests\",\n \"-blobs\",\n - \ \"-config_blob\",\n \"-container_manifest\",\n - \ \"-content_ptr\",\n \"-contentartifact\",\n - \ \"-digest\",\n \"-download_logs\",\n - \ \"-group_roles\",\n \"-image_manifests\",\n - \ \"-listed_manifests\",\n \"-manifest_lists\",\n - \ \"-media_type\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-repositories\",\n - \ \"-schema_version\",\n \"-signed_manifests\",\n - \ \"-tagged_manifests\",\n \"-timestamp_of_interest\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version_memberships\",\n \"_artifacts\",\n - \ \"blob_manifests\",\n \"blobs\",\n - \ \"config_blob\",\n \"container_manifest\",\n - \ \"content_ptr\",\n \"contentartifact\",\n - \ \"digest\",\n \"download_logs\",\n - \ \"group_roles\",\n \"image_manifests\",\n - \ \"listed_manifests\",\n \"manifest_lists\",\n - \ \"media_type\",\n \"pk\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"repositories\",\n - \ \"schema_version\",\n \"signed_manifests\",\n - \ \"tagged_manifests\",\n \"timestamp_of_interest\",\n - \ \"upstream_id\",\n \"user_roles\",\n - \ \"version_memberships\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": @@ -1768,16 +2842,18 @@ interactions: \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Manifests\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Paginatedcontainer.ManifestResponseList\"\n @@ -1792,24 +2868,26 @@ interactions: \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Manifests\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/container.ManifestResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/content/container/signatures/\": {\n \"get\": - {\n \"operationId\": \"content_container_signatures_list\",\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Manifests\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/container.ManifestResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/content/container/signatures/\": + {\n \"get\": {\n \"operationId\": \"content_container_signatures_list\",\n \ \"description\": \"ViewSet for image signatures.\",\n \"summary\": \"List manifest signatures\",\n \"parameters\": [\n {\n \ \"in\": \"query\",\n \"name\": @@ -1857,12 +2935,28 @@ interactions: \"string\"\n },\n \"description\": \"Filter results where name contains value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": \"Filter results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where name starts with value\"\n },\n @@ -1874,34 +2968,57 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-_artifacts\",\n \"-content_ptr\",\n - \ \"-contentartifact\",\n \"-creator\",\n - \ \"-data\",\n \"-digest\",\n - \ \"-download_logs\",\n \"-group_roles\",\n - \ \"-key_id\",\n \"-name\",\n - \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n + [\n \"-creator\",\n \"-data\",\n + \ \"-digest\",\n \"-key_id\",\n + \ \"-name\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-repositories\",\n \"-signed_manifest\",\n \ \"-timestamp\",\n \"-timestamp_of_interest\",\n \ \"-type\",\n \"-upstream_id\",\n - \ \"-user_roles\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"content_ptr\",\n - \ \"contentartifact\",\n \"creator\",\n - \ \"data\",\n \"digest\",\n - \ \"download_logs\",\n \"group_roles\",\n - \ \"key_id\",\n \"name\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"creator\",\n \"data\",\n + \ \"digest\",\n \"key_id\",\n + \ \"name\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"repositories\",\n \"signed_manifest\",\n \ \"timestamp\",\n \"timestamp_of_interest\",\n - \ \"type\",\n \"upstream_id\",\n - \ \"user_roles\",\n \"version_memberships\"\n + \ \"type\",\n \"upstream_id\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* `digest` + - Digest\\n* `-digest` - Digest (descending)\\n* `type` - Type\\n* `-type` + - Type (descending)\\n* `key_id` - Key id\\n* `-key_id` - Key id (descending)\\n* + `timestamp` - Timestamp\\n* `-timestamp` - Timestamp (descending)\\n* `creator` + - Creator\\n* `-creator` - Creator (descending)\\n* `data` - Data\\n* `-data` + - Data (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"repository_version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n @@ -1915,16 +3032,18 @@ interactions: \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Signatures\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Paginatedcontainer.ManifestSignatureResponseList\"\n @@ -1940,16 +3059,18 @@ interactions: \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Signatures\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/container.ManifestSignatureResponse\"\n @@ -1979,17 +3100,22 @@ interactions: \ \"application/vnd.oci.image.index.v1+json\",\n \ \"application/vnd.oci.image.manifest.v1+json\"\n \ ]\n }\n },\n - \ \"explode\": true,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": + \ \"description\": \"* `application/vnd.docker.distribution.manifest.v1+json` + - application/vnd.docker.distribution.manifest.v1+json\\n* `application/vnd.docker.distribution.manifest.v2+json` + - application/vnd.docker.distribution.manifest.v2+json\\n* `application/vnd.docker.distribution.manifest.list.v2+json` + - application/vnd.docker.distribution.manifest.list.v2+json\\n* `application/vnd.oci.image.manifest.v1+json` + - application/vnd.oci.image.manifest.v1+json\\n* `application/vnd.oci.image.index.v1+json` + - application/vnd.oci.image.index.v1+json\",\n \"explode\": + true,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": @@ -1999,28 +3125,47 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-_artifacts\",\n \"-content_ptr\",\n - \ \"-contentartifact\",\n \"-download_logs\",\n - \ \"-group_roles\",\n \"-name\",\n - \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n + [\n \"-name\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-repositories\",\n \"-tagged_manifest\",\n \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n - \ \"-user_roles\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"content_ptr\",\n - \ \"contentartifact\",\n \"download_logs\",\n - \ \"group_roles\",\n \"name\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"name\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"repositories\",\n \"tagged_manifest\",\n - \ \"timestamp_of_interest\",\n \"upstream_id\",\n - \ \"user_roles\",\n \"version_memberships\"\n + \ \"timestamp_of_interest\",\n \"upstream_id\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* `pk` - + Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n + \ \"style\": \"form\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"repository_version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n @@ -2034,16 +3179,18 @@ interactions: \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Tags\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Paginatedcontainer.TagResponseList\"\n @@ -2057,24 +3204,26 @@ interactions: \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Tags\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/container.TagResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/content/deb/generic_contents/\": {\n \"get\": - {\n \"operationId\": \"content_deb_generic_contents_list\",\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Tags\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/container.TagResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/content/deb/generic_contents/\": + {\n \"get\": {\n \"operationId\": \"content_deb_generic_contents_list\",\n \ \"description\": \"GenericContent is a catch all category for storing files not covered by any other type.\\n\\nAssociated artifacts: Exactly one arbitrary file that does not match any other type.\\n\\nThis is @@ -2093,38 +3242,58 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-_artifacts\",\n - \ \"-content_ptr\",\n \"-contentartifact\",\n - \ \"-download_logs\",\n \"-group_roles\",\n - \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n + \"string\",\n \"enum\": [\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-relative_path\",\n \"-repositories\",\n - \ \"-sha256\",\n \"-timestamp_of_interest\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version_memberships\",\n \"_artifacts\",\n - \ \"content_ptr\",\n \"contentartifact\",\n - \ \"download_logs\",\n \"group_roles\",\n + \ \"-relative_path\",\n \"-sha256\",\n + \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"relative_path\",\n \"repositories\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"relative_path\",\n \ \"sha256\",\n \"timestamp_of_interest\",\n - \ \"upstream_id\",\n \"user_roles\",\n - \ \"version_memberships\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"relative_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where relative_path - matches value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \ \"upstream_id\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `relative_path` - Relative path\\n* + `-relative_path` - Relative path (descending)\\n* `sha256` - Sha256\\n* `-sha256` + - Sha256 (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"relative_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where relative_path matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": @@ -2137,16 +3306,18 @@ interactions: \"Filter results where sha256 matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Generic_Contents\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": @@ -2166,8 +3337,8 @@ interactions: \"#/components/schemas/deb.GenericContent\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n @@ -2186,24 +3357,27 @@ interactions: \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Generic_Contents\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/deb.GenericContentResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/content/deb/installer_file_indices/\": - {\n \"get\": {\n \"operationId\": \"content_deb_installer_file_indices_list\",\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Generic_Contents\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/deb.GenericContentResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/content/deb/installer_file_indices/\": {\n \"get\": + {\n \"operationId\": \"content_deb_installer_file_indices_list\",\n \ \"description\": \"An InstallerFileIndex represents the indices for a set of installer files.\\n\\nAssociated artifacts: Exactly one 'SHA256SUMS' and/or 'MD5SUMS' file.\\n\\nEach InstallerFileIndes is associated with a single @@ -2231,41 +3405,62 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-_artifacts\",\n - \ \"-architecture\",\n \"-component\",\n - \ \"-content_ptr\",\n \"-contentartifact\",\n - \ \"-download_logs\",\n \"-group_roles\",\n - \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n + \"string\",\n \"enum\": [\n \"-architecture\",\n + \ \"-component\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-relative_path\",\n \"-release\",\n - \ \"-repositories\",\n \"-sha256\",\n + \ \"-relative_path\",\n \"-sha256\",\n \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n - \ \"-user_roles\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"architecture\",\n - \ \"component\",\n \"content_ptr\",\n - \ \"contentartifact\",\n \"download_logs\",\n - \ \"group_roles\",\n \"pk\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n + \ \"architecture\",\n \"component\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n \ \"pulp_type\",\n \"relative_path\",\n - \ \"release\",\n \"repositories\",\n \ \"sha256\",\n \"timestamp_of_interest\",\n - \ \"upstream_id\",\n \"user_roles\",\n - \ \"version_memberships\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"relative_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where relative_path - matches value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \ \"upstream_id\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `component` - Component\\n* `-component` + - Component (descending)\\n* `architecture` - Architecture\\n* `-architecture` + - Architecture (descending)\\n* `relative_path` - Relative path\\n* `-relative_path` + - Relative path (descending)\\n* `sha256` - Sha256\\n* `-sha256` - Sha256 + (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"relative_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where relative_path matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": @@ -2278,16 +3473,18 @@ interactions: \"Filter results where sha256 matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Installer_File_Indices\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": @@ -2314,8 +3511,8 @@ interactions: \"#/components/schemas/deb.InstallerFileIndex\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/deb.InstallerFileIndexResponse\"\n @@ -2336,16 +3533,18 @@ interactions: \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Installer_File_Indices\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": @@ -2373,17 +3572,18 @@ interactions: \"boolean\",\n \"nullable\": true,\n \"enum\": [\n false,\n true\n \ ]\n },\n \"description\": - \"Filter results where build_essential matches value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"built_using\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where built_using matches value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"essential\",\n \"schema\": {\n \"type\": - \"boolean\",\n \"nullable\": true,\n \"enum\": - [\n false,\n true\n - \ ]\n },\n \"description\": - \"Filter results where essential matches value\"\n },\n + \"Filter results where build_essential matches value\\n\\n* `True` - yes\\n* + `False` - no\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"built_using\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where built_using + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"essential\",\n \"schema\": + {\n \"type\": \"boolean\",\n \"nullable\": + true,\n \"enum\": [\n false,\n + \ true\n ]\n },\n + \ \"description\": \"Filter results where essential + matches value\\n\\n* `True` - yes\\n* `False` - no\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"installed_size\",\n \"schema\": {\n \"type\": \"integer\"\n },\n \"description\": @@ -2403,7 +3603,8 @@ interactions: \ \"foreign\",\n \"no\",\n \ \"same\"\n ]\n \ },\n \"description\": \"Filter - results where multi_arch matches value\"\n },\n {\n + results where multi_arch matches value\\n\\n* `no` - no\\n* `same` - same\\n* + `foreign` - foreign\\n* `allowed` - allowed\"\n },\n {\n \ \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": @@ -2412,66 +3613,98 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-_artifacts\",\n \"-architecture\",\n - \ \"-auto_built_package\",\n \"-breaks\",\n - \ \"-bugs\",\n \"-build_essential\",\n - \ \"-built_using\",\n \"-conflicts\",\n - \ \"-content_ptr\",\n \"-contentartifact\",\n - \ \"-custom_fields\",\n \"-depends\",\n - \ \"-description\",\n \"-description_md5\",\n - \ \"-download_logs\",\n \"-enhances\",\n - \ \"-essential\",\n \"-group_roles\",\n - \ \"-homepage\",\n \"-installed_size\",\n - \ \"-maintainer\",\n \"-multi_arch\",\n - \ \"-origin\",\n \"-original_maintainer\",\n - \ \"-package\",\n \"-pk\",\n - \ \"-pre_depends\",\n \"-priority\",\n - \ \"-provides\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n + [\n \"-architecture\",\n \"-auto_built_package\",\n + \ \"-breaks\",\n \"-bugs\",\n + \ \"-build_essential\",\n \"-built_using\",\n + \ \"-conflicts\",\n \"-custom_fields\",\n + \ \"-depends\",\n \"-description\",\n + \ \"-description_md5\",\n \"-enhances\",\n + \ \"-essential\",\n \"-homepage\",\n + \ \"-installed_size\",\n \"-maintainer\",\n + \ \"-multi_arch\",\n \"-origin\",\n + \ \"-original_maintainer\",\n \"-package\",\n + \ \"-pk\",\n \"-pre_depends\",\n + \ \"-priority\",\n \"-provides\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n \ \"-pulp_last_updated\",\n \"-pulp_type\",\n \ \"-recommends\",\n \"-relative_path\",\n - \ \"-replaces\",\n \"-repositories\",\n - \ \"-section\",\n \"-sha256\",\n - \ \"-source\",\n \"-suggests\",\n - \ \"-tag\",\n \"-timestamp_of_interest\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"architecture\",\n + \ \"-replaces\",\n \"-section\",\n + \ \"-sha256\",\n \"-source\",\n + \ \"-suggests\",\n \"-tag\",\n + \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n + \ \"-version\",\n \"architecture\",\n \ \"auto_built_package\",\n \"breaks\",\n \ \"bugs\",\n \"build_essential\",\n \ \"built_using\",\n \"conflicts\",\n - \ \"content_ptr\",\n \"contentartifact\",\n \ \"custom_fields\",\n \"depends\",\n \ \"description\",\n \"description_md5\",\n - \ \"download_logs\",\n \"enhances\",\n - \ \"essential\",\n \"group_roles\",\n + \ \"enhances\",\n \"essential\",\n \ \"homepage\",\n \"installed_size\",\n \ \"maintainer\",\n \"multi_arch\",\n \ \"origin\",\n \"original_maintainer\",\n \ \"package\",\n \"pk\",\n \ \"pre_depends\",\n \"priority\",\n \ \"provides\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"recommends\",\n \"relative_path\",\n - \ \"replaces\",\n \"repositories\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"recommends\",\n + \ \"relative_path\",\n \"replaces\",\n \ \"section\",\n \"sha256\",\n \ \"source\",\n \"suggests\",\n \ \"tag\",\n \"timestamp_of_interest\",\n - \ \"upstream_id\",\n \"user_roles\",\n - \ \"version\",\n \"version_memberships\"\n + \ \"upstream_id\",\n \"version\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"origin\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where origin matches value\"\n },\n {\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `package` - Package\\n* `-package` - Package (descending)\\n* + `source` - Source\\n* `-source` - Source (descending)\\n* `version` - Version\\n* + `-version` - Version (descending)\\n* `architecture` - Architecture\\n* `-architecture` + - Architecture (descending)\\n* `section` - Section\\n* `-section` - Section + (descending)\\n* `priority` - Priority\\n* `-priority` - Priority (descending)\\n* + `origin` - Origin\\n* `-origin` - Origin (descending)\\n* `tag` - Tag\\n* + `-tag` - Tag (descending)\\n* `bugs` - Bugs\\n* `-bugs` - Bugs (descending)\\n* + `essential` - Essential\\n* `-essential` - Essential (descending)\\n* `build_essential` + - Build essential\\n* `-build_essential` - Build essential (descending)\\n* + `installed_size` - Installed size\\n* `-installed_size` - Installed size (descending)\\n* + `maintainer` - Maintainer\\n* `-maintainer` - Maintainer (descending)\\n* + `original_maintainer` - Original maintainer\\n* `-original_maintainer` - Original + maintainer (descending)\\n* `description` - Description\\n* `-description` + - Description (descending)\\n* `description_md5` - Description md5\\n* `-description_md5` + - Description md5 (descending)\\n* `homepage` - Homepage\\n* `-homepage` - + Homepage (descending)\\n* `built_using` - Built using\\n* `-built_using` - + Built using (descending)\\n* `auto_built_package` - Auto built package\\n* + `-auto_built_package` - Auto built package (descending)\\n* `multi_arch` - + Multi arch\\n* `-multi_arch` - Multi arch (descending)\\n* `breaks` - Breaks\\n* + `-breaks` - Breaks (descending)\\n* `conflicts` - Conflicts\\n* `-conflicts` + - Conflicts (descending)\\n* `depends` - Depends\\n* `-depends` - Depends + (descending)\\n* `recommends` - Recommends\\n* `-recommends` - Recommends + (descending)\\n* `suggests` - Suggests\\n* `-suggests` - Suggests (descending)\\n* + `enhances` - Enhances\\n* `-enhances` - Enhances (descending)\\n* `pre_depends` + - Pre depends\\n* `-pre_depends` - Pre depends (descending)\\n* `provides` + - Provides\\n* `-provides` - Provides (descending)\\n* `replaces` - Replaces\\n* + `-replaces` - Replaces (descending)\\n* `relative_path` - Relative path\\n* + `-relative_path` - Relative path (descending)\\n* `sha256` - Sha256\\n* `-sha256` + - Sha256 (descending)\\n* `custom_fields` - Custom fields\\n* `-custom_fields` + - Custom fields (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"origin\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where origin matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"original_maintainer\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where original_maintainer + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"orphaned_for\",\n \"schema\": + {\n \"type\": \"number\"\n },\n + \ \"description\": \"Minutes Content has been orphaned + for. -1 uses ORPHAN_PROTECTION_TIME.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"original_maintainer\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where original_maintainer matches value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"package\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where package matches value\"\n },\n {\n @@ -2480,6 +3713,22 @@ interactions: \"string\"\n },\n \"description\": \"Filter results where priority matches value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"repository_version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n @@ -2513,20 +3762,22 @@ interactions: \"Filter results where version matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Installer_Packages\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginateddeb.BasePackageResponseList\"\n }\n + \"#/components/schemas/Paginateddeb.InstallerPackageResponseList\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n },\n \"post\": {\n \"operationId\": \"content_deb_installer_packages_create\",\n @@ -2536,14 +3787,14 @@ interactions: Installer_Packages\"\n ],\n \"requestBody\": {\n \"content\": {\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.BasePackage\"\n }\n + \"#/components/schemas/deb.InstallerPackage\"\n }\n \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.BasePackage\"\n }\n + \"#/components/schemas/deb.InstallerPackage\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n @@ -2562,24 +3813,27 @@ interactions: \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Installer_Packages\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/deb.BasePackageResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/content/deb/package_indices/\": - {\n \"get\": {\n \"operationId\": \"content_deb_package_indices_list\",\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Installer_Packages\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/deb.InstallerPackageResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/content/deb/package_indices/\": {\n \"get\": + {\n \"operationId\": \"content_deb_package_indices_list\",\n \ \"description\": \"A PackageIndex represents the package indices of a single component-architecture combination.\\n\\nAssociated artifacts: Exactly one 'Packages' file. May optionally include one or more of\\n'Packages.gz', @@ -2609,42 +3863,64 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-_artifacts\",\n - \ \"-architecture\",\n \"-artifact_set_sha256\",\n - \ \"-component\",\n \"-content_ptr\",\n - \ \"-contentartifact\",\n \"-download_logs\",\n - \ \"-group_roles\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \"string\",\n \"enum\": [\n \"-architecture\",\n + \ \"-artifact_set_sha256\",\n \"-component\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n \ \"-pulp_type\",\n \"-relative_path\",\n - \ \"-release\",\n \"-repositories\",\n \ \"-sha256\",\n \"-timestamp_of_interest\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version_memberships\",\n \"_artifacts\",\n - \ \"architecture\",\n \"artifact_set_sha256\",\n - \ \"component\",\n \"content_ptr\",\n - \ \"contentartifact\",\n \"download_logs\",\n - \ \"group_roles\",\n \"pk\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n + \ \"-upstream_id\",\n \"architecture\",\n + \ \"artifact_set_sha256\",\n \"component\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n \ \"pulp_type\",\n \"relative_path\",\n - \ \"release\",\n \"repositories\",\n \ \"sha256\",\n \"timestamp_of_interest\",\n - \ \"upstream_id\",\n \"user_roles\",\n - \ \"version_memberships\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + \ \"upstream_id\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `component` - Component\\n* `-component` + - Component (descending)\\n* `architecture` - Architecture\\n* `-architecture` + - Architecture (descending)\\n* `relative_path` - Relative path\\n* `-relative_path` + - Relative path (descending)\\n* `sha256` - Sha256\\n* `-sha256` - Sha256 + (descending)\\n* `artifact_set_sha256` - Artifact set sha256\\n* `-artifact_set_sha256` + - Artifact set sha256 (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"relative_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where relative_path - matches value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \"query\",\n \"name\": \"orphaned_for\",\n \"schema\": + {\n \"type\": \"number\"\n },\n + \ \"description\": \"Minutes Content has been orphaned + for. -1 uses ORPHAN_PROTECTION_TIME.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"relative_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where relative_path matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": @@ -2657,16 +3933,18 @@ interactions: \"Filter results where sha256 matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Package_Indices\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Paginateddeb.PackageIndexResponseList\"\n @@ -2694,8 +3972,8 @@ interactions: \"#/components/schemas/deb.PackageIndex\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/deb.PackageIndexResponse\"\n @@ -2717,19 +3995,21 @@ interactions: \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Package_Indices\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Package_Indices\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/deb.PackageIndexResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n @@ -2752,32 +4032,49 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-_artifacts\",\n - \ \"-content_ptr\",\n \"-contentartifact\",\n - \ \"-download_logs\",\n \"-group_roles\",\n - \ \"-package\",\n \"-pk\",\n + \"string\",\n \"enum\": [\n \"-pk\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-release_component\",\n - \ \"-repositories\",\n \"-timestamp_of_interest\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version_memberships\",\n \"_artifacts\",\n - \ \"content_ptr\",\n \"contentartifact\",\n - \ \"download_logs\",\n \"group_roles\",\n - \ \"package\",\n \"pk\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"release_component\",\n - \ \"repositories\",\n \"timestamp_of_interest\",\n - \ \"upstream_id\",\n \"user_roles\",\n - \ \"version_memberships\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"timestamp_of_interest\",\n + \ \"upstream_id\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"package\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"uuid\"\n },\n \"description\": - \"Filter results where package matches value\"\n },\n {\n + \"query\",\n \"name\": \"orphaned_for\",\n \"schema\": + {\n \"type\": \"number\"\n },\n + \ \"description\": \"Minutes Content has been orphaned + for. -1 uses ORPHAN_PROTECTION_TIME.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"package\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Filter results where package matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"release_component\",\n \"schema\": {\n \"type\": \"string\",\n \"format\": \"uuid\"\n },\n @@ -2797,16 +4094,18 @@ interactions: \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Package_Release_Components\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": @@ -2831,8 +4130,8 @@ interactions: \"#/components/schemas/deb.PackageReleaseComponent\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/deb.PackageReleaseComponentResponse\"\n @@ -2851,16 +4150,18 @@ interactions: \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Package_Release_Components\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": @@ -2885,17 +4186,18 @@ interactions: true,\n \"enum\": [\n false,\n \ true\n ]\n },\n \ \"description\": \"Filter results where build_essential - matches value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"built_using\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where built_using - matches value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"essential\",\n \"schema\": - {\n \"type\": \"boolean\",\n \"nullable\": - true,\n \"enum\": [\n false,\n - \ true\n ]\n },\n - \ \"description\": \"Filter results where essential - matches value\"\n },\n {\n \"in\": + matches value\\n\\n* `True` - yes\\n* `False` - no\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"built_using\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where built_using matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"essential\",\n \"schema\": {\n \"type\": + \"boolean\",\n \"nullable\": true,\n \"enum\": + [\n false,\n true\n + \ ]\n },\n \"description\": + \"Filter results where essential matches value\\n\\n* `True` - yes\\n* `False` + - no\"\n },\n {\n \"in\": \"query\",\n \"name\": \"installed_size\",\n \"schema\": {\n \"type\": \"integer\"\n },\n \ \"description\": \"Filter results where installed_size @@ -2914,7 +4216,8 @@ interactions: [\n \"allowed\",\n \"foreign\",\n \ \"no\",\n \"same\"\n \ ]\n },\n \"description\": - \"Filter results where multi_arch matches value\"\n },\n + \"Filter results where multi_arch matches value\\n\\n* `no` - no\\n* `same` + - same\\n* `foreign` - foreign\\n* `allowed` - allowed\"\n },\n \ {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": @@ -2923,85 +4226,181 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-_artifacts\",\n \"-architecture\",\n - \ \"-auto_built_package\",\n \"-breaks\",\n - \ \"-bugs\",\n \"-build_essential\",\n - \ \"-built_using\",\n \"-conflicts\",\n - \ \"-content_ptr\",\n \"-contentartifact\",\n - \ \"-custom_fields\",\n \"-deb_packagereleasecomponent\",\n + [\n \"-architecture\",\n \"-auto_built_package\",\n + \ \"-breaks\",\n \"-bugs\",\n + \ \"-build_essential\",\n \"-built_using\",\n + \ \"-conflicts\",\n \"-custom_fields\",\n \ \"-depends\",\n \"-description\",\n - \ \"-description_md5\",\n \"-download_logs\",\n - \ \"-enhances\",\n \"-essential\",\n - \ \"-group_roles\",\n \"-homepage\",\n + \ \"-description_md5\",\n \"-enhances\",\n + \ \"-essential\",\n \"-homepage\",\n \ \"-installed_size\",\n \"-maintainer\",\n \ \"-multi_arch\",\n \"-origin\",\n \ \"-original_maintainer\",\n \"-package\",\n \ \"-pk\",\n \"-pre_depends\",\n \ \"-priority\",\n \"-provides\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-recommends\",\n - \ \"-relative_path\",\n \"-replaces\",\n - \ \"-repositories\",\n \"-section\",\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"-recommends\",\n \"-relative_path\",\n + \ \"-replaces\",\n \"-section\",\n \ \"-sha256\",\n \"-source\",\n \ \"-suggests\",\n \"-tag\",\n \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n - \ \"-user_roles\",\n \"-version\",\n - \ \"-version_memberships\",\n \"_artifacts\",\n - \ \"architecture\",\n \"auto_built_package\",\n - \ \"breaks\",\n \"bugs\",\n - \ \"build_essential\",\n \"built_using\",\n - \ \"conflicts\",\n \"content_ptr\",\n - \ \"contentartifact\",\n \"custom_fields\",\n - \ \"deb_packagereleasecomponent\",\n \"depends\",\n + \ \"-version\",\n \"architecture\",\n + \ \"auto_built_package\",\n \"breaks\",\n + \ \"bugs\",\n \"build_essential\",\n + \ \"built_using\",\n \"conflicts\",\n + \ \"custom_fields\",\n \"depends\",\n \ \"description\",\n \"description_md5\",\n - \ \"download_logs\",\n \"enhances\",\n - \ \"essential\",\n \"group_roles\",\n + \ \"enhances\",\n \"essential\",\n \ \"homepage\",\n \"installed_size\",\n \ \"maintainer\",\n \"multi_arch\",\n \ \"origin\",\n \"original_maintainer\",\n \ \"package\",\n \"pk\",\n \ \"pre_depends\",\n \"priority\",\n \ \"provides\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"recommends\",\n \"relative_path\",\n - \ \"replaces\",\n \"repositories\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"recommends\",\n + \ \"relative_path\",\n \"replaces\",\n \ \"section\",\n \"sha256\",\n \ \"source\",\n \"suggests\",\n \ \"tag\",\n \"timestamp_of_interest\",\n - \ \"upstream_id\",\n \"user_roles\",\n - \ \"version\",\n \"version_memberships\"\n + \ \"upstream_id\",\n \"version\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"origin\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where origin matches value\"\n },\n {\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `package` - Package\\n* `-package` - Package (descending)\\n* + `source` - Source\\n* `-source` - Source (descending)\\n* `version` - Version\\n* + `-version` - Version (descending)\\n* `architecture` - Architecture\\n* `-architecture` + - Architecture (descending)\\n* `section` - Section\\n* `-section` - Section + (descending)\\n* `priority` - Priority\\n* `-priority` - Priority (descending)\\n* + `origin` - Origin\\n* `-origin` - Origin (descending)\\n* `tag` - Tag\\n* + `-tag` - Tag (descending)\\n* `bugs` - Bugs\\n* `-bugs` - Bugs (descending)\\n* + `essential` - Essential\\n* `-essential` - Essential (descending)\\n* `build_essential` + - Build essential\\n* `-build_essential` - Build essential (descending)\\n* + `installed_size` - Installed size\\n* `-installed_size` - Installed size (descending)\\n* + `maintainer` - Maintainer\\n* `-maintainer` - Maintainer (descending)\\n* + `original_maintainer` - Original maintainer\\n* `-original_maintainer` - Original + maintainer (descending)\\n* `description` - Description\\n* `-description` + - Description (descending)\\n* `description_md5` - Description md5\\n* `-description_md5` + - Description md5 (descending)\\n* `homepage` - Homepage\\n* `-homepage` - + Homepage (descending)\\n* `built_using` - Built using\\n* `-built_using` - + Built using (descending)\\n* `auto_built_package` - Auto built package\\n* + `-auto_built_package` - Auto built package (descending)\\n* `multi_arch` - + Multi arch\\n* `-multi_arch` - Multi arch (descending)\\n* `breaks` - Breaks\\n* + `-breaks` - Breaks (descending)\\n* `conflicts` - Conflicts\\n* `-conflicts` + - Conflicts (descending)\\n* `depends` - Depends\\n* `-depends` - Depends + (descending)\\n* `recommends` - Recommends\\n* `-recommends` - Recommends + (descending)\\n* `suggests` - Suggests\\n* `-suggests` - Suggests (descending)\\n* + `enhances` - Enhances\\n* `-enhances` - Enhances (descending)\\n* `pre_depends` + - Pre depends\\n* `-pre_depends` - Pre depends (descending)\\n* `provides` + - Provides\\n* `-provides` - Provides (descending)\\n* `replaces` - Replaces\\n* + `-replaces` - Replaces (descending)\\n* `relative_path` - Relative path\\n* + `-relative_path` - Relative path (descending)\\n* `sha256` - Sha256\\n* `-sha256` + - Sha256 (descending)\\n* `custom_fields` - Custom fields\\n* `-custom_fields` + - Custom fields (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"origin\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where origin matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"original_maintainer\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where original_maintainer + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"orphaned_for\",\n \"schema\": + {\n \"type\": \"number\"\n },\n + \ \"description\": \"Minutes Content has been orphaned + for. -1 uses ORPHAN_PROTECTION_TIME.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"original_maintainer\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where original_maintainer matches value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"package\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where package matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"priority\",\n \"schema\": {\n \"type\": + \"package__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where priority matches value\"\n },\n + \"Filter results where package contains value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"relative_path\",\n \"schema\": {\n \"type\": + \"package__icontains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where relative_path matches value\"\n },\n + \"Filter results where package contains value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"repository_version\",\n \"schema\": {\n \"type\": + \"package__iexact\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Repository Version referenced by HREF\"\n },\n {\n + \"Filter results where package matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"repository_version_added\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"package__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where package is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"package__iregex\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where package matches + regex value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"package__istartswith\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where package starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"package__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where package matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"package__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where package starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"priority\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where priority matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"relative_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where relative_path matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"release\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"\\n Must be a comma-separated string: \\\"release_href,repository_or_repository_version_href\\\"\\n + \ release_href: Filter results where Package in Release\\n repository_or_repository_version_href: + The RepositoryVersion href to filter by, or Repository\\n href (assume + latest version)\\n \"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"release_component\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"\\n Must be a comma-separated string: \\\"release_component_href,repository_or_repository_version_href\\\"\\n + \ release_component_href: Filter results where Package in ReleaseComponent\\n + \ repository_or_repository_version_href: The RepositoryVersion href to filter + by, or Repository\\n href (assume latest version)\\n \"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"repository_version_removed\",\n \"schema\": {\n \"type\": @@ -3029,19 +4428,21 @@ interactions: \"Filter results where version matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Packages\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginateddeb.BasePackageResponseList\"\n + {\n \"$ref\": \"#/components/schemas/Paginateddeb.PackageResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": @@ -3051,42 +4452,44 @@ interactions: [\n \"Content: Packages\"\n ],\n \"requestBody\": {\n \"content\": {\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.BasePackage\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.BasePackage\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{deb_package_href}\": {\n \"get\": - {\n \"operationId\": \"content_deb_packages_read\",\n \"description\": - \"A Package represents a '.deb' binary package.\\n\\nAssociated artifacts: - Exactly one '.deb' package file.\",\n \"summary\": \"Inspect - a package\",\n \"parameters\": [\n {\n \"in\": + \"#/components/schemas/deb.Package\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/deb.Package\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{deb_package_href}\": {\n \"get\": {\n \"operationId\": + \"content_deb_packages_read\",\n \"description\": \"A Package + represents a '.deb' binary package.\\n\\nAssociated artifacts: Exactly one + '.deb' package file.\",\n \"summary\": \"Inspect a package\",\n + \ \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"deb_package_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Packages\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/deb.BasePackageResponse\"\n + {\n \"$ref\": \"#/components/schemas/deb.PackageResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ }\n },\n \"/pulp/api/v3/content/deb/release_architectures/\": @@ -3100,6 +4503,10 @@ interactions: \"architecture\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where architecture matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"distribution\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where distribution matches value\"\n },\n \ {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": @@ -3112,32 +4519,48 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-_artifacts\",\n - \ \"-architecture\",\n \"-content_ptr\",\n - \ \"-contentartifact\",\n \"-download_logs\",\n - \ \"-group_roles\",\n \"-pk\",\n + \"string\",\n \"enum\": [\n \"-architecture\",\n + \ \"-distribution\",\n \"-pk\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-release\",\n - \ \"-repositories\",\n \"-timestamp_of_interest\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version_memberships\",\n \"_artifacts\",\n - \ \"architecture\",\n \"content_ptr\",\n - \ \"contentartifact\",\n \"download_logs\",\n - \ \"group_roles\",\n \"pk\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"release\",\n - \ \"repositories\",\n \"timestamp_of_interest\",\n - \ \"upstream_id\",\n \"user_roles\",\n - \ \"version_memberships\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n + \ \"architecture\",\n \"distribution\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"timestamp_of_interest\",\n + \ \"upstream_id\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `distribution` - Distribution\\n* + `-distribution` - Distribution (descending)\\n* `architecture` - Architecture\\n* + `-architecture` - Architecture (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"release\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"uuid\"\n },\n \"description\": - \"Filter results where release matches value\"\n },\n {\n + \"query\",\n \"name\": \"orphaned_for\",\n \"schema\": + {\n \"type\": \"number\"\n },\n + \ \"description\": \"Minutes Content has been orphaned + for. -1 uses ORPHAN_PROTECTION_TIME.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"repository_version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": @@ -3152,16 +4575,18 @@ interactions: \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Release_Architectures\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": @@ -3186,8 +4611,8 @@ interactions: \"#/components/schemas/deb.ReleaseArchitecture\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/deb.ReleaseArchitectureResponse\"\n @@ -3206,16 +4631,18 @@ interactions: \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Release_Architectures\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": @@ -3225,14 +4652,16 @@ interactions: \ \"/pulp/api/v3/content/deb/release_components/\": {\n \"get\": {\n \"operationId\": \"content_deb_release_components_list\",\n \ \"description\": \"A ReleaseComponent represents a single - APT repository component.\\n\\nAssociated artifacts: None; contains only metadata.\\n\\nEvery - ReleaseComponent is always associated with exactly one Release. This indicates - that the\\nrelease/distribution in question contains this component.\",\n + APT repository component.\\n\\nAssociated artifacts: None; contains only metadata.\",\n \ \"summary\": \"List release components\",\n \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": \"component\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where component matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"distribution\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where distribution matches value\"\n },\n \ {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": @@ -3245,33 +4674,55 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-_artifacts\",\n - \ \"-component\",\n \"-content_ptr\",\n - \ \"-contentartifact\",\n \"-deb_packagereleasecomponent\",\n - \ \"-download_logs\",\n \"-group_roles\",\n - \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n + \"string\",\n \"enum\": [\n \"-component\",\n + \ \"-distribution\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-release\",\n \"-repositories\",\n \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n - \ \"-user_roles\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"component\",\n - \ \"content_ptr\",\n \"contentartifact\",\n - \ \"deb_packagereleasecomponent\",\n \"download_logs\",\n - \ \"group_roles\",\n \"pk\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"release\",\n - \ \"repositories\",\n \"timestamp_of_interest\",\n - \ \"upstream_id\",\n \"user_roles\",\n - \ \"version_memberships\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + \ \"component\",\n \"distribution\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"timestamp_of_interest\",\n + \ \"upstream_id\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `distribution` - Distribution\\n* + `-distribution` - Distribution (descending)\\n* `component` - Component\\n* + `-component` - Component (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"release\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"uuid\"\n },\n \"description\": - \"Filter results where release matches value\"\n },\n {\n + \"query\",\n \"name\": \"orphaned_for\",\n \"schema\": + {\n \"type\": \"number\"\n },\n + \ \"description\": \"Minutes Content has been orphaned + for. -1 uses ORPHAN_PROTECTION_TIME.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"package\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"\\n Must be a comma-separated string: \\\"package_href,repository_or_repository_version_href\\\"\\n + \ package_href: Filter results where ReleaseComponent contains Package\\n + \ repository_or_repository_version_href: The RepositoryVersion href to filter + by, or Repository\\n href (assume latest version)\\n \"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"repository_version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": @@ -3286,16 +4737,18 @@ interactions: \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Release_Components\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": @@ -3304,9 +4757,7 @@ interactions: \"\"\n }\n }\n },\n \"post\": {\n \"operationId\": \"content_deb_release_components_create\",\n \ \"description\": \"A ReleaseComponent represents a single - APT repository component.\\n\\nAssociated artifacts: None; contains only metadata.\\n\\nEvery - ReleaseComponent is always associated with exactly one Release. This indicates - that the\\nrelease/distribution in question contains this component.\",\n + APT repository component.\\n\\nAssociated artifacts: None; contains only metadata.\",\n \ \"summary\": \"Create a release component\",\n \"tags\": [\n \"Content: Release_Components\"\n ],\n \ \"requestBody\": {\n \"content\": {\n \"application/json\": @@ -3320,8 +4771,8 @@ interactions: \"#/components/schemas/deb.ReleaseComponent\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/deb.ReleaseComponentResponse\"\n @@ -3330,33 +4781,34 @@ interactions: \ }\n },\n \"{deb_release_component_href}\": {\n \"get\": {\n \"operationId\": \"content_deb_release_components_read\",\n \ \"description\": \"A ReleaseComponent represents a single - APT repository component.\\n\\nAssociated artifacts: None; contains only metadata.\\n\\nEvery - ReleaseComponent is always associated with exactly one Release. This indicates - that the\\nrelease/distribution in question contains this component.\",\n + APT repository component.\\n\\nAssociated artifacts: None; contains only metadata.\",\n \ \"summary\": \"Inspect a release component\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"deb_release_component_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Release_Components\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/deb.ReleaseComponentResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/content/deb/release_files/\": - {\n \"get\": {\n \"operationId\": \"content_deb_release_files_list\",\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Release_Components\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/deb.ReleaseComponentResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/content/deb/release_files/\": {\n \"get\": + {\n \"operationId\": \"content_deb_release_files_list\",\n \ \"description\": \"A ReleaseFile represents the Release file(s) from a single APT distribution.\\n\\nAssociated artifacts: At least one of 'Release' and 'InRelease' file. If the 'Release' file is\\npresent, then there @@ -3381,46 +4833,70 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-_artifacts\",\n - \ \"-architectures\",\n \"-artifact_set_sha256\",\n - \ \"-codename\",\n \"-components\",\n - \ \"-content_ptr\",\n \"-contentartifact\",\n - \ \"-deb_installerfileindex\",\n \"-deb_packageindex\",\n - \ \"-distribution\",\n \"-download_logs\",\n - \ \"-group_roles\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \"string\",\n \"enum\": [\n \"-architectures\",\n + \ \"-artifact_set_sha256\",\n \"-codename\",\n + \ \"-components\",\n \"-distribution\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n \ \"-pulp_type\",\n \"-relative_path\",\n - \ \"-repositories\",\n \"-sha256\",\n - \ \"-suite\",\n \"-timestamp_of_interest\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version_memberships\",\n \"_artifacts\",\n + \ \"-sha256\",\n \"-suite\",\n + \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n \ \"architectures\",\n \"artifact_set_sha256\",\n \ \"codename\",\n \"components\",\n - \ \"content_ptr\",\n \"contentartifact\",\n - \ \"deb_installerfileindex\",\n \"deb_packageindex\",\n - \ \"distribution\",\n \"download_logs\",\n - \ \"group_roles\",\n \"pk\",\n + \ \"distribution\",\n \"pk\",\n \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"relative_path\",\n - \ \"repositories\",\n \"sha256\",\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"relative_path\",\n \"sha256\",\n \ \"suite\",\n \"timestamp_of_interest\",\n - \ \"upstream_id\",\n \"user_roles\",\n - \ \"version_memberships\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"relative_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where relative_path - matches value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \ \"upstream_id\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `codename` - Codename\\n* `-codename` + - Codename (descending)\\n* `suite` - Suite\\n* `-suite` - Suite (descending)\\n* + `distribution` - Distribution\\n* `-distribution` - Distribution (descending)\\n* + `components` - Components\\n* `-components` - Components (descending)\\n* + `architectures` - Architectures\\n* `-architectures` - Architectures (descending)\\n* + `relative_path` - Relative path\\n* `-relative_path` - Relative path (descending)\\n* + `sha256` - Sha256\\n* `-sha256` - Sha256 (descending)\\n* `artifact_set_sha256` + - Artifact set sha256\\n* `-artifact_set_sha256` - Artifact set sha256 (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"relative_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where relative_path matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": @@ -3437,16 +4913,18 @@ interactions: \"Filter results where suite matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Release_Files\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Paginateddeb.ReleaseFileResponseList\"\n @@ -3474,8 +4952,8 @@ interactions: \"#/components/schemas/deb.ReleaseFile\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/deb.ReleaseFileResponse\"\n @@ -3496,32 +4974,36 @@ interactions: \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Release_Files\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.ReleaseFileResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/content/deb/releases/\": {\n \"get\": {\n - \ \"operationId\": \"content_deb_releases_list\",\n \"description\": - \"A Release represents a single APT release/distribution.\\n\\nAssociated - artifacts: None; contains only metadata.\\n\\nNote that in the context of - the \\\"Release content\\\", the terms \\\"distribution\\\" and \\\"release\\\"\\nare - synonyms. An \\\"APT repository release/distribution\\\" is associated with - a single 'Release'\\nfile below the 'dists/' folder. The \\\"distribution\\\" - refers to the path between 'dists/' and the\\n'Release' file. The \\\"distribution\\\" - could be considered the name of the \\\"release\\\". It is often\\n(but not - always) equal to the \\\"codename\\\" or \\\"suite\\\".\",\n \"summary\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Release_Files\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/deb.ReleaseFileResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/content/deb/releases/\": + {\n \"get\": {\n \"operationId\": \"content_deb_releases_list\",\n + \ \"description\": \"The Release contains release file fields, + that are not relevant to the APT repo structure.\\n\\nAssociated artifacts: + None; contains only metadata.\\n\\nBy non-structure relevant release file + fields, we mean anything other than the Components and\\nArchitectures fields. + These are handled by their own models and are not part of this model.\\n\\nNote + that the distribution field is part of this model, but is not added to any + published\\nrelease files. The \\\"distribution\\\" is defined as the path + between 'dists/' and some 'Release'\\nfile. As such, it encodes the path to + the relevant release file within the APT repository.\\nIt is often (but not + always) equal to the \\\"codename\\\" or the \\\"suite\\\".\",\n \"summary\": \"List releases\",\n \"parameters\": [\n {\n \ \"in\": \"query\",\n \"name\": \"codename\",\n \"schema\": {\n \"type\": @@ -3531,7 +5013,11 @@ interactions: \"distribution\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where distribution matches value\"\n },\n - \ {\n \"name\": \"limit\",\n \"required\": + \ {\n \"in\": \"query\",\n \"name\": + \"label\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where label matches value\"\n },\n {\n + \ \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n @@ -3543,37 +5029,74 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-_artifacts\",\n - \ \"-codename\",\n \"-content_ptr\",\n - \ \"-contentartifact\",\n \"-deb_releasearchitecture\",\n - \ \"-deb_releasecomponent\",\n \"-distribution\",\n - \ \"-download_logs\",\n \"-group_roles\",\n + \"string\",\n \"enum\": [\n \"-codename\",\n + \ \"-description\",\n \"-distribution\",\n + \ \"-label\",\n \"-origin\",\n \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-repositories\",\n \"-suite\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-suite\",\n \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n - \ \"-user_roles\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"codename\",\n - \ \"content_ptr\",\n \"contentartifact\",\n - \ \"deb_releasearchitecture\",\n \"deb_releasecomponent\",\n - \ \"distribution\",\n \"download_logs\",\n - \ \"group_roles\",\n \"pk\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"repositories\",\n - \ \"suite\",\n \"timestamp_of_interest\",\n - \ \"upstream_id\",\n \"user_roles\",\n - \ \"version_memberships\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": + \ \"-version\",\n \"codename\",\n + \ \"description\",\n \"distribution\",\n + \ \"label\",\n \"origin\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"suite\",\n + \ \"timestamp_of_interest\",\n \"upstream_id\",\n + \ \"version\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `codename` - Codename\\n* `-codename` + - Codename (descending)\\n* `suite` - Suite\\n* `-suite` - Suite (descending)\\n* + `distribution` - Distribution\\n* `-distribution` - Distribution (descending)\\n* + `version` - Version\\n* `-version` - Version (descending)\\n* `origin` - Origin\\n* + `-origin` - Origin (descending)\\n* `label` - Label\\n* `-label` - Label (descending)\\n* + `description` - Description\\n* `-description` - Description (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"origin\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where origin matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"package\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \ \"description\": \"\\n Must be a comma-separated + string: \\\"package_href,repository_or_repository_version_href\\\"\\n package_href: + Filter results where Release contains Package\\n repository_or_repository_version_href: + The RepositoryVersion href to filter by, or Repository\\n href (assume + latest version)\\n \"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": @@ -3585,33 +5108,40 @@ interactions: \"string\"\n },\n \"description\": \"Filter results where suite matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \"version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": + \"Filter results where version matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Releases\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Paginateddeb.ReleaseResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"content_deb_releases_create\",\n \"description\": \"A Release - represents a single APT release/distribution.\\n\\nAssociated artifacts: None; - contains only metadata.\\n\\nNote that in the context of the \\\"Release content\\\", - the terms \\\"distribution\\\" and \\\"release\\\"\\nare synonyms. An \\\"APT - repository release/distribution\\\" is associated with a single 'Release'\\nfile - below the 'dists/' folder. The \\\"distribution\\\" refers to the path between - 'dists/' and the\\n'Release' file. The \\\"distribution\\\" could be considered - the name of the \\\"release\\\". It is often\\n(but not always) equal to the - \\\"codename\\\" or \\\"suite\\\".\",\n \"summary\": \"Create - a release\",\n \"tags\": [\n \"Content: + \"content_deb_releases_create\",\n \"description\": \"The Release + contains release file fields, that are not relevant to the APT repo structure.\\n\\nAssociated + artifacts: None; contains only metadata.\\n\\nBy non-structure relevant release + file fields, we mean anything other than the Components and\\nArchitectures + fields. These are handled by their own models and are not part of this model.\\n\\nNote + that the distribution field is part of this model, but is not added to any + published\\nrelease files. The \\\"distribution\\\" is defined as the path + between 'dists/' and some 'Release'\\nfile. As such, it encodes the path to + the relevant release file within the APT repository.\\nIt is often (but not + always) equal to the \\\"codename\\\" or the \\\"suite\\\".\",\n \"summary\": + \"Create a release\",\n \"tags\": [\n \"Content: Releases\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/deb.Release\"\n @@ -3622,8 +5152,8 @@ interactions: {\n \"$ref\": \"#/components/schemas/deb.Release\"\n \ }\n }\n },\n \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": @@ -3631,42 +5161,56 @@ interactions: \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n \ \"{deb_release_href}\": {\n \"get\": {\n \"operationId\": - \"content_deb_releases_read\",\n \"description\": \"A Release - represents a single APT release/distribution.\\n\\nAssociated artifacts: None; - contains only metadata.\\n\\nNote that in the context of the \\\"Release content\\\", - the terms \\\"distribution\\\" and \\\"release\\\"\\nare synonyms. An \\\"APT - repository release/distribution\\\" is associated with a single 'Release'\\nfile - below the 'dists/' folder. The \\\"distribution\\\" refers to the path between - 'dists/' and the\\n'Release' file. The \\\"distribution\\\" could be considered - the name of the \\\"release\\\". It is often\\n(but not always) equal to the - \\\"codename\\\" or \\\"suite\\\".\",\n \"summary\": \"Inspect - a release\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"deb_release_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"content_deb_releases_read\",\n \"description\": \"The Release + contains release file fields, that are not relevant to the APT repo structure.\\n\\nAssociated + artifacts: None; contains only metadata.\\n\\nBy non-structure relevant release + file fields, we mean anything other than the Components and\\nArchitectures + fields. These are handled by their own models and are not part of this model.\\n\\nNote + that the distribution field is part of this model, but is not added to any + published\\nrelease files. The \\\"distribution\\\" is defined as the path + between 'dists/' and some 'Release'\\nfile. As such, it encodes the path to + the relevant release file within the APT repository.\\nIt is often (but not + always) equal to the \\\"codename\\\" or the \\\"suite\\\".\",\n \"summary\": + \"Inspect a release\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"deb_release_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: Releases\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/deb.ReleaseResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/content/file/files/\": {\n - \ \"get\": {\n \"operationId\": \"content_file_files_list\",\n - \ \"description\": \"\\nFileContent represents a single file - and its metadata, which can be added and removed from\\nrepositories.\",\n - \ \"summary\": \"List file contents\",\n \"parameters\": - [\n {\n \"name\": \"limit\",\n \"required\": + \ }\n },\n \"/pulp/api/v3/content/deb/source_indices/\": + {\n \"get\": {\n \"operationId\": \"content_deb_source_indices_list\",\n + \ \"description\": \"A SourceIndex represents the source indices + of a single component.\\n\\nAssociated artifacts: Exactly one 'Sources' file. + May optionally include one or more of\\n'Sources.gz', 'Sources.xz', 'Release'. + If included, the 'Release' file is a legacy\\nper-component-and-architecture + Release file (with architecture always being 'source').\\n\\nNote: The verbatim + publisher will republish all associated artifacts, while the APT publisher\\n(both + simple and structured mode) will generate any 'Sources' files it needs when + creating the\\npublication. It does not make use of SourceIndex content.\",\n + \ \"summary\": \"List SourceIndices\",\n \"parameters\": + [\n {\n \"in\": \"query\",\n \"name\": + \"component\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where component matches value\"\n },\n + \ {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n @@ -3678,162 +5222,55 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-_artifacts\",\n - \ \"-content_ptr\",\n \"-contentartifact\",\n - \ \"-digest\",\n \"-download_logs\",\n - \ \"-group_roles\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \"string\",\n \"enum\": [\n \"-component\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n \ \"-pulp_type\",\n \"-relative_path\",\n - \ \"-repositories\",\n \"-timestamp_of_interest\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version_memberships\",\n \"_artifacts\",\n - \ \"content_ptr\",\n \"contentartifact\",\n - \ \"digest\",\n \"download_logs\",\n - \ \"group_roles\",\n \"pk\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n + \ \"-sha256\",\n \"-timestamp_of_interest\",\n + \ \"-upstream_id\",\n \"component\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n \ \"pulp_type\",\n \"relative_path\",\n - \ \"repositories\",\n \"timestamp_of_interest\",\n - \ \"upstream_id\",\n \"user_roles\",\n - \ \"version_memberships\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"relative_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where relative_path - matches value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Repository Version referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"repository_version_removed\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Repository Version referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"sha256\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n + \ \"sha256\",\n \"timestamp_of_interest\",\n + \ \"upstream_id\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `component` - Component\\n* `-component` + - Component (descending)\\n* `relative_path` - Relative path\\n* `-relative_path` + - Relative path (descending)\\n* `sha256` - Sha256\\n* `-sha256` - Sha256 + (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Content: - Files\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedfile.FileContentResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"post\": {\n \"operationId\": - \"content_file_files_create\",\n \"description\": \"Trigger - an asynchronous task to create content,optionally create new repository version.\",\n - \ \"summary\": \"Create a file content\",\n \"tags\": - [\n \"Content: Files\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileContent\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileContent\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{file_file_content_href}\": {\n \"get\": - {\n \"operationId\": \"content_file_files_read\",\n \"description\": - \"\\nFileContent represents a single file and its metadata, which can be added - and removed from\\nrepositories.\",\n \"summary\": \"Inspect - a file content\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"file_file_content_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Files\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileContentResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/content/maven/artifact/\": {\n \"get\": - {\n \"operationId\": \"content_maven_artifact_list\",\n \"description\": - \"A ViewSet for MavenArtifact.\",\n \"summary\": \"List maven - artifacts\",\n \"parameters\": [\n {\n \"in\": - \"query\",\n \"name\": \"artifact_id\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where artifact_id - matches value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"filename\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where filename matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"group_id\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where group_id matches - value\"\n },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-_artifacts\",\n \"-artifact_id\",\n - \ \"-content_ptr\",\n \"-contentartifact\",\n - \ \"-download_logs\",\n \"-filename\",\n - \ \"-group_id\",\n \"-group_roles\",\n - \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-repositories\",\n \"-timestamp_of_interest\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"artifact_id\",\n - \ \"content_ptr\",\n \"contentartifact\",\n - \ \"download_logs\",\n \"filename\",\n - \ \"group_id\",\n \"group_roles\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"repositories\",\n \"timestamp_of_interest\",\n - \ \"upstream_id\",\n \"user_roles\",\n - \ \"version\",\n \"version_memberships\"\n - \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"relative_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where relative_path matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"repository_version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n @@ -3846,208 +5283,279 @@ interactions: \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"version\",\n \"schema\": {\n \"type\": + \"sha256\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where version matches value\"\n },\n {\n + \"Filter results where sha256 matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: - Artifact\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + Source_Indices\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedmaven.MavenArtifactResponseList\"\n + {\n \"$ref\": \"#/components/schemas/Paginateddeb.SourceIndexResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"content_maven_artifact_create\",\n \"description\": \"A ViewSet - for MavenArtifact.\",\n \"summary\": \"Create a maven artifact\",\n - \ \"tags\": [\n \"Content: Artifact\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": + \"content_deb_source_indices_create\",\n \"description\": \"A + SourceIndex represents the source indices of a single component.\\n\\nAssociated + artifacts: Exactly one 'Sources' file. May optionally include one or more + of\\n'Sources.gz', 'Sources.xz', 'Release'. If included, the 'Release' file + is a legacy\\nper-component-and-architecture Release file (with architecture + always being 'source').\\n\\nNote: The verbatim publisher will republish all + associated artifacts, while the APT publisher\\n(both simple and structured + mode) will generate any 'Sources' files it needs when creating the\\npublication. + It does not make use of SourceIndex content.\",\n \"summary\": + \"Create a source index\",\n \"tags\": [\n \"Content: + Source_Indices\"\n ],\n \"requestBody\": {\n + \ \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/maven.MavenArtifact\"\n }\n + \"#/components/schemas/deb.SourceIndex\"\n }\n \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/maven.MavenArtifact\"\n }\n + \"#/components/schemas/deb.SourceIndex\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/maven.MavenArtifact\"\n }\n + \"#/components/schemas/deb.SourceIndex\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/maven.MavenArtifactResponse\"\n + {\n \"$ref\": \"#/components/schemas/deb.SourceIndexResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{maven_maven_artifact_href}\": {\n \"get\": - {\n \"operationId\": \"content_maven_artifact_read\",\n \"description\": - \"A ViewSet for MavenArtifact.\",\n \"summary\": \"Inspect - a maven artifact\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"maven_maven_artifact_href\",\n \"schema\": {\n \"type\": + \ }\n },\n \"{deb_source_index_href}\": {\n \"get\": + {\n \"operationId\": \"content_deb_source_indices_read\",\n + \ \"description\": \"A SourceIndex represents the source indices + of a single component.\\n\\nAssociated artifacts: Exactly one 'Sources' file. + May optionally include one or more of\\n'Sources.gz', 'Sources.xz', 'Release'. + If included, the 'Release' file is a legacy\\nper-component-and-architecture + Release file (with architecture always being 'source').\\n\\nNote: The verbatim + publisher will republish all associated artifacts, while the APT publisher\\n(both + simple and structured mode) will generate any 'Sources' files it needs when + creating the\\npublication. It does not make use of SourceIndex content.\",\n + \ \"summary\": \"Inspect a source index\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"deb_source_index_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Artifact\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/maven.MavenArtifactResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/content/python/packages/\": {\n \"get\": - {\n \"operationId\": \"content_python_packages_list\",\n \"description\": - \"\\nPythonPackageContent represents each individually installable Python - package. In the Python\\necosystem, this is called a Python Distribution, - sometimes (ambiguously) refered to as a\\npackage. In Pulp Python, we refer - to it as PythonPackageContent. Each\\nPythonPackageContent corresponds to - a single filename, for example\\n`pulpcore-3.0.0rc1-py3-none-any.whl` or `pulpcore-3.0.0rc1.tar.gz`.\",\n - \ \"summary\": \"List python package contents\",\n \"parameters\": - [\n {\n \"in\": \"query\",\n \"name\": - \"author\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where author matches value\"\n },\n {\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"author__in\",\n \"schema\": {\n \"type\": + \"exclude_fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": - \"Filter results where author is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"filename\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where filename matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"filename__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where filename contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"filename__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where filename is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Source_Indices\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/deb.SourceIndexResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/content/deb/source_packages/\": + {\n \"get\": {\n \"operationId\": \"content_deb_source_packages_list\",\n + \ \"description\": \"A Debian Source Package file represents + a '.dsc' file along with its associated\\nartifacts such as orig.tar.gz, debian.tar.gz...\\n\\nAssociated + artifacts: Exactly one '.dsc' file.\",\n \"summary\": \"List + source packages\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"architecture\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where architecture matches value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"keywords__contains\",\n \"schema\": {\n \"type\": + \"binary\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where keywords contains value\"\n },\n + \"Filter results where binary matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"build_conflicts\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where build_conflicts matches value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"keywords__in\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where keywords is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n + \"build_conflicts_arch\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where build_conflicts_arch matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"build_conflicts_indep\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where build_conflicts_indep matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"build_depends\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where build_depends matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"build_depends_arch\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where build_depends_arch matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"build_depends_indep\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where build_depends_indep matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"dgit\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where dgit matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": + \"format\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name matches value\"\n },\n {\n + \"Filter results where format matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"name__in\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where name is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": + \"homepage\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where homepage matches value\"\n },\n + \ {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": + \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-_artifacts\",\n \"-author\",\n - \ \"-author_email\",\n \"-classifiers\",\n - \ \"-content_ptr\",\n \"-contentartifact\",\n - \ \"-description\",\n \"-description_content_type\",\n - \ \"-download_logs\",\n \"-download_url\",\n - \ \"-filename\",\n \"-group_roles\",\n - \ \"-home_page\",\n \"-keywords\",\n - \ \"-license\",\n \"-maintainer\",\n - \ \"-maintainer_email\",\n \"-metadata_version\",\n - \ \"-name\",\n \"-obsoletes_dist\",\n - \ \"-packagetype\",\n \"-pk\",\n - \ \"-platform\",\n \"-project_url\",\n - \ \"-project_urls\",\n \"-provides_dist\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-python_version\",\n - \ \"-repositories\",\n \"-requires_dist\",\n - \ \"-requires_external\",\n \"-requires_python\",\n - \ \"-sha256\",\n \"-summary\",\n - \ \"-supported_platform\",\n \"-timestamp_of_interest\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"author\",\n - \ \"author_email\",\n \"classifiers\",\n - \ \"content_ptr\",\n \"contentartifact\",\n - \ \"description\",\n \"description_content_type\",\n - \ \"download_logs\",\n \"download_url\",\n - \ \"filename\",\n \"group_roles\",\n - \ \"home_page\",\n \"keywords\",\n - \ \"license\",\n \"maintainer\",\n - \ \"maintainer_email\",\n \"metadata_version\",\n - \ \"name\",\n \"obsoletes_dist\",\n - \ \"packagetype\",\n \"pk\",\n - \ \"platform\",\n \"project_url\",\n - \ \"project_urls\",\n \"provides_dist\",\n + \"query\",\n \"name\": \"maintainer\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where maintainer + matches value\"\n },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"ordering\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-architecture\",\n + \ \"-binary\",\n \"-build_conflicts\",\n + \ \"-build_conflicts_arch\",\n \"-build_conflicts_indep\",\n + \ \"-build_depends\",\n \"-build_depends_arch\",\n + \ \"-build_depends_indep\",\n \"-dgit\",\n + \ \"-format\",\n \"-homepage\",\n + \ \"-maintainer\",\n \"-package_list\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-relative_path\",\n + \ \"-source\",\n \"-standards_version\",\n + \ \"-testsuite\",\n \"-timestamp_of_interest\",\n + \ \"-uploaders\",\n \"-upstream_id\",\n + \ \"-vcs_arch\",\n \"-vcs_browser\",\n + \ \"-vcs_bzr\",\n \"-vcs_cvs\",\n + \ \"-vcs_darcs\",\n \"-vcs_git\",\n + \ \"-vcs_hg\",\n \"-vcs_mtn\",\n + \ \"-vcs_snv\",\n \"-version\",\n + \ \"architecture\",\n \"binary\",\n + \ \"build_conflicts\",\n \"build_conflicts_arch\",\n + \ \"build_conflicts_indep\",\n \"build_depends\",\n + \ \"build_depends_arch\",\n \"build_depends_indep\",\n + \ \"dgit\",\n \"format\",\n + \ \"homepage\",\n \"maintainer\",\n + \ \"package_list\",\n \"pk\",\n \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_version\",\n - \ \"repositories\",\n \"requires_dist\",\n - \ \"requires_external\",\n \"requires_python\",\n - \ \"sha256\",\n \"summary\",\n - \ \"supported_platform\",\n \"timestamp_of_interest\",\n - \ \"upstream_id\",\n \"user_roles\",\n - \ \"version\",\n \"version_memberships\"\n - \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"relative_path\",\n \"source\",\n + \ \"standards_version\",\n \"testsuite\",\n + \ \"timestamp_of_interest\",\n \"uploaders\",\n + \ \"upstream_id\",\n \"vcs_arch\",\n + \ \"vcs_browser\",\n \"vcs_bzr\",\n + \ \"vcs_cvs\",\n \"vcs_darcs\",\n + \ \"vcs_git\",\n \"vcs_hg\",\n + \ \"vcs_mtn\",\n \"vcs_snv\",\n + \ \"version\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `relative_path` - Relative path\\n* + `-relative_path` - Relative path (descending)\\n* `format` - Format\\n* `-format` + - Format (descending)\\n* `source` - Source\\n* `-source` - Source (descending)\\n* + `binary` - Binary\\n* `-binary` - Binary (descending)\\n* `architecture` - + Architecture\\n* `-architecture` - Architecture (descending)\\n* `version` + - Version\\n* `-version` - Version (descending)\\n* `maintainer` - Maintainer\\n* + `-maintainer` - Maintainer (descending)\\n* `uploaders` - Uploaders\\n* `-uploaders` + - Uploaders (descending)\\n* `homepage` - Homepage\\n* `-homepage` - Homepage + (descending)\\n* `vcs_browser` - Vcs browser\\n* `-vcs_browser` - Vcs browser + (descending)\\n* `vcs_arch` - Vcs arch\\n* `-vcs_arch` - Vcs arch (descending)\\n* + `vcs_bzr` - Vcs bzr\\n* `-vcs_bzr` - Vcs bzr (descending)\\n* `vcs_cvs` - + Vcs cvs\\n* `-vcs_cvs` - Vcs cvs (descending)\\n* `vcs_darcs` - Vcs darcs\\n* + `-vcs_darcs` - Vcs darcs (descending)\\n* `vcs_git` - Vcs git\\n* `-vcs_git` + - Vcs git (descending)\\n* `vcs_hg` - Vcs hg\\n* `-vcs_hg` - Vcs hg (descending)\\n* + `vcs_mtn` - Vcs mtn\\n* `-vcs_mtn` - Vcs mtn (descending)\\n* `vcs_snv` - + Vcs snv\\n* `-vcs_snv` - Vcs snv (descending)\\n* `testsuite` - Testsuite\\n* + `-testsuite` - Testsuite (descending)\\n* `dgit` - Dgit\\n* `-dgit` - Dgit + (descending)\\n* `standards_version` - Standards version\\n* `-standards_version` + - Standards version (descending)\\n* `build_depends` - Build depends\\n* `-build_depends` + - Build depends (descending)\\n* `build_depends_indep` - Build depends indep\\n* + `-build_depends_indep` - Build depends indep (descending)\\n* `build_depends_arch` + - Build depends arch\\n* `-build_depends_arch` - Build depends arch (descending)\\n* + `build_conflicts` - Build conflicts\\n* `-build_conflicts` - Build conflicts + (descending)\\n* `build_conflicts_indep` - Build conflicts indep\\n* `-build_conflicts_indep` + - Build conflicts indep (descending)\\n* `build_conflicts_arch` - Build conflicts + arch\\n* `-build_conflicts_arch` - Build conflicts arch (descending)\\n* `package_list` + - Package list\\n* `-package_list` - Package list (descending)\\n* `pk` - + Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n + \ \"style\": \"form\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"package_list\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where package_list + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"packagetype\",\n \"schema\": {\n \"type\": - \"string\",\n \"enum\": [\n \"bdist_dmg\",\n - \ \"bdist_dumb\",\n \"bdist_egg\",\n - \ \"bdist_msi\",\n \"bdist_rpm\",\n - \ \"bdist_wheel\",\n \"bdist_wininst\",\n - \ \"sdist\"\n ]\n - \ },\n \"description\": \"Filter - results where packagetype matches value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"packagetype__in\",\n \"schema\": {\n \"type\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where packagetype is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"relative_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where relative_path matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"release\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"\\n Must be a comma-separated string: \\\"release_href,repository_or_repository_version_href\\\"\\n + \ release_href: Filter results where SourcePackage in Release\\n repository_or_repository_version_href: + The RepositoryVersion href to filter by, or Repository\\n href (assume + latest version)\\n \"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"release_component\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"\\n Must be a comma-separated string: \\\"release_component_href,repository_or_repository_version_href\\\"\\n + \ release_component_href: Filter results where SourcePackage in ReleaseComponent\\n + \ repository_or_repository_version_href: The RepositoryVersion href to filter + by, or Repository\\n href (assume latest version)\\n \"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": @@ -4055,114 +5563,139 @@ interactions: \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"requires_python\",\n \"schema\": {\n \"type\": + \"source\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where requires_python matches value\"\n },\n + \"Filter results where source matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"standards_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where standards_version matches value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"requires_python__contains\",\n \"schema\": {\n \"type\": + \"testsuite\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where requires_python contains value\"\n },\n + \"Filter results where testsuite matches value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"requires_python__in\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where requires_python is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"sha256\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where sha256 matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"sha256__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where sha256 is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n + \"uploaders\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where uploaders matches value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \"vcs_arch\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where vcs_arch matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"vcs_browser\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where vcs_browser matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"vcs_bzr\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where vcs_bzr matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"vcs_cvs\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where vcs_cvs matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"vcs_darcs\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where vcs_darcs matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"vcs_git\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": + \"Filter results where vcs_git matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"vcs_hg\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where vcs_hg matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"vcs_mtn\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where vcs_mtn matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"vcs_snv\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where vcs_snv matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where version matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: - Packages\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + Source_Packages\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedpython.PythonPackageContentResponseList\"\n + {\n \"$ref\": \"#/components/schemas/Paginateddeb.SourcePackageResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"content_python_packages_create\",\n \"description\": \"Trigger - an asynchronous task to create content,optionally create new repository version.\",\n - \ \"summary\": \"Create a python package content\",\n \"tags\": - [\n \"Content: Packages\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"multipart/form-data\": + \"content_deb_source_packages_create\",\n \"description\": + \"Trigger an asynchronous task to create content,optionally create new repository + version.\",\n \"summary\": \"Create a source package\",\n \"tags\": + [\n \"Content: Source_Packages\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonPackageContent\"\n }\n + \"#/components/schemas/deb.SourcePackage\"\n }\n \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonPackageContent\"\n }\n + \"#/components/schemas/deb.SourcePackage\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/deb.SourcePackage\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{python_python_package_content_href}\": - {\n \"get\": {\n \"operationId\": \"content_python_packages_read\",\n - \ \"description\": \"\\nPythonPackageContent represents each - individually installable Python package. In the Python\\necosystem, this is - called a Python Distribution, sometimes (ambiguously) refered to as a\\npackage. - In Pulp Python, we refer to it as PythonPackageContent. Each\\nPythonPackageContent - corresponds to a single filename, for example\\n`pulpcore-3.0.0rc1-py3-none-any.whl` - or `pulpcore-3.0.0rc1.tar.gz`.\",\n \"summary\": \"Inspect - a python package content\",\n \"parameters\": [\n {\n + \ }\n },\n \"{deb_source_package_href}\": {\n \"get\": + {\n \"operationId\": \"content_deb_source_packages_read\",\n + \ \"description\": \"A Debian Source Package file represents + a '.dsc' file along with its associated\\nartifacts such as orig.tar.gz, debian.tar.gz...\\n\\nAssociated + artifacts: Exactly one '.dsc' file.\",\n \"summary\": \"Inspect + a source package\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"python_python_package_content_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"deb_source_package_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: - Packages\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + Source_Packages\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/python.PythonPackageContentResponse\"\n + {\n \"$ref\": \"#/components/schemas/deb.SourcePackageResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/content/rpm/advisories/\": - {\n \"get\": {\n \"operationId\": \"content_rpm_advisories_list\",\n - \ \"description\": \"A ViewSet for UpdateRecord.\\n\\nDefine - endpoint name which will appear in the API endpoint for this content type.\\nFor - example::\\n http://pulp.example.com/pulp/api/v3/content/rpm/advisories/\\n\\nAlso - specify queryset and serializer for UpdateRecord.\",\n \"summary\": - \"List update records\",\n \"parameters\": [\n {\n - \ \"in\": \"query\",\n \"name\": - \"id\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where id matches value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"id__in\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where id is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n + \ }\n },\n \"/pulp/api/v3/content/deb/source_release_components/\": + {\n \"get\": {\n \"operationId\": \"content_deb_source_release_components_list\",\n + \ \"description\": \"A SourcePackageReleaseComponent associates + a SourcePackage with a ReleaseComponent.\\n\\nAssociated artifacts: None; + contains only metadata.\\n\\nThis simply stores the information on which source + packages are part of which components.\",\n \"summary\": \"List + source package release components\",\n \"parameters\": [\n \ {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": @@ -4175,45 +5708,49 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-_artifacts\",\n - \ \"-collections\",\n \"-content_ptr\",\n - \ \"-contentartifact\",\n \"-description\",\n - \ \"-digest\",\n \"-download_logs\",\n - \ \"-fromstr\",\n \"-group_roles\",\n - \ \"-id\",\n \"-issued_date\",\n - \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n + \"string\",\n \"enum\": [\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-pushcount\",\n \"-reboot_suggested\",\n - \ \"-references\",\n \"-release\",\n - \ \"-repositories\",\n \"-rights\",\n - \ \"-severity\",\n \"-solution\",\n - \ \"-status\",\n \"-summary\",\n - \ \"-timestamp_of_interest\",\n \"-title\",\n - \ \"-type\",\n \"-updated_date\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"collections\",\n - \ \"content_ptr\",\n \"contentartifact\",\n - \ \"description\",\n \"digest\",\n - \ \"download_logs\",\n \"fromstr\",\n - \ \"group_roles\",\n \"id\",\n - \ \"issued_date\",\n \"pk\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"pushcount\",\n - \ \"reboot_suggested\",\n \"references\",\n - \ \"release\",\n \"repositories\",\n - \ \"rights\",\n \"severity\",\n - \ \"solution\",\n \"status\",\n - \ \"summary\",\n \"timestamp_of_interest\",\n - \ \"title\",\n \"type\",\n - \ \"updated_date\",\n \"upstream_id\",\n - \ \"user_roles\",\n \"version\",\n - \ \"version_memberships\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"timestamp_of_interest\",\n + \ \"upstream_id\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"orphaned_for\",\n \"schema\": + {\n \"type\": \"number\"\n },\n + \ \"description\": \"Minutes Content has been orphaned + for. -1 uses ORPHAN_PROTECTION_TIME.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"release_component\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Filter results where release_component + matches value\"\n },\n {\n \"in\": \"query\",\n \"name\": \"repository_version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"description\": \"Repository Version referenced by @@ -4227,208 +5764,96 @@ interactions: \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"severity\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where severity matches value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"severity__in\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where severity is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"severity__ne\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where severity not - equal to value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"status\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where status matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"status__in\",\n \"schema\": + \"source_package\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Filter results where source_package + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where status is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"status__ne\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where status not equal to value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"type\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where type matches value\"\n },\n {\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"type__in\",\n \"schema\": {\n \"type\": + \"exclude_fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": - \"Filter results where type is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"type__ne\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where type not equal to value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: - Advisories\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedrpm.UpdateRecordResponseList\"\n + Source_Release_Components\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Paginateddeb.SourcePackageReleaseComponentResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"content_rpm_advisories_create\",\n \"description\": \"Trigger - an asynchronous task to create content,optionally create new repository version.\",\n - \ \"summary\": \"Create an update record\",\n \"tags\": - [\n \"Content: Advisories\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"multipart/form-data\": + \"content_deb_source_release_components_create\",\n \"description\": + \"A SourcePackageReleaseComponent associates a SourcePackage with a ReleaseComponent.\\n\\nAssociated + artifacts: None; contains only metadata.\\n\\nThis simply stores the information + on which source packages are part of which components.\",\n \"summary\": + \"Create a source package release component\",\n \"tags\": + [\n \"Content: Source_Release_Components\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.UpdateRecord\"\n }\n + \"#/components/schemas/deb.SourcePackageReleaseComponent\"\n }\n \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.UpdateRecord\"\n }\n + \"#/components/schemas/deb.SourcePackageReleaseComponent\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/deb.SourcePackageReleaseComponent\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/deb.SourcePackageReleaseComponentResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{rpm_update_record_href}\": {\n \"get\": - {\n \"operationId\": \"content_rpm_advisories_read\",\n \"description\": - \"A ViewSet for UpdateRecord.\\n\\nDefine endpoint name which will appear - in the API endpoint for this content type.\\nFor example::\\n http://pulp.example.com/pulp/api/v3/content/rpm/advisories/\\n\\nAlso - specify queryset and serializer for UpdateRecord.\",\n \"summary\": - \"Inspect an update record\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"rpm_update_record_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Advisories\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.UpdateRecordResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/content/rpm/distribution_trees/\": {\n \"get\": - {\n \"operationId\": \"content_rpm_distribution_trees_list\",\n - \ \"description\": \"Distribution Tree Viewset.\",\n \"summary\": - \"List distribution trees\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"name\": - \"offset\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"The initial index from - which to return the results.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"ordering\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-pk\",\n - \ \"pk\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": + \ }\n },\n \"{deb_source_package_release_component_href}\": + {\n \"get\": {\n \"operationId\": \"content_deb_source_release_components_read\",\n + \ \"description\": \"A SourcePackageReleaseComponent associates + a SourcePackage with a ReleaseComponent.\\n\\nAssociated artifacts: None; + contains only metadata.\\n\\nThis simply stores the information on which source + packages are part of which components.\",\n \"summary\": \"Inspect + a source package release component\",\n \"parameters\": [\n + \ {\n \"in\": \"path\",\n \"name\": + \"deb_source_package_release_component_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Repository Version referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"repository_version_removed\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Repository Version referenced by HREF\"\n },\n {\n + \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: - Distribution_Trees\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + Source_Release_Components\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedrpm.DistributionTreeResponseList\"\n }\n + \"#/components/schemas/deb.SourcePackageReleaseComponentResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{rpm_distribution_tree_href}\": {\n \"get\": {\n \"operationId\": - \"content_rpm_distribution_trees_read\",\n \"description\": - \"Distribution Tree Viewset.\",\n \"summary\": \"Inspect a - distribution tree\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"rpm_distribution_tree_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Distribution_Trees\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/rpm.DistributionTreeResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/content/rpm/modulemd_defaults/\": - {\n \"get\": {\n \"operationId\": \"content_rpm_modulemd_defaults_list\",\n - \ \"description\": \"ViewSet for Modulemd.\",\n \"summary\": - \"List modulemd defaultss\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"module\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where module matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"module__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where module is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": + \ \"/pulp/api/v3/content/file/files/\": {\n \"get\": {\n + \ \"operationId\": \"content_file_files_list\",\n \"description\": + \"\\nFileContent represents a single file and its metadata, which can be added + and removed from\\nrepositories.\",\n \"summary\": \"List file + contents\",\n \"parameters\": [\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n @@ -4436,31 +5861,53 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-_artifacts\",\n \"-content_ptr\",\n - \ \"-contentartifact\",\n \"-digest\",\n - \ \"-download_logs\",\n \"-group_roles\",\n - \ \"-module\",\n \"-pk\",\n - \ \"-profiles\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n + [\n \"-digest\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-repositories\",\n \"-snippet\",\n - \ \"-stream\",\n \"-timestamp_of_interest\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version_memberships\",\n \"_artifacts\",\n - \ \"content_ptr\",\n \"contentartifact\",\n - \ \"digest\",\n \"download_logs\",\n - \ \"group_roles\",\n \"module\",\n - \ \"pk\",\n \"profiles\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"repositories\",\n - \ \"snippet\",\n \"stream\",\n - \ \"timestamp_of_interest\",\n \"upstream_id\",\n - \ \"user_roles\",\n \"version_memberships\"\n + \ \"-relative_path\",\n \"-timestamp_of_interest\",\n + \ \"-upstream_id\",\n \"digest\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"relative_path\",\n + \ \"timestamp_of_interest\",\n \"upstream_id\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `relative_path` - Relative path\\n* `-relative_path` - Relative + path (descending)\\n* `digest` - Digest\\n* `-digest` - Digest (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"relative_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where relative_path matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"repository_version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n @@ -4476,185 +5923,81 @@ interactions: \"sha256\",\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"stream\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where stream matches value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"stream__in\",\n \"schema\": {\n \"type\": + \"fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": - \"Filter results where stream is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Modulemd_Defaults\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedrpm.ModulemdDefaultsResponseList\"\n + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Files\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedfile.FileContentResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"content_rpm_modulemd_defaults_create\",\n \"description\": - \"Trigger an asynchronous task to create content,optionally create new repository - version.\",\n \"summary\": \"Create a modulemd defaults\",\n - \ \"tags\": [\n \"Content: Modulemd_Defaults\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/rpm.ModulemdDefaults\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": + \"content_file_files_create\",\n \"description\": \"Trigger + an asynchronous task to create content,optionally create new repository version.\",\n + \ \"summary\": \"Create a file content\",\n \"tags\": + [\n \"Content: Files\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.ModulemdDefaults\"\n }\n - \ },\n \"multipart/form-data\": + \"#/components/schemas/file.FileContent\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.ModulemdDefaults\"\n }\n + \"#/components/schemas/file.FileContent\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{rpm_modulemd_defaults_href}\": {\n \"get\": - {\n \"operationId\": \"content_rpm_modulemd_defaults_read\",\n - \ \"description\": \"ViewSet for Modulemd.\",\n \"summary\": - \"Inspect a modulemd defaults\",\n \"parameters\": [\n {\n + \ }\n },\n \"{file_file_content_href}\": {\n \"get\": + {\n \"operationId\": \"content_file_files_read\",\n \"description\": + \"\\nFileContent represents a single file and its metadata, which can be added + and removed from\\nrepositories.\",\n \"summary\": \"Inspect + a file content\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"rpm_modulemd_defaults_href\",\n \"schema\": {\n \"type\": + \"file_file_content_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Modulemd_Defaults\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/rpm.ModulemdDefaultsResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/content/rpm/modulemd_obsoletes/\": - {\n \"get\": {\n \"operationId\": \"content_rpm_modulemd_obsoletes_list\",\n - \ \"description\": \"ViewSet for Modulemd.\",\n \"summary\": - \"List modulemd obsoletes\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"name\": - \"offset\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"The initial index from - which to return the results.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"ordering\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-pk\",\n - \ \"pk\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Repository Version referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"repository_version_removed\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Repository Version referenced by HREF\"\n },\n {\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: - Modulemd_Obsoletes\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedrpm.ModulemdObsoleteResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"content_rpm_modulemd_obsoletes_create\",\n - \ \"description\": \"Trigger an asynchronous task to create - content,optionally create new repository version.\",\n \"summary\": - \"Create a modulemd obsolete\",\n \"tags\": [\n \"Content: - Modulemd_Obsoletes\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.ModulemdObsolete\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.ModulemdObsolete\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.ModulemdObsolete\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + Files\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{rpm_modulemd_obsolete_href}\": {\n \"get\": - {\n \"operationId\": \"content_rpm_modulemd_obsoletes_read\",\n - \ \"description\": \"ViewSet for Modulemd.\",\n \"summary\": - \"Inspect a modulemd obsolete\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"rpm_modulemd_obsolete_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Modulemd_Obsoletes\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/rpm.ModulemdObsoleteResponse\"\n + {\n \"$ref\": \"#/components/schemas/file.FileContentResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/content/rpm/modulemds/\": - {\n \"get\": {\n \"operationId\": \"content_rpm_modulemds_list\",\n - \ \"description\": \"ViewSet for Modulemd.\",\n \"summary\": - \"List modulemds\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": + \ }\n },\n \"/pulp/api/v3/content/gem/gem/\": {\n + \ \"get\": {\n \"operationId\": \"content_gem_gem_list\",\n + \ \"description\": \"A ViewSet for GemContent.\",\n \"summary\": + \"List gem contents\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"checksum\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where checksum matches value\"\n },\n + \ {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n @@ -4662,53 +6005,74 @@ interactions: \"query\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"description\": \"Filter results where name matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": + value\"\n },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"ordering\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-checksum\",\n + \ \"-dependencies\",\n \"-name\",\n + \ \"-pk\",\n \"-platform\",\n + \ \"-prerelease\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-required_ruby_version\",\n + \ \"-required_rubygems_version\",\n \"-timestamp_of_interest\",\n + \ \"-upstream_id\",\n \"-version\",\n + \ \"checksum\",\n \"dependencies\",\n + \ \"name\",\n \"pk\",\n + \ \"platform\",\n \"prerelease\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"required_ruby_version\",\n \"required_rubygems_version\",\n + \ \"timestamp_of_interest\",\n \"upstream_id\",\n + \ \"version\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `name` - Name\\n* `-name` - Name + (descending)\\n* `version` - Version\\n* `-version` - Version (descending)\\n* + `platform` - Platform\\n* `-platform` - Platform (descending)\\n* `checksum` + - Checksum\\n* `-checksum` - Checksum (descending)\\n* `prerelease` - Prerelease\\n* + `-prerelease` - Prerelease (descending)\\n* `dependencies` - Dependencies\\n* + `-dependencies` - Dependencies (descending)\\n* `required_ruby_version` - + Required ruby version\\n* `-required_ruby_version` - Required ruby version + (descending)\\n* `required_rubygems_version` - Required rubygems version\\n* + `-required_rubygems_version` - Required rubygems version (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": + \"query\",\n \"name\": \"prerelease\",\n \"schema\": + {\n \"type\": \"boolean\"\n },\n + \ \"description\": \"Filter results where prerelease + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-_artifacts\",\n \"-arch\",\n - \ \"-artifacts\",\n \"-content_ptr\",\n - \ \"-contentartifact\",\n \"-context\",\n - \ \"-dependencies\",\n \"-description\",\n - \ \"-download_logs\",\n \"-group_roles\",\n - \ \"-name\",\n \"-packages\",\n - \ \"-pk\",\n \"-profiles\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-repositories\",\n - \ \"-snippet\",\n \"-static_context\",\n - \ \"-stream\",\n \"-timestamp_of_interest\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"arch\",\n - \ \"artifacts\",\n \"content_ptr\",\n - \ \"contentartifact\",\n \"context\",\n - \ \"dependencies\",\n \"description\",\n - \ \"download_logs\",\n \"group_roles\",\n - \ \"name\",\n \"packages\",\n - \ \"pk\",\n \"profiles\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"repositories\",\n - \ \"snippet\",\n \"static_context\",\n - \ \"stream\",\n \"timestamp_of_interest\",\n - \ \"upstream_id\",\n \"user_roles\",\n - \ \"version\",\n \"version_memberships\"\n - \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"repository_version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n @@ -4721,86 +6085,91 @@ interactions: \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"sha256\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"stream\",\n \"schema\": {\n \"type\": + \"version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where stream matches value\"\n },\n {\n + \"Filter results where version matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"stream__in\",\n \"schema\": {\n \"type\": + \"fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": - \"Filter results where stream is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Modulemds\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Gem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedgem.GemContentResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"content_gem_gem_create\",\n \"description\": \"Trigger an + asynchronous task to create content,optionally create new repository version.\",\n + \ \"summary\": \"Create a gem content\",\n \"tags\": + [\n \"Content: Gem\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/gem.GemContent\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/gem.GemContent\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedrpm.ModulemdResponseList\"\n }\n + \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"content_rpm_modulemds_create\",\n \"description\": - \"Trigger an asynchronous task to create content,optionally create new repository - version.\",\n \"summary\": \"Create a modulemd\",\n \"tags\": - [\n \"Content: Modulemds\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.Modulemd\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/rpm.Modulemd\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.Modulemd\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{rpm_modulemd_href}\": {\n \"get\": - {\n \"operationId\": \"content_rpm_modulemds_read\",\n \"description\": - \"ViewSet for Modulemd.\",\n \"summary\": \"Inspect a modulemd\",\n + \"\"\n }\n }\n }\n },\n + \ \"{gem_gem_content_href}\": {\n \"get\": {\n \"operationId\": + \"content_gem_gem_read\",\n \"description\": \"A ViewSet for + GemContent.\",\n \"summary\": \"Inspect a gem content\",\n \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"rpm_modulemd_href\",\n \"schema\": + \"path\",\n \"name\": \"gem_gem_content_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: - Modulemds\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + Gem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/rpm.ModulemdResponse\"\n + {\n \"$ref\": \"#/components/schemas/gem.GemContentResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/content/rpm/packagecategories/\": - {\n \"get\": {\n \"operationId\": \"content_rpm_packagecategories_list\",\n - \ \"description\": \"PackageCategory ViewSet.\",\n \"summary\": - \"List package categorys\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": + \ }\n },\n \"/pulp/api/v3/content/maven/artifact/\": + {\n \"get\": {\n \"operationId\": \"content_maven_artifact_list\",\n + \ \"description\": \"A ViewSet for MavenArtifact.\",\n \"summary\": + \"List maven artifacts\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"artifact_id\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where artifact_id matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"filename\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where filename matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"group_id\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where group_id matches value\"\n },\n + \ {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n @@ -4812,17 +6181,58 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-pk\",\n - \ \"pk\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-artifact_id\",\n + \ \"-filename\",\n \"-group_id\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-timestamp_of_interest\",\n + \ \"-upstream_id\",\n \"-version\",\n + \ \"artifact_id\",\n \"filename\",\n + \ \"group_id\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"timestamp_of_interest\",\n \"upstream_id\",\n + \ \"version\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `group_id` - Group id\\n* `-group_id` + - Group id (descending)\\n* `artifact_id` - Artifact id\\n* `-artifact_id` + - Artifact id (descending)\\n* `version` - Version\\n* `-version` - Version + (descending)\\n* `filename` - Filename\\n* `-filename` - Filename (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": @@ -4830,53 +6240,86 @@ interactions: \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \"version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": + \"Filter results where version matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: - Packagecategories\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedrpm.PackageCategoryResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{rpm_package_category_href}\": {\n \"get\": {\n \"operationId\": - \"content_rpm_packagecategories_read\",\n \"description\": - \"PackageCategory ViewSet.\",\n \"summary\": \"Inspect a package - category\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"rpm_package_category_href\",\n - \ \"schema\": {\n \"type\": + Artifact\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedmaven.MavenArtifactResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"content_maven_artifact_create\",\n \"description\": \"A ViewSet + for MavenArtifact.\",\n \"summary\": \"Create a maven artifact\",\n + \ \"tags\": [\n \"Content: Artifact\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/maven.MavenArtifact\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/maven.MavenArtifact\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/maven.MavenArtifact\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/maven.MavenArtifactResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{maven_maven_artifact_href}\": {\n \"get\": + {\n \"operationId\": \"content_maven_artifact_read\",\n \"description\": + \"A ViewSet for MavenArtifact.\",\n \"summary\": \"Inspect + a maven artifact\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"maven_maven_artifact_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Packagecategories\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/rpm.PackageCategoryResponse\"\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Artifact\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/maven.MavenArtifactResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/content/rpm/packageenvironments/\": - {\n \"get\": {\n \"operationId\": \"content_rpm_packageenvironments_list\",\n - \ \"description\": \"PackageEnvironment ViewSet.\",\n \"summary\": - \"List package environments\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": + \ }\n },\n \"/pulp/api/v3/content/ostree/commits/\": + {\n \"get\": {\n \"operationId\": \"content_ostree_commits_list\",\n + \ \"description\": \"A ViewSet class for OSTree commits.\",\n + \ \"summary\": \"List ostree commits\",\n \"parameters\": + [\n {\n \"in\": \"query\",\n \"name\": + \"checksum\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where checksum matches value\"\n },\n + \ {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n @@ -4888,17 +6331,54 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-pk\",\n - \ \"pk\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + \"string\",\n \"enum\": [\n \"-checksum\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-relative_path\",\n + \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n + \ \"checksum\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"relative_path\",\n \"timestamp_of_interest\",\n + \ \"upstream_id\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `checksum` - Checksum\\n* `-checksum` + - Checksum (descending)\\n* `relative_path` - Relative path\\n* `-relative_path` + - Relative path (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \"query\",\n \"name\": \"orphaned_for\",\n \"schema\": + {\n \"type\": \"number\"\n },\n + \ \"description\": \"Minutes Content has been orphaned + for. -1 uses ORPHAN_PROTECTION_TIME.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": @@ -4907,53 +6387,55 @@ interactions: \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: - Packageenvironments\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedrpm.PackageEnvironmentResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{rpm_package_environment_href}\": {\n \"get\": {\n \"operationId\": - \"content_rpm_packageenvironments_read\",\n \"description\": - \"PackageEnvironment ViewSet.\",\n \"summary\": \"Inspect a - package environment\",\n \"parameters\": [\n {\n + Commits\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedostree.OstreeCommitResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ostree_ostree_commit_href}\": {\n \"get\": + {\n \"operationId\": \"content_ostree_commits_read\",\n \"description\": + \"A ViewSet class for OSTree commits.\",\n \"summary\": \"Inspect + an ostree commit\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"rpm_package_environment_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"ostree_ostree_commit_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: - Packageenvironments\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.PackageEnvironmentResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/content/rpm/packagegroups/\": {\n \"get\": - {\n \"operationId\": \"content_rpm_packagegroups_list\",\n - \ \"description\": \"PackageGroup ViewSet.\",\n \"summary\": - \"List package groups\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": + Commits\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ostree.OstreeCommitResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/content/ostree/configs/\": + {\n \"get\": {\n \"operationId\": \"content_ostree_configs_list\",\n + \ \"description\": \"A ViewSet class for OSTree repository configurations.\",\n + \ \"summary\": \"List ostree configs\",\n \"parameters\": + [\n {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n @@ -4968,14 +6450,35 @@ interactions: \"string\",\n \"enum\": [\n \"-pk\",\n \ \"pk\"\n ]\n \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \"Ordering\\n\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": @@ -4984,74 +6487,99 @@ interactions: \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: - Packagegroups\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + Configs\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedrpm.PackageGroupResponseList\"\n + {\n \"$ref\": \"#/components/schemas/Paginatedostree.OstreeConfigResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{rpm_package_group_href}\": {\n \"get\": - {\n \"operationId\": \"content_rpm_packagegroups_read\",\n - \ \"description\": \"PackageGroup ViewSet.\",\n \"summary\": - \"Inspect a package group\",\n \"parameters\": [\n {\n + \ }\n },\n \"{ostree_ostree_config_href}\": {\n \"get\": + {\n \"operationId\": \"content_ostree_configs_read\",\n \"description\": + \"A ViewSet class for OSTree repository configurations.\",\n \"summary\": + \"Inspect an ostree config\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"rpm_package_group_href\",\n \"schema\": {\n \"type\": + \"ostree_ostree_config_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Packagegroups\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.PackageGroupResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/content/rpm/packagelangpacks/\": {\n \"get\": - {\n \"operationId\": \"content_rpm_packagelangpacks_list\",\n - \ \"description\": \"PackageLangpacks ViewSet.\",\n \"summary\": - \"List package langpackss\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"name\": - \"offset\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"The initial index from - which to return the results.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"ordering\",\n \"schema\": {\n \"type\": + \"exclude_fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-pk\",\n - \ \"pk\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Configs\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ostree.OstreeConfigResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/content/ostree/content/\": + {\n \"get\": {\n \"operationId\": \"content_ostree_content_list\",\n + \ \"description\": \"A ViewSet class for uncategorized content + units (e.g., static deltas).\",\n \"summary\": \"List ostree + contents\",\n \"parameters\": [\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-pk\",\n \"pk\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pk` - Pk\\n* `-pk` + - Pk (descending)\",\n \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"orphaned_for\",\n \"schema\": + {\n \"type\": \"number\"\n },\n + \ \"description\": \"Minutes Content has been orphaned + for. -1 uses ORPHAN_PROTECTION_TIME.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"repository_version_removed\",\n \"schema\": {\n \"type\": @@ -5059,103 +6587,180 @@ interactions: \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: - Packagelangpacks\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedrpm.PackageLangpacksResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{rpm_package_langpacks_href}\": {\n \"get\": {\n \"operationId\": - \"content_rpm_packagelangpacks_read\",\n \"description\": \"PackageLangpacks - ViewSet.\",\n \"summary\": \"Inspect a package langpacks\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"rpm_package_langpacks_href\",\n - \ \"schema\": {\n \"type\": + Content\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedostree.OstreeContentResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ostree_ostree_content_href}\": {\n \"get\": + {\n \"operationId\": \"content_ostree_content_read\",\n \"description\": + \"A ViewSet class for uncategorized content units (e.g., static deltas).\",\n + \ \"summary\": \"Inspect an ostree content\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ostree_ostree_content_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Packagelangpacks\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/rpm.PackageLangpacksResponse\"\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Content\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ostree.OstreeContentResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/content/rpm/packages/\": - {\n \"get\": {\n \"operationId\": \"content_rpm_packages_list\",\n - \ \"description\": \"A ViewSet for Package.\\n\\nDefine endpoint - name which will appear in the API endpoint for this content type.\\nFor example::\\n - \ http://pulp.example.com/pulp/api/v3/content/rpm/packages/\\n\\nAlso specify - queryset and serializer for Package.\",\n \"summary\": \"List - packages\",\n \"parameters\": [\n {\n \"in\": - \"query\",\n \"name\": \"arch\",\n \"schema\": + \ }\n },\n \"/pulp/api/v3/content/ostree/objects/\": + {\n \"get\": {\n \"operationId\": \"content_ostree_objects_list\",\n + \ \"description\": \"A ViewSet class for OSTree objects (e.g., + dirtree, dirmeta, file).\",\n \"summary\": \"List ostree objects\",\n + \ \"parameters\": [\n {\n \"in\": + \"query\",\n \"name\": \"checksum\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where arch matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"arch__in\",\n \"schema\": + \ \"description\": \"Filter results where checksum matches + value\"\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where arch is in a comma-separated list of values\",\n \"explode\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-checksum\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"-relative_path\",\n \"-timestamp_of_interest\",\n + \ \"-typ\",\n \"-upstream_id\",\n + \ \"checksum\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"relative_path\",\n \"timestamp_of_interest\",\n + \ \"typ\",\n \"upstream_id\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `typ` - Typ\\n* `-typ` - Typ (descending)\\n* `checksum` + - Checksum\\n* `-checksum` - Checksum (descending)\\n* `relative_path` - Relative + path\\n* `-relative_path` - Relative path (descending)\\n* `pk` - Pk\\n* `-pk` + - Pk (descending)\",\n \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"orphaned_for\",\n \"schema\": + {\n \"type\": \"number\"\n },\n + \ \"description\": \"Minutes Content has been orphaned + for. -1 uses ORPHAN_PROTECTION_TIME.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"arch__ne\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where arch not equal to value\"\n },\n + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"checksum_type\",\n \"schema\": {\n \"type\": - \"string\",\n \"enum\": [\n \"md5\",\n - \ \"sha1\",\n \"sha1\",\n - \ \"sha224\",\n \"sha256\",\n - \ \"sha384\",\n \"sha512\",\n - \ \"unknown\"\n ]\n - \ },\n \"description\": \"Filter - results where checksum_type matches value\"\n },\n {\n + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"checksum_type__in\",\n \"schema\": {\n \"type\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_removed\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": - \"Filter results where checksum_type is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"checksum_type__ne\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where checksum_type - not equal to value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"epoch\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where epoch matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"epoch__in\",\n \"schema\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Objects\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedostree.OstreeObjectResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ostree_ostree_object_href}\": {\n \"get\": + {\n \"operationId\": \"content_ostree_objects_read\",\n \"description\": + \"A ViewSet class for OSTree objects (e.g., dirtree, dirmeta, file).\",\n + \ \"summary\": \"Inspect an ostree object\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ostree_ostree_object_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where epoch is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"epoch__ne\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where epoch not equal to value\"\n },\n - \ {\n \"name\": \"limit\",\n \"required\": + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Objects\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ostree.OstreeObjectResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/content/ostree/refs/\": + {\n \"get\": {\n \"operationId\": \"content_ostree_refs_list\",\n + \ \"description\": \"A ViewSet class for OSTree head commits.\",\n + \ \"summary\": \"List ostree refs\",\n \"parameters\": + [\n {\n \"in\": \"query\",\n \"name\": + \"checksum\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n @@ -5164,6 +6769,18 @@ interactions: {\n \"type\": \"string\"\n },\n \ \"description\": \"Filter results where name matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": \"query\",\n \"name\": \"name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n @@ -5171,9 +6788,21 @@ interactions: results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"name__ne\",\n \"schema\": {\n \"type\": + \"name__iregex\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name not equal to value\"\n },\n + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n \ {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": @@ -5182,186 +6811,111 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-_artifacts\",\n \"-arch\",\n - \ \"-changelogs\",\n \"-checksum_type\",\n - \ \"-conflicts\",\n \"-content_ptr\",\n - \ \"-contentartifact\",\n \"-description\",\n - \ \"-download_logs\",\n \"-enhances\",\n - \ \"-epoch\",\n \"-evr\",\n - \ \"-files\",\n \"-group_roles\",\n - \ \"-is_modular\",\n \"-location_base\",\n - \ \"-location_href\",\n \"-name\",\n - \ \"-obsoletes\",\n \"-pk\",\n - \ \"-pkgId\",\n \"-provides\",\n + [\n \"-name\",\n \"-pk\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-recommends\",\n - \ \"-release\",\n \"-repositories\",\n - \ \"-requires\",\n \"-rpm_buildhost\",\n - \ \"-rpm_group\",\n \"-rpm_header_end\",\n - \ \"-rpm_header_start\",\n \"-rpm_license\",\n - \ \"-rpm_modulemd\",\n \"-rpm_packager\",\n - \ \"-rpm_sourcerpm\",\n \"-rpm_vendor\",\n - \ \"-size_archive\",\n \"-size_installed\",\n - \ \"-size_package\",\n \"-suggests\",\n - \ \"-summary\",\n \"-supplements\",\n - \ \"-time_build\",\n \"-time_file\",\n - \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n - \ \"-url\",\n \"-user_roles\",\n - \ \"-version\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"arch\",\n - \ \"changelogs\",\n \"checksum_type\",\n - \ \"conflicts\",\n \"content_ptr\",\n - \ \"contentartifact\",\n \"description\",\n - \ \"download_logs\",\n \"enhances\",\n - \ \"epoch\",\n \"evr\",\n - \ \"files\",\n \"group_roles\",\n - \ \"is_modular\",\n \"location_base\",\n - \ \"location_href\",\n \"name\",\n - \ \"obsoletes\",\n \"pk\",\n - \ \"pkgId\",\n \"provides\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"recommends\",\n - \ \"release\",\n \"repositories\",\n - \ \"requires\",\n \"rpm_buildhost\",\n - \ \"rpm_group\",\n \"rpm_header_end\",\n - \ \"rpm_header_start\",\n \"rpm_license\",\n - \ \"rpm_modulemd\",\n \"rpm_packager\",\n - \ \"rpm_sourcerpm\",\n \"rpm_vendor\",\n - \ \"size_archive\",\n \"size_installed\",\n - \ \"size_package\",\n \"suggests\",\n - \ \"summary\",\n \"supplements\",\n - \ \"time_build\",\n \"time_file\",\n - \ \"timestamp_of_interest\",\n \"upstream_id\",\n - \ \"url\",\n \"user_roles\",\n - \ \"version\",\n \"version_memberships\"\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"-relative_path\",\n \"-timestamp_of_interest\",\n + \ \"-upstream_id\",\n \"name\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"relative_path\",\n + \ \"timestamp_of_interest\",\n \"upstream_id\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* `relative_path` + - Relative path\\n* `-relative_path` - Relative path (descending)\\n* `pk` + - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"pkgId\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where pkgId matches value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pkgId__in\",\n \"schema\": {\n \"type\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where pkgId is in a comma-separated list of values\",\n \"explode\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"release\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where release matches value\"\n },\n {\n + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"release__in\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where release is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"release__ne\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where release not - equal to value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \"repository_version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"repository_version_removed\",\n \"schema\": {\n \"type\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"sha256\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"version\",\n \"schema\": {\n \"type\": + \"repository_version_removed\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where version matches value\"\n },\n {\n + \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"version__in\",\n \"schema\": {\n \"type\": + \"fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": - \"Filter results where version is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"version__ne\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where version not - equal to value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Packages\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedrpm.PackageResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"content_rpm_packages_create\",\n \"description\": - \"Trigger an asynchronous task to create content,optionally create new repository - version.\",\n \"summary\": \"Create a package\",\n \"tags\": - [\n \"Content: Packages\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.Package\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/rpm.Package\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{rpm_package_href}\": {\n \"get\": {\n \"operationId\": - \"content_rpm_packages_read\",\n \"description\": \"A ViewSet - for Package.\\n\\nDefine endpoint name which will appear in the API endpoint - for this content type.\\nFor example::\\n http://pulp.example.com/pulp/api/v3/content/rpm/packages/\\n\\nAlso - specify queryset and serializer for Package.\",\n \"summary\": - \"Inspect a package\",\n \"parameters\": [\n {\n + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Refs\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedostree.OstreeRefResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ostree_ostree_ref_href}\": {\n \"get\": + {\n \"operationId\": \"content_ostree_refs_read\",\n \"description\": + \"A ViewSet class for OSTree head commits.\",\n \"summary\": + \"Inspect an ostree ref\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"rpm_package_href\",\n \"schema\": {\n \"type\": + \"ostree_ostree_ref_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Content: Packages\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.PackageResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/content/rpm/repo_metadata_files/\": {\n \"get\": - {\n \"operationId\": \"content_rpm_repo_metadata_files_list\",\n - \ \"description\": \"RepoMetadataFile Viewset.\",\n \"summary\": - \"List repo metadata files\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Refs\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ostree.OstreeRefResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/content/ostree/summaries/\": + {\n \"get\": {\n \"operationId\": \"content_ostree_summaries_list\",\n + \ \"description\": \"A ViewSet class for OSTree repository summary + files.\",\n \"summary\": \"List ostree summarys\",\n \"parameters\": + [\n {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n @@ -5376,14 +6930,35 @@ interactions: \"string\",\n \"enum\": [\n \"-pk\",\n \ \"pk\"\n ]\n \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \"Ordering\\n\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": @@ -5392,77 +6967,109 @@ interactions: \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: - Repo_Metadata_Files\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedrpm.RepoMetadataFileResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{rpm_repo_metadata_file_href}\": {\n \"get\": {\n \"operationId\": - \"content_rpm_repo_metadata_files_read\",\n \"description\": - \"RepoMetadataFile Viewset.\",\n \"summary\": \"Inspect a repo - metadata file\",\n \"parameters\": [\n {\n + Summaries\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedostree.OstreeSummaryResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ostree_ostree_summary_href}\": {\n \"get\": + {\n \"operationId\": \"content_ostree_summaries_read\",\n \"description\": + \"A ViewSet class for OSTree repository summary files.\",\n \"summary\": + \"Inspect an ostree summary\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"rpm_repo_metadata_file_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"ostree_ostree_summary_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Content: - Repo_Metadata_Files\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RepoMetadataFileResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/contentguards/\": {\n \"get\": {\n \"operationId\": - \"contentguards_list\",\n \"description\": \"Endpoint to list - all contentguards.\",\n \"summary\": \"List content guards\",\n - \ \"parameters\": [\n {\n \"name\": + Summaries\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ostree.OstreeSummaryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/content/python/packages/\": + {\n \"get\": {\n \"operationId\": \"content_python_packages_list\",\n + \ \"description\": \"\\nPythonPackageContent represents each + individually installable Python package. In the Python\\necosystem, this is + called a Python Distribution, sometimes (ambiguously) refered to as a\\npackage. + In Pulp Python, we refer to it as PythonPackageContent. Each\\nPythonPackageContent + corresponds to a single filename, for example\\n`pulpcore-3.0.0rc1-py3-none-any.whl` + or `pulpcore-3.0.0rc1.tar.gz`.\",\n \"summary\": \"List python + package contents\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"author\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where author matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"author__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where author is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"filename\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where filename matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"filename__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where filename contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"filename__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where filename is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"keywords__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where keywords contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"keywords__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where keywords is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__contains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__icontains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n + \"Filter results where name matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": \"Filter results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n \ {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": @@ -5471,449 +7078,588 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-basedistribution\",\n \"-certguard_rhsmcertguard\",\n - \ \"-certguard_x509certguard\",\n \"-core_contentredirectcontentguard\",\n - \ \"-core_rbaccontentguard\",\n \"-description\",\n - \ \"-distribution\",\n \"-group_roles\",\n - \ \"-name\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-user_roles\",\n - \ \"basedistribution\",\n \"certguard_rhsmcertguard\",\n - \ \"certguard_x509certguard\",\n \"core_contentredirectcontentguard\",\n - \ \"core_rbaccontentguard\",\n \"description\",\n - \ \"distribution\",\n \"group_roles\",\n - \ \"name\",\n \"pk\",\n + [\n \"-author\",\n \"-author_email\",\n + \ \"-classifiers\",\n \"-description\",\n + \ \"-description_content_type\",\n \"-download_url\",\n + \ \"-filename\",\n \"-home_page\",\n + \ \"-keywords\",\n \"-license\",\n + \ \"-maintainer\",\n \"-maintainer_email\",\n + \ \"-metadata_version\",\n \"-name\",\n + \ \"-obsoletes_dist\",\n \"-packagetype\",\n + \ \"-pk\",\n \"-platform\",\n + \ \"-project_url\",\n \"-project_urls\",\n + \ \"-provides_dist\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-python_version\",\n + \ \"-requires_dist\",\n \"-requires_external\",\n + \ \"-requires_python\",\n \"-sha256\",\n + \ \"-summary\",\n \"-supported_platform\",\n + \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n + \ \"-version\",\n \"author\",\n + \ \"author_email\",\n \"classifiers\",\n + \ \"description\",\n \"description_content_type\",\n + \ \"download_url\",\n \"filename\",\n + \ \"home_page\",\n \"keywords\",\n + \ \"license\",\n \"maintainer\",\n + \ \"maintainer_email\",\n \"metadata_version\",\n + \ \"name\",\n \"obsoletes_dist\",\n + \ \"packagetype\",\n \"pk\",\n + \ \"platform\",\n \"project_url\",\n + \ \"project_urls\",\n \"provides_dist\",\n \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"user_roles\"\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"python_version\",\n \"requires_dist\",\n + \ \"requires_external\",\n \"requires_python\",\n + \ \"sha256\",\n \"summary\",\n + \ \"supported_platform\",\n \"timestamp_of_interest\",\n + \ \"upstream_id\",\n \"version\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `filename` - Filename\\n* `-filename` - Filename (descending)\\n* + `packagetype` - Packagetype\\n* `-packagetype` - Packagetype (descending)\\n* + `name` - Name\\n* `-name` - Name (descending)\\n* `version` - Version\\n* + `-version` - Version (descending)\\n* `sha256` - Sha256\\n* `-sha256` - Sha256 + (descending)\\n* `python_version` - Python version\\n* `-python_version` - + Python version (descending)\\n* `metadata_version` - Metadata version\\n* + `-metadata_version` - Metadata version (descending)\\n* `summary` - Summary\\n* + `-summary` - Summary (descending)\\n* `description` - Description\\n* `-description` + - Description (descending)\\n* `keywords` - Keywords\\n* `-keywords` - Keywords + (descending)\\n* `home_page` - Home page\\n* `-home_page` - Home page (descending)\\n* + `download_url` - Download url\\n* `-download_url` - Download url (descending)\\n* + `author` - Author\\n* `-author` - Author (descending)\\n* `author_email` - + Author email\\n* `-author_email` - Author email (descending)\\n* `maintainer` + - Maintainer\\n* `-maintainer` - Maintainer (descending)\\n* `maintainer_email` + - Maintainer email\\n* `-maintainer_email` - Maintainer email (descending)\\n* + `license` - License\\n* `-license` - License (descending)\\n* `requires_python` + - Requires python\\n* `-requires_python` - Requires python (descending)\\n* + `project_url` - Project url\\n* `-project_url` - Project url (descending)\\n* + `platform` - Platform\\n* `-platform` - Platform (descending)\\n* `supported_platform` + - Supported platform\\n* `-supported_platform` - Supported platform (descending)\\n* + `requires_dist` - Requires dist\\n* `-requires_dist` - Requires dist (descending)\\n* + `provides_dist` - Provides dist\\n* `-provides_dist` - Provides dist (descending)\\n* + `obsoletes_dist` - Obsoletes dist\\n* `-obsoletes_dist` - Obsoletes dist (descending)\\n* + `requires_external` - Requires external\\n* `-requires_external` - Requires + external (descending)\\n* `classifiers` - Classifiers\\n* `-classifiers` - + Classifiers (descending)\\n* `project_urls` - Project urls\\n* `-project_urls` + - Project urls (descending)\\n* `description_content_type` - Description content + type\\n* `-description_content_type` - Description content type (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"packagetype\",\n \"schema\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"bdist_dmg\",\n \"bdist_dumb\",\n + \ \"bdist_egg\",\n \"bdist_msi\",\n + \ \"bdist_rpm\",\n \"bdist_wheel\",\n + \ \"bdist_wininst\",\n \"sdist\"\n + \ ]\n },\n \"description\": + \"Filter results where packagetype matches value\\n\\n* `bdist_dmg` - bdist_dmg\\n* + `bdist_dumb` - bdist_dumb\\n* `bdist_egg` - bdist_egg\\n* `bdist_msi` - bdist_msi\\n* + `bdist_rpm` - bdist_rpm\\n* `bdist_wheel` - bdist_wheel\\n* `bdist_wininst` + - bdist_wininst\\n* `sdist` - sdist\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"packagetype__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where packagetype is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_removed\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"requires_python\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where requires_python matches value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": + \"requires_python__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Contentguards\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedContentGuardResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/contentguards/certguard/rhsm/\": - {\n \"get\": {\n \"operationId\": \"contentguards_certguard_rhsm_list\",\n - \ \"description\": \"RHSMCertGuard API Viewsets.\",\n \"summary\": - \"List rhsm cert guards\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + \"Filter results where requires_python contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"requires_python__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where requires_python is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"sha256\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains + \ \"description\": \"Filter results where sha256 matches value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": + \"query\",\n \"name\": \"sha256__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": + results where sha256 is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": + \"version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-basedistribution\",\n \"-certguard_rhsmcertguard\",\n - \ \"-certguard_x509certguard\",\n \"-core_contentredirectcontentguard\",\n - \ \"-core_rbaccontentguard\",\n \"-description\",\n - \ \"-distribution\",\n \"-group_roles\",\n - \ \"-name\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-user_roles\",\n - \ \"basedistribution\",\n \"certguard_rhsmcertguard\",\n - \ \"certguard_x509certguard\",\n \"core_contentredirectcontentguard\",\n - \ \"core_rbaccontentguard\",\n \"description\",\n - \ \"distribution\",\n \"group_roles\",\n - \ \"name\",\n \"pk\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"user_roles\"\n - \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n + \"Filter results where version matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"version__gt\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where version is greater than value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \"version__gte\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where version is greater than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"version__lt\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where version is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"version__lte\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": + \"Filter results where version is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Contentguards: - Rhsm\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Content: + Packages\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedcertguard.RHSMCertGuardResponseList\"\n + {\n \"$ref\": \"#/components/schemas/Paginatedpython.PythonPackageContentResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"contentguards_certguard_rhsm_create\",\n \"description\": - \"RHSMCertGuard API Viewsets.\",\n \"summary\": \"Create a - rhsm cert guard\",\n \"tags\": [\n \"Contentguards: - Rhsm\"\n ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/certguard.RHSMCertGuard\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": + \"content_python_packages_create\",\n \"description\": \"Trigger + an asynchronous task to create content,optionally create new repository version.\",\n + \ \"summary\": \"Create a python package content\",\n \"tags\": + [\n \"Content: Packages\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/certguard.RHSMCertGuard\"\n }\n - \ },\n \"multipart/form-data\": + \"#/components/schemas/python.PythonPackageContent\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/certguard.RHSMCertGuard\"\n }\n + \"#/components/schemas/python.PythonPackageContent\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"201\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/certguard.RHSMCertGuardResponse\"\n + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{certguard_r_h_s_m_cert_guard_href}\": - {\n \"get\": {\n \"operationId\": \"contentguards_certguard_rhsm_read\",\n - \ \"description\": \"RHSMCertGuard API Viewsets.\",\n \"summary\": - \"Inspect a rhsm cert guard\",\n \"parameters\": [\n {\n + \ }\n },\n \"{python_python_package_content_href}\": + {\n \"get\": {\n \"operationId\": \"content_python_packages_read\",\n + \ \"description\": \"\\nPythonPackageContent represents each + individually installable Python package. In the Python\\necosystem, this is + called a Python Distribution, sometimes (ambiguously) refered to as a\\npackage. + In Pulp Python, we refer to it as PythonPackageContent. Each\\nPythonPackageContent + corresponds to a single filename, for example\\n`pulpcore-3.0.0rc1-py3-none-any.whl` + or `pulpcore-3.0.0rc1.tar.gz`.\",\n \"summary\": \"Inspect + a python package content\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"certguard_r_h_s_m_cert_guard_href\",\n \"schema\": + \"python_python_package_content_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Contentguards: - Rhsm\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/certguard.RHSMCertGuardResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"put\": {\n \"operationId\": \"contentguards_certguard_rhsm_update\",\n - \ \"description\": \"RHSMCertGuard API Viewsets.\",\n \"summary\": - \"Update a rhsm cert guard\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"certguard_r_h_s_m_cert_guard_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Contentguards: Rhsm\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/certguard.RHSMCertGuard\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/certguard.RHSMCertGuard\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/certguard.RHSMCertGuard\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/certguard.RHSMCertGuardResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"contentguards_certguard_rhsm_partial_update\",\n \"description\": - \"RHSMCertGuard API Viewsets.\",\n \"summary\": \"Update a - rhsm cert guard\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"certguard_r_h_s_m_cert_guard_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Contentguards: Rhsm\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Patchedcertguard.RHSMCertGuard\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedcertguard.RHSMCertGuard\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedcertguard.RHSMCertGuard\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Content: + Packages\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/certguard.RHSMCertGuardResponse\"\n + {\n \"$ref\": \"#/components/schemas/python.PythonPackageContentResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"contentguards_certguard_rhsm_delete\",\n \"description\": - \"RHSMCertGuard API Viewsets.\",\n \"summary\": \"Delete a - rhsm cert guard\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"certguard_r_h_s_m_cert_guard_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Contentguards: Rhsm\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"204\": {\n \"description\": - \"No response body\"\n }\n }\n }\n - \ },\n \"/pulp/api/v3/contentguards/certguard/x509/\": {\n \"get\": - {\n \"operationId\": \"contentguards_certguard_x509_list\",\n - \ \"description\": \"X509CertGuard API Viewsets.\",\n \"summary\": - \"List x509 cert guards\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": + \ }\n },\n \"/pulp/api/v3/content/rpm/advisories/\": + {\n \"get\": {\n \"operationId\": \"content_rpm_advisories_list\",\n + \ \"description\": \"A ViewSet for UpdateRecord.\\n\\nDefine + endpoint name which will appear in the API endpoint for this content type.\\nFor + example::\\n http://pulp.example.com/pulp/api/v3/content/rpm/advisories/\\n\\nAlso + specify queryset and serializer for UpdateRecord.\",\n \"summary\": + \"List update records\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"id\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where id matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where id is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"ordering\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-description\",\n + \ \"-digest\",\n \"-fromstr\",\n + \ \"-id\",\n \"-issued_date\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-pushcount\",\n + \ \"-reboot_suggested\",\n \"-release\",\n + \ \"-rights\",\n \"-severity\",\n + \ \"-solution\",\n \"-status\",\n + \ \"-summary\",\n \"-timestamp_of_interest\",\n + \ \"-title\",\n \"-type\",\n + \ \"-updated_date\",\n \"-upstream_id\",\n + \ \"-version\",\n \"description\",\n + \ \"digest\",\n \"fromstr\",\n + \ \"id\",\n \"issued_date\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"pushcount\",\n + \ \"reboot_suggested\",\n \"release\",\n + \ \"rights\",\n \"severity\",\n + \ \"solution\",\n \"status\",\n + \ \"summary\",\n \"timestamp_of_interest\",\n + \ \"title\",\n \"type\",\n + \ \"updated_date\",\n \"upstream_id\",\n + \ \"version\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `id` - Id\\n* `-id` - Id (descending)\\n* + `updated_date` - Updated date\\n* `-updated_date` - Updated date (descending)\\n* + `description` - Description\\n* `-description` - Description (descending)\\n* + `issued_date` - Issued date\\n* `-issued_date` - Issued date (descending)\\n* + `fromstr` - Fromstr\\n* `-fromstr` - Fromstr (descending)\\n* `status` - Status\\n* + `-status` - Status (descending)\\n* `title` - Title\\n* `-title` - Title (descending)\\n* + `summary` - Summary\\n* `-summary` - Summary (descending)\\n* `version` - + Version\\n* `-version` - Version (descending)\\n* `type` - Type\\n* `-type` + - Type (descending)\\n* `severity` - Severity\\n* `-severity` - Severity (descending)\\n* + `solution` - Solution\\n* `-solution` - Solution (descending)\\n* `release` + - Release\\n* `-release` - Release (descending)\\n* `rights` - Rights\\n* + `-rights` - Rights (descending)\\n* `reboot_suggested` - Reboot suggested\\n* + `-reboot_suggested` - Reboot suggested (descending)\\n* `pushcount` - Pushcount\\n* + `-pushcount` - Pushcount (descending)\\n* `digest` - Digest\\n* `-digest` + - Digest (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_removed\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"severity\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where severity matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"severity__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where severity is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"severity__ne\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + \ \"description\": \"Filter results where severity not + equal to value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"status\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains + \ \"description\": \"Filter results where status matches value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": + \"query\",\n \"name\": \"status__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": + results where status is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": + \"status__ne\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-basedistribution\",\n \"-certguard_rhsmcertguard\",\n - \ \"-certguard_x509certguard\",\n \"-core_contentredirectcontentguard\",\n - \ \"-core_rbaccontentguard\",\n \"-description\",\n - \ \"-distribution\",\n \"-group_roles\",\n - \ \"-name\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-user_roles\",\n - \ \"basedistribution\",\n \"certguard_rhsmcertguard\",\n - \ \"certguard_x509certguard\",\n \"core_contentredirectcontentguard\",\n - \ \"core_rbaccontentguard\",\n \"description\",\n - \ \"distribution\",\n \"group_roles\",\n - \ \"name\",\n \"pk\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"user_roles\"\n - \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \"Filter results where status not equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"type\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where type matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"type__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where type is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \"type__ne\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": + \"Filter results where type not equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Contentguards: - X509\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Content: + Advisories\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedcertguard.X509CertGuardResponseList\"\n + {\n \"$ref\": \"#/components/schemas/Paginatedrpm.UpdateRecordResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"contentguards_certguard_x509_create\",\n \"description\": - \"X509CertGuard API Viewsets.\",\n \"summary\": \"Create a - x509 cert guard\",\n \"tags\": [\n \"Contentguards: - X509\"\n ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/certguard.X509CertGuard\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": + \"content_rpm_advisories_create\",\n \"description\": \"Trigger + an asynchronous task to create content,optionally create new repository version.\",\n + \ \"summary\": \"Create an update record\",\n \"tags\": + [\n \"Content: Advisories\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/certguard.X509CertGuard\"\n }\n - \ },\n \"multipart/form-data\": + \"#/components/schemas/rpm.UpdateRecord\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/certguard.X509CertGuard\"\n }\n + \"#/components/schemas/rpm.UpdateRecord\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"201\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/certguard.X509CertGuardResponse\"\n + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{certguard_x509_cert_guard_href}\": {\n - \ \"get\": {\n \"operationId\": \"contentguards_certguard_x509_read\",\n - \ \"description\": \"X509CertGuard API Viewsets.\",\n \"summary\": - \"Inspect a x509 cert guard\",\n \"parameters\": [\n {\n + \ }\n },\n \"{rpm_update_record_href}\": {\n \"get\": + {\n \"operationId\": \"content_rpm_advisories_read\",\n \"description\": + \"A ViewSet for UpdateRecord.\\n\\nDefine endpoint name which will appear + in the API endpoint for this content type.\\nFor example::\\n http://pulp.example.com/pulp/api/v3/content/rpm/advisories/\\n\\nAlso + specify queryset and serializer for UpdateRecord.\",\n \"summary\": + \"Inspect an update record\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"certguard_x509_cert_guard_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"rpm_update_record_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Contentguards: - X509\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/certguard.X509CertGuardResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"put\": {\n \"operationId\": \"contentguards_certguard_x509_update\",\n - \ \"description\": \"X509CertGuard API Viewsets.\",\n \"summary\": - \"Update a x509 cert guard\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"certguard_x509_cert_guard_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Contentguards: X509\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/certguard.X509CertGuard\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/certguard.X509CertGuard\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/certguard.X509CertGuard\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/certguard.X509CertGuardResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"contentguards_certguard_x509_partial_update\",\n \"description\": - \"X509CertGuard API Viewsets.\",\n \"summary\": \"Update a - x509 cert guard\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"certguard_x509_cert_guard_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Contentguards: X509\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Patchedcertguard.X509CertGuard\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedcertguard.X509CertGuard\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedcertguard.X509CertGuard\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Content: + Advisories\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/certguard.X509CertGuardResponse\"\n + {\n \"$ref\": \"#/components/schemas/rpm.UpdateRecordResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"contentguards_certguard_x509_delete\",\n \"description\": - \"X509CertGuard API Viewsets.\",\n \"summary\": \"Delete a - x509 cert guard\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"certguard_x509_cert_guard_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Contentguards: X509\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"204\": {\n \"description\": - \"No response body\"\n }\n }\n }\n - \ },\n \"/pulp/api/v3/contentguards/core/content_redirect/\": - {\n \"get\": {\n \"operationId\": \"contentguards_core_content_redirect_list\",\n - \ \"description\": \"Content guard to protect preauthenticated - redirects to the content app.\",\n \"summary\": \"List content - redirect content guards\",\n \"parameters\": [\n {\n + \ }\n },\n \"/pulp/api/v3/content/rpm/distribution_trees/\": + {\n \"get\": {\n \"operationId\": \"content_rpm_distribution_trees_list\",\n + \ \"description\": \"Distribution Tree Viewset.\",\n \"summary\": + \"List distribution trees\",\n \"parameters\": [\n {\n \ \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"ordering\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-pk\",\n + \ \"pk\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_removed\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Distribution_Trees\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Paginatedrpm.DistributionTreeResponseList\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{rpm_distribution_tree_href}\": {\n \"get\": {\n \"operationId\": + \"content_rpm_distribution_trees_read\",\n \"description\": + \"Distribution Tree Viewset.\",\n \"summary\": \"Inspect a + distribution tree\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"rpm_distribution_tree_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Distribution_Trees\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.DistributionTreeResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/content/rpm/modulemd_defaults/\": {\n \"get\": + {\n \"operationId\": \"content_rpm_modulemd_defaults_list\",\n + \ \"description\": \"ViewSet for Modulemd.\",\n \"summary\": + \"List modulemd defaultss\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"module\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains + \ \"description\": \"Filter results where module matches value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": + \"query\",\n \"name\": \"module__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": + results where module is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n \ {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": @@ -5922,298 +7668,314 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-basedistribution\",\n \"-certguard_rhsmcertguard\",\n - \ \"-certguard_x509certguard\",\n \"-core_contentredirectcontentguard\",\n - \ \"-core_rbaccontentguard\",\n \"-description\",\n - \ \"-distribution\",\n \"-group_roles\",\n - \ \"-name\",\n \"-pk\",\n + [\n \"-digest\",\n \"-module\",\n + \ \"-pk\",\n \"-profiles\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-user_roles\",\n - \ \"basedistribution\",\n \"certguard_rhsmcertguard\",\n - \ \"certguard_x509certguard\",\n \"core_contentredirectcontentguard\",\n - \ \"core_rbaccontentguard\",\n \"description\",\n - \ \"distribution\",\n \"group_roles\",\n - \ \"name\",\n \"pk\",\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"-snippet\",\n \"-stream\",\n + \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n + \ \"digest\",\n \"module\",\n + \ \"pk\",\n \"profiles\",\n \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"user_roles\"\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"snippet\",\n \"stream\",\n + \ \"timestamp_of_interest\",\n \"upstream_id\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `module` - Module\\n* `-module` - Module (descending)\\n* + `stream` - Stream\\n* `-stream` - Stream (descending)\\n* `profiles` - Profiles\\n* + `-profiles` - Profiles (descending)\\n* `digest` - Digest\\n* `-digest` - + Digest (descending)\\n* `snippet` - Snippet\\n* `-snippet` - Snippet (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_removed\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"sha256\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"stream\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where stream matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"stream__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where stream is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Contentguards: - Content_Redirect\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + \ ],\n \"tags\": [\n \"Content: + Modulemd_Defaults\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PaginatedContentRedirectContentGuardResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"post\": {\n \"operationId\": - \"contentguards_core_content_redirect_create\",\n \"description\": - \"Content guard to protect preauthenticated redirects to the content app.\",\n - \ \"summary\": \"Create a content redirect content guard\",\n - \ \"tags\": [\n \"Contentguards: Content_Redirect\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ContentRedirectContentGuard\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": + \"#/components/schemas/Paginatedrpm.ModulemdDefaultsResponseList\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n },\n \"post\": + {\n \"operationId\": \"content_rpm_modulemd_defaults_create\",\n + \ \"description\": \"Trigger an asynchronous task to create + content,optionally create new repository version.\",\n \"summary\": + \"Create a modulemd defaults\",\n \"tags\": [\n \"Content: + Modulemd_Defaults\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ContentRedirectContentGuard\"\n }\n + \"#/components/schemas/rpm.ModulemdDefaults\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.ModulemdDefaults\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ContentRedirectContentGuard\"\n }\n + \"#/components/schemas/rpm.ModulemdDefaults\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"201\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ContentRedirectContentGuardResponse\"\n + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{content_redirect_content_guard_href}\": - {\n \"get\": {\n \"operationId\": \"contentguards_core_content_redirect_read\",\n - \ \"description\": \"Content guard to protect preauthenticated - redirects to the content app.\",\n \"summary\": \"Inspect a - content redirect content guard\",\n \"parameters\": [\n {\n + \ }\n },\n \"{rpm_modulemd_defaults_href}\": {\n \"get\": + {\n \"operationId\": \"content_rpm_modulemd_defaults_read\",\n + \ \"description\": \"ViewSet for Modulemd.\",\n \"summary\": + \"Inspect a modulemd defaults\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"content_redirect_content_guard_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"rpm_modulemd_defaults_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Modulemd_Defaults\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.ModulemdDefaultsResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/content/rpm/modulemd_obsoletes/\": {\n \"get\": + {\n \"operationId\": \"content_rpm_modulemd_obsoletes_list\",\n + \ \"description\": \"ViewSet for Modulemd.\",\n \"summary\": + \"List modulemd obsoletes\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"ordering\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-pk\",\n + \ \"pk\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_removed\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Contentguards: - Content_Redirect\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + \ ],\n \"tags\": [\n \"Content: + Modulemd_Obsoletes\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ContentRedirectContentGuardResponse\"\n }\n + \"#/components/schemas/Paginatedrpm.ModulemdObsoleteResponseList\"\n }\n \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"contentguards_core_content_redirect_update\",\n - \ \"description\": \"Content guard to protect preauthenticated - redirects to the content app.\",\n \"summary\": \"Update a - content redirect content guard\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"content_redirect_content_guard_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Contentguards: Content_Redirect\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ContentRedirectContentGuard\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ContentRedirectContentGuard\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ContentRedirectContentGuard\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ContentRedirectContentGuardResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"contentguards_core_content_redirect_partial_update\",\n \"description\": - \"Content guard to protect preauthenticated redirects to the content app.\",\n - \ \"summary\": \"Update a content redirect content guard\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"content_redirect_content_guard_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Contentguards: Content_Redirect\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": + \"\"\n }\n }\n },\n \"post\": + {\n \"operationId\": \"content_rpm_modulemd_obsoletes_create\",\n + \ \"description\": \"Trigger an asynchronous task to create + content,optionally create new repository version.\",\n \"summary\": + \"Create a modulemd obsolete\",\n \"tags\": [\n \"Content: + Modulemd_Obsoletes\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedContentRedirectContentGuard\"\n }\n + \"#/components/schemas/rpm.ModulemdObsolete\"\n }\n \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedContentRedirectContentGuard\"\n }\n + \"#/components/schemas/rpm.ModulemdObsolete\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedContentRedirectContentGuard\"\n }\n + \"#/components/schemas/rpm.ModulemdObsolete\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ContentRedirectContentGuardResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"contentguards_core_content_redirect_delete\",\n \"description\": - \"Content guard to protect preauthenticated redirects to the content app.\",\n - \ \"summary\": \"Delete a content redirect content guard\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"content_redirect_content_guard_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Contentguards: Content_Redirect\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"204\": {\n \"description\": - \"No response body\"\n }\n }\n }\n - \ },\n \"{content_redirect_content_guard_href}add_role/\": {\n - \ \"post\": {\n \"operationId\": \"contentguards_core_content_redirect_add_role\",\n - \ \"description\": \"Add a role for this object to users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"content_redirect_content_guard_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Contentguards: Content_Redirect\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{content_redirect_content_guard_href}list_roles/\": - {\n \"get\": {\n \"operationId\": \"contentguards_core_content_redirect_list_roles\",\n - \ \"description\": \"List roles assigned to this object.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"content_redirect_content_guard_href\",\n - \ \"schema\": {\n \"type\": + \ }\n },\n \"{rpm_modulemd_obsolete_href}\": {\n \"get\": + {\n \"operationId\": \"content_rpm_modulemd_obsoletes_read\",\n + \ \"description\": \"ViewSet for Modulemd.\",\n \"summary\": + \"Inspect a modulemd obsolete\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"rpm_modulemd_obsolete_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Contentguards: Content_Redirect\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{content_redirect_content_guard_href}my_permissions/\": - {\n \"get\": {\n \"operationId\": \"contentguards_core_content_redirect_my_permissions\",\n - \ \"description\": \"List permissions available to the current - user on this object.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"content_redirect_content_guard_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Contentguards: - Content_Redirect\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + \ ],\n \"tags\": [\n \"Content: + Modulemd_Obsoletes\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/MyPermissionsResponse\"\n }\n + \"#/components/schemas/rpm.ModulemdObsoleteResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{content_redirect_content_guard_href}remove_role/\": {\n \"post\": - {\n \"operationId\": \"contentguards_core_content_redirect_remove_role\",\n - \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"/pulp/api/v3/content/rpm/modulemds/\": {\n \"get\": {\n + \ \"operationId\": \"content_rpm_modulemds_list\",\n \"description\": + \"ViewSet for Modulemd.\",\n \"summary\": \"List modulemds\",\n \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"content_redirect_content_guard_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Contentguards: Content_Redirect\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/contentguards/core/rbac/\": - {\n \"get\": {\n \"operationId\": \"contentguards_core_rbac_list\",\n - \ \"description\": \"Viewset for creating contentguards that - use RBAC to protect content.\\nHas add and remove actions for managing permission - for users and groups to download content\\nprotected by this guard.\",\n \"summary\": - \"List rbac content guards\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + \"query\",\n \"name\": \"arch\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains + \ \"description\": \"Filter results where arch matches value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": + \"query\",\n \"name\": \"arch__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": + results where arch is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": + \"context\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n + \"Filter results where context matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"context__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where context is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": @@ -6222,688 +7984,670 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-basedistribution\",\n \"-certguard_rhsmcertguard\",\n - \ \"-certguard_x509certguard\",\n \"-core_contentredirectcontentguard\",\n - \ \"-core_rbaccontentguard\",\n \"-description\",\n - \ \"-distribution\",\n \"-group_roles\",\n + [\n \"-arch\",\n \"-artifacts\",\n + \ \"-context\",\n \"-dependencies\",\n + \ \"-description\",\n \"-digest\",\n \ \"-name\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-user_roles\",\n - \ \"basedistribution\",\n \"certguard_rhsmcertguard\",\n - \ \"certguard_x509certguard\",\n \"core_contentredirectcontentguard\",\n - \ \"core_rbaccontentguard\",\n \"description\",\n - \ \"distribution\",\n \"group_roles\",\n - \ \"name\",\n \"pk\",\n + \ \"-profiles\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-snippet\",\n + \ \"-static_context\",\n \"-stream\",\n + \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n + \ \"-version\",\n \"arch\",\n + \ \"artifacts\",\n \"context\",\n + \ \"dependencies\",\n \"description\",\n + \ \"digest\",\n \"name\",\n + \ \"pk\",\n \"profiles\",\n \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"user_roles\"\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"snippet\",\n \"static_context\",\n + \ \"stream\",\n \"timestamp_of_interest\",\n + \ \"upstream_id\",\n \"version\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* `stream` + - Stream\\n* `-stream` - Stream (descending)\\n* `version` - Version\\n* `-version` + - Version (descending)\\n* `context` - Context\\n* `-context` - Context (descending)\\n* + `arch` - Arch\\n* `-arch` - Arch (descending)\\n* `static_context` - Static + context\\n* `-static_context` - Static context (descending)\\n* `dependencies` + - Dependencies\\n* `-dependencies` - Dependencies (descending)\\n* `artifacts` + - Artifacts\\n* `-artifacts` - Artifacts (descending)\\n* `profiles` - Profiles\\n* + `-profiles` - Profiles (descending)\\n* `description` - Description\\n* `-description` + - Description (descending)\\n* `digest` - Digest\\n* `-digest` - Digest (descending)\\n* + `snippet` - Snippet\\n* `-snippet` - Snippet (descending)\\n* `pk` - Pk\\n* + `-pk` - Pk (descending)\",\n \"explode\": false,\n + \ \"style\": \"form\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Contentguards: - Rbac\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedRBACContentGuardResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"post\": {\n \"operationId\": - \"contentguards_core_rbac_create\",\n \"description\": \"Viewset - for creating contentguards that use RBAC to protect content.\\nHas add and - remove actions for managing permission for users and groups to download content\\nprotected - by this guard.\",\n \"summary\": \"Create a rbac content guard\",\n - \ \"tags\": [\n \"Contentguards: Rbac\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RBACContentGuard\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RBACContentGuard\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RBACContentGuard\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"201\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RBACContentGuardResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{r_b_a_c_content_guard_href}\": {\n \"get\": - {\n \"operationId\": \"contentguards_core_rbac_read\",\n \"description\": - \"Viewset for creating contentguards that use RBAC to protect content.\\nHas - add and remove actions for managing permission for users and groups to download - content\\nprotected by this guard.\",\n \"summary\": \"Inspect - a rbac content guard\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"r_b_a_c_content_guard_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_removed\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"sha256\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"stream\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where stream matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"stream__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where stream is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"version\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Contentguards: Rbac\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RBACContentGuardResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"contentguards_core_rbac_update\",\n - \ \"description\": \"Viewset for creating contentguards that - use RBAC to protect content.\\nHas add and remove actions for managing permission - for users and groups to download content\\nprotected by this guard.\",\n \"summary\": - \"Update a rbac content guard\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"r_b_a_c_content_guard_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Contentguards: Rbac\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RBACContentGuard\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RBACContentGuard\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RBACContentGuard\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RBACContentGuardResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"contentguards_core_rbac_partial_update\",\n \"description\": - \"Viewset for creating contentguards that use RBAC to protect content.\\nHas - add and remove actions for managing permission for users and groups to download - content\\nprotected by this guard.\",\n \"summary\": \"Update - a rbac content guard\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"r_b_a_c_content_guard_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Contentguards: Rbac\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedRBACContentGuard\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedRBACContentGuard\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedRBACContentGuard\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"description\": \"Filter results where version matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"version__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where version is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Modulemds\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RBACContentGuardResponse\"\n + {\n \"$ref\": \"#/components/schemas/Paginatedrpm.ModulemdResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"contentguards_core_rbac_delete\",\n \"description\": \"Viewset - for creating contentguards that use RBAC to protect content.\\nHas add and - remove actions for managing permission for users and groups to download content\\nprotected - by this guard.\",\n \"summary\": \"Delete a rbac content guard\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"r_b_a_c_content_guard_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Contentguards: Rbac\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"204\": - {\n \"description\": \"No response body\"\n }\n - \ }\n }\n },\n \"{r_b_a_c_content_guard_href}add_role/\": - {\n \"post\": {\n \"operationId\": \"contentguards_core_rbac_add_role\",\n - \ \"description\": \"Add a role for this object to users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"r_b_a_c_content_guard_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Contentguards: Rbac\"\n ],\n \"requestBody\": + \ },\n \"post\": {\n \"operationId\": + \"content_rpm_modulemds_create\",\n \"description\": \"Trigger + an asynchronous task to create content,optionally create new repository version.\",\n + \ \"summary\": \"Create a modulemd\",\n \"tags\": + [\n \"Content: Modulemds\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n + \"#/components/schemas/rpm.Modulemd\"\n }\n },\n \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + {\n \"$ref\": \"#/components/schemas/rpm.Modulemd\"\n \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n + \"#/components/schemas/rpm.Modulemd\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n + {\n \"202\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{r_b_a_c_content_guard_href}list_roles/\": - {\n \"get\": {\n \"operationId\": \"contentguards_core_rbac_list_roles\",\n - \ \"description\": \"List roles assigned to this object.\",\n + \ }\n },\n \"{rpm_modulemd_href}\": {\n \"get\": + {\n \"operationId\": \"content_rpm_modulemds_read\",\n \"description\": + \"ViewSet for Modulemd.\",\n \"summary\": \"Inspect a modulemd\",\n \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"r_b_a_c_content_guard_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Contentguards: Rbac\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ObjectRolesResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{r_b_a_c_content_guard_href}my_permissions/\": {\n \"get\": - {\n \"operationId\": \"contentguards_core_rbac_my_permissions\",\n - \ \"description\": \"List permissions available to the current - user on this object.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"r_b_a_c_content_guard_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \"path\",\n \"name\": \"rpm_modulemd_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Contentguards: Rbac\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/MyPermissionsResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{r_b_a_c_content_guard_href}remove_role/\": {\n \"post\": - {\n \"operationId\": \"contentguards_core_rbac_remove_role\",\n - \ \"description\": \"Remove a role for this object from users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"r_b_a_c_content_guard_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Contentguards: Rbac\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/deb/copy/\": {\n \"post\": - {\n \"operationId\": \"copy_content\",\n \"description\": - \"Trigger an asynchronous task to copy APT contentfrom one repository into - another, creating a newrepository version.\",\n \"summary\": - \"Copy content\",\n \"tags\": [\n \"Deb: - Copy\"\n ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Copy\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Copy\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Copy\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/distributions/\": {\n \"get\": {\n \"operationId\": - \"distributions_list\",\n \"description\": \"A customized named - ModelViewSet that knows how to register itself with the Pulp API router.\\n\\nThis - viewset is discoverable by its name.\\n\\\"Normal\\\" Django Models and Master/Detail - models are supported by the ``register_with`` method.\\n\\nAttributes:\\n - \ lookup_field (str): The name of the field by which an object should be - looked up, in\\n addition to any parent lookups if this ViewSet is - nested. Defaults to 'pk'\\n endpoint_name (str): The name of the final - path segment that should identify the ViewSet's\\n collection endpoint.\\n - \ nest_prefix (str): Optional prefix under which this ViewSet should be - nested. This must\\n correspond to the \\\"parent_prefix\\\" of a router - with rest_framework_nested.NestedMixin.\\n None indicates this ViewSet - should not be nested.\\n parent_lookup_kwargs (dict): Optional mapping - of key names that would appear in self.kwargs\\n to django model filter - expressions that can be used with the corresponding value from\\n self.kwargs, - used only by a nested ViewSet to filter based on the parent object's\\n identity.\\n - \ schema (DefaultSchema): The schema class to use by default in a viewset.\",\n - \ \"summary\": \"List distributions\",\n \"parameters\": - [\n {\n \"in\": \"query\",\n \"name\": - \"base_path\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n + \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"base_path__contains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where base_path contains value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"base_path__icontains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where base_path contains value\"\n },\n + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"base_path__in\",\n \"schema\": {\n \"type\": + \"exclude_fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": - \"Filter results where base_path is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Modulemds\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/rpm.ModulemdResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/content/rpm/packagecategories/\": + {\n \"get\": {\n \"operationId\": \"content_rpm_packagecategories_list\",\n + \ \"description\": \"PackageCategory ViewSet.\",\n \"summary\": + \"List package categorys\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": + \"ordering\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-pk\",\n + \ \"pk\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"name__contains\",\n \"schema\": {\n \"type\": + \"repository_version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n + \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"name__icontains\",\n \"schema\": {\n \"type\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n + \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"name__in\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where name is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": + \"repository_version_removed\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-ansible_ansibledistribution\",\n - \ \"-base_path\",\n \"-container_containerdistribution\",\n - \ \"-content_guard\",\n \"-deb_aptdistribution\",\n - \ \"-file_filedistribution\",\n \"-group_roles\",\n - \ \"-maven_mavendistribution\",\n \"-name\",\n - \ \"-pk\",\n \"-publication\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-python_pythondistribution\",\n - \ \"-remote\",\n \"-repository\",\n - \ \"-repository_version\",\n \"-rpm_rpmdistribution\",\n - \ \"-user_roles\",\n \"ansible_ansibledistribution\",\n - \ \"base_path\",\n \"container_containerdistribution\",\n - \ \"content_guard\",\n \"deb_aptdistribution\",\n - \ \"file_filedistribution\",\n \"group_roles\",\n - \ \"maven_mavendistribution\",\n \"name\",\n - \ \"pk\",\n \"publication\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythondistribution\",\n - \ \"remote\",\n \"repository\",\n - \ \"repository_version\",\n \"rpm_rpmdistribution\",\n - \ \"user_roles\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter labels by search string\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"with_content\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter distributions based on the - content served by them\"\n },\n {\n + \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Distributions\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedDistributionResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/distributions/ansible/ansible/\": - {\n \"get\": {\n \"operationId\": \"distributions_ansible_ansible_list\",\n - \ \"description\": \"ViewSet for Ansible Distributions.\",\n - \ \"summary\": \"List ansible distributions\",\n \"parameters\": - [\n {\n \"in\": \"query\",\n \"name\": - \"base_path\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n + \ ],\n \"tags\": [\n \"Content: + Packagecategories\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Paginatedrpm.PackageCategoryResponseList\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{rpm_package_category_href}\": {\n \"get\": {\n \"operationId\": + \"content_rpm_packagecategories_read\",\n \"description\": + \"PackageCategory ViewSet.\",\n \"summary\": \"Inspect a package + category\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_package_category_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"base_path__contains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where base_path contains value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"base_path__icontains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where base_path contains value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"base_path__in\",\n \"schema\": {\n \"type\": + \"exclude_fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": - \"Filter results where base_path is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Packagecategories\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.PackageCategoryResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/content/rpm/packageenvironments/\": {\n \"get\": + {\n \"operationId\": \"content_rpm_packageenvironments_list\",\n + \ \"description\": \"PackageEnvironment ViewSet.\",\n \"summary\": + \"List package environments\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": + \"ordering\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-pk\",\n + \ \"pk\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"name__contains\",\n \"schema\": {\n \"type\": + \"repository_version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n + \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"name__icontains\",\n \"schema\": {\n \"type\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n + \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"name__in\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where name is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": + \"repository_version_removed\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-ansible_ansibledistribution\",\n - \ \"-base_path\",\n \"-container_containerdistribution\",\n - \ \"-content_guard\",\n \"-deb_aptdistribution\",\n - \ \"-file_filedistribution\",\n \"-group_roles\",\n - \ \"-maven_mavendistribution\",\n \"-name\",\n - \ \"-pk\",\n \"-publication\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-python_pythondistribution\",\n - \ \"-remote\",\n \"-repository\",\n - \ \"-repository_version\",\n \"-rpm_rpmdistribution\",\n - \ \"-user_roles\",\n \"ansible_ansibledistribution\",\n - \ \"base_path\",\n \"container_containerdistribution\",\n - \ \"content_guard\",\n \"deb_aptdistribution\",\n - \ \"file_filedistribution\",\n \"group_roles\",\n - \ \"maven_mavendistribution\",\n \"name\",\n - \ \"pk\",\n \"publication\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythondistribution\",\n - \ \"remote\",\n \"repository\",\n - \ \"repository_version\",\n \"rpm_rpmdistribution\",\n - \ \"user_roles\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter labels by search string\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"with_content\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter distributions based on the - content served by them\"\n },\n {\n + \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Distributions: - Ansible\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedansible.AnsibleDistributionResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"post\": {\n \"operationId\": - \"distributions_ansible_ansible_create\",\n \"description\": - \"Trigger an asynchronous create task\",\n \"summary\": \"Create - an ansible distribution\",\n \"tags\": [\n \"Distributions: - Ansible\"\n ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ansible.AnsibleDistribution\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.AnsibleDistribution\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.AnsibleDistribution\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{ansible_ansible_distribution_href}\": - {\n \"get\": {\n \"operationId\": \"distributions_ansible_ansible_read\",\n - \ \"description\": \"ViewSet for Ansible Distributions.\",\n - \ \"summary\": \"Inspect an ansible distribution\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"ansible_ansible_distribution_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n + \ ],\n \"tags\": [\n \"Content: + Packageenvironments\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Paginatedrpm.PackageEnvironmentResponseList\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{rpm_package_environment_href}\": {\n \"get\": {\n \"operationId\": + \"content_rpm_packageenvironments_read\",\n \"description\": + \"PackageEnvironment ViewSet.\",\n \"summary\": \"Inspect a + package environment\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"rpm_package_environment_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Packageenvironments\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.PackageEnvironmentResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/content/rpm/packagegroups/\": {\n \"get\": + {\n \"operationId\": \"content_rpm_packagegroups_list\",\n + \ \"description\": \"PackageGroup ViewSet.\",\n \"summary\": + \"List package groups\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"ordering\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-pk\",\n + \ \"pk\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_removed\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Distributions: - Ansible\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Content: + Packagegroups\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ansible.AnsibleDistributionResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"put\": {\n \"operationId\": \"distributions_ansible_ansible_update\",\n - \ \"description\": \"Trigger an asynchronous update task\",\n - \ \"summary\": \"Update an ansible distribution\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"ansible_ansible_distribution_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Distributions: Ansible\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ansible.AnsibleDistribution\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.AnsibleDistribution\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.AnsibleDistribution\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"distributions_ansible_ansible_partial_update\",\n \"description\": - \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update an ansible distribution\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"ansible_ansible_distribution_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Distributions: Ansible\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Patchedansible.AnsibleDistribution\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedansible.AnsibleDistribution\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedansible.AnsibleDistribution\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/Paginatedrpm.PackageGroupResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"distributions_ansible_ansible_delete\",\n \"description\": - \"Trigger an asynchronous delete task\",\n \"summary\": \"Delete - an ansible distribution\",\n \"parameters\": [\n {\n + \ }\n },\n \"{rpm_package_group_href}\": {\n \"get\": + {\n \"operationId\": \"content_rpm_packagegroups_read\",\n + \ \"description\": \"PackageGroup ViewSet.\",\n \"summary\": + \"Inspect a package group\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"ansible_ansible_distribution_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Distributions: Ansible\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \"rpm_package_group_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Packagegroups\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/rpm.PackageGroupResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/distributions/container/container/\": - {\n \"get\": {\n \"operationId\": \"distributions_container_container_list\",\n - \ \"description\": \"The Container Distribution will serve the - latest version of a Repository if\\n``repository`` is specified. The Container - Distribution will serve a specific\\nrepository version if ``repository_version``. - Note that **either**\\n``repository`` or ``repository_version`` can be set - on a Container\\nDistribution, but not both.\",\n \"summary\": - \"List container distributions\",\n \"parameters\": [\n {\n + \ }\n },\n \"/pulp/api/v3/content/rpm/packagelangpacks/\": + {\n \"get\": {\n \"operationId\": \"content_rpm_packagelangpacks_list\",\n + \ \"description\": \"PackageLangpacks ViewSet.\",\n \"summary\": + \"List package langpackss\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"base_path\",\n \"schema\": {\n \"type\": + \"ordering\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-pk\",\n + \ \"pk\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"base_path__contains\",\n \"schema\": {\n \"type\": + \"repository_version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where base_path contains value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"base_path__icontains\",\n \"schema\": {\n \"type\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where base_path contains value\"\n },\n + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_removed\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"base_path__in\",\n \"schema\": {\n \"type\": + \"exclude_fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": - \"Filter results where base_path is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Packagelangpacks\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Paginatedrpm.PackageLangpacksResponseList\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{rpm_package_langpacks_href}\": {\n \"get\": {\n \"operationId\": + \"content_rpm_packagelangpacks_read\",\n \"description\": \"PackageLangpacks + ViewSet.\",\n \"summary\": \"Inspect a package langpacks\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_package_langpacks_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Packagelangpacks\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.PackageLangpacksResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/content/rpm/packages/\": {\n \"get\": {\n + \ \"operationId\": \"content_rpm_packages_list\",\n \"description\": + \"A ViewSet for Package.\\n\\nDefine endpoint name which will appear in the + API endpoint for this content type.\\nFor example::\\n http://pulp.example.com/pulp/api/v3/content/rpm/packages/\\n\\nAlso + specify queryset and serializer for Package.\",\n \"summary\": + \"List packages\",\n \"parameters\": [\n {\n \ \"in\": \"query\",\n \"name\": - \"name__contains\",\n \"schema\": {\n \"type\": + \"arch\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n + \"Filter results where arch matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"name__icontains\",\n \"schema\": {\n \"type\": + \"arch__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n + \"Filter results where arch contains value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"name__in\",\n \"schema\": {\n \"type\": + \"arch__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": - \"Filter results where name is in a comma-separated list of values\",\n \"explode\": + \"Filter results where arch is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": + \"arch__ne\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n + \"Filter results where arch not equal to value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"namespace__name\",\n \"schema\": {\n \"type\": + \"arch__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where arch starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"checksum_type\",\n \"schema\": {\n \"type\": + \"string\",\n \"enum\": [\n \"md5\",\n + \ \"sha1\",\n \"sha1\",\n + \ \"sha224\",\n \"sha256\",\n + \ \"sha384\",\n \"sha512\",\n + \ \"unknown\"\n ]\n + \ },\n \"description\": \"Filter + results where checksum_type matches value\\n\\n* `unknown` - unknown\\n* `md5` + - md5\\n* `sha1` - sha1\\n* `sha1` - sha1\\n* `sha224` - sha224\\n* `sha256` + - sha256\\n* `sha384` - sha384\\n* `sha512` - sha512\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"checksum_type__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where checksum_type is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"checksum_type__ne\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where checksum_type + not equal to value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"epoch\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where epoch matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"epoch__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where epoch is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"epoch__ne\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where epoch not equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"filename\",\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n - \ \"name\": \"offset\",\n \"required\": + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__ne\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name not equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n @@ -6911,309 +8655,359 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-base_path\",\n \"-content_guard\",\n - \ \"-description\",\n \"-distribution_ptr\",\n - \ \"-group_roles\",\n \"-name\",\n - \ \"-namespace\",\n \"-pk\",\n - \ \"-private\",\n \"-publication\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-remote\",\n - \ \"-repository\",\n \"-repository_version\",\n - \ \"-user_roles\",\n \"base_path\",\n - \ \"content_guard\",\n \"description\",\n - \ \"distribution_ptr\",\n \"group_roles\",\n - \ \"name\",\n \"namespace\",\n - \ \"pk\",\n \"private\",\n - \ \"publication\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"remote\",\n \"repository\",\n - \ \"repository_version\",\n \"user_roles\"\n + [\n \"-arch\",\n \"-changelogs\",\n + \ \"-checksum_type\",\n \"-conflicts\",\n + \ \"-description\",\n \"-enhances\",\n + \ \"-epoch\",\n \"-evr\",\n + \ \"-files\",\n \"-is_modular\",\n + \ \"-location_base\",\n \"-location_href\",\n + \ \"-name\",\n \"-obsoletes\",\n + \ \"-pk\",\n \"-pkgId\",\n + \ \"-provides\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-recommends\",\n + \ \"-release\",\n \"-requires\",\n + \ \"-rpm_buildhost\",\n \"-rpm_group\",\n + \ \"-rpm_header_end\",\n \"-rpm_header_start\",\n + \ \"-rpm_license\",\n \"-rpm_packager\",\n + \ \"-rpm_sourcerpm\",\n \"-rpm_vendor\",\n + \ \"-size_archive\",\n \"-size_installed\",\n + \ \"-size_package\",\n \"-suggests\",\n + \ \"-summary\",\n \"-supplements\",\n + \ \"-time_build\",\n \"-time_file\",\n + \ \"-timestamp_of_interest\",\n \"-upstream_id\",\n + \ \"-url\",\n \"-version\",\n + \ \"arch\",\n \"changelogs\",\n + \ \"checksum_type\",\n \"conflicts\",\n + \ \"description\",\n \"enhances\",\n + \ \"epoch\",\n \"evr\",\n + \ \"files\",\n \"is_modular\",\n + \ \"location_base\",\n \"location_href\",\n + \ \"name\",\n \"obsoletes\",\n + \ \"pk\",\n \"pkgId\",\n + \ \"provides\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"recommends\",\n + \ \"release\",\n \"requires\",\n + \ \"rpm_buildhost\",\n \"rpm_group\",\n + \ \"rpm_header_end\",\n \"rpm_header_start\",\n + \ \"rpm_license\",\n \"rpm_packager\",\n + \ \"rpm_sourcerpm\",\n \"rpm_vendor\",\n + \ \"size_archive\",\n \"size_installed\",\n + \ \"size_package\",\n \"suggests\",\n + \ \"summary\",\n \"supplements\",\n + \ \"time_build\",\n \"time_file\",\n + \ \"timestamp_of_interest\",\n \"upstream_id\",\n + \ \"url\",\n \"version\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* `epoch` + - Epoch\\n* `-epoch` - Epoch (descending)\\n* `version` - Version\\n* `-version` + - Version (descending)\\n* `release` - Release\\n* `-release` - Release (descending)\\n* + `arch` - Arch\\n* `-arch` - Arch (descending)\\n* `evr` - Evr\\n* `-evr` - + Evr (descending)\\n* `pkgId` - Pkgid\\n* `-pkgId` - Pkgid (descending)\\n* + `checksum_type` - Checksum type\\n* `-checksum_type` - Checksum type (descending)\\n* + `summary` - Summary\\n* `-summary` - Summary (descending)\\n* `description` + - Description\\n* `-description` - Description (descending)\\n* `url` - Url\\n* + `-url` - Url (descending)\\n* `changelogs` - Changelogs\\n* `-changelogs` + - Changelogs (descending)\\n* `files` - Files\\n* `-files` - Files (descending)\\n* + `requires` - Requires\\n* `-requires` - Requires (descending)\\n* `provides` + - Provides\\n* `-provides` - Provides (descending)\\n* `conflicts` - Conflicts\\n* + `-conflicts` - Conflicts (descending)\\n* `obsoletes` - Obsoletes\\n* `-obsoletes` + - Obsoletes (descending)\\n* `suggests` - Suggests\\n* `-suggests` - Suggests + (descending)\\n* `enhances` - Enhances\\n* `-enhances` - Enhances (descending)\\n* + `recommends` - Recommends\\n* `-recommends` - Recommends (descending)\\n* + `supplements` - Supplements\\n* `-supplements` - Supplements (descending)\\n* + `location_base` - Location base\\n* `-location_base` - Location base (descending)\\n* + `location_href` - Location href\\n* `-location_href` - Location href (descending)\\n* + `rpm_buildhost` - Rpm buildhost\\n* `-rpm_buildhost` - Rpm buildhost (descending)\\n* + `rpm_group` - Rpm group\\n* `-rpm_group` - Rpm group (descending)\\n* `rpm_license` + - Rpm license\\n* `-rpm_license` - Rpm license (descending)\\n* `rpm_packager` + - Rpm packager\\n* `-rpm_packager` - Rpm packager (descending)\\n* `rpm_sourcerpm` + - Rpm sourcerpm\\n* `-rpm_sourcerpm` - Rpm sourcerpm (descending)\\n* `rpm_vendor` + - Rpm vendor\\n* `-rpm_vendor` - Rpm vendor (descending)\\n* `rpm_header_start` + - Rpm header start\\n* `-rpm_header_start` - Rpm header start (descending)\\n* + `rpm_header_end` - Rpm header end\\n* `-rpm_header_end` - Rpm header end (descending)\\n* + `size_archive` - Size archive\\n* `-size_archive` - Size archive (descending)\\n* + `size_installed` - Size installed\\n* `-size_installed` - Size installed (descending)\\n* + `size_package` - Size package\\n* `-size_package` - Size package (descending)\\n* + `time_build` - Time build\\n* `-time_build` - Time build (descending)\\n* + `time_file` - Time file\\n* `-time_file` - Time file (descending)\\n* `is_modular` + - Is modular\\n* `-is_modular` - Is modular (descending)\\n* `pk` - Pk\\n* + `-pk` - Pk (descending)\",\n \"explode\": false,\n + \ \"style\": \"form\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pkgId\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where pkgId matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pkgId__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where pkgId is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"release\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter labels by search string\"\n },\n {\n + \"Filter results where release matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"with_content\",\n \"schema\": {\n \"type\": + \"release__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter distributions based on the content served by them\"\n },\n + \"Filter results where release contains value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \"release__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where release is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"release__ne\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where release not + equal to value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"release__startswith\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where release starts + with value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"repository_version\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Repository Version referenced by + HREF\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"repository_version_added\",\n + \ \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_removed\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"sha256\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": + \"Filter results where version matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"version__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where version is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"version__ne\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where version not + equal to value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Distributions: - Container\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Content: + Packages\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedcontainer.ContainerDistributionResponseList\"\n + {\n \"$ref\": \"#/components/schemas/Paginatedrpm.PackageResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"distributions_container_container_create\",\n \"description\": - \"Trigger an asynchronous create task\",\n \"summary\": \"Create - a container distribution\",\n \"tags\": [\n \"Distributions: - Container\"\n ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/container.ContainerDistribution\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/container.ContainerDistribution\"\n }\n - \ },\n \"multipart/form-data\": + \"content_rpm_packages_create\",\n \"description\": \"Trigger + an asynchronous task to create content,optionally create new repository version.\",\n + \ \"summary\": \"Create a package\",\n \"tags\": + [\n \"Content: Packages\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/container.ContainerDistribution\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_distribution_href}\": - {\n \"get\": {\n \"operationId\": \"distributions_container_container_read\",\n - \ \"description\": \"The Container Distribution will serve the - latest version of a Repository if\\n``repository`` is specified. The Container - Distribution will serve a specific\\nrepository version if ``repository_version``. - Note that **either**\\n``repository`` or ``repository_version`` can be set - on a Container\\nDistribution, but not both.\",\n \"summary\": - \"Inspect a container distribution\",\n \"parameters\": [\n - \ {\n \"in\": \"path\",\n \"name\": - \"container_container_distribution_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Distributions: - Container\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/container.ContainerDistributionResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"put\": {\n \"operationId\": \"distributions_container_container_update\",\n - \ \"description\": \"Trigger an asynchronous update task\",\n - \ \"summary\": \"Update a container distribution\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"container_container_distribution_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Distributions: Container\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/container.ContainerDistribution\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/container.ContainerDistribution\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/container.ContainerDistribution\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"distributions_container_container_partial_update\",\n \"description\": - \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a container distribution\",\n \"parameters\": [\n - \ {\n \"in\": \"path\",\n \"name\": - \"container_container_distribution_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Distributions: Container\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Patchedcontainer.ContainerDistribution\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedcontainer.ContainerDistribution\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedcontainer.ContainerDistribution\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"distributions_container_container_delete\",\n \"description\": - \"Trigger an asynchronous delete task\",\n \"summary\": \"Delete - a container distribution\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"container_container_distribution_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Distributions: Container\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_distribution_href}add_role/\": - {\n \"post\": {\n \"operationId\": \"distributions_container_container_add_role\",\n - \ \"description\": \"Add a role for this object to users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_distribution_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Distributions: Container\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n + \"#/components/schemas/rpm.Package\"\n }\n },\n \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_distribution_href}list_roles/\": - {\n \"get\": {\n \"operationId\": \"distributions_container_container_list_roles\",\n - \ \"description\": \"List roles assigned to this object.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_distribution_href\",\n - \ \"schema\": {\n \"type\": + {\n \"$ref\": \"#/components/schemas/rpm.Package\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{rpm_package_href}\": {\n \"get\": {\n \"operationId\": + \"content_rpm_packages_read\",\n \"description\": \"A ViewSet + for Package.\\n\\nDefine endpoint name which will appear in the API endpoint + for this content type.\\nFor example::\\n http://pulp.example.com/pulp/api/v3/content/rpm/packages/\\n\\nAlso + specify queryset and serializer for Package.\",\n \"summary\": + \"Inspect a package\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"rpm_package_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Distributions: Container\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_distribution_href}my_permissions/\": - {\n \"get\": {\n \"operationId\": \"distributions_container_container_my_permissions\",\n - \ \"description\": \"List permissions available to the current - user on this object.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"container_container_distribution_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Distributions: - Container\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Content: + Packages\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_distribution_href}remove_role/\": - {\n \"post\": {\n \"operationId\": \"distributions_container_container_remove_role\",\n - \ \"description\": \"Remove a role for this object from users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_distribution_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Distributions: Container\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + {\n \"$ref\": \"#/components/schemas/rpm.PackageResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/distributions/deb/apt/\": - {\n \"get\": {\n \"operationId\": \"distributions_deb_apt_list\",\n - \ \"description\": \"An AptDistribution is just an AptPublication - made available via the content app.\\n\\nCreating an AptDistribution is a - comparatively quick action. This way Pulp users may take as\\nmuch time as - is needed to prepare a VerbatimPublication or AptPublication, and then control - the\\nexact moment when that publication is made available.\",\n \"summary\": - \"List apt distributions\",\n \"parameters\": [\n {\n + \ }\n },\n \"/pulp/api/v3/content/rpm/repo_metadata_files/\": + {\n \"get\": {\n \"operationId\": \"content_rpm_repo_metadata_files_list\",\n + \ \"description\": \"RepoMetadataFile Viewset.\",\n \"summary\": + \"List repo metadata files\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"base_path\",\n \"schema\": {\n \"type\": + \"ordering\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-pk\",\n + \ \"pk\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"base_path__contains\",\n \"schema\": {\n \"type\": + \"repository_version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where base_path contains value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"base_path__icontains\",\n \"schema\": {\n \"type\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where base_path contains value\"\n },\n + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_removed\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"base_path__in\",\n \"schema\": {\n \"type\": + \"exclude_fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": - \"Filter results where base_path is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"name\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Repo_Metadata_Files\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Paginatedrpm.RepoMetadataFileResponseList\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{rpm_repo_metadata_file_href}\": {\n \"get\": {\n \"operationId\": + \"content_rpm_repo_metadata_files_read\",\n \"description\": + \"RepoMetadataFile Viewset.\",\n \"summary\": \"Inspect a repo + metadata file\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"rpm_repo_metadata_file_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Content: + Repo_Metadata_Files\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.RepoMetadataFileResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/contentguards/\": {\n \"get\": {\n \"operationId\": + \"contentguards_list\",\n \"description\": \"Endpoint to list + all contentguards.\",\n \"summary\": \"List content guards\",\n + \ \"parameters\": [\n {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"name__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": @@ -7223,12 +9017,28 @@ interactions: \"string\"\n },\n \"description\": \"Filter results where name contains value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": \"Filter results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where name starts with value\"\n },\n @@ -7240,224 +9050,347 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-ansible_ansibledistribution\",\n - \ \"-base_path\",\n \"-container_containerdistribution\",\n - \ \"-content_guard\",\n \"-deb_aptdistribution\",\n - \ \"-file_filedistribution\",\n \"-group_roles\",\n - \ \"-maven_mavendistribution\",\n \"-name\",\n - \ \"-pk\",\n \"-publication\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-python_pythondistribution\",\n - \ \"-remote\",\n \"-repository\",\n - \ \"-repository_version\",\n \"-rpm_rpmdistribution\",\n - \ \"-user_roles\",\n \"ansible_ansibledistribution\",\n - \ \"base_path\",\n \"container_containerdistribution\",\n - \ \"content_guard\",\n \"deb_aptdistribution\",\n - \ \"file_filedistribution\",\n \"group_roles\",\n - \ \"maven_mavendistribution\",\n \"name\",\n - \ \"pk\",\n \"publication\",\n + [\n \"-description\",\n \"-name\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"description\",\n + \ \"name\",\n \"pk\",\n \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythondistribution\",\n - \ \"remote\",\n \"repository\",\n - \ \"repository_version\",\n \"rpm_rpmdistribution\",\n - \ \"user_roles\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + \ \"pulp_last_updated\",\n \"pulp_type\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter labels by search string\"\n + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_type\",\n \"schema\": {\n \"type\": + \"string\",\n \"enum\": [\n \"certguard.rhsm\",\n + \ \"certguard.x509\",\n \"core.composite\",\n + \ \"core.content_redirect\",\n \"core.header\",\n + \ \"core.rbac\"\n ]\n + \ },\n \"description\": \"Pulp + type\\n\\n* `core.rbac` - core.rbac\\n* `core.content_redirect` - core.content_redirect\\n* + `core.header` - core.header\\n* `core.composite` - core.composite\\n* `certguard.rhsm` + - certguard.rhsm\\n* `certguard.x509` - certguard.x509\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_type__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"certguard.rhsm\",\n + \ \"certguard.x509\",\n \"core.composite\",\n + \ \"core.content_redirect\",\n \"core.header\",\n + \ \"core.rbac\"\n ]\n + \ }\n },\n \"description\": + \"Multiple values may be separated by commas.\\n\\n* `core.rbac` - core.rbac\\n* + `core.content_redirect` - core.content_redirect\\n* `core.header` - core.header\\n* + `core.composite` - core.composite\\n* `certguard.rhsm` - certguard.rhsm\\n* + `certguard.x509` - certguard.x509\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Contentguards\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedContentGuardResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/contentguards/certguard/rhsm/\": + {\n \"get\": {\n \"operationId\": \"contentguards_certguard_rhsm_list\",\n + \ \"description\": \"RHSMCertGuard API Viewsets.\",\n \"summary\": + \"List rhsm cert guards\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n \ },\n {\n \"in\": - \"query\",\n \"name\": \"with_content\",\n \"schema\": + \"query\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter distributions based on the - content served by them\"\n },\n {\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-description\",\n \"-name\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"description\",\n + \ \"name\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Distributions: - Apt\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Contentguards: + Rhsm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginateddeb.AptDistributionResponseList\"\n + {\n \"$ref\": \"#/components/schemas/Paginatedcertguard.RHSMCertGuardResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"distributions_deb_apt_create\",\n \"description\": \"Trigger - an asynchronous create task\",\n \"summary\": \"Create an apt - distribution\",\n \"tags\": [\n \"Distributions: - Apt\"\n ],\n \"requestBody\": {\n \"content\": + \"contentguards_certguard_rhsm_create\",\n \"description\": + \"RHSMCertGuard API Viewsets.\",\n \"summary\": \"Create a + rhsm cert guard\",\n \"tags\": [\n \"Contentguards: + Rhsm\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/deb.AptDistribution\"\n + {\n \"$ref\": \"#/components/schemas/certguard.RHSMCertGuard\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptDistribution\"\n }\n + \"#/components/schemas/certguard.RHSMCertGuard\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptDistribution\"\n }\n + \"#/components/schemas/certguard.RHSMCertGuard\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/certguard.RHSMCertGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{deb_apt_distribution_href}\": {\n \"get\": - {\n \"operationId\": \"distributions_deb_apt_read\",\n \"description\": - \"An AptDistribution is just an AptPublication made available via the content - app.\\n\\nCreating an AptDistribution is a comparatively quick action. This - way Pulp users may take as\\nmuch time as is needed to prepare a VerbatimPublication - or AptPublication, and then control the\\nexact moment when that publication - is made available.\",\n \"summary\": \"Inspect an apt distribution\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"deb_apt_distribution_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \ }\n },\n \"{certguard_r_h_s_m_cert_guard_href}\": + {\n \"get\": {\n \"operationId\": \"contentguards_certguard_rhsm_read\",\n + \ \"description\": \"RHSMCertGuard API Viewsets.\",\n \"summary\": + \"Inspect a rhsm cert guard\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"certguard_r_h_s_m_cert_guard_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Distributions: Apt\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptDistributionResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"distributions_deb_apt_update\",\n \"description\": - \"Trigger an asynchronous update task\",\n \"summary\": \"Update - an apt distribution\",\n \"parameters\": [\n {\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Contentguards: + Rhsm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/certguard.RHSMCertGuardResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"contentguards_certguard_rhsm_update\",\n + \ \"description\": \"RHSMCertGuard API Viewsets.\",\n \"summary\": + \"Update a rhsm cert guard\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"deb_apt_distribution_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Distributions: Apt\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptDistribution\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": + \"certguard_r_h_s_m_cert_guard_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Contentguards: Rhsm\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/certguard.RHSMCertGuard\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptDistribution\"\n }\n + \"#/components/schemas/certguard.RHSMCertGuard\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptDistribution\"\n }\n + \"#/components/schemas/certguard.RHSMCertGuard\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/certguard.RHSMCertGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"patch\": {\n \"operationId\": - \"distributions_deb_apt_partial_update\",\n \"description\": - \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update an apt distribution\",\n \"parameters\": [\n {\n + \"contentguards_certguard_rhsm_partial_update\",\n \"description\": + \"RHSMCertGuard API Viewsets.\",\n \"summary\": \"Update a + rhsm cert guard\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"deb_apt_distribution_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Distributions: Apt\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patcheddeb.AptDistribution\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": + \"certguard_r_h_s_m_cert_guard_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Contentguards: Rhsm\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Patchedcertguard.RHSMCertGuard\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patcheddeb.AptDistribution\"\n }\n + \"#/components/schemas/Patchedcertguard.RHSMCertGuard\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patcheddeb.AptDistribution\"\n }\n + \"#/components/schemas/Patchedcertguard.RHSMCertGuard\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/certguard.RHSMCertGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"delete\": {\n \"operationId\": - \"distributions_deb_apt_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete an apt - distribution\",\n \"parameters\": [\n {\n + \"contentguards_certguard_rhsm_delete\",\n \"description\": + \"RHSMCertGuard API Viewsets.\",\n \"summary\": \"Delete a + rhsm cert guard\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"deb_apt_distribution_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Distributions: Apt\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/distributions/file/file/\": {\n \"get\": - {\n \"operationId\": \"distributions_file_file_list\",\n \"description\": - \"\\nFileDistributions host File\\nPublications which makes the metadata and - the referenced File Content available to HTTP\\nclients. Additionally, a FileDistribution - with an associated FilePublication can be the target\\nurl of a File Remote - , allowing\\nanother instance of Pulp to sync the content.\",\n \"summary\": - \"List file distributions\",\n \"parameters\": [\n {\n - \ \"in\": \"query\",\n \"name\": - \"base_path\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"base_path__contains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where base_path contains value\"\n },\n + \"certguard_r_h_s_m_cert_guard_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Contentguards: Rhsm\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"204\": {\n \"description\": + \"No response body\"\n }\n }\n }\n + \ },\n \"/pulp/api/v3/contentguards/certguard/x509/\": {\n \"get\": + {\n \"operationId\": \"contentguards_certguard_x509_list\",\n + \ \"description\": \"X509CertGuard API Viewsets.\",\n \"summary\": + \"List x509 cert guards\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"base_path__icontains\",\n \"schema\": {\n \"type\": + \"name__iregex\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where base_path contains value\"\n },\n + \"Filter results where name matches regex value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"base_path__in\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where base_path is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__contains\",\n \"schema\": {\n \"type\": + \"name__istartswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__icontains\",\n \"schema\": {\n \"type\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__in\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where name is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n + \"Filter results where name matches regex value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": @@ -7470,323 +9403,218 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-ansible_ansibledistribution\",\n - \ \"-base_path\",\n \"-container_containerdistribution\",\n - \ \"-content_guard\",\n \"-deb_aptdistribution\",\n - \ \"-file_filedistribution\",\n \"-group_roles\",\n - \ \"-maven_mavendistribution\",\n \"-name\",\n - \ \"-pk\",\n \"-publication\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-python_pythondistribution\",\n - \ \"-remote\",\n \"-repository\",\n - \ \"-repository_version\",\n \"-rpm_rpmdistribution\",\n - \ \"-user_roles\",\n \"ansible_ansibledistribution\",\n - \ \"base_path\",\n \"container_containerdistribution\",\n - \ \"content_guard\",\n \"deb_aptdistribution\",\n - \ \"file_filedistribution\",\n \"group_roles\",\n - \ \"maven_mavendistribution\",\n \"name\",\n - \ \"pk\",\n \"publication\",\n + [\n \"-description\",\n \"-name\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"description\",\n + \ \"name\",\n \"pk\",\n \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythondistribution\",\n - \ \"remote\",\n \"repository\",\n - \ \"repository_version\",\n \"rpm_rpmdistribution\",\n - \ \"user_roles\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + \ \"pulp_last_updated\",\n \"pulp_type\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter labels by search string\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"with_content\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter distributions based on the - content served by them\"\n },\n {\n + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Distributions: - File\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Contentguards: + X509\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedfile.FileDistributionResponseList\"\n + {\n \"$ref\": \"#/components/schemas/Paginatedcertguard.X509CertGuardResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"distributions_file_file_create\",\n \"description\": \"Trigger - an asynchronous create task\",\n \"summary\": \"Create a file - distribution\",\n \"tags\": [\n \"Distributions: - File\"\n ],\n \"requestBody\": {\n \"content\": + \"contentguards_certguard_x509_create\",\n \"description\": + \"X509CertGuard API Viewsets.\",\n \"summary\": \"Create a + x509 cert guard\",\n \"tags\": [\n \"Contentguards: + X509\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/file.FileDistribution\"\n + {\n \"$ref\": \"#/components/schemas/certguard.X509CertGuard\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileDistribution\"\n }\n + \"#/components/schemas/certguard.X509CertGuard\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileDistribution\"\n }\n + \"#/components/schemas/certguard.X509CertGuard\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/certguard.X509CertGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{file_file_distribution_href}\": {\n - \ \"get\": {\n \"operationId\": \"distributions_file_file_read\",\n - \ \"description\": \"\\nFileDistributions host File\\nPublications - which makes the metadata and the referenced File Content available to HTTP\\nclients. - Additionally, a FileDistribution with an associated FilePublication can be - the target\\nurl of a File Remote , allowing\\nanother instance of Pulp to - sync the content.\",\n \"summary\": \"Inspect a file distribution\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"file_file_distribution_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Distributions: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileDistributionResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"distributions_file_file_update\",\n - \ \"description\": \"Trigger an asynchronous update task\",\n - \ \"summary\": \"Update a file distribution\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"file_file_distribution_href\",\n \"schema\": {\n + \ }\n },\n \"{certguard_x509_cert_guard_href}\": {\n + \ \"get\": {\n \"operationId\": \"contentguards_certguard_x509_read\",\n + \ \"description\": \"X509CertGuard API Viewsets.\",\n \"summary\": + \"Inspect a x509 cert guard\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"certguard_x509_cert_guard_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Contentguards: + X509\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/certguard.X509CertGuardResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"contentguards_certguard_x509_update\",\n + \ \"description\": \"X509CertGuard API Viewsets.\",\n \"summary\": + \"Update a x509 cert guard\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"certguard_x509_cert_guard_href\",\n \"schema\": {\n \ \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Distributions: File\"\n + \ \"tags\": [\n \"Contentguards: X509\"\n \ ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/file.FileDistribution\"\n + {\n \"$ref\": \"#/components/schemas/certguard.X509CertGuard\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileDistribution\"\n }\n + \"#/components/schemas/certguard.X509CertGuard\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileDistribution\"\n }\n + \"#/components/schemas/certguard.X509CertGuard\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/certguard.X509CertGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"patch\": {\n \"operationId\": - \"distributions_file_file_partial_update\",\n \"description\": - \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a file distribution\",\n \"parameters\": [\n {\n + \"contentguards_certguard_x509_partial_update\",\n \"description\": + \"X509CertGuard API Viewsets.\",\n \"summary\": \"Update a + x509 cert guard\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"file_file_distribution_href\",\n \"schema\": {\n + \"certguard_x509_cert_guard_href\",\n \"schema\": {\n \ \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Distributions: File\"\n + \ \"tags\": [\n \"Contentguards: X509\"\n \ ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Patchedfile.FileDistribution\"\n + {\n \"$ref\": \"#/components/schemas/Patchedcertguard.X509CertGuard\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedfile.FileDistribution\"\n }\n + \"#/components/schemas/Patchedcertguard.X509CertGuard\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedfile.FileDistribution\"\n }\n + \"#/components/schemas/Patchedcertguard.X509CertGuard\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/certguard.X509CertGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"delete\": {\n \"operationId\": - \"distributions_file_file_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete a file - distribution\",\n \"parameters\": [\n {\n + \"contentguards_certguard_x509_delete\",\n \"description\": + \"X509CertGuard API Viewsets.\",\n \"summary\": \"Delete a + x509 cert guard\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"file_file_distribution_href\",\n \"schema\": {\n + \"certguard_x509_cert_guard_href\",\n \"schema\": {\n \ \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Distributions: File\"\n + \ \"tags\": [\n \"Contentguards: X509\"\n \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{file_file_distribution_href}add_role/\": - {\n \"post\": {\n \"operationId\": \"distributions_file_file_add_role\",\n - \ \"description\": \"Add a role for this object to users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"file_file_distribution_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Distributions: File\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{file_file_distribution_href}list_roles/\": - {\n \"get\": {\n \"operationId\": \"distributions_file_file_list_roles\",\n - \ \"description\": \"List roles assigned to this object.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"file_file_distribution_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"204\": {\n \"description\": + \"No response body\"\n }\n }\n }\n + \ },\n \"/pulp/api/v3/contentguards/core/composite/\": {\n \"get\": + {\n \"operationId\": \"contentguards_core_composite_list\",\n + \ \"description\": \"Content guard that queries a list-of content-guards + for access permissions.\",\n \"summary\": \"List composite + content guards\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Distributions: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ObjectRolesResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{file_file_distribution_href}my_permissions/\": {\n \"get\": - {\n \"operationId\": \"distributions_file_file_my_permissions\",\n - \ \"description\": \"List permissions available to the current - user on this object.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"file_file_distribution_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Distributions: - File\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{file_file_distribution_href}remove_role/\": - {\n \"post\": {\n \"operationId\": \"distributions_file_file_remove_role\",\n - \ \"description\": \"Remove a role for this object from users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"file_file_distribution_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Distributions: File\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/distributions/maven/maven/\": - {\n \"get\": {\n \"operationId\": \"distributions_maven_maven_list\",\n - \ \"description\": \"ViewSet for Maven Distributions.\",\n \"summary\": - \"List maven distributions\",\n \"parameters\": [\n {\n - \ \"in\": \"query\",\n \"name\": - \"base_path\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"base_path__contains\",\n \"schema\": {\n \"type\": + \"name__iregex\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where base_path contains value\"\n },\n + \"Filter results where name matches regex value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"base_path__icontains\",\n \"schema\": {\n \"type\": + \"name__istartswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where base_path contains value\"\n },\n + \"Filter results where name starts with value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"base_path__in\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where base_path is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__contains\",\n \"schema\": {\n \"type\": + \"name__regex\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__icontains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__in\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where name is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n + \"Filter results where name matches regex value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": @@ -7799,221 +9627,330 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-ansible_ansibledistribution\",\n - \ \"-base_path\",\n \"-container_containerdistribution\",\n - \ \"-content_guard\",\n \"-deb_aptdistribution\",\n - \ \"-file_filedistribution\",\n \"-group_roles\",\n - \ \"-maven_mavendistribution\",\n \"-name\",\n - \ \"-pk\",\n \"-publication\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-python_pythondistribution\",\n - \ \"-remote\",\n \"-repository\",\n - \ \"-repository_version\",\n \"-rpm_rpmdistribution\",\n - \ \"-user_roles\",\n \"ansible_ansibledistribution\",\n - \ \"base_path\",\n \"container_containerdistribution\",\n - \ \"content_guard\",\n \"deb_aptdistribution\",\n - \ \"file_filedistribution\",\n \"group_roles\",\n - \ \"maven_mavendistribution\",\n \"name\",\n - \ \"pk\",\n \"publication\",\n + [\n \"-description\",\n \"-name\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"description\",\n + \ \"name\",\n \"pk\",\n \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythondistribution\",\n - \ \"remote\",\n \"repository\",\n - \ \"repository_version\",\n \"rpm_rpmdistribution\",\n - \ \"user_roles\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + \ \"pulp_last_updated\",\n \"pulp_type\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter labels by search string\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"with_content\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter distributions based on the - content served by them\"\n },\n {\n + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Distributions: - Maven\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Contentguards: + Composite\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedmaven.MavenDistributionResponseList\"\n + {\n \"$ref\": \"#/components/schemas/PaginatedCompositeContentGuardResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"distributions_maven_maven_create\",\n \"description\": \"Trigger - an asynchronous create task\",\n \"summary\": \"Create a maven - distribution\",\n \"tags\": [\n \"Distributions: - Maven\"\n ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/maven.MavenDistribution\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": + \"contentguards_core_composite_create\",\n \"description\": + \"Content guard that queries a list-of content-guards for access permissions.\",\n + \ \"summary\": \"Create a composite content guard\",\n \"tags\": + [\n \"Contentguards: Composite\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/maven.MavenDistribution\"\n }\n + \"#/components/schemas/CompositeContentGuard\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CompositeContentGuard\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/maven.MavenDistribution\"\n }\n + \"#/components/schemas/CompositeContentGuard\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/CompositeContentGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{maven_maven_distribution_href}\": {\n - \ \"get\": {\n \"operationId\": \"distributions_maven_maven_read\",\n - \ \"description\": \"ViewSet for Maven Distributions.\",\n \"summary\": - \"Inspect a maven distribution\",\n \"parameters\": [\n {\n + \ }\n },\n \"{composite_content_guard_href}\": {\n + \ \"get\": {\n \"operationId\": \"contentguards_core_composite_read\",\n + \ \"description\": \"Content guard that queries a list-of content-guards + for access permissions.\",\n \"summary\": \"Inspect a composite + content guard\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"maven_maven_distribution_href\",\n \"schema\": {\n + \"composite_content_guard_href\",\n \"schema\": {\n \ \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Distributions: - Maven\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Contentguards: + Composite\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/maven.MavenDistributionResponse\"\n + {\n \"$ref\": \"#/components/schemas/CompositeContentGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"put\": {\n \"operationId\": \"distributions_maven_maven_update\",\n - \ \"description\": \"Trigger an asynchronous update task\",\n - \ \"summary\": \"Update a maven distribution\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"maven_maven_distribution_href\",\n \"schema\": {\n + \ },\n \"put\": {\n \"operationId\": \"contentguards_core_composite_update\",\n + \ \"description\": \"Content guard that queries a list-of content-guards + for access permissions.\",\n \"summary\": \"Update a composite + content guard\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"composite_content_guard_href\",\n \"schema\": {\n \ \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Distributions: Maven\"\n + \ \"tags\": [\n \"Contentguards: Composite\"\n \ ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/maven.MavenDistribution\"\n + {\n \"$ref\": \"#/components/schemas/CompositeContentGuard\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/maven.MavenDistribution\"\n }\n + \"#/components/schemas/CompositeContentGuard\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/maven.MavenDistribution\"\n }\n + \"#/components/schemas/CompositeContentGuard\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/CompositeContentGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"patch\": {\n \"operationId\": - \"distributions_maven_maven_partial_update\",\n \"description\": - \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a maven distribution\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"maven_maven_distribution_href\",\n \"schema\": {\n + \"contentguards_core_composite_partial_update\",\n \"description\": + \"Content guard that queries a list-of content-guards for access permissions.\",\n + \ \"summary\": \"Update a composite content guard\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"composite_content_guard_href\",\n \"schema\": {\n \ \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Distributions: Maven\"\n + \ \"tags\": [\n \"Contentguards: Composite\"\n \ ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Patchedmaven.MavenDistribution\"\n + {\n \"$ref\": \"#/components/schemas/PatchedCompositeContentGuard\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedmaven.MavenDistribution\"\n }\n + \"#/components/schemas/PatchedCompositeContentGuard\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedmaven.MavenDistribution\"\n }\n + \"#/components/schemas/PatchedCompositeContentGuard\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/CompositeContentGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"delete\": {\n \"operationId\": - \"distributions_maven_maven_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete a maven - distribution\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"maven_maven_distribution_href\",\n \"schema\": {\n + \"contentguards_core_composite_delete\",\n \"description\": + \"Content guard that queries a list-of content-guards for access permissions.\",\n + \ \"summary\": \"Delete a composite content guard\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"composite_content_guard_href\",\n \"schema\": {\n \ \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Distributions: Maven\"\n + \ \"tags\": [\n \"Contentguards: Composite\"\n \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"204\": {\n \"description\": + \"No response body\"\n }\n }\n }\n + \ },\n \"{composite_content_guard_href}add_role/\": {\n \"post\": + {\n \"operationId\": \"contentguards_core_composite_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"composite_content_guard_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Contentguards: Composite\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{composite_content_guard_href}list_roles/\": {\n \"get\": + {\n \"operationId\": \"contentguards_core_composite_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"composite_content_guard_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Contentguards: + Composite\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/distributions/python/pypi/\": - {\n \"get\": {\n \"operationId\": \"distributions_python_pypi_list\",\n - \ \"description\": \"\\nPulp Python Distributions are used to - distribute Python content from\\nPython Repositories or\\nPython Publications. - \ Pulp Python\\nDistributions should not be confused with \\\"Python Distribution\\\" - as defined by the Python\\ncommunity. In Pulp usage, Python content is referred - to as Python Package Content.\",\n \"summary\": \"List python - distributions\",\n \"parameters\": [\n {\n - \ \"in\": \"query\",\n \"name\": - \"base_path\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n + \ }\n },\n \"{composite_content_guard_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"contentguards_core_composite_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"composite_content_guard_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"base_path__contains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where base_path contains value\"\n },\n + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Contentguards: + Composite\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{composite_content_guard_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"contentguards_core_composite_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"composite_content_guard_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Contentguards: Composite\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/contentguards/core/content_redirect/\": {\n \"get\": + {\n \"operationId\": \"contentguards_core_content_redirect_list\",\n + \ \"description\": \"Content guard to protect preauthenticated + redirects to the content app.\",\n \"summary\": \"List content + redirect content guards\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"base_path__icontains\",\n \"schema\": {\n \"type\": + \"name__iregex\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where base_path contains value\"\n },\n + \"Filter results where name matches regex value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"base_path__in\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where base_path is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__contains\",\n \"schema\": {\n \"type\": + \"name__istartswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__icontains\",\n \"schema\": {\n \"type\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__in\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where name is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n + \"Filter results where name matches regex value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": @@ -8026,207 +9963,305 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-ansible_ansibledistribution\",\n - \ \"-base_path\",\n \"-container_containerdistribution\",\n - \ \"-content_guard\",\n \"-deb_aptdistribution\",\n - \ \"-file_filedistribution\",\n \"-group_roles\",\n - \ \"-maven_mavendistribution\",\n \"-name\",\n - \ \"-pk\",\n \"-publication\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-python_pythondistribution\",\n - \ \"-remote\",\n \"-repository\",\n - \ \"-repository_version\",\n \"-rpm_rpmdistribution\",\n - \ \"-user_roles\",\n \"ansible_ansibledistribution\",\n - \ \"base_path\",\n \"container_containerdistribution\",\n - \ \"content_guard\",\n \"deb_aptdistribution\",\n - \ \"file_filedistribution\",\n \"group_roles\",\n - \ \"maven_mavendistribution\",\n \"name\",\n - \ \"pk\",\n \"publication\",\n + [\n \"-description\",\n \"-name\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"description\",\n + \ \"name\",\n \"pk\",\n \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythondistribution\",\n - \ \"remote\",\n \"repository\",\n - \ \"repository_version\",\n \"rpm_rpmdistribution\",\n - \ \"user_roles\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + \ \"pulp_last_updated\",\n \"pulp_type\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter labels by search string\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"with_content\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter distributions based on the - content served by them\"\n },\n {\n + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Distributions: - Pypi\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedpython.PythonDistributionResponseList\"\n + \ ],\n \"tags\": [\n \"Contentguards: + Content_Redirect\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PaginatedContentRedirectContentGuardResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"distributions_python_pypi_create\",\n \"description\": \"Trigger - an asynchronous create task\",\n \"summary\": \"Create a python - distribution\",\n \"tags\": [\n \"Distributions: - Pypi\"\n ],\n \"requestBody\": {\n \"content\": + \"contentguards_core_content_redirect_create\",\n \"description\": + \"Content guard to protect preauthenticated redirects to the content app.\",\n + \ \"summary\": \"Create a content redirect content guard\",\n + \ \"tags\": [\n \"Contentguards: Content_Redirect\"\n + \ ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/python.PythonDistribution\"\n + {\n \"$ref\": \"#/components/schemas/ContentRedirectContentGuard\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonDistribution\"\n }\n + \"#/components/schemas/ContentRedirectContentGuard\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonDistribution\"\n }\n + \"#/components/schemas/ContentRedirectContentGuard\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/ContentRedirectContentGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{python_python_distribution_href}\": - {\n \"get\": {\n \"operationId\": \"distributions_python_pypi_read\",\n - \ \"description\": \"\\nPulp Python Distributions are used to - distribute Python content from\\nPython Repositories or\\nPython Publications. - \ Pulp Python\\nDistributions should not be confused with \\\"Python Distribution\\\" - as defined by the Python\\ncommunity. In Pulp usage, Python content is referred - to as Python Package Content.\",\n \"summary\": \"Inspect a - python distribution\",\n \"parameters\": [\n {\n + \ }\n },\n \"{content_redirect_content_guard_href}\": + {\n \"get\": {\n \"operationId\": \"contentguards_core_content_redirect_read\",\n + \ \"description\": \"Content guard to protect preauthenticated + redirects to the content app.\",\n \"summary\": \"Inspect a + content redirect content guard\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"python_python_distribution_href\",\n \"schema\": + \"content_redirect_content_guard_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Distributions: - Pypi\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/python.PythonDistributionResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"put\": {\n \"operationId\": \"distributions_python_pypi_update\",\n - \ \"description\": \"Trigger an asynchronous update task\",\n - \ \"summary\": \"Update a python distribution\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"python_python_distribution_href\",\n \"schema\": + \ ],\n \"tags\": [\n \"Contentguards: + Content_Redirect\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ContentRedirectContentGuardResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n },\n \"put\": + {\n \"operationId\": \"contentguards_core_content_redirect_update\",\n + \ \"description\": \"Content guard to protect preauthenticated + redirects to the content app.\",\n \"summary\": \"Update a + content redirect content guard\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"content_redirect_content_guard_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Distributions: Pypi\"\n + \ \"tags\": [\n \"Contentguards: Content_Redirect\"\n \ ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/python.PythonDistribution\"\n + {\n \"$ref\": \"#/components/schemas/ContentRedirectContentGuard\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonDistribution\"\n }\n + \"#/components/schemas/ContentRedirectContentGuard\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonDistribution\"\n }\n + \"#/components/schemas/ContentRedirectContentGuard\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/ContentRedirectContentGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"patch\": {\n \"operationId\": - \"distributions_python_pypi_partial_update\",\n \"description\": - \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a python distribution\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"python_python_distribution_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Distributions: Pypi\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Patchedpython.PythonDistribution\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": + \"contentguards_core_content_redirect_partial_update\",\n \"description\": + \"Content guard to protect preauthenticated redirects to the content app.\",\n + \ \"summary\": \"Update a content redirect content guard\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"content_redirect_content_guard_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Contentguards: Content_Redirect\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedpython.PythonDistribution\"\n }\n + \"#/components/schemas/PatchedContentRedirectContentGuard\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PatchedContentRedirectContentGuard\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedpython.PythonDistribution\"\n }\n + \"#/components/schemas/PatchedContentRedirectContentGuard\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/ContentRedirectContentGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"delete\": {\n \"operationId\": - \"distributions_python_pypi_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete a python - distribution\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"python_python_distribution_href\",\n \"schema\": + \"contentguards_core_content_redirect_delete\",\n \"description\": + \"Content guard to protect preauthenticated redirects to the content app.\",\n + \ \"summary\": \"Delete a content redirect content guard\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"content_redirect_content_guard_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Contentguards: Content_Redirect\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"204\": {\n \"description\": + \"No response body\"\n }\n }\n }\n + \ },\n \"{content_redirect_content_guard_href}add_role/\": {\n + \ \"post\": {\n \"operationId\": \"contentguards_core_content_redirect_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"content_redirect_content_guard_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Distributions: Pypi\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/distributions/rpm/rpm/\": - {\n \"get\": {\n \"operationId\": \"distributions_rpm_rpm_list\",\n - \ \"description\": \"ViewSet for RPM Distributions.\",\n \"summary\": - \"List rpm distributions\",\n \"parameters\": [\n {\n - \ \"in\": \"query\",\n \"name\": - \"base_path\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n + \ \"tags\": [\n \"Contentguards: Content_Redirect\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{content_redirect_content_guard_href}list_roles/\": {\n \"get\": + {\n \"operationId\": \"contentguards_core_content_redirect_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"content_redirect_content_guard_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"base_path__contains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where base_path contains value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"base_path__icontains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where base_path contains value\"\n },\n + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"base_path__in\",\n \"schema\": {\n \"type\": + \"exclude_fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": - \"Filter results where base_path is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"name\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Contentguards: + Content_Redirect\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ObjectRolesResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{content_redirect_content_guard_href}my_permissions/\": {\n \"get\": + {\n \"operationId\": \"contentguards_core_content_redirect_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"content_redirect_content_guard_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Contentguards: + Content_Redirect\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/MyPermissionsResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{content_redirect_content_guard_href}remove_role/\": {\n \"post\": + {\n \"operationId\": \"contentguards_core_content_redirect_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"content_redirect_content_guard_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Contentguards: Content_Redirect\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/contentguards/core/header/\": {\n \"get\": + {\n \"operationId\": \"contentguards_core_header_list\",\n + \ \"description\": \"Content guard to protect the content app + using a specific header.\",\n \"summary\": \"List header content + guards\",\n \"parameters\": [\n {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"name__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": @@ -8236,12 +10271,28 @@ interactions: \"string\"\n },\n \"description\": \"Filter results where name contains value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": \"Filter results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where name starts with value\"\n },\n @@ -8253,333 +10304,297 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-ansible_ansibledistribution\",\n - \ \"-base_path\",\n \"-container_containerdistribution\",\n - \ \"-content_guard\",\n \"-deb_aptdistribution\",\n - \ \"-file_filedistribution\",\n \"-group_roles\",\n - \ \"-maven_mavendistribution\",\n \"-name\",\n - \ \"-pk\",\n \"-publication\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-python_pythondistribution\",\n - \ \"-remote\",\n \"-repository\",\n - \ \"-repository_version\",\n \"-rpm_rpmdistribution\",\n - \ \"-user_roles\",\n \"ansible_ansibledistribution\",\n - \ \"base_path\",\n \"container_containerdistribution\",\n - \ \"content_guard\",\n \"deb_aptdistribution\",\n - \ \"file_filedistribution\",\n \"group_roles\",\n - \ \"maven_mavendistribution\",\n \"name\",\n - \ \"pk\",\n \"publication\",\n + [\n \"-description\",\n \"-name\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"description\",\n + \ \"name\",\n \"pk\",\n \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythondistribution\",\n - \ \"remote\",\n \"repository\",\n - \ \"repository_version\",\n \"rpm_rpmdistribution\",\n - \ \"user_roles\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + \ \"pulp_last_updated\",\n \"pulp_type\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter labels by search string\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"with_content\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter distributions based on the - content served by them\"\n },\n {\n + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Distributions: - Rpm\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Contentguards: + Header\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedrpm.RpmDistributionResponseList\"\n + {\n \"$ref\": \"#/components/schemas/PaginatedHeaderContentGuardResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"distributions_rpm_rpm_create\",\n \"description\": \"Trigger - an asynchronous create task\",\n \"summary\": \"Create a rpm - distribution\",\n \"tags\": [\n \"Distributions: - Rpm\"\n ],\n \"requestBody\": {\n \"content\": + \"contentguards_core_header_create\",\n \"description\": \"Content + guard to protect the content app using a specific header.\",\n \"summary\": + \"Create a header content guard\",\n \"tags\": [\n \"Contentguards: + Header\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/rpm.RpmDistribution\"\n + {\n \"$ref\": \"#/components/schemas/HeaderContentGuard\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmDistribution\"\n }\n + \"#/components/schemas/HeaderContentGuard\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmDistribution\"\n }\n + \"#/components/schemas/HeaderContentGuard\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/HeaderContentGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{rpm_rpm_distribution_href}\": {\n \"get\": - {\n \"operationId\": \"distributions_rpm_rpm_read\",\n \"description\": - \"ViewSet for RPM Distributions.\",\n \"summary\": \"Inspect - a rpm distribution\",\n \"parameters\": [\n {\n + \ }\n },\n \"{header_content_guard_href}\": {\n \"get\": + {\n \"operationId\": \"contentguards_core_header_read\",\n + \ \"description\": \"Content guard to protect the content app + using a specific header.\",\n \"summary\": \"Inspect a header + content guard\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"rpm_rpm_distribution_href\",\n \"schema\": {\n \"type\": + \"header_content_guard_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Distributions: Rpm\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmDistributionResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"distributions_rpm_rpm_update\",\n \"description\": - \"Trigger an asynchronous update task\",\n \"summary\": \"Update - a rpm distribution\",\n \"parameters\": [\n {\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Contentguards: + Header\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/HeaderContentGuardResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"contentguards_core_header_update\",\n + \ \"description\": \"Content guard to protect the content app + using a specific header.\",\n \"summary\": \"Update a header + content guard\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"rpm_rpm_distribution_href\",\n \"schema\": {\n \"type\": + \"header_content_guard_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Distributions: Rpm\"\n ],\n \"requestBody\": + [\n \"Contentguards: Header\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmDistribution\"\n }\n + \"#/components/schemas/HeaderContentGuard\"\n }\n \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmDistribution\"\n }\n + \"#/components/schemas/HeaderContentGuard\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmDistribution\"\n }\n + \"#/components/schemas/HeaderContentGuard\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/HeaderContentGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"patch\": {\n \"operationId\": - \"distributions_rpm_rpm_partial_update\",\n \"description\": - \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a rpm distribution\",\n \"parameters\": [\n {\n + \"contentguards_core_header_partial_update\",\n \"description\": + \"Content guard to protect the content app using a specific header.\",\n \"summary\": + \"Update a header content guard\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"rpm_rpm_distribution_href\",\n \"schema\": {\n \"type\": + \"header_content_guard_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Distributions: Rpm\"\n ],\n \"requestBody\": + [\n \"Contentguards: Header\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedrpm.RpmDistribution\"\n }\n + \"#/components/schemas/PatchedHeaderContentGuard\"\n }\n \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedrpm.RpmDistribution\"\n }\n + \"#/components/schemas/PatchedHeaderContentGuard\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedrpm.RpmDistribution\"\n }\n + \"#/components/schemas/PatchedHeaderContentGuard\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/HeaderContentGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"delete\": {\n \"operationId\": - \"distributions_rpm_rpm_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete a rpm - distribution\",\n \"parameters\": [\n {\n + \"contentguards_core_header_delete\",\n \"description\": \"Content + guard to protect the content app using a specific header.\",\n \"summary\": + \"Delete a header content guard\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"rpm_rpm_distribution_href\",\n \"schema\": {\n \"type\": + \"header_content_guard_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Distributions: Rpm\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/docs/api.json\": {\n \"get\": {\n \"operationId\": - \"docs_api.json_get\",\n \"description\": \"OpenApi3 schema - for this API. Format can be selected via content negotiation.\\n\\n- YAML: - application/vnd.oai.openapi\\n- JSON: application/vnd.oai.openapi+json\",\n - \ \"parameters\": [\n {\n \"in\": - \"query\",\n \"name\": \"lang\",\n \"schema\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"af\",\n \"ar\",\n - \ \"ar-dz\",\n \"ast\",\n - \ \"az\",\n \"be\",\n - \ \"bg\",\n \"bn\",\n - \ \"br\",\n \"bs\",\n - \ \"ca\",\n \"cs\",\n - \ \"cy\",\n \"da\",\n - \ \"de\",\n \"dsb\",\n - \ \"el\",\n \"en\",\n - \ \"en-au\",\n \"en-gb\",\n - \ \"eo\",\n \"es\",\n - \ \"es-ar\",\n \"es-co\",\n - \ \"es-mx\",\n \"es-ni\",\n - \ \"es-ve\",\n \"et\",\n - \ \"eu\",\n \"fa\",\n - \ \"fi\",\n \"fr\",\n - \ \"fy\",\n \"ga\",\n - \ \"gd\",\n \"gl\",\n - \ \"he\",\n \"hi\",\n - \ \"hr\",\n \"hsb\",\n - \ \"hu\",\n \"hy\",\n - \ \"ia\",\n \"id\",\n - \ \"ig\",\n \"io\",\n - \ \"is\",\n \"it\",\n - \ \"ja\",\n \"ka\",\n - \ \"kab\",\n \"kk\",\n - \ \"km\",\n \"kn\",\n - \ \"ko\",\n \"ky\",\n - \ \"lb\",\n \"lt\",\n - \ \"lv\",\n \"mk\",\n - \ \"ml\",\n \"mn\",\n - \ \"mr\",\n \"my\",\n - \ \"nb\",\n \"ne\",\n - \ \"nl\",\n \"nn\",\n - \ \"os\",\n \"pa\",\n - \ \"pl\",\n \"pt\",\n - \ \"pt-br\",\n \"ro\",\n - \ \"ru\",\n \"sk\",\n - \ \"sl\",\n \"sq\",\n - \ \"sr\",\n \"sr-latn\",\n - \ \"sv\",\n \"sw\",\n - \ \"ta\",\n \"te\",\n - \ \"tg\",\n \"th\",\n - \ \"tk\",\n \"tr\",\n - \ \"tt\",\n \"udm\",\n - \ \"uk\",\n \"ur\",\n - \ \"uz\",\n \"vi\",\n - \ \"zh-hans\",\n \"zh-hant\"\n - \ ]\n }\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": + [\n \"Contentguards: Header\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"204\": + {\n \"description\": \"No response body\"\n }\n + \ }\n }\n },\n \"{header_content_guard_href}add_role/\": + {\n \"post\": {\n \"operationId\": \"contentguards_core_header_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"header_content_guard_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Contentguards: Header\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{header_content_guard_href}list_roles/\": + {\n \"get\": {\n \"operationId\": \"contentguards_core_header_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"header_content_guard_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Docs: - Api.Json\"\n ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/vnd.oai.openapi+json\": - {\n \"schema\": {\n \"type\": - \"object\"\n }\n },\n - \ \"application/json\": {\n \"schema\": - {\n \"type\": \"object\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/docs/api.yaml\": {\n \"get\": {\n \"operationId\": - \"docs_api.yaml_get\",\n \"description\": \"OpenApi3 schema - for this API. Format can be selected via content negotiation.\\n\\n- YAML: - application/vnd.oai.openapi\\n- JSON: application/vnd.oai.openapi+json\",\n + \ ],\n \"tags\": [\n \"Contentguards: + Header\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{header_content_guard_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"contentguards_core_header_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n \ \"parameters\": [\n {\n \"in\": - \"query\",\n \"name\": \"lang\",\n \"schema\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"af\",\n \"ar\",\n - \ \"ar-dz\",\n \"ast\",\n - \ \"az\",\n \"be\",\n - \ \"bg\",\n \"bn\",\n - \ \"br\",\n \"bs\",\n - \ \"ca\",\n \"cs\",\n - \ \"cy\",\n \"da\",\n - \ \"de\",\n \"dsb\",\n - \ \"el\",\n \"en\",\n - \ \"en-au\",\n \"en-gb\",\n - \ \"eo\",\n \"es\",\n - \ \"es-ar\",\n \"es-co\",\n - \ \"es-mx\",\n \"es-ni\",\n - \ \"es-ve\",\n \"et\",\n - \ \"eu\",\n \"fa\",\n - \ \"fi\",\n \"fr\",\n - \ \"fy\",\n \"ga\",\n - \ \"gd\",\n \"gl\",\n - \ \"he\",\n \"hi\",\n - \ \"hr\",\n \"hsb\",\n - \ \"hu\",\n \"hy\",\n - \ \"ia\",\n \"id\",\n - \ \"ig\",\n \"io\",\n - \ \"is\",\n \"it\",\n - \ \"ja\",\n \"ka\",\n - \ \"kab\",\n \"kk\",\n - \ \"km\",\n \"kn\",\n - \ \"ko\",\n \"ky\",\n - \ \"lb\",\n \"lt\",\n - \ \"lv\",\n \"mk\",\n - \ \"ml\",\n \"mn\",\n - \ \"mr\",\n \"my\",\n - \ \"nb\",\n \"ne\",\n - \ \"nl\",\n \"nn\",\n - \ \"os\",\n \"pa\",\n - \ \"pl\",\n \"pt\",\n - \ \"pt-br\",\n \"ro\",\n - \ \"ru\",\n \"sk\",\n - \ \"sl\",\n \"sq\",\n - \ \"sr\",\n \"sr-latn\",\n - \ \"sv\",\n \"sw\",\n - \ \"ta\",\n \"te\",\n - \ \"tg\",\n \"th\",\n - \ \"tk\",\n \"tr\",\n - \ \"tt\",\n \"udm\",\n - \ \"uk\",\n \"ur\",\n - \ \"uz\",\n \"vi\",\n - \ \"zh-hans\",\n \"zh-hant\"\n - \ ]\n }\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": + \"path\",\n \"name\": \"header_content_guard_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Docs: - Api.Yaml\"\n ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/vnd.oai.openapi\": - {\n \"schema\": {\n \"type\": - \"object\"\n }\n },\n - \ \"application/yaml\": {\n \"schema\": - {\n \"type\": \"object\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/exporters/core/filesystem/\": {\n \"get\": - {\n \"operationId\": \"exporters_core_filesystem_list\",\n - \ \"description\": \"Endpoint for managing FilesystemExporters. - FilesystemExporters are provided as a tech preview.\",\n \"summary\": - \"List filesystem exporters\",\n \"parameters\": [\n {\n + \ ],\n \"tags\": [\n \"Contentguards: + Header\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{header_content_guard_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"contentguards_core_header_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"header_content_guard_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Contentguards: Header\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/contentguards/core/rbac/\": + {\n \"get\": {\n \"operationId\": \"contentguards_core_rbac_list\",\n + \ \"description\": \"Viewset for creating contentguards that + use RBAC to protect content.\\nHas add and remove actions for managing permission + for users and groups to download content\\nprotected by this guard.\",\n \"summary\": + \"List rbac content guards\",\n \"parameters\": [\n {\n \ \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n \ },\n {\n \"in\": \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": \"query\",\n \"name\": \"name__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"description\": \"Filter results where name contains @@ -8588,6 +10603,10 @@ interactions: {\n \"type\": \"string\"\n },\n \ \"description\": \"Filter results where name contains value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": \"query\",\n \"name\": \"name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n @@ -8595,6 +10614,18 @@ interactions: results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where name starts with value\"\n },\n @@ -8606,287 +10637,556 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-core_fs_exporter\",\n \"-core_pulp_exporter\",\n - \ \"-export\",\n \"-group_roles\",\n - \ \"-name\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-user_roles\",\n - \ \"core_fs_exporter\",\n \"core_pulp_exporter\",\n - \ \"export\",\n \"group_roles\",\n + [\n \"-description\",\n \"-name\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"description\",\n \ \"name\",\n \"pk\",\n \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"user_roles\"\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Exporters: - Filesystem\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Contentguards: + Rbac\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedFilesystemExporterResponseList\"\n + {\n \"$ref\": \"#/components/schemas/PaginatedRBACContentGuardResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"exporters_core_filesystem_create\",\n \"description\": \"Endpoint - for managing FilesystemExporters. FilesystemExporters are provided as a tech - preview.\",\n \"summary\": \"Create a filesystem exporter\",\n - \ \"tags\": [\n \"Exporters: Filesystem\"\n + \"contentguards_core_rbac_create\",\n \"description\": \"Viewset + for creating contentguards that use RBAC to protect content.\\nHas add and + remove actions for managing permission for users and groups to download content\\nprotected + by this guard.\",\n \"summary\": \"Create a rbac content guard\",\n + \ \"tags\": [\n \"Contentguards: Rbac\"\n \ ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/FilesystemExporter\"\n + {\n \"$ref\": \"#/components/schemas/RBACContentGuard\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/FilesystemExporter\"\n }\n + \"#/components/schemas/RBACContentGuard\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/FilesystemExporter\"\n }\n + \"#/components/schemas/RBACContentGuard\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/FilesystemExporterResponse\"\n + {\n \"$ref\": \"#/components/schemas/RBACContentGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{filesystem_exporter_href}exports/\": - {\n \"get\": {\n \"operationId\": \"exporters_core_filesystem_exports_list\",\n - \ \"description\": \"Endpoint for managing FilesystemExports. - This endpoint is provided as a tech preview.\",\n \"summary\": - \"List filesystem exports\",\n \"parameters\": [\n {\n + \ }\n },\n \"{r_b_a_c_content_guard_href}\": {\n \"get\": + {\n \"operationId\": \"contentguards_core_rbac_read\",\n \"description\": + \"Viewset for creating contentguards that use RBAC to protect content.\\nHas + add and remove actions for managing permission for users and groups to download + content\\nprotected by this guard.\",\n \"summary\": \"Inspect + a rbac content guard\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"filesystem_exporter_href\",\n \"schema\": {\n \"type\": + \"r_b_a_c_content_guard_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": - true\n },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": + true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Exporters: Filesystem Exports\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedFilesystemExportResponseList\"\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Contentguards: + Rbac\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RBACContentGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"post\": {\n \"operationId\": - \"exporters_core_filesystem_exports_create\",\n \"description\": - \"Trigger an asynchronous task to export files to the filesystem\",\n \"summary\": - \"Create a filesystem export\",\n \"parameters\": [\n {\n + \ },\n \"put\": {\n \"operationId\": \"contentguards_core_rbac_update\",\n + \ \"description\": \"Viewset for creating contentguards that + use RBAC to protect content.\\nHas add and remove actions for managing permission + for users and groups to download content\\nprotected by this guard.\",\n \"summary\": + \"Update a rbac content guard\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"filesystem_exporter_href\",\n \"schema\": {\n \"type\": + \"r_b_a_c_content_guard_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Exporters: Filesystem Exports\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": + [\n \"Contentguards: Rbac\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/FilesystemExport\"\n }\n + \"#/components/schemas/RBACContentGuard\"\n }\n \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/FilesystemExport\"\n }\n + \"#/components/schemas/RBACContentGuard\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/FilesystemExport\"\n }\n + \"#/components/schemas/RBACContentGuard\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/RBACContentGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{filesystem_filesystem_export_href}\": - {\n \"get\": {\n \"operationId\": \"exporters_core_filesystem_exports_read\",\n - \ \"description\": \"Endpoint for managing FilesystemExports. - This endpoint is provided as a tech preview.\",\n \"summary\": - \"Inspect a filesystem export\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"filesystem_filesystem_export_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Exporters: - Filesystem Exports\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/FilesystemExportResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"exporters_core_filesystem_exports_delete\",\n - \ \"description\": \"Endpoint for managing FilesystemExports. - This endpoint is provided as a tech preview.\",\n \"summary\": - \"Delete a filesystem export\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"filesystem_filesystem_export_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Exporters: Filesystem Exports\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"204\": {\n \"description\": - \"No response body\"\n }\n }\n }\n - \ },\n \"{filesystem_exporter_href}\": {\n \"get\": - {\n \"operationId\": \"exporters_core_filesystem_read\",\n - \ \"description\": \"Endpoint for managing FilesystemExporters. - FilesystemExporters are provided as a tech preview.\",\n \"summary\": - \"Inspect a filesystem exporter\",\n \"parameters\": [\n {\n + \ },\n \"patch\": {\n \"operationId\": + \"contentguards_core_rbac_partial_update\",\n \"description\": + \"Viewset for creating contentguards that use RBAC to protect content.\\nHas + add and remove actions for managing permission for users and groups to download + content\\nprotected by this guard.\",\n \"summary\": \"Update + a rbac content guard\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"filesystem_exporter_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Exporters: Filesystem\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/FilesystemExporterResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"exporters_core_filesystem_update\",\n - \ \"description\": \"Trigger an asynchronous update task\",\n - \ \"summary\": \"Update a filesystem exporter\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"filesystem_exporter_href\",\n \"schema\": {\n \"type\": + \"r_b_a_c_content_guard_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Exporters: Filesystem\"\n ],\n \"requestBody\": + [\n \"Contentguards: Rbac\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/FilesystemExporter\"\n }\n + \"#/components/schemas/PatchedRBACContentGuard\"\n }\n \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/FilesystemExporter\"\n }\n + \"#/components/schemas/PatchedRBACContentGuard\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/FilesystemExporter\"\n }\n + \"#/components/schemas/PatchedRBACContentGuard\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/RBACContentGuardResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"exporters_core_filesystem_partial_update\",\n \"description\": - \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a filesystem exporter\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"filesystem_exporter_href\",\n \"schema\": {\n \"type\": + \ },\n \"delete\": {\n \"operationId\": + \"contentguards_core_rbac_delete\",\n \"description\": \"Viewset + for creating contentguards that use RBAC to protect content.\\nHas add and + remove actions for managing permission for users and groups to download content\\nprotected + by this guard.\",\n \"summary\": \"Delete a rbac content guard\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"r_b_a_c_content_guard_href\",\n + \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Exporters: Filesystem\"\n ],\n \"requestBody\": + [\n \"Contentguards: Rbac\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"204\": + {\n \"description\": \"No response body\"\n }\n + \ }\n }\n },\n \"{r_b_a_c_content_guard_href}add_role/\": + {\n \"post\": {\n \"operationId\": \"contentguards_core_rbac_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"r_b_a_c_content_guard_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Contentguards: Rbac\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedFilesystemExporter\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedFilesystemExporter\"\n }\n - \ },\n \"multipart/form-data\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedFilesystemExporter\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{r_b_a_c_content_guard_href}list_roles/\": + {\n \"get\": {\n \"operationId\": \"contentguards_core_rbac_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"r_b_a_c_content_guard_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Contentguards: + Rbac\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"exporters_core_filesystem_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete a filesystem - exporter\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"filesystem_exporter_href\",\n + \ }\n },\n \"{r_b_a_c_content_guard_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"contentguards_core_rbac_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"r_b_a_c_content_guard_href\",\n \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Contentguards: + Rbac\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{r_b_a_c_content_guard_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"contentguards_core_rbac_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"r_b_a_c_content_guard_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Exporters: Filesystem\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": + [\n \"Contentguards: Rbac\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/deb/copy/\": {\n \"post\": + {\n \"operationId\": \"copy_content\",\n \"description\": + \"Trigger an asynchronous task to copy APT contentfrom one repository into + another, creating a newrepository version.\",\n \"summary\": + \"Copy content\",\n \"tags\": [\n \"Deb: + Copy\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Copy\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Copy\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Copy\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/exporters/core/pulp/\": {\n \"get\": {\n - \ \"operationId\": \"exporters_core_pulp_list\",\n \"description\": - \"ViewSet for viewing PulpExporters.\",\n \"summary\": \"List - pulp exporters\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": + \ \"/pulp/api/v3/distributions/\": {\n \"get\": {\n \"operationId\": + \"distributions_list\",\n \"description\": \"Provides base + viewset for Distributions.\",\n \"summary\": \"List distributions\",\n + \ \"parameters\": [\n {\n \"in\": + \"query\",\n \"name\": \"base_path\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where base_path + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"base_path__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where base_path + contains value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"base_path__icontains\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where base_path is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": + \"The initial index from which to return the results.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-base_path\",\n \"-hidden\",\n + \ \"-name\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"base_path\",\n + \ \"hidden\",\n \"name\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `base_path` - Base path\\n* + `-base_path` - Base path (descending)\\n* `hidden` - Hidden\\n* `-hidden` + - Hidden (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_type\",\n \"schema\": {\n \"type\": + \"string\",\n \"enum\": [\n \"ansible.ansible\",\n + \ \"container.container\",\n \"container.pull-through\",\n + \ \"core.artifact\",\n \"deb.apt-distribution\",\n + \ \"file.file\",\n \"gem.gem\",\n + \ \"maven.maven\",\n \"ostree.ostree\",\n + \ \"python.python\",\n \"rpm.rpm\"\n + \ ]\n },\n \"description\": + \"Pulp type\\n\\n* `core.artifact` - core.artifact\\n* `ansible.ansible` - + ansible.ansible\\n* `container.pull-through` - container.pull-through\\n* + `container.container` - container.container\\n* `deb.apt-distribution` - deb.apt-distribution\\n* + `gem.gem` - gem.gem\\n* `maven.maven` - maven.maven\\n* `ostree.ostree` - + ostree.ostree\\n* `python.python` - python.python\\n* `rpm.rpm` - rpm.rpm\\n* + `file.file` - file.file\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_type__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"ansible.ansible\",\n + \ \"container.container\",\n \"container.pull-through\",\n + \ \"core.artifact\",\n \"deb.apt-distribution\",\n + \ \"file.file\",\n \"gem.gem\",\n + \ \"maven.maven\",\n \"ostree.ostree\",\n + \ \"python.python\",\n \"rpm.rpm\"\n + \ ]\n }\n },\n + \ \"description\": \"Multiple values may be separated + by commas.\\n\\n* `core.artifact` - core.artifact\\n* `ansible.ansible` - + ansible.ansible\\n* `container.pull-through` - container.pull-through\\n* + `container.container` - container.container\\n* `deb.apt-distribution` - deb.apt-distribution\\n* + `gem.gem` - gem.gem\\n* `maven.maven` - maven.maven\\n* `ostree.ostree` - + ostree.ostree\\n* `python.python` - python.python\\n* `rpm.rpm` - rpm.rpm\\n* + `file.file` - file.file\",\n \"explode\": false,\n + \ \"style\": \"form\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Filter results where repository + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"repository__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"format\": + \"uuid\"\n }\n },\n \"description\": + \"Filter results where repository is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter distributions based on the + content served by them\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedDistributionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/distributions/ansible/ansible/\": + {\n \"get\": {\n \"operationId\": \"distributions_ansible_ansible_list\",\n + \ \"description\": \"ViewSet for Ansible Distributions.\",\n + \ \"summary\": \"List ansible distributions\",\n \"parameters\": + [\n {\n \"in\": \"query\",\n \"name\": + \"base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where base_path is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where name starts with value\"\n },\n @@ -8898,768 +11198,436 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-core_fs_exporter\",\n \"-core_pulp_exporter\",\n - \ \"-export\",\n \"-group_roles\",\n + [\n \"-base_path\",\n \"-hidden\",\n \ \"-name\",\n \"-pk\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-user_roles\",\n - \ \"core_fs_exporter\",\n \"core_pulp_exporter\",\n - \ \"export\",\n \"group_roles\",\n - \ \"name\",\n \"pk\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"user_roles\"\n + \ \"-pulp_type\",\n \"base_path\",\n + \ \"hidden\",\n \"name\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `base_path` - Base path\\n* + `-base_path` - Base path (descending)\\n* `hidden` - Hidden\\n* `-hidden` + - Hidden (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Filter results where repository + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"repository__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"format\": + \"uuid\"\n }\n },\n \"description\": + \"Filter results where repository is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter distributions based on the + content served by them\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Exporters: - Pulp\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Distributions: + Ansible\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedPulpExporterResponseList\"\n + {\n \"$ref\": \"#/components/schemas/Paginatedansible.AnsibleDistributionResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"exporters_core_pulp_create\",\n \"description\": \"ViewSet - for viewing PulpExporters.\",\n \"summary\": \"Create a pulp - exporter\",\n \"tags\": [\n \"Exporters: - Pulp\"\n ],\n \"requestBody\": {\n \"content\": + \"distributions_ansible_ansible_create\",\n \"description\": + \"Trigger an asynchronous create task\",\n \"summary\": \"Create + an ansible distribution\",\n \"tags\": [\n \"Distributions: + Ansible\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PulpExporter\"\n + {\n \"$ref\": \"#/components/schemas/ansible.AnsibleDistribution\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PulpExporter\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PulpExporter\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"201\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PulpExporterResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{pulp_exporter_href}exports/\": {\n \"get\": {\n \"operationId\": - \"exporters_core_pulp_exports_list\",\n \"description\": \"ViewSet - for viewing exports from a PulpExporter.\",\n \"summary\": - \"List pulp exports\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"name\": - \"offset\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"The initial index from - which to return the results.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"pulp_exporter_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \"#/components/schemas/ansible.AnsibleDistribution\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.AnsibleDistribution\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_ansible_distribution_href}\": + {\n \"get\": {\n \"operationId\": \"distributions_ansible_ansible_read\",\n + \ \"description\": \"ViewSet for Ansible Distributions.\",\n + \ \"summary\": \"Inspect an ansible distribution\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_ansible_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Exporters: Pulp Exports\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PaginatedPulpExportResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"exporters_core_pulp_exports_create\",\n - \ \"description\": \"Trigger an asynchronous task to export - a set of repositories\",\n \"summary\": \"Create a pulp export\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"pulp_exporter_href\",\n \"schema\": + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Ansible\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ansible.AnsibleDistributionResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"distributions_ansible_ansible_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update an ansible distribution\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_ansible_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Exporters: Pulp Exports\"\n + \ \"tags\": [\n \"Distributions: Ansible\"\n \ ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PulpExport\"\n + {\n \"$ref\": \"#/components/schemas/ansible.AnsibleDistribution\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PulpExport\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PulpExport\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{pulp_pulp_export_href}\": {\n \"get\": {\n \"operationId\": - \"exporters_core_pulp_exports_read\",\n \"description\": \"ViewSet - for viewing exports from a PulpExporter.\",\n \"summary\": - \"Inspect a pulp export\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"pulp_pulp_export_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Exporters: Pulp Exports\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PulpExportResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"exporters_core_pulp_exports_delete\",\n - \ \"description\": \"ViewSet for viewing exports from a PulpExporter.\",\n - \ \"summary\": \"Delete a pulp export\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"pulp_pulp_export_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Exporters: Pulp Exports\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"204\": - {\n \"description\": \"No response body\"\n }\n - \ }\n }\n },\n \"{pulp_exporter_href}\": - {\n \"get\": {\n \"operationId\": \"exporters_core_pulp_read\",\n - \ \"description\": \"ViewSet for viewing PulpExporters.\",\n - \ \"summary\": \"Inspect a pulp exporter\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"pulp_exporter_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Exporters: Pulp\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PulpExporterResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"exporters_core_pulp_update\",\n \"description\": - \"Trigger an asynchronous update task\",\n \"summary\": \"Update - a pulp exporter\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"pulp_exporter_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Exporters: Pulp\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PulpExporter\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PulpExporter\"\n - \ }\n },\n \"multipart/form-data\": + \"#/components/schemas/ansible.AnsibleDistribution\"\n }\n + \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PulpExporter\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": + \"#/components/schemas/ansible.AnsibleDistribution\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"patch\": {\n \"operationId\": - \"exporters_core_pulp_partial_update\",\n \"description\": + \"distributions_ansible_ansible_partial_update\",\n \"description\": \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a pulp exporter\",\n \"parameters\": [\n {\n + \"Update an ansible distribution\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"pulp_exporter_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Exporters: Pulp\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedPulpExporter\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": + \"ansible_ansible_distribution_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Ansible\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Patchedansible.AnsibleDistribution\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedPulpExporter\"\n }\n + \"#/components/schemas/Patchedansible.AnsibleDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedPulpExporter\"\n }\n + \"#/components/schemas/Patchedansible.AnsibleDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"delete\": {\n \"operationId\": - \"exporters_core_pulp_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete a pulp - exporter\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"pulp_exporter_href\",\n \"schema\": + \"distributions_ansible_ansible_delete\",\n \"description\": + \"Trigger an asynchronous delete task\",\n \"summary\": \"Delete + an ansible distribution\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ansible_ansible_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Exporters: Pulp\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": + \ \"tags\": [\n \"Distributions: Ansible\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/groups/\": {\n \"get\": - {\n \"operationId\": \"groups_list\",\n \"description\": - \"ViewSet for Group.\\n\\nNOTE: This API endpoint is in \\\"tech preview\\\" - and subject to change\",\n \"summary\": \"List groups\",\n - \ \"parameters\": [\n {\n \"in\": - \"query\",\n \"name\": \"id\",\n \"schema\": - {\n \"type\": \"integer\"\n },\n - \ \"description\": \"Filter results where id matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"id__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"integer\"\n }\n - \ },\n \"description\": \"Filter - results where id is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": + \ }\n },\n \"{ansible_ansible_distribution_href}add_role/\": + {\n \"post\": {\n \"operationId\": \"distributions_ansible_ansible_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_ansible_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Ansible\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{ansible_ansible_distribution_href}list_roles/\": {\n \"get\": + {\n \"operationId\": \"distributions_ansible_ansible_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_ansible_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__iexact\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-id\",\n \"-name\",\n - \ \"-object_roles\",\n \"-permissions\",\n - \ \"-pk\",\n \"-user\",\n - \ \"id\",\n \"name\",\n - \ \"object_roles\",\n \"permissions\",\n - \ \"pk\",\n \"user\"\n - \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Groups\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Distributions: + Ansible\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedGroupResponseList\"\n + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"post\": {\n \"operationId\": - \"groups_create\",\n \"description\": \"ViewSet for Group.\\n\\nNOTE: - This API endpoint is in \\\"tech preview\\\" and subject to change\",\n \"summary\": - \"Create a group\",\n \"tags\": [\n \"Groups\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Group\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Group\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Group\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"201\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/GroupResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{group_href}roles/\": {\n \"get\": {\n \"operationId\": - \"groups_roles_list\",\n \"description\": \"ViewSet for GroupRole.\\n\\nNOTE: - This API endpoint is in \\\"tech preview\\\" and subject to change\",\n \"summary\": - \"List group roles\",\n \"parameters\": [\n {\n - \ \"in\": \"query\",\n \"name\": - \"content_object\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"content_object\"\n },\n {\n \"in\": - \"path\",\n \"name\": \"group_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"name\": - \"offset\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"The initial index from - which to return the results.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"ordering\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-description\",\n - \ \"-pk\",\n \"-pulp_created\",\n - \ \"-role\",\n \"description\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"role\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"role\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"role__contains\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"role__icontains\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"role__in\",\n \"schema\": + \ }\n },\n \"{ansible_ansible_distribution_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"distributions_ansible_ansible_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_ansible_distribution_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Multiple - values may be separated by commas.\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"role__startswith\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Groups: - Roles\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Distributions: + Ansible\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedGroupRoleResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"post\": {\n \"operationId\": - \"groups_roles_create\",\n \"description\": \"ViewSet for GroupRole.\\n\\nNOTE: - This API endpoint is in \\\"tech preview\\\" and subject to change\",\n \"summary\": - \"Create a group role\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"group_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Groups: Roles\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/GroupRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/GroupRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/GroupRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/GroupRoleResponse\"\n + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{groups_group_role_href}\": {\n \"get\": - {\n \"operationId\": \"groups_roles_read\",\n \"description\": - \"ViewSet for GroupRole.\\n\\nNOTE: This API endpoint is in \\\"tech preview\\\" - and subject to change\",\n \"summary\": \"Inspect a group role\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"groups_group_role_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Groups: Roles\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/GroupRoleResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"groups_roles_delete\",\n \"description\": - \"ViewSet for GroupRole.\\n\\nNOTE: This API endpoint is in \\\"tech preview\\\" - and subject to change\",\n \"summary\": \"Delete a group role\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"groups_group_role_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Groups: Roles\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"204\": - {\n \"description\": \"No response body\"\n }\n - \ }\n }\n },\n \"{group_href}users/\": - {\n \"get\": {\n \"operationId\": \"groups_users_list\",\n - \ \"description\": \"List group users.\",\n \"summary\": - \"List users\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"group_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Groups: Users\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PaginatedGroupUserResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"groups_users_create\",\n \"description\": - \"Add a user to a group.\",\n \"summary\": \"Create an user\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"group_href\",\n \"schema\": + \ }\n },\n \"{ansible_ansible_distribution_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"distributions_ansible_ansible_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_ansible_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Groups: Users\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/GroupUser\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/GroupUser\"\n - \ }\n },\n \"multipart/form-data\": + \ \"tags\": [\n \"Distributions: Ansible\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/GroupUser\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/GroupUserResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{groups_user_href}\": {\n \"delete\": - {\n \"operationId\": \"groups_users_delete\",\n \"description\": - \"Remove a user from a group.\",\n \"summary\": \"Delete an - user\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"groups_user_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Groups: Users\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"204\": {\n \"description\": - \"No response body\"\n }\n }\n }\n - \ },\n \"{group_href}\": {\n \"get\": {\n \"operationId\": - \"groups_read\",\n \"description\": \"ViewSet for Group.\\n\\nNOTE: - This API endpoint is in \\\"tech preview\\\" and subject to change\",\n \"summary\": - \"Inspect a group\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"group_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Groups\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/GroupResponse\"\n }\n + \"#/components/schemas/NestedRoleResponse\"\n }\n \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"groups_update\",\n \"description\": - \"ViewSet for Group.\\n\\nNOTE: This API endpoint is in \\\"tech preview\\\" - and subject to change\",\n \"summary\": \"Update a group\",\n + \"\"\n }\n }\n }\n },\n + \ \"{ansible_ansible_distribution_href}set_label/\": {\n \"post\": + {\n \"operationId\": \"distributions_ansible_ansible_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"group_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Groups\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Group\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Group\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Group\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/GroupResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"groups_partial_update\",\n \"description\": \"ViewSet for - Group.\\n\\nNOTE: This API endpoint is in \\\"tech preview\\\" and subject - to change\",\n \"summary\": \"Update a group\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"group_href\",\n \"schema\": {\n \"type\": + \"path\",\n \"name\": \"ansible_ansible_distribution_href\",\n + \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Groups\"\n ],\n \"requestBody\": + [\n \"Distributions: Ansible\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedGroup\"\n }\n },\n + \"#/components/schemas/SetLabel\"\n }\n },\n \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PatchedGroup\"\n + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedGroup\"\n }\n }\n + \"#/components/schemas/SetLabel\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/GroupResponse\"\n + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"groups_delete\",\n \"description\": \"ViewSet for Group.\\n\\nNOTE: - This API endpoint is in \\\"tech preview\\\" and subject to change\",\n \"summary\": - \"Delete a group\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"group_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Groups\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"204\": - {\n \"description\": \"No response body\"\n }\n - \ }\n }\n },\n \"{group_href}add_role/\": - {\n \"post\": {\n \"operationId\": \"groups_add_role\",\n - \ \"description\": \"Add a role for this object to users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"group_href\",\n \"schema\": + \ }\n },\n \"{ansible_ansible_distribution_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"distributions_ansible_ansible_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_ansible_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Groups\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": + \ \"tags\": [\n \"Distributions: Ansible\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{group_href}list_roles/\": {\n \"get\": - {\n \"operationId\": \"groups_list_roles\",\n \"description\": - \"List roles assigned to this object.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"group_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Groups\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ObjectRolesResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{group_href}my_permissions/\": {\n \"get\": {\n \"operationId\": - \"groups_my_permissions\",\n \"description\": \"List permissions - available to the current user on this object.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"group_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Groups\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/MyPermissionsResponse\"\n }\n + \"#/components/schemas/UnsetLabelResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{group_href}remove_role/\": {\n \"post\": {\n \"operationId\": - \"groups_remove_role\",\n \"description\": \"Remove a role - for this object from users/groups.\",\n \"parameters\": [\n - \ {\n \"in\": \"path\",\n \"name\": - \"group_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Groups\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/importers/core/pulp/\": - {\n \"get\": {\n \"operationId\": \"importers_core_pulp_list\",\n - \ \"description\": \"ViewSet for PulpImporters.\",\n \"summary\": - \"List pulp importers\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": + \ \"/pulp/api/v3/distributions/container/container/\": {\n \"get\": + {\n \"operationId\": \"distributions_container_container_list\",\n + \ \"description\": \"The Container Distribution will serve the + latest version of a Repository if\\n``repository`` is specified. The Container + Distribution will serve a specific\\nrepository version if ``repository_version``. + Note that **either**\\n``repository`` or ``repository_version`` can be set + on a Container\\nDistribution, but not both.\",\n \"summary\": + \"List container distributions\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where base_path is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where name starts with value\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": + \ {\n \"in\": \"query\",\n \"name\": + \"namespace__name\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n @@ -9667,446 +11635,438 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-core_pulp_importer\",\n \"-group_roles\",\n - \ \"-import\",\n \"-name\",\n - \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-user_roles\",\n \"core_pulp_importer\",\n - \ \"group_roles\",\n \"import\",\n + [\n \"-base_path\",\n \"-description\",\n + \ \"-hidden\",\n \"-name\",\n + \ \"-pk\",\n \"-private\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"base_path\",\n + \ \"description\",\n \"hidden\",\n \ \"name\",\n \"pk\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"user_roles\"\n + \ \"private\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `base_path` - Base path\\n* + `-base_path` - Base path (descending)\\n* `hidden` - Hidden\\n* `-hidden` + - Hidden (descending)\\n* `private` - Private\\n* `-private` - Private (descending)\\n* + `description` - Description\\n* `-description` - Description (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Filter results where repository + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"repository__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"format\": + \"uuid\"\n }\n },\n \"description\": + \"Filter results where repository is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter distributions based on the + content served by them\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Importers: - Pulp\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Distributions: + Container\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedPulpImporterResponseList\"\n + {\n \"$ref\": \"#/components/schemas/Paginatedcontainer.ContainerDistributionResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"importers_core_pulp_create\",\n \"description\": \"ViewSet - for PulpImporters.\",\n \"summary\": \"Create a pulp importer\",\n - \ \"tags\": [\n \"Importers: Pulp\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": + \"distributions_container_container_create\",\n \"description\": + \"Trigger an asynchronous create task\",\n \"summary\": \"Create + a container distribution\",\n \"tags\": [\n \"Distributions: + Container\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/container.ContainerDistribution\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PulpImporter\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PulpImporter\"\n - \ }\n },\n \"multipart/form-data\": + \"#/components/schemas/container.ContainerDistribution\"\n }\n + \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PulpImporter\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PulpImporterResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{pulp_importer_href}imports/\": {\n \"get\": - {\n \"operationId\": \"importers_core_pulp_imports_list\",\n - \ \"description\": \"ViewSet for PulpImports.\",\n \"summary\": - \"List pulp imports\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"name\": - \"offset\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"The initial index from - which to return the results.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"pulp_importer_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": + \"#/components/schemas/container.ContainerDistribution\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_distribution_href}\": + {\n \"get\": {\n \"operationId\": \"distributions_container_container_read\",\n + \ \"description\": \"The Container Distribution will serve the + latest version of a Repository if\\n``repository`` is specified. The Container + Distribution will serve a specific\\nrepository version if ``repository_version``. + Note that **either**\\n``repository`` or ``repository_version`` can be set + on a Container\\nDistribution, but not both.\",\n \"summary\": + \"Inspect a container distribution\",\n \"parameters\": [\n + \ {\n \"in\": \"path\",\n \"name\": + \"container_container_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Container\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/container.ContainerDistributionResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"distributions_container_container_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a container distribution\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Importers: Pulp Imports\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PaginatedImportResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"importers_core_pulp_imports_create\",\n - \ \"description\": \"Trigger an asynchronous task to import - a Pulp export.\",\n \"summary\": \"Create a pulp import\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"pulp_importer_href\",\n \"schema\": + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/container.ContainerDistribution\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/container.ContainerDistribution\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/container.ContainerDistribution\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"distributions_container_container_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update a container distribution\",\n \"parameters\": [\n + \ {\n \"in\": \"path\",\n \"name\": + \"container_container_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Importers: Pulp Imports\"\n + \ \"tags\": [\n \"Distributions: Container\"\n \ ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PulpImport\"\n + {\n \"$ref\": \"#/components/schemas/Patchedcontainer.ContainerDistribution\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PulpImport\"\n }\n },\n + \"#/components/schemas/Patchedcontainer.ContainerDistribution\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedcontainer.ContainerDistribution\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"distributions_container_container_delete\",\n \"description\": + \"Trigger an asynchronous delete task\",\n \"summary\": \"Delete + a container distribution\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"container_container_distribution_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Container\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_distribution_href}add_role/\": + {\n \"post\": {\n \"operationId\": \"distributions_container_container_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_distribution_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PulpImport\"\n + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n \ }\n }\n },\n \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/TaskGroupOperationResponse\"\n }\n + \"#/components/schemas/NestedRoleResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{pulp_pulp_import_href}\": {\n \"get\": {\n \"operationId\": - \"importers_core_pulp_imports_read\",\n \"description\": \"ViewSet - for PulpImports.\",\n \"summary\": \"Inspect a pulp import\",\n + \ \"{container_container_distribution_href}list_roles/\": {\n \"get\": + {\n \"operationId\": \"distributions_container_container_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_distribution_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Container\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_distribution_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"distributions_container_container_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"pulp_pulp_import_href\",\n + \"path\",\n \"name\": \"container_container_distribution_href\",\n \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Container\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_distribution_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"distributions_container_container_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Importers: Pulp Imports\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ImportResponse\"\n }\n + \"#/components/schemas/NestedRoleResponse\"\n }\n \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"importers_core_pulp_imports_delete\",\n - \ \"description\": \"ViewSet for PulpImports.\",\n \"summary\": - \"Delete a pulp import\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"pulp_pulp_import_href\",\n \"schema\": {\n \"type\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_distribution_href}set_label/\": {\n \"post\": + {\n \"operationId\": \"distributions_container_container_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_distribution_href\",\n + \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Importers: Pulp Imports\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"204\": - {\n \"description\": \"No response body\"\n }\n - \ }\n }\n },\n \"{pulp_importer_href}\": - {\n \"get\": {\n \"operationId\": \"importers_core_pulp_read\",\n - \ \"description\": \"ViewSet for PulpImporters.\",\n \"summary\": - \"Inspect a pulp importer\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"pulp_importer_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Importers: Pulp\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PulpImporterResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"importers_core_pulp_update\",\n \"description\": - \"ViewSet for PulpImporters.\",\n \"summary\": \"Update a pulp - importer\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"pulp_importer_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Importers: Pulp\"\n ],\n + [\n \"Distributions: Container\"\n ],\n \ \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PulpImporter\"\n }\n },\n + \"#/components/schemas/SetLabel\"\n }\n },\n \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PulpImporter\"\n + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PulpImporter\"\n }\n }\n + \"#/components/schemas/SetLabel\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PulpImporterResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"importers_core_pulp_partial_update\",\n \"description\": - \"ViewSet for PulpImporters.\",\n \"summary\": \"Update a pulp - importer\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"pulp_importer_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Importers: Pulp\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedPulpImporter\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedPulpImporter\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedPulpImporter\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PulpImporterResponse\"\n + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"importers_core_pulp_delete\",\n \"description\": \"ViewSet - for PulpImporters.\",\n \"summary\": \"Delete a pulp importer\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"pulp_importer_href\",\n \"schema\": + \ }\n },\n \"{container_container_distribution_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"distributions_container_container_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Importers: Pulp\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"204\": {\n \"description\": - \"No response body\"\n }\n }\n }\n - \ },\n \"/pulp/api/v3/importers/core/pulp/import-check/\": {\n - \ \"post\": {\n \"operationId\": \"pulp_import_check_post\",\n - \ \"description\": \"Evaluates validity of proposed PulpImport - parameters 'toc', 'path', and 'repo_mapping'.\\n\\n* Checks that toc, path - are in ALLOWED_IMPORT_PATHS\\n* if ALLOWED:\\n * Checks that toc, path exist - and are readable\\n * If toc specified, checks that containing dir is writeable\\n* - Checks that repo_mapping is valid JSON\",\n \"summary\": \"Validate - the parameters to be used for a PulpImport call\",\n \"tags\": - [\n \"Importers: Pulp Import-Check\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PulpImportCheck\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PulpImportCheck\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PulpImportCheck\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PulpImportCheckResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/orphans/\": {\n \"delete\": - {\n \"operationId\": \"orphans_delete\",\n \"description\": - \"DEPRECATED! Trigger an asynchronous task that deletes all orphaned content - and artifacts. Use the `POST /pulp/api/v3/orphans/cleanup/` call instead.\",\n - \ \"summary\": \"Delete orphans\",\n \"tags\": - [\n \"Orphans\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/orphans/cleanup/\": {\n \"post\": {\n \"operationId\": - \"orphans_cleanup_cleanup\",\n \"description\": \"Trigger an - asynchronous orphan cleanup operation.\",\n \"tags\": [\n \"Orphans: - Cleanup\"\n ],\n \"requestBody\": {\n \"content\": + \ \"tags\": [\n \"Distributions: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/OrphansCleanup\"\n + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/OrphansCleanup\"\n }\n },\n + \"#/components/schemas/UnsetLabel\"\n }\n },\n \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/OrphansCleanup\"\n + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n \ }\n }\n },\n \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n + \"#/components/schemas/UnsetLabelResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/publications/\": {\n \"get\": {\n \"operationId\": - \"publications_list\",\n \"description\": \"A customized named - ModelViewSet that knows how to register itself with the Pulp API router.\\n\\nThis - viewset is discoverable by its name.\\n\\\"Normal\\\" Django Models and Master/Detail - models are supported by the ``register_with`` method.\\n\\nAttributes:\\n - \ lookup_field (str): The name of the field by which an object should be - looked up, in\\n addition to any parent lookups if this ViewSet is - nested. Defaults to 'pk'\\n endpoint_name (str): The name of the final - path segment that should identify the ViewSet's\\n collection endpoint.\\n - \ nest_prefix (str): Optional prefix under which this ViewSet should be - nested. This must\\n correspond to the \\\"parent_prefix\\\" of a router - with rest_framework_nested.NestedMixin.\\n None indicates this ViewSet - should not be nested.\\n parent_lookup_kwargs (dict): Optional mapping - of key names that would appear in self.kwargs\\n to django model filter - expressions that can be used with the corresponding value from\\n self.kwargs, - used only by a nested ViewSet to filter based on the parent object's\\n identity.\\n - \ schema (DefaultSchema): The schema class to use by default in a viewset.\",\n - \ \"summary\": \"List publications\",\n \"parameters\": + \ \"/pulp/api/v3/distributions/container/pull-through/\": {\n \"get\": + {\n \"operationId\": \"distributions_container_pull_through_list\",\n + \ \"description\": \"A special pull-through Container Distribution + that will reference distributions serving content.\",\n \"summary\": + \"List container pull through distributions\",\n \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": - \"content\",\n \"schema\": {\n \"type\": + \"base_path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Content Unit referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"content__in\",\n \"schema\": {\n \"type\": + \"Filter results where base_path matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Content Unit referenced by HREF\"\n },\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"name\": - \"offset\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"The initial index from - which to return the results.\",\n \"schema\": {\n \"type\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where base_path is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"ordering\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-complete\",\n - \ \"-deb_aptpublication\",\n \"-deb_verbatimpublication\",\n - \ \"-distribution\",\n \"-file_filepublication\",\n - \ \"-group_roles\",\n \"-pass_through\",\n - \ \"-pk\",\n \"-published_artifact\",\n - \ \"-published_metadata\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-python_pythonpublication\",\n \"-repository_version\",\n - \ \"-rpm_rpmpublication\",\n \"-user_roles\",\n - \ \"complete\",\n \"deb_aptpublication\",\n - \ \"deb_verbatimpublication\",\n \"distribution\",\n - \ \"file_filepublication\",\n \"group_roles\",\n - \ \"pass_through\",\n \"pk\",\n - \ \"published_artifact\",\n \"published_metadata\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythonpublication\",\n - \ \"repository_version\",\n \"rpm_rpmpublication\",\n - \ \"user_roles\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"ISO 8601 formatted dates are supported\"\n },\n {\n + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_created__gt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__gte\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is greater than or equal to value\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__lt\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is less than value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__lte\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is less than or equal to value\"\n },\n {\n + \"name__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"name__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_created is between two comma separated values\",\n \"explode\": + \"string\"\n }\n },\n \"description\": + \"Filter results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"repository\",\n \"schema\": {\n \"type\": + \"name__iregex\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Repository referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"repository_version\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"uuid\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Publications\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PaginatedPublicationResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/publications/deb/apt/\": {\n \"get\": {\n - \ \"operationId\": \"publications_deb_apt_list\",\n \"description\": - \"An AptPublication is the ready to serve Pulp-internal representation of - an AptRepositoryVersion.\\n\\nWhen creating an APT publication, users must - use simple or structured mode (or both). If the\\npublication should include - '.deb' packages that were manually uploaded to the relevant\\nAptRepository, - users must use 'simple=true'. Conversely, 'structured=true' is only useful - for\\npublishing content obtained via synchronization. Once a Pulp publication - has been created, it\\ncan be served by creating a Pulp distribution (in a - near atomic action).\",\n \"summary\": \"List apt publications\",\n - \ \"parameters\": [\n {\n \"in\": - \"query\",\n \"name\": \"content\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Content Unit referenced by HREF\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"content__in\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Content Unit referenced by HREF\"\n - \ },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"name\": \"offset\",\n \"required\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n @@ -10114,990 +12074,427 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-complete\",\n \"-deb_aptpublication\",\n - \ \"-deb_verbatimpublication\",\n \"-distribution\",\n - \ \"-file_filepublication\",\n \"-group_roles\",\n - \ \"-pass_through\",\n \"-pk\",\n - \ \"-published_artifact\",\n \"-published_metadata\",\n + [\n \"-base_path\",\n \"-hidden\",\n + \ \"-name\",\n \"-pk\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-python_pythonpublication\",\n - \ \"-repository_version\",\n \"-rpm_rpmpublication\",\n - \ \"-user_roles\",\n \"complete\",\n - \ \"deb_aptpublication\",\n \"deb_verbatimpublication\",\n - \ \"distribution\",\n \"file_filepublication\",\n - \ \"group_roles\",\n \"pass_through\",\n - \ \"pk\",\n \"published_artifact\",\n - \ \"published_metadata\",\n \"pulp_created\",\n + \ \"-pulp_type\",\n \"base_path\",\n + \ \"hidden\",\n \"name\",\n + \ \"pk\",\n \"pulp_created\",\n \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"python_pythonpublication\",\n \"repository_version\",\n - \ \"rpm_rpmpublication\",\n \"user_roles\"\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `base_path` - Base path\\n* + `-base_path` - Base path (descending)\\n* `hidden` - Hidden\\n* `-hidden` + - Hidden (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is greater than value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__gte\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is greater than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_created__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is less than or equal to value\"\n },\n + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_created is between two comma separated values\",\n \"explode\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"repository\",\n \"schema\": {\n \"type\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Repository referenced by HREF\"\n },\n {\n + \"Filter labels by search string\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"repository_version\",\n \"schema\": {\n \"type\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository\",\n \"schema\": {\n \"type\": \"string\",\n \"format\": \"uuid\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Publications: Apt\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginateddeb.AptPublicationResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"publications_deb_apt_create\",\n \"description\": - \"Trigger an asynchronous task to publish content\",\n \"summary\": - \"Create an apt publication\",\n \"tags\": [\n \"Publications: - Apt\"\n ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/deb.AptPublication\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptPublication\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptPublication\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{deb_apt_publication_href}\": {\n \"get\": - {\n \"operationId\": \"publications_deb_apt_read\",\n \"description\": - \"An AptPublication is the ready to serve Pulp-internal representation of - an AptRepositoryVersion.\\n\\nWhen creating an APT publication, users must - use simple or structured mode (or both). If the\\npublication should include - '.deb' packages that were manually uploaded to the relevant\\nAptRepository, - users must use 'simple=true'. Conversely, 'structured=true' is only useful - for\\npublishing content obtained via synchronization. Once a Pulp publication - has been created, it\\ncan be served by creating a Pulp distribution (in a - near atomic action).\",\n \"summary\": \"Inspect an apt publication\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"deb_apt_publication_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \ \"description\": \"Filter results where repository + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"repository__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"format\": + \"uuid\"\n }\n },\n \"description\": + \"Filter results where repository is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Publications: Apt\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptPublicationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"publications_deb_apt_delete\",\n \"description\": - \"An AptPublication is the ready to serve Pulp-internal representation of - an AptRepositoryVersion.\\n\\nWhen creating an APT publication, users must - use simple or structured mode (or both). If the\\npublication should include - '.deb' packages that were manually uploaded to the relevant\\nAptRepository, - users must use 'simple=true'. Conversely, 'structured=true' is only useful - for\\npublishing content obtained via synchronization. Once a Pulp publication - has been created, it\\ncan be served by creating a Pulp distribution (in a - near atomic action).\",\n \"summary\": \"Delete an apt publication\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"deb_apt_publication_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Publications: Apt\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"204\": - {\n \"description\": \"No response body\"\n }\n - \ }\n }\n },\n \"/pulp/api/v3/publications/deb/verbatim/\": - {\n \"get\": {\n \"operationId\": \"publications_deb_verbatim_list\",\n - \ \"description\": \"An VerbatimPublication is the Pulp-internal - representation of a \\\"mirrored\\\" AptRepositoryVersion.\\n\\nIn other words, - the verbatim publisher will recreate the synced subset of some a APT\\nrepository - using the exact same metadata files and signatures as used by the upstream - original.\\nOnce a Pulp publication has been created, it can be served by - creating a Pulp distribution (in\\na near atomic action).\",\n \"summary\": - \"List verbatim publications\",\n \"parameters\": [\n {\n - \ \"in\": \"query\",\n \"name\": - \"content\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Content Unit referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"content__in\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Content Unit referenced by HREF\"\n },\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"name\": - \"offset\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"The initial index from - which to return the results.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n + \ \"description\": \"Filter distributions based on the + content served by them\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"ordering\",\n \"schema\": {\n \"type\": + \"fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-complete\",\n - \ \"-deb_aptpublication\",\n \"-deb_verbatimpublication\",\n - \ \"-distribution\",\n \"-file_filepublication\",\n - \ \"-group_roles\",\n \"-pass_through\",\n - \ \"-pk\",\n \"-published_artifact\",\n - \ \"-published_metadata\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-python_pythonpublication\",\n \"-repository_version\",\n - \ \"-rpm_rpmpublication\",\n \"-user_roles\",\n - \ \"complete\",\n \"deb_aptpublication\",\n - \ \"deb_verbatimpublication\",\n \"distribution\",\n - \ \"file_filepublication\",\n \"group_roles\",\n - \ \"pass_through\",\n \"pk\",\n - \ \"published_artifact\",\n \"published_metadata\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythonpublication\",\n - \ \"repository_version\",\n \"rpm_rpmpublication\",\n - \ \"user_roles\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"ISO 8601 formatted dates are supported\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_created__gt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__gte\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is greater than or equal to value\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__lt\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is less than value\"\n },\n + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__lte\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is less than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"exclude_fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_created is between two comma separated values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"repository\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Repository referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"repository_version\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"uuid\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Publications: Verbatim\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginateddeb.VerbatimPublicationResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"publications_deb_verbatim_create\",\n - \ \"description\": \"Trigger an asynchronous task to publish - content\",\n \"summary\": \"Create a verbatim publication\",\n - \ \"tags\": [\n \"Publications: Verbatim\"\n - \ ],\n \"requestBody\": {\n \"content\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Pull-Through\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedcontainer.ContainerPullThroughDistributionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"distributions_container_pull_through_create\",\n \"description\": + \"Trigger an asynchronous create task\",\n \"summary\": \"Create + a container pull through distribution\",\n \"tags\": [\n \"Distributions: + Pull-Through\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/deb.VerbatimPublication\"\n + {\n \"$ref\": \"#/components/schemas/container.ContainerPullThroughDistribution\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.VerbatimPublication\"\n }\n + \"#/components/schemas/container.ContainerPullThroughDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.VerbatimPublication\"\n }\n + \"#/components/schemas/container.ContainerPullThroughDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{deb_verbatim_publication_href}\": {\n - \ \"get\": {\n \"operationId\": \"publications_deb_verbatim_read\",\n - \ \"description\": \"An VerbatimPublication is the Pulp-internal - representation of a \\\"mirrored\\\" AptRepositoryVersion.\\n\\nIn other words, - the verbatim publisher will recreate the synced subset of some a APT\\nrepository - using the exact same metadata files and signatures as used by the upstream - original.\\nOnce a Pulp publication has been created, it can be served by - creating a Pulp distribution (in\\na near atomic action).\",\n \"summary\": - \"Inspect a verbatim publication\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"deb_verbatim_publication_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n + \ }\n },\n \"{container_container_pull_through_distribution_href}\": + {\n \"get\": {\n \"operationId\": \"distributions_container_pull_through_read\",\n + \ \"description\": \"A special pull-through Container Distribution + that will reference distributions serving content.\",\n \"summary\": + \"Inspect a container pull through distribution\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_pull_through_distribution_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Publications: - Verbatim\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Distributions: + Pull-Through\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/deb.VerbatimPublicationResponse\"\n + {\n \"$ref\": \"#/components/schemas/container.ContainerPullThroughDistributionResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"publications_deb_verbatim_delete\",\n \"description\": \"An - VerbatimPublication is the Pulp-internal representation of a \\\"mirrored\\\" - AptRepositoryVersion.\\n\\nIn other words, the verbatim publisher will recreate - the synced subset of some a APT\\nrepository using the exact same metadata - files and signatures as used by the upstream original.\\nOnce a Pulp publication - has been created, it can be served by creating a Pulp distribution (in\\na - near atomic action).\",\n \"summary\": \"Delete a verbatim - publication\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"deb_verbatim_publication_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Publications: Verbatim\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"204\": {\n \"description\": - \"No response body\"\n }\n }\n }\n - \ },\n \"/pulp/api/v3/publications/file/file/\": {\n \"get\": - {\n \"operationId\": \"publications_file_file_list\",\n \"description\": - \"\\nA FilePublication contains metadata about all the File Content in a particular - File Repository Version.\\nOnce a FilePublication has been created, it can - be hosted using the\\nFile Distribution API.\",\n \"summary\": - \"List file publications\",\n \"parameters\": [\n {\n - \ \"in\": \"query\",\n \"name\": - \"content\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Content Unit referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"content__in\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Content Unit referenced by HREF\"\n },\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"name\": - \"offset\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"The initial index from - which to return the results.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"ordering\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-complete\",\n - \ \"-deb_aptpublication\",\n \"-deb_verbatimpublication\",\n - \ \"-distribution\",\n \"-file_filepublication\",\n - \ \"-group_roles\",\n \"-pass_through\",\n - \ \"-pk\",\n \"-published_artifact\",\n - \ \"-published_metadata\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-python_pythonpublication\",\n \"-repository_version\",\n - \ \"-rpm_rpmpublication\",\n \"-user_roles\",\n - \ \"complete\",\n \"deb_aptpublication\",\n - \ \"deb_verbatimpublication\",\n \"distribution\",\n - \ \"file_filepublication\",\n \"group_roles\",\n - \ \"pass_through\",\n \"pk\",\n - \ \"published_artifact\",\n \"published_metadata\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythonpublication\",\n - \ \"repository_version\",\n \"rpm_rpmpublication\",\n - \ \"user_roles\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"ISO 8601 formatted dates are supported\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_created__gt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__gte\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is greater than or equal to value\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__lt\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is less than value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__lte\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is less than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_created__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_created is between two comma separated values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"repository\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Repository referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"repository_version\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"uuid\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Publications: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedfile.FilePublicationResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"publications_file_file_create\",\n \"description\": - \"Trigger an asynchronous task to publish file content.\",\n \"summary\": - \"Create a file publication\",\n \"tags\": [\n \"Publications: - File\"\n ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/file.FilePublication\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": + \ },\n \"put\": {\n \"operationId\": \"distributions_container_pull_through_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a container pull through distribution\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_pull_through_distribution_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Distributions: Pull-Through\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FilePublication\"\n }\n + \"#/components/schemas/container.ContainerPullThroughDistribution\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/container.ContainerPullThroughDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FilePublication\"\n }\n + \"#/components/schemas/container.ContainerPullThroughDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{file_file_publication_href}\": {\n \"get\": - {\n \"operationId\": \"publications_file_file_read\",\n \"description\": - \"\\nA FilePublication contains metadata about all the File Content in a particular - File Repository Version.\\nOnce a FilePublication has been created, it can - be hosted using the\\nFile Distribution API.\",\n \"summary\": - \"Inspect a file publication\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"file_file_publication_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \ },\n \"patch\": {\n \"operationId\": + \"distributions_container_pull_through_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update a container pull through distribution\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_pull_through_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Publications: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Pull-Through\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Patchedcontainer.ContainerPullThroughDistribution\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedcontainer.ContainerPullThroughDistribution\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedcontainer.ContainerPullThroughDistribution\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FilePublicationResponse\"\n }\n + \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"publications_file_file_delete\",\n \"description\": - \"\\nA FilePublication contains metadata about all the File Content in a particular - File Repository Version.\\nOnce a FilePublication has been created, it can - be hosted using the\\nFile Distribution API.\",\n \"summary\": - \"Delete a file publication\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"file_file_publication_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Publications: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"204\": - {\n \"description\": \"No response body\"\n }\n - \ }\n }\n },\n \"{file_file_publication_href}add_role/\": - {\n \"post\": {\n \"operationId\": \"publications_file_file_add_role\",\n - \ \"description\": \"Add a role for this object to users/groups.\",\n + {\n \"operationId\": \"distributions_container_pull_through_delete\",\n + \ \"description\": \"Trigger an asynchronous delete task\",\n + \ \"summary\": \"Delete a container pull through distribution\",\n \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"file_file_publication_href\",\n + \"path\",\n \"name\": \"container_container_pull_through_distribution_href\",\n \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Publications: File\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + [\n \"Distributions: Pull-Through\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n + {\n \"202\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{file_file_publication_href}list_roles/\": - {\n \"get\": {\n \"operationId\": \"publications_file_file_list_roles\",\n - \ \"description\": \"List roles assigned to this object.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"file_file_publication_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \ }\n },\n \"{container_container_pull_through_distribution_href}add_role/\": + {\n \"post\": {\n \"operationId\": \"distributions_container_pull_through_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_pull_through_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Publications: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Pull-Through\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ObjectRolesResponse\"\n }\n + \"#/components/schemas/NestedRoleResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{file_file_publication_href}my_permissions/\": {\n \"get\": - {\n \"operationId\": \"publications_file_file_my_permissions\",\n + \ \"{container_container_pull_through_distribution_href}list_roles/\": + {\n \"get\": {\n \"operationId\": \"distributions_container_pull_through_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_pull_through_distribution_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Pull-Through\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_pull_through_distribution_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"distributions_container_pull_through_my_permissions\",\n \ \"description\": \"List permissions available to the current - user on this object.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"file_file_publication_href\",\n \"schema\": {\n \"type\": + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_pull_through_distribution_href\",\n + \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Pull-Through\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_pull_through_distribution_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"distributions_container_pull_through_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_pull_through_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Publications: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Pull-Through\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/MyPermissionsResponse\"\n }\n + \"#/components/schemas/NestedRoleResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{file_file_publication_href}remove_role/\": {\n \"post\": - {\n \"operationId\": \"publications_file_file_remove_role\",\n - \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"{container_container_pull_through_distribution_href}set_label/\": + {\n \"post\": {\n \"operationId\": \"distributions_container_pull_through_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"file_file_publication_href\",\n + \"path\",\n \"name\": \"container_container_pull_through_distribution_href\",\n \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Publications: File\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": + [\n \"Distributions: Pull-Through\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n + \"#/components/schemas/SetLabel\"\n }\n },\n \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n + \"#/components/schemas/SetLabel\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n + {\n \"200\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/publications/python/pypi/\": - {\n \"get\": {\n \"operationId\": \"publications_python_pypi_list\",\n - \ \"description\": \"\\nPython Publications refer to the Python - Package content in a repository version, and include\\nmetadata about that - content.\",\n \"summary\": \"List python publications\",\n - \ \"parameters\": [\n {\n \"in\": - \"query\",\n \"name\": \"content\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Content Unit referenced by HREF\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"content__in\",\n \"schema\": + \ }\n },\n \"{container_container_pull_through_distribution_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"distributions_container_pull_through_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_pull_through_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"Content Unit referenced by HREF\"\n - \ },\n {\n \"name\": + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Pull-Through\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabelResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/distributions/core/artifacts/\": {\n \"get\": + {\n \"operationId\": \"distributions_core_artifacts_list\",\n + \ \"description\": \"ViewSet for ArtifactDistribution.\",\n + \ \"summary\": \"List artifact distributions\",\n \"parameters\": + [\n {\n \"in\": \"query\",\n \"name\": + \"base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where base_path is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n - \ \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-complete\",\n \"-deb_aptpublication\",\n - \ \"-deb_verbatimpublication\",\n \"-distribution\",\n - \ \"-file_filepublication\",\n \"-group_roles\",\n - \ \"-pass_through\",\n \"-pk\",\n - \ \"-published_artifact\",\n \"-published_metadata\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-python_pythonpublication\",\n - \ \"-repository_version\",\n \"-rpm_rpmpublication\",\n - \ \"-user_roles\",\n \"complete\",\n - \ \"deb_aptpublication\",\n \"deb_verbatimpublication\",\n - \ \"distribution\",\n \"file_filepublication\",\n - \ \"group_roles\",\n \"pass_through\",\n - \ \"pk\",\n \"published_artifact\",\n - \ \"published_metadata\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"python_pythonpublication\",\n \"repository_version\",\n - \ \"rpm_rpmpublication\",\n \"user_roles\"\n - \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is greater than value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__gte\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is greater than or equal to value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_created__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is less than or equal to value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_created is between two comma separated values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"repository\",\n \"schema\": {\n \"type\": + \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Repository referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"repository_version\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"uuid\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Publications: Pypi\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedpython.PythonPublicationResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"publications_python_pypi_create\",\n - \ \"description\": \"\\nDispatches a publish task, which generates - metadata that will be used by pip.\",\n \"summary\": \"Create - a python publication\",\n \"tags\": [\n \"Publications: - Pypi\"\n ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/python.PythonPublication\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonPublication\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonPublication\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{python_python_publication_href}\": {\n - \ \"get\": {\n \"operationId\": \"publications_python_pypi_read\",\n - \ \"description\": \"\\nPython Publications refer to the Python - Package content in a repository version, and include\\nmetadata about that - content.\",\n \"summary\": \"Inspect a python publication\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"python_python_publication_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Publications: Pypi\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonPublicationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"publications_python_pypi_delete\",\n - \ \"description\": \"\\nPython Publications refer to the Python - Package content in a repository version, and include\\nmetadata about that - content.\",\n \"summary\": \"Delete a python publication\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"python_python_publication_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Publications: Pypi\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"204\": - {\n \"description\": \"No response body\"\n }\n - \ }\n }\n },\n \"/pulp/api/v3/publications/rpm/rpm/\": - {\n \"get\": {\n \"operationId\": \"publications_rpm_rpm_list\",\n - \ \"description\": \"ViewSet for Rpm Publications.\",\n \"summary\": - \"List rpm publications\",\n \"parameters\": [\n {\n + \"Filter results where name matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"content\",\n \"schema\": {\n \"type\": + \"name__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Content Unit referenced by HREF\"\n },\n {\n + \"Filter results where name contains value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"content__in\",\n \"schema\": {\n \"type\": + \"name__icontains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Content Unit referenced by HREF\"\n },\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"name\": - \"offset\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"The initial index from - which to return the results.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"ordering\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-complete\",\n - \ \"-deb_aptpublication\",\n \"-deb_verbatimpublication\",\n - \ \"-distribution\",\n \"-file_filepublication\",\n - \ \"-group_roles\",\n \"-pass_through\",\n - \ \"-pk\",\n \"-published_artifact\",\n - \ \"-published_metadata\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-python_pythonpublication\",\n \"-repository_version\",\n - \ \"-rpm_rpmpublication\",\n \"-user_roles\",\n - \ \"complete\",\n \"deb_aptpublication\",\n - \ \"deb_verbatimpublication\",\n \"distribution\",\n - \ \"file_filepublication\",\n \"group_roles\",\n - \ \"pass_through\",\n \"pk\",\n - \ \"published_artifact\",\n \"published_metadata\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythonpublication\",\n - \ \"repository_version\",\n \"rpm_rpmpublication\",\n - \ \"user_roles\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"ISO 8601 formatted dates are supported\"\n },\n {\n + \"Filter results where name contains value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_created__gt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__gte\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is greater than or equal to value\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__lt\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is less than value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__lte\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is less than or equal to value\"\n },\n {\n + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_created is between two comma separated values\",\n \"explode\": + \"string\"\n }\n },\n \"description\": + \"Filter results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"repository\",\n \"schema\": {\n \"type\": + \"name__iregex\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Repository referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"repository_version\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"uuid\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Publications: Rpm\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedrpm.RpmPublicationResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"publications_rpm_rpm_create\",\n \"description\": - \"Trigger an asynchronous task to create a new RPM content publication.\",\n - \ \"summary\": \"Create a rpm publication\",\n \"tags\": - [\n \"Publications: Rpm\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmPublication\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmPublication\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmPublication\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{rpm_rpm_publication_href}\": {\n \"get\": - {\n \"operationId\": \"publications_rpm_rpm_read\",\n \"description\": - \"ViewSet for Rpm Publications.\",\n \"summary\": \"Inspect - a rpm publication\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"rpm_rpm_publication_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Publications: Rpm\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmPublicationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"publications_rpm_rpm_delete\",\n \"description\": - \"ViewSet for Rpm Publications.\",\n \"summary\": \"Delete - a rpm publication\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"rpm_rpm_publication_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Publications: Rpm\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"204\": - {\n \"description\": \"No response body\"\n }\n - \ }\n }\n },\n \"/pulp/api/v3/pulp_ansible/tags/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_tags_list\",\n - \ \"description\": \"ViewSet for Tag models.\",\n \"summary\": - \"List tags\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"name\": - \"offset\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"The initial index from - which to return the results.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n + \"Filter results where name starts with value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": + \"name__regex\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Pulp_Ansible: - Tags\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedTagResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/pulp_container/namespaces/\": - {\n \"get\": {\n \"operationId\": \"pulp_container_namespaces_list\",\n - \ \"description\": \"ViewSet for ContainerNamespaces.\",\n \"summary\": - \"List container namespaces\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n + \"Filter results where name matches regex value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": @@ -11110,227 +12507,143 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-container_distributions\",\n \"-group_roles\",\n + [\n \"-base_path\",\n \"-hidden\",\n \ \"-name\",\n \"-pk\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-user_roles\",\n \"container_distributions\",\n - \ \"group_roles\",\n \"name\",\n + \ \"-pulp_type\",\n \"base_path\",\n + \ \"hidden\",\n \"name\",\n \ \"pk\",\n \"pulp_created\",\n \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"user_roles\"\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `base_path` - Base path\\n* + `-base_path` - Base path (descending)\\n* `hidden` - Hidden\\n* `-hidden` + - Hidden (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Pulp_Container: - Namespaces\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedcontainer.ContainerNamespaceResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"post\": {\n \"operationId\": - \"pulp_container_namespaces_create\",\n \"description\": \"ViewSet - for ContainerNamespaces.\",\n \"summary\": \"Create a container - namespace\",\n \"tags\": [\n \"Pulp_Container: - Namespaces\"\n ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/container.ContainerNamespace\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/container.ContainerNamespace\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/container.ContainerNamespace\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"201\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/container.ContainerNamespaceResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_namespace_href}\": - {\n \"get\": {\n \"operationId\": \"pulp_container_namespaces_read\",\n - \ \"description\": \"ViewSet for ContainerNamespaces.\",\n \"summary\": - \"Inspect a container namespace\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"container_container_namespace_href\",\n \"schema\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Filter results where repository + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"repository__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"format\": + \"uuid\"\n }\n },\n \"description\": + \"Filter results where repository is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \ \"description\": \"Filter distributions based on the + content served by them\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Pulp_Container: - Namespaces\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Distributions: + Artifacts\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/container.ContainerNamespaceResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"pulp_container_namespaces_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete a container - namespace\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_namespace_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Pulp_Container: Namespaces\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_namespace_href}add_role/\": - {\n \"post\": {\n \"operationId\": \"pulp_container_namespaces_add_role\",\n - \ \"description\": \"Add a role for this object to users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_namespace_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Pulp_Container: Namespaces\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + {\n \"$ref\": \"#/components/schemas/PaginatedArtifactDistributionResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_namespace_href}list_roles/\": - {\n \"get\": {\n \"operationId\": \"pulp_container_namespaces_list_roles\",\n - \ \"description\": \"List roles assigned to this object.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_namespace_href\",\n - \ \"schema\": {\n \"type\": + \ }\n },\n \"{artifact_distribution_href}\": {\n \"get\": + {\n \"operationId\": \"distributions_core_artifacts_read\",\n + \ \"description\": \"ViewSet for ArtifactDistribution.\",\n + \ \"summary\": \"Inspect an artifact distribution\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"artifact_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pulp_Container: Namespaces\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_namespace_href}my_permissions/\": - {\n \"get\": {\n \"operationId\": \"pulp_container_namespaces_my_permissions\",\n - \ \"description\": \"List permissions available to the current - user on this object.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"container_container_namespace_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Pulp_Container: - Namespaces\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Distributions: + Artifacts\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_namespace_href}remove_role/\": - {\n \"post\": {\n \"operationId\": \"pulp_container_namespaces_remove_role\",\n - \ \"description\": \"Remove a role for this object from users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_namespace_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Pulp_Container: Namespaces\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + {\n \"$ref\": \"#/components/schemas/ArtifactDistributionResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/remotes/\": {\n \"get\": - {\n \"operationId\": \"remotes_list\",\n \"description\": - \"A customized named ModelViewSet that knows how to register itself with the - Pulp API router.\\n\\nThis viewset is discoverable by its name.\\n\\\"Normal\\\" - Django Models and Master/Detail models are supported by the ``register_with`` - method.\\n\\nAttributes:\\n lookup_field (str): The name of the field by - which an object should be looked up, in\\n addition to any parent lookups - if this ViewSet is nested. Defaults to 'pk'\\n endpoint_name (str): The - name of the final path segment that should identify the ViewSet's\\n collection - endpoint.\\n nest_prefix (str): Optional prefix under which this ViewSet - should be nested. This must\\n correspond to the \\\"parent_prefix\\\" - of a router with rest_framework_nested.NestedMixin.\\n None indicates - this ViewSet should not be nested.\\n parent_lookup_kwargs (dict): Optional - mapping of key names that would appear in self.kwargs\\n to django - model filter expressions that can be used with the corresponding value from\\n - \ self.kwargs, used only by a nested ViewSet to filter based on the - parent object's\\n identity.\\n schema (DefaultSchema): The schema - class to use by default in a viewset.\",\n \"summary\": \"List - remotes\",\n \"parameters\": [\n {\n \"name\": + \ }\n },\n \"/pulp/api/v3/distributions/deb/apt/\": + {\n \"get\": {\n \"operationId\": \"distributions_deb_apt_list\",\n + \ \"description\": \"An AptDistribution is just an AptPublication + made available via the content app.\\n\\nCreating an AptDistribution is a + comparatively quick action. This way Pulp users may take as\\nmuch time as + is needed to prepare a VerbatimPublication or AptPublication, and then control + the\\nexact moment when that publication is made available.\",\n \"summary\": + \"List apt distributions\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where base_path is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"name__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": @@ -11340,12 +12653,28 @@ interactions: \"string\"\n },\n \"description\": \"Filter results where name contains value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": \"Filter results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where name starts with value\"\n },\n @@ -11357,372 +12686,292 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-alternatecontentsource\",\n \"-ansible_collectionremote\",\n - \ \"-ansible_gitremote\",\n \"-ansible_roleremote\",\n - \ \"-basedistribution\",\n \"-ca_cert\",\n - \ \"-client_cert\",\n \"-client_key\",\n - \ \"-connect_timeout\",\n \"-container_containerremote\",\n - \ \"-deb_aptremote\",\n \"-distribution\",\n - \ \"-download_concurrency\",\n \"-file_fileremote\",\n - \ \"-group_roles\",\n \"-headers\",\n - \ \"-maven_mavenremote\",\n \"-max_retries\",\n - \ \"-name\",\n \"-password\",\n - \ \"-pk\",\n \"-policy\",\n - \ \"-proxy_password\",\n \"-proxy_url\",\n - \ \"-proxy_username\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-python_pythonremote\",\n \"-rate_limit\",\n - \ \"-remoteartifact\",\n \"-repository\",\n - \ \"-rpm_rpmremote\",\n \"-rpm_ulnremote\",\n - \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n - \ \"-tls_validation\",\n \"-total_timeout\",\n - \ \"-url\",\n \"-user_roles\",\n - \ \"-username\",\n \"alternatecontentsource\",\n - \ \"ansible_collectionremote\",\n \"ansible_gitremote\",\n - \ \"ansible_roleremote\",\n \"basedistribution\",\n - \ \"ca_cert\",\n \"client_cert\",\n - \ \"client_key\",\n \"connect_timeout\",\n - \ \"container_containerremote\",\n \"deb_aptremote\",\n - \ \"distribution\",\n \"download_concurrency\",\n - \ \"file_fileremote\",\n \"group_roles\",\n - \ \"headers\",\n \"maven_mavenremote\",\n - \ \"max_retries\",\n \"name\",\n - \ \"password\",\n \"pk\",\n - \ \"policy\",\n \"proxy_password\",\n - \ \"proxy_url\",\n \"proxy_username\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythonremote\",\n - \ \"rate_limit\",\n \"remoteartifact\",\n - \ \"repository\",\n \"rpm_rpmremote\",\n - \ \"rpm_ulnremote\",\n \"sock_connect_timeout\",\n - \ \"sock_read_timeout\",\n \"tls_validation\",\n - \ \"total_timeout\",\n \"url\",\n - \ \"user_roles\",\n \"username\"\n + [\n \"-base_path\",\n \"-hidden\",\n + \ \"-name\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"base_path\",\n + \ \"hidden\",\n \"name\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `base_path` - Base path\\n* + `-base_path` - Base path (descending)\\n* `hidden` - Hidden\\n* `-hidden` + - Hidden (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter labels by search string\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gt\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__lte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than or equal to value\"\n },\n {\n + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_last_updated is between two comma separated values\",\n + \"repository\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Filter results where repository + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"repository__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"format\": + \"uuid\"\n }\n },\n \"description\": + \"Filter results where repository is in a comma-separated list of values\",\n \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PaginatedRemoteResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/remotes/ansible/collection/\": {\n \"get\": - {\n \"operationId\": \"remotes_ansible_collection_list\",\n - \ \"description\": \"ViewSet for Collection Remotes.\",\n \"summary\": - \"List collection remotes\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-alternatecontentsource\",\n \"-ansible_collectionremote\",\n - \ \"-ansible_gitremote\",\n \"-ansible_roleremote\",\n - \ \"-basedistribution\",\n \"-ca_cert\",\n - \ \"-client_cert\",\n \"-client_key\",\n - \ \"-connect_timeout\",\n \"-container_containerremote\",\n - \ \"-deb_aptremote\",\n \"-distribution\",\n - \ \"-download_concurrency\",\n \"-file_fileremote\",\n - \ \"-group_roles\",\n \"-headers\",\n - \ \"-maven_mavenremote\",\n \"-max_retries\",\n - \ \"-name\",\n \"-password\",\n - \ \"-pk\",\n \"-policy\",\n - \ \"-proxy_password\",\n \"-proxy_url\",\n - \ \"-proxy_username\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-python_pythonremote\",\n \"-rate_limit\",\n - \ \"-remoteartifact\",\n \"-repository\",\n - \ \"-rpm_rpmremote\",\n \"-rpm_ulnremote\",\n - \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n - \ \"-tls_validation\",\n \"-total_timeout\",\n - \ \"-url\",\n \"-user_roles\",\n - \ \"-username\",\n \"alternatecontentsource\",\n - \ \"ansible_collectionremote\",\n \"ansible_gitremote\",\n - \ \"ansible_roleremote\",\n \"basedistribution\",\n - \ \"ca_cert\",\n \"client_cert\",\n - \ \"client_key\",\n \"connect_timeout\",\n - \ \"container_containerremote\",\n \"deb_aptremote\",\n - \ \"distribution\",\n \"download_concurrency\",\n - \ \"file_fileremote\",\n \"group_roles\",\n - \ \"headers\",\n \"maven_mavenremote\",\n - \ \"max_retries\",\n \"name\",\n - \ \"password\",\n \"pk\",\n - \ \"policy\",\n \"proxy_password\",\n - \ \"proxy_url\",\n \"proxy_username\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythonremote\",\n - \ \"rate_limit\",\n \"remoteartifact\",\n - \ \"repository\",\n \"rpm_rpmremote\",\n - \ \"rpm_ulnremote\",\n \"sock_connect_timeout\",\n - \ \"sock_read_timeout\",\n \"tls_validation\",\n - \ \"total_timeout\",\n \"url\",\n - \ \"user_roles\",\n \"username\"\n - \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_label_select\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter labels by search string\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gt\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__lte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than or equal to value\"\n },\n {\n + \ \"description\": \"Filter distributions based on the + content served by them\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": + \"fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_last_updated is between two comma separated values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: Collection\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedansible.CollectionRemoteResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"remotes_ansible_collection_create\",\n - \ \"description\": \"ViewSet for Collection Remotes.\",\n \"summary\": - \"Create a collection remote\",\n \"tags\": [\n \"Remotes: - Collection\"\n ],\n \"requestBody\": {\n \"content\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Apt\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginateddeb.AptDistributionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"distributions_deb_apt_create\",\n \"description\": \"Trigger + an asynchronous create task\",\n \"summary\": \"Create an apt + distribution\",\n \"tags\": [\n \"Distributions: + Apt\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ansible.CollectionRemote\"\n + {\n \"$ref\": \"#/components/schemas/deb.AptDistribution\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.CollectionRemote\"\n }\n + \"#/components/schemas/deb.AptDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.CollectionRemote\"\n }\n + \"#/components/schemas/deb.AptDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"201\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ansible.CollectionRemoteResponse\"\n + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{ansible_collection_remote_href}\": {\n - \ \"get\": {\n \"operationId\": \"remotes_ansible_collection_read\",\n - \ \"description\": \"ViewSet for Collection Remotes.\",\n \"summary\": - \"Inspect a collection remote\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"ansible_collection_remote_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \ }\n },\n \"{deb_apt_distribution_href}\": {\n \"get\": + {\n \"operationId\": \"distributions_deb_apt_read\",\n \"description\": + \"An AptDistribution is just an AptPublication made available via the content + app.\\n\\nCreating an AptDistribution is a comparatively quick action. This + way Pulp users may take as\\nmuch time as is needed to prepare a VerbatimPublication + or AptPublication, and then control the\\nexact moment when that publication + is made available.\",\n \"summary\": \"Inspect an apt distribution\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"deb_apt_distribution_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Remotes: - Collection\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Distributions: + Apt\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ansible.CollectionRemoteResponse\"\n + {\n \"$ref\": \"#/components/schemas/deb.AptDistributionResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"put\": {\n \"operationId\": \"remotes_ansible_collection_update\",\n + \ },\n \"put\": {\n \"operationId\": \"distributions_deb_apt_update\",\n \ \"description\": \"Trigger an asynchronous update task\",\n - \ \"summary\": \"Update a collection remote\",\n \"parameters\": + \ \"summary\": \"Update an apt distribution\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": - \"ansible_collection_remote_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Remotes: Collection\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ansible.CollectionRemote\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": + \"deb_apt_distribution_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Distributions: Apt\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.CollectionRemote\"\n }\n + \"#/components/schemas/deb.AptDistribution\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/deb.AptDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.CollectionRemote\"\n }\n + \"#/components/schemas/deb.AptDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"patch\": {\n \"operationId\": - \"remotes_ansible_collection_partial_update\",\n \"description\": + \"distributions_deb_apt_partial_update\",\n \"description\": \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a collection remote\",\n \"parameters\": [\n {\n + \"Update an apt distribution\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"ansible_collection_remote_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Remotes: Collection\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Patchedansible.CollectionRemote\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": + \"deb_apt_distribution_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Distributions: Apt\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedansible.CollectionRemote\"\n }\n + \"#/components/schemas/Patcheddeb.AptDistribution\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patcheddeb.AptDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedansible.CollectionRemote\"\n }\n + \"#/components/schemas/Patcheddeb.AptDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"delete\": {\n \"operationId\": - \"remotes_ansible_collection_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete a collection - remote\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"ansible_collection_remote_href\",\n - \ \"schema\": {\n \"type\": + \"distributions_deb_apt_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete an apt + distribution\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"deb_apt_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Remotes: Collection\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n \"Distributions: Apt\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/remotes/ansible/git/\": {\n \"get\": {\n - \ \"operationId\": \"remotes_ansible_git_list\",\n \"description\": - \"ViewSet for Ansible Remotes.\\n\\nThis is a tech preview feature. The functionality - may change in the future.\",\n \"summary\": \"List git remotes\",\n - \ \"parameters\": [\n {\n \"name\": + \ \"{deb_apt_distribution_href}set_label/\": {\n \"post\": + {\n \"operationId\": \"distributions_deb_apt_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"deb_apt_distribution_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Distributions: Apt\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{deb_apt_distribution_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"distributions_deb_apt_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"deb_apt_distribution_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Distributions: Apt\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/distributions/file/file/\": + {\n \"get\": {\n \"operationId\": \"distributions_file_file_list\",\n + \ \"description\": \"\\nFileDistributions host File\\nPublications + which makes the metadata and the referenced File Content available to HTTP\\nclients. + Additionally, a FileDistribution with an associated FilePublication can be + the target\\nurl of a File Remote , allowing\\nanother instance of Pulp to + sync the content.\",\n \"summary\": \"List file distributions\",\n + \ \"parameters\": [\n {\n \"in\": + \"query\",\n \"name\": \"base_path\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where base_path + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"base_path__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where base_path + contains value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"base_path__icontains\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where base_path is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"name__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": @@ -11732,12 +12981,28 @@ interactions: \"string\"\n },\n \"description\": \"Filter results where name contains value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": \"Filter results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where name starts with value\"\n },\n @@ -11749,235 +13014,398 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-alternatecontentsource\",\n \"-ansible_collectionremote\",\n - \ \"-ansible_gitremote\",\n \"-ansible_roleremote\",\n - \ \"-basedistribution\",\n \"-ca_cert\",\n - \ \"-client_cert\",\n \"-client_key\",\n - \ \"-connect_timeout\",\n \"-container_containerremote\",\n - \ \"-deb_aptremote\",\n \"-distribution\",\n - \ \"-download_concurrency\",\n \"-file_fileremote\",\n - \ \"-group_roles\",\n \"-headers\",\n - \ \"-maven_mavenremote\",\n \"-max_retries\",\n - \ \"-name\",\n \"-password\",\n - \ \"-pk\",\n \"-policy\",\n - \ \"-proxy_password\",\n \"-proxy_url\",\n - \ \"-proxy_username\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-python_pythonremote\",\n \"-rate_limit\",\n - \ \"-remoteartifact\",\n \"-repository\",\n - \ \"-rpm_rpmremote\",\n \"-rpm_ulnremote\",\n - \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n - \ \"-tls_validation\",\n \"-total_timeout\",\n - \ \"-url\",\n \"-user_roles\",\n - \ \"-username\",\n \"alternatecontentsource\",\n - \ \"ansible_collectionremote\",\n \"ansible_gitremote\",\n - \ \"ansible_roleremote\",\n \"basedistribution\",\n - \ \"ca_cert\",\n \"client_cert\",\n - \ \"client_key\",\n \"connect_timeout\",\n - \ \"container_containerremote\",\n \"deb_aptremote\",\n - \ \"distribution\",\n \"download_concurrency\",\n - \ \"file_fileremote\",\n \"group_roles\",\n - \ \"headers\",\n \"maven_mavenremote\",\n - \ \"max_retries\",\n \"name\",\n - \ \"password\",\n \"pk\",\n - \ \"policy\",\n \"proxy_password\",\n - \ \"proxy_url\",\n \"proxy_username\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythonremote\",\n - \ \"rate_limit\",\n \"remoteartifact\",\n - \ \"repository\",\n \"rpm_rpmremote\",\n - \ \"rpm_ulnremote\",\n \"sock_connect_timeout\",\n - \ \"sock_read_timeout\",\n \"tls_validation\",\n - \ \"total_timeout\",\n \"url\",\n - \ \"user_roles\",\n \"username\"\n + [\n \"-base_path\",\n \"-hidden\",\n + \ \"-name\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"base_path\",\n + \ \"hidden\",\n \"name\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `base_path` - Base path\\n* + `-base_path` - Base path (descending)\\n* `hidden` - Hidden\\n* `-hidden` + - Hidden (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter labels by search string\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gt\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__lte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than or equal to value\"\n },\n {\n + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_last_updated is between two comma separated values\",\n + \"repository\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Filter results where repository + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"repository__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"format\": + \"uuid\"\n }\n },\n \"description\": + \"Filter results where repository is in a comma-separated list of values\",\n \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: Git\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedansible.GitRemoteResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"remotes_ansible_git_create\",\n \"description\": - \"ViewSet for Ansible Remotes.\\n\\nThis is a tech preview feature. The functionality - may change in the future.\",\n \"summary\": \"Create a git - remote\",\n \"tags\": [\n \"Remotes: Git\"\n - \ ],\n \"requestBody\": {\n \"content\": + \ \"description\": \"Filter distributions based on the + content served by them\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + File\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedfile.FileDistributionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"distributions_file_file_create\",\n \"description\": \"Trigger + an asynchronous create task\",\n \"summary\": \"Create a file + distribution\",\n \"tags\": [\n \"Distributions: + File\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ansible.GitRemote\"\n + {\n \"$ref\": \"#/components/schemas/file.FileDistribution\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.GitRemote\"\n }\n + \"#/components/schemas/file.FileDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.GitRemote\"\n }\n + \"#/components/schemas/file.FileDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"201\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ansible.GitRemoteResponse\"\n + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{ansible_git_remote_href}\": {\n \"get\": - {\n \"operationId\": \"remotes_ansible_git_read\",\n \"description\": - \"ViewSet for Ansible Remotes.\\n\\nThis is a tech preview feature. The functionality - may change in the future.\",\n \"summary\": \"Inspect a git - remote\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"ansible_git_remote_href\",\n + \ }\n },\n \"{file_file_distribution_href}\": {\n + \ \"get\": {\n \"operationId\": \"distributions_file_file_read\",\n + \ \"description\": \"\\nFileDistributions host File\\nPublications + which makes the metadata and the referenced File Content available to HTTP\\nclients. + Additionally, a FileDistribution with an associated FilePublication can be + the target\\nurl of a File Remote , allowing\\nanother instance of Pulp to + sync the content.\",\n \"summary\": \"Inspect a file distribution\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"file_file_distribution_href\",\n \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: Git\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.GitRemoteResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"remotes_ansible_git_update\",\n \"description\": - \"Trigger an asynchronous update task\",\n \"summary\": \"Update - a git remote\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"ansible_git_remote_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Remotes: Git\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.GitRemote\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + File\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/file.FileDistributionResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"distributions_file_file_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a file distribution\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"file_file_distribution_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: File\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/file.FileDistribution\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.GitRemote\"\n }\n + \"#/components/schemas/file.FileDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.GitRemote\"\n }\n + \"#/components/schemas/file.FileDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"patch\": {\n \"operationId\": - \"remotes_ansible_git_partial_update\",\n \"description\": + \"distributions_file_file_partial_update\",\n \"description\": \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a git remote\",\n \"parameters\": [\n {\n + \"Update a file distribution\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"ansible_git_remote_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Remotes: Git\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedansible.GitRemote\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedansible.GitRemote\"\n }\n + \"file_file_distribution_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: File\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Patchedfile.FileDistribution\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedfile.FileDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedansible.GitRemote\"\n }\n + \"#/components/schemas/Patchedfile.FileDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"delete\": {\n \"operationId\": - \"remotes_ansible_git_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete a git - remote\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"ansible_git_remote_href\",\n + \"distributions_file_file_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a file + distribution\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"file_file_distribution_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: File\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_distribution_href}add_role/\": + {\n \"post\": {\n \"operationId\": \"distributions_file_file_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"file_file_distribution_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: File\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{file_file_distribution_href}list_roles/\": {\n \"get\": + {\n \"operationId\": \"distributions_file_file_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"file_file_distribution_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + File\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_distribution_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"distributions_file_file_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"file_file_distribution_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + File\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_distribution_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"distributions_file_file_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"file_file_distribution_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: File\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{file_file_distribution_href}set_label/\": {\n \"post\": + {\n \"operationId\": \"distributions_file_file_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"file_file_distribution_href\",\n \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Remotes: Git\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": + [\n \"Distributions: File\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_distribution_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"distributions_file_file_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"file_file_distribution_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: File\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n + \"#/components/schemas/UnsetLabelResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/remotes/ansible/role/\": {\n \"get\": {\n - \ \"operationId\": \"remotes_ansible_role_list\",\n \"description\": - \"ViewSet for Role Remotes.\",\n \"summary\": \"List role remotes\",\n - \ \"parameters\": [\n {\n \"name\": + \ \"/pulp/api/v3/distributions/gem/gem/\": {\n \"get\": {\n + \ \"operationId\": \"distributions_gem_gem_list\",\n \"description\": + \"ViewSet for GemDistributions.\",\n \"summary\": \"List gem + distributions\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where base_path is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"name__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": @@ -11987,12 +13415,28 @@ interactions: \"string\"\n },\n \"description\": \"Filter results where name contains value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": \"Filter results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where name starts with value\"\n },\n @@ -12004,495 +13448,290 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-alternatecontentsource\",\n \"-ansible_collectionremote\",\n - \ \"-ansible_gitremote\",\n \"-ansible_roleremote\",\n - \ \"-basedistribution\",\n \"-ca_cert\",\n - \ \"-client_cert\",\n \"-client_key\",\n - \ \"-connect_timeout\",\n \"-container_containerremote\",\n - \ \"-deb_aptremote\",\n \"-distribution\",\n - \ \"-download_concurrency\",\n \"-file_fileremote\",\n - \ \"-group_roles\",\n \"-headers\",\n - \ \"-maven_mavenremote\",\n \"-max_retries\",\n - \ \"-name\",\n \"-password\",\n - \ \"-pk\",\n \"-policy\",\n - \ \"-proxy_password\",\n \"-proxy_url\",\n - \ \"-proxy_username\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-python_pythonremote\",\n \"-rate_limit\",\n - \ \"-remoteartifact\",\n \"-repository\",\n - \ \"-rpm_rpmremote\",\n \"-rpm_ulnremote\",\n - \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n - \ \"-tls_validation\",\n \"-total_timeout\",\n - \ \"-url\",\n \"-user_roles\",\n - \ \"-username\",\n \"alternatecontentsource\",\n - \ \"ansible_collectionremote\",\n \"ansible_gitremote\",\n - \ \"ansible_roleremote\",\n \"basedistribution\",\n - \ \"ca_cert\",\n \"client_cert\",\n - \ \"client_key\",\n \"connect_timeout\",\n - \ \"container_containerremote\",\n \"deb_aptremote\",\n - \ \"distribution\",\n \"download_concurrency\",\n - \ \"file_fileremote\",\n \"group_roles\",\n - \ \"headers\",\n \"maven_mavenremote\",\n - \ \"max_retries\",\n \"name\",\n - \ \"password\",\n \"pk\",\n - \ \"policy\",\n \"proxy_password\",\n - \ \"proxy_url\",\n \"proxy_username\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythonremote\",\n - \ \"rate_limit\",\n \"remoteartifact\",\n - \ \"repository\",\n \"rpm_rpmremote\",\n - \ \"rpm_ulnremote\",\n \"sock_connect_timeout\",\n - \ \"sock_read_timeout\",\n \"tls_validation\",\n - \ \"total_timeout\",\n \"url\",\n - \ \"user_roles\",\n \"username\"\n + [\n \"-base_path\",\n \"-hidden\",\n + \ \"-name\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"base_path\",\n + \ \"hidden\",\n \"name\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `base_path` - Base path\\n* + `-base_path` - Base path (descending)\\n* `hidden` - Hidden\\n* `-hidden` + - Hidden (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter labels by search string\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gt\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__lte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than or equal to value\"\n },\n {\n + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_last_updated is between two comma separated values\",\n + \"repository\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Filter results where repository + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"repository__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"format\": + \"uuid\"\n }\n },\n \"description\": + \"Filter results where repository is in a comma-separated list of values\",\n \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: Role\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedansible.RoleRemoteResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"remotes_ansible_role_create\",\n \"description\": - \"ViewSet for Role Remotes.\",\n \"summary\": \"Create a role - remote\",\n \"tags\": [\n \"Remotes: Role\"\n - \ ],\n \"requestBody\": {\n \"content\": + \ \"description\": \"Filter distributions based on the + content served by them\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Gem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedgem.GemDistributionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"distributions_gem_gem_create\",\n \"description\": \"Trigger + an asynchronous create task\",\n \"summary\": \"Create a gem + distribution\",\n \"tags\": [\n \"Distributions: + Gem\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ansible.RoleRemote\"\n + {\n \"$ref\": \"#/components/schemas/gem.GemDistribution\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.RoleRemote\"\n }\n + \"#/components/schemas/gem.GemDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.RoleRemote\"\n }\n + \"#/components/schemas/gem.GemDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"201\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ansible.RoleRemoteResponse\"\n + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{ansible_role_remote_href}\": {\n \"get\": - {\n \"operationId\": \"remotes_ansible_role_read\",\n \"description\": - \"ViewSet for Role Remotes.\",\n \"summary\": \"Inspect a role - remote\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"ansible_role_remote_href\",\n - \ \"schema\": {\n \"type\": + \ }\n },\n \"{gem_gem_distribution_href}\": {\n \"get\": + {\n \"operationId\": \"distributions_gem_gem_read\",\n \"description\": + \"ViewSet for GemDistributions.\",\n \"summary\": \"Inspect + a gem distribution\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"gem_gem_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: Role\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.RoleRemoteResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"remotes_ansible_role_update\",\n \"description\": - \"Trigger an asynchronous update task\",\n \"summary\": \"Update - a role remote\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"ansible_role_remote_href\",\n \"schema\": {\n \"type\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Gem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/gem.GemDistributionResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"distributions_gem_gem_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a gem distribution\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"gem_gem_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Remotes: Role\"\n ],\n \"requestBody\": + [\n \"Distributions: Gem\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.RoleRemote\"\n }\n + \"#/components/schemas/gem.GemDistribution\"\n }\n \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.RoleRemote\"\n }\n + \"#/components/schemas/gem.GemDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.RoleRemote\"\n }\n + \"#/components/schemas/gem.GemDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"patch\": {\n \"operationId\": - \"remotes_ansible_role_partial_update\",\n \"description\": + \"distributions_gem_gem_partial_update\",\n \"description\": \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a role remote\",\n \"parameters\": [\n {\n + \"Update a gem distribution\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"ansible_role_remote_href\",\n \"schema\": {\n \"type\": + \"gem_gem_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Remotes: Role\"\n ],\n \"requestBody\": + [\n \"Distributions: Gem\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedansible.RoleRemote\"\n }\n + \"#/components/schemas/Patchedgem.GemDistribution\"\n }\n \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedansible.RoleRemote\"\n }\n + \"#/components/schemas/Patchedgem.GemDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedansible.RoleRemote\"\n }\n + \"#/components/schemas/Patchedgem.GemDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"delete\": {\n \"operationId\": - \"remotes_ansible_role_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete a role - remote\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"ansible_role_remote_href\",\n - \ \"schema\": {\n \"type\": + \"distributions_gem_gem_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a gem + distribution\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"gem_gem_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Remotes: Role\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n \"Distributions: Gem\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/remotes/container/container/\": {\n \"get\": - {\n \"operationId\": \"remotes_container_container_list\",\n - \ \"description\": \"Container remotes represent an external - repository that implements the Container\\nRegistry API. Container remotes - support deferred downloading by configuring\\nthe ``policy`` field. ``on_demand`` - and ``streamed`` policies can provide\\nsignificant disk space savings.\",\n - \ \"summary\": \"List container remotes\",\n \"parameters\": - [\n {\n \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-alternatecontentsource\",\n \"-ansible_collectionremote\",\n - \ \"-ansible_gitremote\",\n \"-ansible_roleremote\",\n - \ \"-basedistribution\",\n \"-ca_cert\",\n - \ \"-client_cert\",\n \"-client_key\",\n - \ \"-connect_timeout\",\n \"-container_containerremote\",\n - \ \"-deb_aptremote\",\n \"-distribution\",\n - \ \"-download_concurrency\",\n \"-file_fileremote\",\n - \ \"-group_roles\",\n \"-headers\",\n - \ \"-maven_mavenremote\",\n \"-max_retries\",\n - \ \"-name\",\n \"-password\",\n - \ \"-pk\",\n \"-policy\",\n - \ \"-proxy_password\",\n \"-proxy_url\",\n - \ \"-proxy_username\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-python_pythonremote\",\n \"-rate_limit\",\n - \ \"-remoteartifact\",\n \"-repository\",\n - \ \"-rpm_rpmremote\",\n \"-rpm_ulnremote\",\n - \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n - \ \"-tls_validation\",\n \"-total_timeout\",\n - \ \"-url\",\n \"-user_roles\",\n - \ \"-username\",\n \"alternatecontentsource\",\n - \ \"ansible_collectionremote\",\n \"ansible_gitremote\",\n - \ \"ansible_roleremote\",\n \"basedistribution\",\n - \ \"ca_cert\",\n \"client_cert\",\n - \ \"client_key\",\n \"connect_timeout\",\n - \ \"container_containerremote\",\n \"deb_aptremote\",\n - \ \"distribution\",\n \"download_concurrency\",\n - \ \"file_fileremote\",\n \"group_roles\",\n - \ \"headers\",\n \"maven_mavenremote\",\n - \ \"max_retries\",\n \"name\",\n - \ \"password\",\n \"pk\",\n - \ \"policy\",\n \"proxy_password\",\n - \ \"proxy_url\",\n \"proxy_username\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythonremote\",\n - \ \"rate_limit\",\n \"remoteartifact\",\n - \ \"repository\",\n \"rpm_rpmremote\",\n - \ \"rpm_ulnremote\",\n \"sock_connect_timeout\",\n - \ \"sock_read_timeout\",\n \"tls_validation\",\n - \ \"total_timeout\",\n \"url\",\n - \ \"user_roles\",\n \"username\"\n - \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_label_select\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter labels by search string\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gt\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__lte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_last_updated is between two comma separated values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: Container\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedcontainer.ContainerRemoteResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"post\": {\n \"operationId\": - \"remotes_container_container_create\",\n \"description\": - \"Container remotes represent an external repository that implements the Container\\nRegistry - API. Container remotes support deferred downloading by configuring\\nthe ``policy`` - field. ``on_demand`` and ``streamed`` policies can provide\\nsignificant - disk space savings.\",\n \"summary\": \"Create a container - remote\",\n \"tags\": [\n \"Remotes: Container\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/container.ContainerRemote\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": + \ \"{gem_gem_distribution_href}add_role/\": {\n \"post\": + {\n \"operationId\": \"distributions_gem_gem_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"gem_gem_distribution_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Distributions: Gem\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/container.ContainerRemote\"\n }\n - \ },\n \"multipart/form-data\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/container.ContainerRemote\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"201\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/container.ContainerRemoteResponse\"\n + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_remote_href}\": - {\n \"get\": {\n \"operationId\": \"remotes_container_container_read\",\n - \ \"description\": \"Container remotes represent an external - repository that implements the Container\\nRegistry API. Container remotes - support deferred downloading by configuring\\nthe ``policy`` field. ``on_demand`` - and ``streamed`` policies can provide\\nsignificant disk space savings.\",\n - \ \"summary\": \"Inspect a container remote\",\n \"parameters\": + \ }\n },\n \"{gem_gem_distribution_href}list_roles/\": + {\n \"get\": {\n \"operationId\": \"distributions_gem_gem_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": - \"container_container_remote_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"gem_gem_distribution_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Remotes: - Container\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Distributions: + Gem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/container.ContainerRemoteResponse\"\n + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"put\": {\n \"operationId\": \"remotes_container_container_update\",\n - \ \"description\": \"Trigger an asynchronous update task\",\n - \ \"summary\": \"Update a container remote\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"container_container_remote_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Remotes: Container\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/container.ContainerRemote\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/container.ContainerRemote\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/container.ContainerRemote\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"remotes_container_container_partial_update\",\n \"description\": - \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a container remote\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"container_container_remote_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Remotes: Container\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Patchedcontainer.ContainerRemote\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedcontainer.ContainerRemote\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedcontainer.ContainerRemote\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"remotes_container_container_delete\",\n \"description\": - \"Trigger an asynchronous delete task\",\n \"summary\": \"Delete - a container remote\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"container_container_remote_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Remotes: Container\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ }\n },\n \"{gem_gem_distribution_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"distributions_gem_gem_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"gem_gem_distribution_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Gem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_remote_href}add_role/\": - {\n \"post\": {\n \"operationId\": \"remotes_container_container_add_role\",\n - \ \"description\": \"Add a role for this object to users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_remote_href\",\n - \ \"schema\": {\n \"type\": + \ }\n },\n \"{gem_gem_distribution_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"distributions_gem_gem_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"gem_gem_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Remotes: Container\"\n ],\n \"requestBody\": + [\n \"Distributions: Gem\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NestedRole\"\n }\n },\n @@ -12502,120 +13741,129 @@ interactions: {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NestedRole\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": {\n \"201\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_remote_href}list_roles/\": - {\n \"get\": {\n \"operationId\": \"remotes_container_container_list_roles\",\n - \ \"description\": \"List roles assigned to this object.\",\n + \ }\n },\n \"{gem_gem_distribution_href}set_label/\": + {\n \"post\": {\n \"operationId\": \"distributions_gem_gem_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_remote_href\",\n + \"path\",\n \"name\": \"gem_gem_distribution_href\",\n \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: Container\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ObjectRolesResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{container_container_remote_href}my_permissions/\": {\n \"get\": - {\n \"operationId\": \"remotes_container_container_my_permissions\",\n - \ \"description\": \"List permissions available to the current - user on this object.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"container_container_remote_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Remotes: - Container\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + true\n }\n ],\n \"tags\": + [\n \"Distributions: Gem\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_remote_href}remove_role/\": - {\n \"post\": {\n \"operationId\": \"remotes_container_container_remove_role\",\n - \ \"description\": \"Remove a role for this object from users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_remote_href\",\n - \ \"schema\": {\n \"type\": + \ }\n },\n \"{gem_gem_distribution_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"distributions_gem_gem_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"gem_gem_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Remotes: Container\"\n ],\n \"requestBody\": + [\n \"Distributions: Gem\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n + \"#/components/schemas/UnsetLabel\"\n }\n },\n \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n + \"#/components/schemas/UnsetLabel\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n + {\n \"200\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + {\n \"$ref\": \"#/components/schemas/UnsetLabelResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/remotes/deb/apt/\": {\n - \ \"get\": {\n \"operationId\": \"remotes_deb_apt_list\",\n - \ \"description\": \"An AptRemote represents an external APT - repository content source.\\n\\nIt contains the location of the upstream APT - repository, as well as the user options that are\\napplied when using the - remote to synchronize the upstream repository to Pulp.\",\n \"summary\": - \"List apt remotes\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": + \ }\n },\n \"/pulp/api/v3/distributions/maven/maven/\": + {\n \"get\": {\n \"operationId\": \"distributions_maven_maven_list\",\n + \ \"description\": \"ViewSet for Maven Distributions.\",\n \"summary\": + \"List maven distributions\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where base_path is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where name starts with value\"\n },\n @@ -12627,611 +13875,641 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-alternatecontentsource\",\n \"-ansible_collectionremote\",\n - \ \"-ansible_gitremote\",\n \"-ansible_roleremote\",\n - \ \"-basedistribution\",\n \"-ca_cert\",\n - \ \"-client_cert\",\n \"-client_key\",\n - \ \"-connect_timeout\",\n \"-container_containerremote\",\n - \ \"-deb_aptremote\",\n \"-distribution\",\n - \ \"-download_concurrency\",\n \"-file_fileremote\",\n - \ \"-group_roles\",\n \"-headers\",\n - \ \"-maven_mavenremote\",\n \"-max_retries\",\n - \ \"-name\",\n \"-password\",\n - \ \"-pk\",\n \"-policy\",\n - \ \"-proxy_password\",\n \"-proxy_url\",\n - \ \"-proxy_username\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-python_pythonremote\",\n \"-rate_limit\",\n - \ \"-remoteartifact\",\n \"-repository\",\n - \ \"-rpm_rpmremote\",\n \"-rpm_ulnremote\",\n - \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n - \ \"-tls_validation\",\n \"-total_timeout\",\n - \ \"-url\",\n \"-user_roles\",\n - \ \"-username\",\n \"alternatecontentsource\",\n - \ \"ansible_collectionremote\",\n \"ansible_gitremote\",\n - \ \"ansible_roleremote\",\n \"basedistribution\",\n - \ \"ca_cert\",\n \"client_cert\",\n - \ \"client_key\",\n \"connect_timeout\",\n - \ \"container_containerremote\",\n \"deb_aptremote\",\n - \ \"distribution\",\n \"download_concurrency\",\n - \ \"file_fileremote\",\n \"group_roles\",\n - \ \"headers\",\n \"maven_mavenremote\",\n - \ \"max_retries\",\n \"name\",\n - \ \"password\",\n \"pk\",\n - \ \"policy\",\n \"proxy_password\",\n - \ \"proxy_url\",\n \"proxy_username\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythonremote\",\n - \ \"rate_limit\",\n \"remoteartifact\",\n - \ \"repository\",\n \"rpm_rpmremote\",\n - \ \"rpm_ulnremote\",\n \"sock_connect_timeout\",\n - \ \"sock_read_timeout\",\n \"tls_validation\",\n - \ \"total_timeout\",\n \"url\",\n - \ \"user_roles\",\n \"username\"\n + [\n \"-base_path\",\n \"-hidden\",\n + \ \"-name\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"base_path\",\n + \ \"hidden\",\n \"name\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `base_path` - Base path\\n* + `-base_path` - Base path (descending)\\n* `hidden` - Hidden\\n* `-hidden` + - Hidden (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter labels by search string\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gt\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__lte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than or equal to value\"\n },\n {\n + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_last_updated is between two comma separated values\",\n + \"repository\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Filter results where repository + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"repository__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"format\": + \"uuid\"\n }\n },\n \"description\": + \"Filter results where repository is in a comma-separated list of values\",\n \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: Apt\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginateddeb.AptRemoteResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"remotes_deb_apt_create\",\n \"description\": - \"An AptRemote represents an external APT repository content source.\\n\\nIt - contains the location of the upstream APT repository, as well as the user - options that are\\napplied when using the remote to synchronize the upstream - repository to Pulp.\",\n \"summary\": \"Create an apt remote\",\n - \ \"tags\": [\n \"Remotes: Apt\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": + \ \"description\": \"Filter distributions based on the + content served by them\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Maven\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedmaven.MavenDistributionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"distributions_maven_maven_create\",\n \"description\": \"Trigger + an asynchronous create task\",\n \"summary\": \"Create a maven + distribution\",\n \"tags\": [\n \"Distributions: + Maven\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/maven.MavenDistribution\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptRemote\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/deb.AptRemote\"\n - \ }\n },\n \"multipart/form-data\": + \"#/components/schemas/maven.MavenDistribution\"\n }\n + \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptRemote\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/deb.AptRemoteResponse\"\n + \"#/components/schemas/maven.MavenDistribution\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{deb_apt_remote_href}\": {\n \"get\": - {\n \"operationId\": \"remotes_deb_apt_read\",\n \"description\": - \"An AptRemote represents an external APT repository content source.\\n\\nIt - contains the location of the upstream APT repository, as well as the user - options that are\\napplied when using the remote to synchronize the upstream - repository to Pulp.\",\n \"summary\": \"Inspect an apt remote\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"deb_apt_remote_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n + \ }\n },\n \"{maven_maven_distribution_href}\": {\n + \ \"get\": {\n \"operationId\": \"distributions_maven_maven_read\",\n + \ \"description\": \"ViewSet for Maven Distributions.\",\n \"summary\": + \"Inspect a maven distribution\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"maven_maven_distribution_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Remotes: - Apt\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Distributions: + Maven\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/deb.AptRemoteResponse\"\n + {\n \"$ref\": \"#/components/schemas/maven.MavenDistributionResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"put\": {\n \"operationId\": \"remotes_deb_apt_update\",\n + \ },\n \"put\": {\n \"operationId\": \"distributions_maven_maven_update\",\n \ \"description\": \"Trigger an asynchronous update task\",\n - \ \"summary\": \"Update an apt remote\",\n \"parameters\": + \ \"summary\": \"Update a maven distribution\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": - \"deb_apt_remote_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Remotes: Apt\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": + \"maven_maven_distribution_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Maven\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/maven.MavenDistribution\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptRemote\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/deb.AptRemote\"\n - \ }\n },\n \"multipart/form-data\": + \"#/components/schemas/maven.MavenDistribution\"\n }\n + \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptRemote\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": + \"#/components/schemas/maven.MavenDistribution\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"patch\": {\n \"operationId\": - \"remotes_deb_apt_partial_update\",\n \"description\": \"Trigger - an asynchronous partial update task\",\n \"summary\": \"Update - an apt remote\",\n \"parameters\": [\n {\n + \"distributions_maven_maven_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update a maven distribution\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"deb_apt_remote_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Remotes: Apt\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patcheddeb.AptRemote\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": + \"maven_maven_distribution_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Maven\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Patchedmaven.MavenDistribution\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patcheddeb.AptRemote\"\n }\n + \"#/components/schemas/Patchedmaven.MavenDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patcheddeb.AptRemote\"\n }\n + \"#/components/schemas/Patchedmaven.MavenDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"delete\": {\n \"operationId\": - \"remotes_deb_apt_delete\",\n \"description\": \"Trigger an - asynchronous delete task\",\n \"summary\": \"Delete an apt - remote\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"deb_apt_remote_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n + \"distributions_maven_maven_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a maven + distribution\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"maven_maven_distribution_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Remotes: Apt\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"tags\": [\n \"Distributions: Maven\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{maven_maven_distribution_href}set_label/\": + {\n \"post\": {\n \"operationId\": \"distributions_maven_maven_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"maven_maven_distribution_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Distributions: Maven\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n + {\n \"200\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/remotes/file/file/\": {\n - \ \"get\": {\n \"operationId\": \"remotes_file_file_list\",\n - \ \"description\": \"\\nFileRemote represents an external source - of File\\nContent. The target url of a FileRemote must contain a file manifest, - which contains the\\nmetadata for all files at the source.\",\n \"summary\": - \"List file remotes\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n + \ }\n },\n \"{maven_maven_distribution_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"distributions_maven_maven_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"maven_maven_distribution_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Maven\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabelResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/distributions/ostree/ostree/\": {\n \"get\": + {\n \"operationId\": \"distributions_ostree_ostree_list\",\n + \ \"description\": \"A ViewSet class for OSTree distributions.\",\n + \ \"summary\": \"List ostree distributions\",\n \"parameters\": + [\n {\n \"in\": \"query\",\n \"name\": + \"base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path matches value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": + \"base_path__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-alternatecontentsource\",\n \"-ansible_collectionremote\",\n - \ \"-ansible_gitremote\",\n \"-ansible_roleremote\",\n - \ \"-basedistribution\",\n \"-ca_cert\",\n - \ \"-client_cert\",\n \"-client_key\",\n - \ \"-connect_timeout\",\n \"-container_containerremote\",\n - \ \"-deb_aptremote\",\n \"-distribution\",\n - \ \"-download_concurrency\",\n \"-file_fileremote\",\n - \ \"-group_roles\",\n \"-headers\",\n - \ \"-maven_mavenremote\",\n \"-max_retries\",\n - \ \"-name\",\n \"-password\",\n - \ \"-pk\",\n \"-policy\",\n - \ \"-proxy_password\",\n \"-proxy_url\",\n - \ \"-proxy_username\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-python_pythonremote\",\n \"-rate_limit\",\n - \ \"-remoteartifact\",\n \"-repository\",\n - \ \"-rpm_rpmremote\",\n \"-rpm_ulnremote\",\n - \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n - \ \"-tls_validation\",\n \"-total_timeout\",\n - \ \"-url\",\n \"-user_roles\",\n - \ \"-username\",\n \"alternatecontentsource\",\n - \ \"ansible_collectionremote\",\n \"ansible_gitremote\",\n - \ \"ansible_roleremote\",\n \"basedistribution\",\n - \ \"ca_cert\",\n \"client_cert\",\n - \ \"client_key\",\n \"connect_timeout\",\n - \ \"container_containerremote\",\n \"deb_aptremote\",\n - \ \"distribution\",\n \"download_concurrency\",\n - \ \"file_fileremote\",\n \"group_roles\",\n - \ \"headers\",\n \"maven_mavenremote\",\n - \ \"max_retries\",\n \"name\",\n - \ \"password\",\n \"pk\",\n - \ \"policy\",\n \"proxy_password\",\n - \ \"proxy_url\",\n \"proxy_username\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythonremote\",\n - \ \"rate_limit\",\n \"remoteartifact\",\n - \ \"repository\",\n \"rpm_rpmremote\",\n - \ \"rpm_ulnremote\",\n \"sock_connect_timeout\",\n - \ \"sock_read_timeout\",\n \"tls_validation\",\n - \ \"total_timeout\",\n \"url\",\n - \ \"user_roles\",\n \"username\"\n + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where base_path is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-base_path\",\n \"-hidden\",\n + \ \"-name\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"base_path\",\n + \ \"hidden\",\n \"name\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `base_path` - Base path\\n* + `-base_path` - Base path (descending)\\n* `hidden` - Hidden\\n* `-hidden` + - Hidden (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter labels by search string\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gt\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__lte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than or equal to value\"\n },\n {\n + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_last_updated is between two comma separated values\",\n + \"repository\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Filter results where repository + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"repository__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"format\": + \"uuid\"\n }\n },\n \"description\": + \"Filter results where repository is in a comma-separated list of values\",\n \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedfile.FileRemoteResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"remotes_file_file_create\",\n \"description\": - \"\\nFileRemote represents an external source of File\\nContent. The target - url of a FileRemote must contain a file manifest, which contains the\\nmetadata - for all files at the source.\",\n \"summary\": \"Create a file - remote\",\n \"tags\": [\n \"Remotes: File\"\n - \ ],\n \"requestBody\": {\n \"content\": + \ \"description\": \"Filter distributions based on the + content served by them\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Ostree\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedostree.OstreeDistributionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"distributions_ostree_ostree_create\",\n \"description\": + \"Trigger an asynchronous create task\",\n \"summary\": \"Create + an ostree distribution\",\n \"tags\": [\n \"Distributions: + Ostree\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/file.FileRemote\"\n + {\n \"$ref\": \"#/components/schemas/ostree.OstreeDistribution\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileRemote\"\n }\n + \"#/components/schemas/ostree.OstreeDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileRemote\"\n }\n + \"#/components/schemas/ostree.OstreeDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"201\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/file.FileRemoteResponse\"\n + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{file_file_remote_href}\": {\n \"get\": - {\n \"operationId\": \"remotes_file_file_read\",\n \"description\": - \"\\nFileRemote represents an external source of File\\nContent. The target - url of a FileRemote must contain a file manifest, which contains the\\nmetadata - for all files at the source.\",\n \"summary\": \"Inspect a - file remote\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"file_file_remote_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": + \ }\n },\n \"{ostree_ostree_distribution_href}\": + {\n \"get\": {\n \"operationId\": \"distributions_ostree_ostree_read\",\n + \ \"description\": \"A ViewSet class for OSTree distributions.\",\n + \ \"summary\": \"Inspect an ostree distribution\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ostree_ostree_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Ostree\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ostree.OstreeDistributionResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"distributions_ostree_ostree_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update an ostree distribution\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ostree_ostree_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileRemoteResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"remotes_file_file_update\",\n \"description\": - \"Trigger an asynchronous update task\",\n \"summary\": \"Update - a file remote\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"file_file_remote_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Remotes: File\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileRemote\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Ostree\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ostree.OstreeDistribution\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileRemote\"\n }\n + \"#/components/schemas/ostree.OstreeDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileRemote\"\n }\n + \"#/components/schemas/ostree.OstreeDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"patch\": {\n \"operationId\": - \"remotes_file_file_partial_update\",\n \"description\": \"Trigger - an asynchronous partial update task\",\n \"summary\": \"Update - a file remote\",\n \"parameters\": [\n {\n + \"distributions_ostree_ostree_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update an ostree distribution\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"file_file_remote_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Remotes: File\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedfile.FileRemote\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": + \"ostree_ostree_distribution_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Ostree\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Patchedostree.OstreeDistribution\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedfile.FileRemote\"\n }\n + \"#/components/schemas/Patchedostree.OstreeDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedfile.FileRemote\"\n }\n + \"#/components/schemas/Patchedostree.OstreeDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"delete\": {\n \"operationId\": - \"remotes_file_file_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete a file - remote\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"file_file_remote_href\",\n + \"distributions_ostree_ostree_delete\",\n \"description\": + \"Trigger an asynchronous delete task\",\n \"summary\": \"Delete + an ostree distribution\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ostree_ostree_distribution_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Ostree\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ostree_ostree_distribution_href}set_label/\": + {\n \"post\": {\n \"operationId\": \"distributions_ostree_ostree_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ostree_ostree_distribution_href\",\n \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Remotes: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{file_file_remote_href}add_role/\": {\n \"post\": {\n - \ \"operationId\": \"remotes_file_file_add_role\",\n \"description\": - \"Add a role for this object to users/groups.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"file_file_remote_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Remotes: File\"\n ],\n \"requestBody\": + [\n \"Distributions: Ostree\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n + \"#/components/schemas/SetLabel\"\n }\n },\n \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n + \"#/components/schemas/SetLabel\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n + {\n \"200\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{file_file_remote_href}list_roles/\": - {\n \"get\": {\n \"operationId\": \"remotes_file_file_list_roles\",\n - \ \"description\": \"List roles assigned to this object.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"file_file_remote_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ObjectRolesResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{file_file_remote_href}my_permissions/\": {\n \"get\": - {\n \"operationId\": \"remotes_file_file_my_permissions\",\n - \ \"description\": \"List permissions available to the current - user on this object.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"file_file_remote_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \ }\n },\n \"{ostree_ostree_distribution_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"distributions_ostree_ostree_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ostree_ostree_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Ostree\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/MyPermissionsResponse\"\n }\n + \"#/components/schemas/UnsetLabelResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{file_file_remote_href}remove_role/\": {\n \"post\": - {\n \"operationId\": \"remotes_file_file_remove_role\",\n \"description\": - \"Remove a role for this object from users/groups.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"file_file_remote_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Remotes: File\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/remotes/maven/maven/\": - {\n \"get\": {\n \"operationId\": \"remotes_maven_maven_list\",\n - \ \"description\": \"A ViewSet for MavenRemote.\",\n \"summary\": - \"List maven remotes\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": + \ \"/pulp/api/v3/distributions/python/pypi/\": {\n \"get\": + {\n \"operationId\": \"distributions_python_pypi_list\",\n + \ \"description\": \"\\nPulp Python Distributions are used to + distribute Python content from\\nPython Repositories or\\nPython Publications. + \ Pulp Python\\nDistributions should not be confused with \\\"Python Distribution\\\" + as defined by the Python\\ncommunity. In Pulp usage, Python content is referred + to as Python Package Content.\",\n \"summary\": \"List python + distributions\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where base_path is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where name starts with value\"\n },\n @@ -13243,251 +14521,320 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-alternatecontentsource\",\n \"-ansible_collectionremote\",\n - \ \"-ansible_gitremote\",\n \"-ansible_roleremote\",\n - \ \"-basedistribution\",\n \"-ca_cert\",\n - \ \"-client_cert\",\n \"-client_key\",\n - \ \"-connect_timeout\",\n \"-container_containerremote\",\n - \ \"-deb_aptremote\",\n \"-distribution\",\n - \ \"-download_concurrency\",\n \"-file_fileremote\",\n - \ \"-group_roles\",\n \"-headers\",\n - \ \"-maven_mavenremote\",\n \"-max_retries\",\n - \ \"-name\",\n \"-password\",\n - \ \"-pk\",\n \"-policy\",\n - \ \"-proxy_password\",\n \"-proxy_url\",\n - \ \"-proxy_username\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-python_pythonremote\",\n \"-rate_limit\",\n - \ \"-remoteartifact\",\n \"-repository\",\n - \ \"-rpm_rpmremote\",\n \"-rpm_ulnremote\",\n - \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n - \ \"-tls_validation\",\n \"-total_timeout\",\n - \ \"-url\",\n \"-user_roles\",\n - \ \"-username\",\n \"alternatecontentsource\",\n - \ \"ansible_collectionremote\",\n \"ansible_gitremote\",\n - \ \"ansible_roleremote\",\n \"basedistribution\",\n - \ \"ca_cert\",\n \"client_cert\",\n - \ \"client_key\",\n \"connect_timeout\",\n - \ \"container_containerremote\",\n \"deb_aptremote\",\n - \ \"distribution\",\n \"download_concurrency\",\n - \ \"file_fileremote\",\n \"group_roles\",\n - \ \"headers\",\n \"maven_mavenremote\",\n - \ \"max_retries\",\n \"name\",\n - \ \"password\",\n \"pk\",\n - \ \"policy\",\n \"proxy_password\",\n - \ \"proxy_url\",\n \"proxy_username\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythonremote\",\n - \ \"rate_limit\",\n \"remoteartifact\",\n - \ \"repository\",\n \"rpm_rpmremote\",\n - \ \"rpm_ulnremote\",\n \"sock_connect_timeout\",\n - \ \"sock_read_timeout\",\n \"tls_validation\",\n - \ \"total_timeout\",\n \"url\",\n - \ \"user_roles\",\n \"username\"\n + [\n \"-base_path\",\n \"-hidden\",\n + \ \"-name\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"base_path\",\n + \ \"hidden\",\n \"name\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `base_path` - Base path\\n* + `-base_path` - Base path (descending)\\n* `hidden` - Hidden\\n* `-hidden` + - Hidden (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter labels by search string\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gt\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__lte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than or equal to value\"\n },\n {\n + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_last_updated is between two comma separated values\",\n + \"repository\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Filter results where repository + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"repository__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"format\": + \"uuid\"\n }\n },\n \"description\": + \"Filter results where repository is in a comma-separated list of values\",\n \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: Maven\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedmaven.MavenRemoteResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"remotes_maven_maven_create\",\n \"description\": - \"A ViewSet for MavenRemote.\",\n \"summary\": \"Create a maven - remote\",\n \"tags\": [\n \"Remotes: Maven\"\n - \ ],\n \"requestBody\": {\n \"content\": + \ \"description\": \"Filter distributions based on the + content served by them\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Pypi\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedpython.PythonDistributionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"distributions_python_pypi_create\",\n \"description\": \"Trigger + an asynchronous create task\",\n \"summary\": \"Create a python + distribution\",\n \"tags\": [\n \"Distributions: + Pypi\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/maven.MavenRemote\"\n + {\n \"$ref\": \"#/components/schemas/python.PythonDistribution\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/maven.MavenRemote\"\n }\n + \"#/components/schemas/python.PythonDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/maven.MavenRemote\"\n }\n + \"#/components/schemas/python.PythonDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"201\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/maven.MavenRemoteResponse\"\n + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{maven_maven_remote_href}\": {\n \"get\": - {\n \"operationId\": \"remotes_maven_maven_read\",\n \"description\": - \"A ViewSet for MavenRemote.\",\n \"summary\": \"Inspect a - maven remote\",\n \"parameters\": [\n {\n + \ }\n },\n \"{python_python_distribution_href}\": + {\n \"get\": {\n \"operationId\": \"distributions_python_pypi_read\",\n + \ \"description\": \"\\nPulp Python Distributions are used to + distribute Python content from\\nPython Repositories or\\nPython Publications. + \ Pulp Python\\nDistributions should not be confused with \\\"Python Distribution\\\" + as defined by the Python\\ncommunity. In Pulp usage, Python content is referred + to as Python Package Content.\",\n \"summary\": \"Inspect a + python distribution\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"maven_maven_remote_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": + \"python_python_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Pypi\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/python.PythonDistributionResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"distributions_python_pypi_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a python distribution\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"python_python_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: Maven\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/maven.MavenRemoteResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"remotes_maven_maven_update\",\n \"description\": - \"Trigger an asynchronous update task\",\n \"summary\": \"Update - a maven remote\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"maven_maven_remote_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Remotes: Maven\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/maven.MavenRemote\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Pypi\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/python.PythonDistribution\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/maven.MavenRemote\"\n }\n + \"#/components/schemas/python.PythonDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/maven.MavenRemote\"\n }\n + \"#/components/schemas/python.PythonDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"patch\": {\n \"operationId\": - \"remotes_maven_maven_partial_update\",\n \"description\": + \"distributions_python_pypi_partial_update\",\n \"description\": \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a maven remote\",\n \"parameters\": [\n {\n + \"Update a python distribution\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"maven_maven_remote_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Remotes: Maven\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedmaven.MavenRemote\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": + \"python_python_distribution_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Pypi\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Patchedpython.PythonDistribution\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedmaven.MavenRemote\"\n }\n + \"#/components/schemas/Patchedpython.PythonDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedmaven.MavenRemote\"\n }\n + \"#/components/schemas/Patchedpython.PythonDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"delete\": {\n \"operationId\": - \"remotes_maven_maven_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete a maven - remote\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"maven_maven_remote_href\",\n + \"distributions_python_pypi_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a python + distribution\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"python_python_distribution_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Pypi\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{python_python_distribution_href}set_label/\": + {\n \"post\": {\n \"operationId\": \"distributions_python_pypi_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"python_python_distribution_href\",\n \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Remotes: Maven\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": + [\n \"Distributions: Pypi\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{python_python_distribution_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"distributions_python_pypi_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"python_python_distribution_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Distributions: Pypi\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n + \"#/components/schemas/UnsetLabelResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/remotes/python/python/\": {\n \"get\": {\n - \ \"operationId\": \"remotes_python_python_list\",\n \"description\": - \"\\nPython Remotes are representations of an external repository of Python - content, eg.\\nPyPI. Fields include upstream repository config. Python Remotes - are also used to `sync` from\\nupstream repositories, and contains sync settings.\",\n - \ \"summary\": \"List python remotes\",\n \"parameters\": - [\n {\n \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": + \ \"/pulp/api/v3/distributions/rpm/rpm/\": {\n \"get\": {\n + \ \"operationId\": \"distributions_rpm_rpm_list\",\n \"description\": + \"ViewSet for RPM Distributions.\",\n \"summary\": \"List rpm + distributions\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where base_path contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"base_path__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where base_path is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where name starts with value\"\n },\n @@ -13499,510 +14846,525 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-alternatecontentsource\",\n \"-ansible_collectionremote\",\n - \ \"-ansible_gitremote\",\n \"-ansible_roleremote\",\n - \ \"-basedistribution\",\n \"-ca_cert\",\n - \ \"-client_cert\",\n \"-client_key\",\n - \ \"-connect_timeout\",\n \"-container_containerremote\",\n - \ \"-deb_aptremote\",\n \"-distribution\",\n - \ \"-download_concurrency\",\n \"-file_fileremote\",\n - \ \"-group_roles\",\n \"-headers\",\n - \ \"-maven_mavenremote\",\n \"-max_retries\",\n - \ \"-name\",\n \"-password\",\n - \ \"-pk\",\n \"-policy\",\n - \ \"-proxy_password\",\n \"-proxy_url\",\n - \ \"-proxy_username\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-python_pythonremote\",\n \"-rate_limit\",\n - \ \"-remoteartifact\",\n \"-repository\",\n - \ \"-rpm_rpmremote\",\n \"-rpm_ulnremote\",\n - \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n - \ \"-tls_validation\",\n \"-total_timeout\",\n - \ \"-url\",\n \"-user_roles\",\n - \ \"-username\",\n \"alternatecontentsource\",\n - \ \"ansible_collectionremote\",\n \"ansible_gitremote\",\n - \ \"ansible_roleremote\",\n \"basedistribution\",\n - \ \"ca_cert\",\n \"client_cert\",\n - \ \"client_key\",\n \"connect_timeout\",\n - \ \"container_containerremote\",\n \"deb_aptremote\",\n - \ \"distribution\",\n \"download_concurrency\",\n - \ \"file_fileremote\",\n \"group_roles\",\n - \ \"headers\",\n \"maven_mavenremote\",\n - \ \"max_retries\",\n \"name\",\n - \ \"password\",\n \"pk\",\n - \ \"policy\",\n \"proxy_password\",\n - \ \"proxy_url\",\n \"proxy_username\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythonremote\",\n - \ \"rate_limit\",\n \"remoteartifact\",\n - \ \"repository\",\n \"rpm_rpmremote\",\n - \ \"rpm_ulnremote\",\n \"sock_connect_timeout\",\n - \ \"sock_read_timeout\",\n \"tls_validation\",\n - \ \"total_timeout\",\n \"url\",\n - \ \"user_roles\",\n \"username\"\n + [\n \"-base_path\",\n \"-hidden\",\n + \ \"-name\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"base_path\",\n + \ \"hidden\",\n \"name\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `base_path` - Base path\\n* + `-base_path` - Base path (descending)\\n* `hidden` - Hidden\\n* `-hidden` + - Hidden (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter labels by search string\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gt\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__lte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than or equal to value\"\n },\n {\n + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_last_updated is between two comma separated values\",\n + \"repository\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Filter results where repository + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"repository__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"format\": + \"uuid\"\n }\n },\n \"description\": + \"Filter results where repository is in a comma-separated list of values\",\n \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: Python\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedpython.PythonRemoteResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"remotes_python_python_create\",\n \"description\": - \"\\nPython Remotes are representations of an external repository of Python - content, eg.\\nPyPI. Fields include upstream repository config. Python Remotes - are also used to `sync` from\\nupstream repositories, and contains sync settings.\",\n - \ \"summary\": \"Create a python remote\",\n \"tags\": - [\n \"Remotes: Python\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonRemote\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": + \ \"description\": \"Filter distributions based on the + content served by them\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedrpm.RpmDistributionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"distributions_rpm_rpm_create\",\n \"description\": \"Trigger + an asynchronous create task\",\n \"summary\": \"Create a rpm + distribution\",\n \"tags\": [\n \"Distributions: + Rpm\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/rpm.RpmDistribution\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonRemote\"\n }\n + \"#/components/schemas/rpm.RpmDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonRemote\"\n }\n + \"#/components/schemas/rpm.RpmDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"201\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/python.PythonRemoteResponse\"\n + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{python_python_remote_href}\": {\n \"get\": - {\n \"operationId\": \"remotes_python_python_read\",\n \"description\": - \"\\nPython Remotes are representations of an external repository of Python - content, eg.\\nPyPI. Fields include upstream repository config. Python Remotes - are also used to `sync` from\\nupstream repositories, and contains sync settings.\",\n - \ \"summary\": \"Inspect a python remote\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"python_python_remote_href\",\n \"schema\": {\n \"type\": + \ }\n },\n \"{rpm_rpm_distribution_href}\": {\n \"get\": + {\n \"operationId\": \"distributions_rpm_rpm_read\",\n \"description\": + \"ViewSet for RPM Distributions.\",\n \"summary\": \"Inspect + a rpm distribution\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"rpm_rpm_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: Python\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonRemoteResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"remotes_python_python_update\",\n \"description\": - \"Trigger an asynchronous update task\",\n \"summary\": \"Update - a python remote\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"python_python_remote_href\",\n \"schema\": {\n \"type\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/rpm.RpmDistributionResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"distributions_rpm_rpm_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a rpm distribution\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Remotes: Python\"\n ],\n \"requestBody\": + [\n \"Distributions: Rpm\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonRemote\"\n }\n + \"#/components/schemas/rpm.RpmDistribution\"\n }\n \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonRemote\"\n }\n + \"#/components/schemas/rpm.RpmDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonRemote\"\n }\n + \"#/components/schemas/rpm.RpmDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"patch\": {\n \"operationId\": - \"remotes_python_python_partial_update\",\n \"description\": + \"distributions_rpm_rpm_partial_update\",\n \"description\": \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a python remote\",\n \"parameters\": [\n {\n + \"Update a rpm distribution\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"python_python_remote_href\",\n \"schema\": {\n \"type\": + \"rpm_rpm_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Remotes: Python\"\n ],\n \"requestBody\": + [\n \"Distributions: Rpm\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedpython.PythonRemote\"\n }\n + \"#/components/schemas/Patchedrpm.RpmDistribution\"\n }\n \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedpython.PythonRemote\"\n }\n + \"#/components/schemas/Patchedrpm.RpmDistribution\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedpython.PythonRemote\"\n }\n + \"#/components/schemas/Patchedrpm.RpmDistribution\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"delete\": {\n \"operationId\": - \"remotes_python_python_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete a python - remote\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"python_python_remote_href\",\n - \ \"schema\": {\n \"type\": + \"distributions_rpm_rpm_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a rpm + distribution\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"rpm_rpm_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Remotes: Python\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n \"Distributions: Rpm\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/remotes/python/python/from_bandersnatch/\": {\n \"post\": - {\n \"operationId\": \"remotes_python_python_from_bandersnatch\",\n - \ \"description\": \"\\nTakes the fields specified in the Bandersnatch - config and creates a Python Remote from it.\",\n \"summary\": - \"Create from Bandersnatch\",\n \"tags\": [\n \"Remotes: - Python\"\n ],\n \"requestBody\": {\n \"content\": - {\n \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PythonBanderRemote\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": + \ \"{rpm_rpm_distribution_href}add_role/\": {\n \"post\": + {\n \"operationId\": \"distributions_rpm_rpm_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_distribution_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Distributions: Rpm\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PythonBanderRemote\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"201\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/python.PythonRemoteResponse\"\n + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/remotes/rpm/rpm/\": {\n - \ \"get\": {\n \"operationId\": \"remotes_rpm_rpm_list\",\n - \ \"description\": \"A ViewSet for RpmRemote.\",\n \"summary\": - \"List rpm remotes\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": + \ }\n },\n \"{rpm_rpm_distribution_href}list_roles/\": + {\n \"get\": {\n \"operationId\": \"distributions_rpm_rpm_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_distribution_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-alternatecontentsource\",\n \"-ansible_collectionremote\",\n - \ \"-ansible_gitremote\",\n \"-ansible_roleremote\",\n - \ \"-basedistribution\",\n \"-ca_cert\",\n - \ \"-client_cert\",\n \"-client_key\",\n - \ \"-connect_timeout\",\n \"-container_containerremote\",\n - \ \"-deb_aptremote\",\n \"-distribution\",\n - \ \"-download_concurrency\",\n \"-file_fileremote\",\n - \ \"-group_roles\",\n \"-headers\",\n - \ \"-maven_mavenremote\",\n \"-max_retries\",\n - \ \"-name\",\n \"-password\",\n - \ \"-pk\",\n \"-policy\",\n - \ \"-proxy_password\",\n \"-proxy_url\",\n - \ \"-proxy_username\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-python_pythonremote\",\n \"-rate_limit\",\n - \ \"-remoteartifact\",\n \"-repository\",\n - \ \"-rpm_rpmremote\",\n \"-rpm_ulnremote\",\n - \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n - \ \"-tls_validation\",\n \"-total_timeout\",\n - \ \"-url\",\n \"-user_roles\",\n - \ \"-username\",\n \"alternatecontentsource\",\n - \ \"ansible_collectionremote\",\n \"ansible_gitremote\",\n - \ \"ansible_roleremote\",\n \"basedistribution\",\n - \ \"ca_cert\",\n \"client_cert\",\n - \ \"client_key\",\n \"connect_timeout\",\n - \ \"container_containerremote\",\n \"deb_aptremote\",\n - \ \"distribution\",\n \"download_concurrency\",\n - \ \"file_fileremote\",\n \"group_roles\",\n - \ \"headers\",\n \"maven_mavenremote\",\n - \ \"max_retries\",\n \"name\",\n - \ \"password\",\n \"pk\",\n - \ \"policy\",\n \"proxy_password\",\n - \ \"proxy_url\",\n \"proxy_username\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythonremote\",\n - \ \"rate_limit\",\n \"remoteartifact\",\n - \ \"repository\",\n \"rpm_rpmremote\",\n - \ \"rpm_ulnremote\",\n \"sock_connect_timeout\",\n - \ \"sock_read_timeout\",\n \"tls_validation\",\n - \ \"total_timeout\",\n \"url\",\n - \ \"user_roles\",\n \"username\"\n - \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_label_select\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter labels by search string\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gt\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than or equal to value\"\n },\n {\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__lte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": + \"exclude_fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_last_updated is between two comma separated values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: Rpm\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedrpm.RpmRemoteResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"remotes_rpm_rpm_create\",\n \"description\": - \"A ViewSet for RpmRemote.\",\n \"summary\": \"Create a rpm - remote\",\n \"tags\": [\n \"Remotes: Rpm\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/rpm.RpmRemote\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmRemote\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/rpm.RpmRemote\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"201\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmRemoteResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{rpm_rpm_remote_href}\": {\n \"get\": {\n \"operationId\": - \"remotes_rpm_rpm_read\",\n \"description\": \"A ViewSet for - RpmRemote.\",\n \"summary\": \"Inspect a rpm remote\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"rpm_rpm_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_distribution_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"distributions_rpm_rpm_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_rpm_distribution_href\",\n + \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: Rpm\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmRemoteResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"remotes_rpm_rpm_update\",\n \"description\": - \"Trigger an asynchronous update task\",\n \"summary\": \"Update - a rpm remote\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"rpm_rpm_remote_href\",\n \"schema\": {\n \"type\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Distributions: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_distribution_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"distributions_rpm_rpm_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_distribution_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Remotes: Rpm\"\n ],\n \"requestBody\": + [\n \"Distributions: Rpm\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmRemote\"\n }\n },\n + \"#/components/schemas/NestedRole\"\n }\n },\n \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/rpm.RpmRemote\"\n + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmRemote\"\n }\n }\n + \"#/components/schemas/NestedRole\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n + {\n \"201\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"remotes_rpm_rpm_partial_update\",\n \"description\": \"Trigger - an asynchronous partial update task\",\n \"summary\": \"Update - a rpm remote\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"rpm_rpm_remote_href\",\n \"schema\": {\n \"type\": + \ }\n },\n \"{rpm_rpm_distribution_href}set_label/\": + {\n \"post\": {\n \"operationId\": \"distributions_rpm_rpm_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_rpm_distribution_href\",\n + \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Remotes: Rpm\"\n ],\n \"requestBody\": + [\n \"Distributions: Rpm\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedrpm.RpmRemote\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedrpm.RpmRemote\"\n }\n - \ },\n \"multipart/form-data\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedrpm.RpmRemote\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"remotes_rpm_rpm_delete\",\n \"description\": \"Trigger an - asynchronous delete task\",\n \"summary\": \"Delete a rpm remote\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"rpm_rpm_remote_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Remotes: Rpm\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ }\n },\n \"{rpm_rpm_distribution_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"distributions_rpm_rpm_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_distribution_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Distributions: Rpm\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n + {\n \"200\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/UnsetLabelResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/remotes/rpm/uln/\": {\n - \ \"get\": {\n \"operationId\": \"remotes_rpm_uln_list\",\n - \ \"description\": \"A ViewSet for UlnRemote.\",\n \"summary\": - \"List uln remotes\",\n \"parameters\": [\n {\n + \ }\n },\n \"/pulp/api/v3/docs/api.json\": {\n \"get\": + {\n \"operationId\": \"docs_api.json_get\",\n \"description\": + \"OpenApi3 schema for this API. Format can be selected via content negotiation.\\n\\n- + YAML: application/vnd.oai.openapi\\n- JSON: application/vnd.oai.openapi+json\",\n + \ \"parameters\": [\n {\n \"in\": + \"query\",\n \"name\": \"lang\",\n \"schema\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"af\",\n \"ar\",\n + \ \"ar-dz\",\n \"ast\",\n + \ \"az\",\n \"be\",\n + \ \"bg\",\n \"bn\",\n + \ \"br\",\n \"bs\",\n + \ \"ca\",\n \"ckb\",\n + \ \"cs\",\n \"cy\",\n + \ \"da\",\n \"de\",\n + \ \"dsb\",\n \"el\",\n + \ \"en\",\n \"en-au\",\n + \ \"en-gb\",\n \"eo\",\n + \ \"es\",\n \"es-ar\",\n + \ \"es-co\",\n \"es-mx\",\n + \ \"es-ni\",\n \"es-ve\",\n + \ \"et\",\n \"eu\",\n + \ \"fa\",\n \"fi\",\n + \ \"fr\",\n \"fy\",\n + \ \"ga\",\n \"gd\",\n + \ \"gl\",\n \"he\",\n + \ \"hi\",\n \"hr\",\n + \ \"hsb\",\n \"hu\",\n + \ \"hy\",\n \"ia\",\n + \ \"id\",\n \"ig\",\n + \ \"io\",\n \"is\",\n + \ \"it\",\n \"ja\",\n + \ \"ka\",\n \"kab\",\n + \ \"kk\",\n \"km\",\n + \ \"kn\",\n \"ko\",\n + \ \"ky\",\n \"lb\",\n + \ \"lt\",\n \"lv\",\n + \ \"mk\",\n \"ml\",\n + \ \"mn\",\n \"mr\",\n + \ \"ms\",\n \"my\",\n + \ \"nb\",\n \"ne\",\n + \ \"nl\",\n \"nn\",\n + \ \"os\",\n \"pa\",\n + \ \"pl\",\n \"pt\",\n + \ \"pt-br\",\n \"ro\",\n + \ \"ru\",\n \"sk\",\n + \ \"sl\",\n \"sq\",\n + \ \"sr\",\n \"sr-latn\",\n + \ \"sv\",\n \"sw\",\n + \ \"ta\",\n \"te\",\n + \ \"tg\",\n \"th\",\n + \ \"tk\",\n \"tr\",\n + \ \"tt\",\n \"udm\",\n + \ \"uk\",\n \"ur\",\n + \ \"uz\",\n \"vi\",\n + \ \"zh-hans\",\n \"zh-hant\"\n + \ ]\n }\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Docs: + Api.Json\"\n ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/vnd.oai.openapi+json\": + {\n \"schema\": {\n \"type\": + \"object\"\n }\n },\n + \ \"application/json\": {\n \"schema\": + {\n \"type\": \"object\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/docs/api.yaml\": {\n \"get\": {\n \"operationId\": + \"docs_api.yaml_get\",\n \"description\": \"OpenApi3 schema + for this API. Format can be selected via content negotiation.\\n\\n- YAML: + application/vnd.oai.openapi\\n- JSON: application/vnd.oai.openapi+json\",\n + \ \"parameters\": [\n {\n \"in\": + \"query\",\n \"name\": \"lang\",\n \"schema\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"af\",\n \"ar\",\n + \ \"ar-dz\",\n \"ast\",\n + \ \"az\",\n \"be\",\n + \ \"bg\",\n \"bn\",\n + \ \"br\",\n \"bs\",\n + \ \"ca\",\n \"ckb\",\n + \ \"cs\",\n \"cy\",\n + \ \"da\",\n \"de\",\n + \ \"dsb\",\n \"el\",\n + \ \"en\",\n \"en-au\",\n + \ \"en-gb\",\n \"eo\",\n + \ \"es\",\n \"es-ar\",\n + \ \"es-co\",\n \"es-mx\",\n + \ \"es-ni\",\n \"es-ve\",\n + \ \"et\",\n \"eu\",\n + \ \"fa\",\n \"fi\",\n + \ \"fr\",\n \"fy\",\n + \ \"ga\",\n \"gd\",\n + \ \"gl\",\n \"he\",\n + \ \"hi\",\n \"hr\",\n + \ \"hsb\",\n \"hu\",\n + \ \"hy\",\n \"ia\",\n + \ \"id\",\n \"ig\",\n + \ \"io\",\n \"is\",\n + \ \"it\",\n \"ja\",\n + \ \"ka\",\n \"kab\",\n + \ \"kk\",\n \"km\",\n + \ \"kn\",\n \"ko\",\n + \ \"ky\",\n \"lb\",\n + \ \"lt\",\n \"lv\",\n + \ \"mk\",\n \"ml\",\n + \ \"mn\",\n \"mr\",\n + \ \"ms\",\n \"my\",\n + \ \"nb\",\n \"ne\",\n + \ \"nl\",\n \"nn\",\n + \ \"os\",\n \"pa\",\n + \ \"pl\",\n \"pt\",\n + \ \"pt-br\",\n \"ro\",\n + \ \"ru\",\n \"sk\",\n + \ \"sl\",\n \"sq\",\n + \ \"sr\",\n \"sr-latn\",\n + \ \"sv\",\n \"sw\",\n + \ \"ta\",\n \"te\",\n + \ \"tg\",\n \"th\",\n + \ \"tk\",\n \"tr\",\n + \ \"tt\",\n \"udm\",\n + \ \"uk\",\n \"ur\",\n + \ \"uz\",\n \"vi\",\n + \ \"zh-hans\",\n \"zh-hant\"\n + \ ]\n }\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Docs: + Api.Yaml\"\n ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/vnd.oai.openapi\": + {\n \"schema\": {\n \"type\": + \"object\"\n }\n },\n + \ \"application/yaml\": {\n \"schema\": + {\n \"type\": \"object\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/domains/\": {\n \"get\": {\n \"operationId\": + \"domains_list\",\n \"description\": \"ViewSet for Domain.\\n\\nNOTE: + This API endpoint is in \\\"tech preview\\\" and subject to change\",\n \"summary\": + \"List domains\",\n \"parameters\": [\n {\n \ \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n \ },\n {\n \"in\": \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": \"query\",\n \"name\": \"name__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"description\": \"Filter results where name contains @@ -14011,6 +15373,10 @@ interactions: {\n \"type\": \"string\"\n },\n \ \"description\": \"Filter results where name contains value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": \"query\",\n \"name\": \"name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n @@ -14018,6 +15384,18 @@ interactions: results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where name starts with value\"\n },\n @@ -14029,170 +15407,133 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-alternatecontentsource\",\n \"-ansible_collectionremote\",\n - \ \"-ansible_gitremote\",\n \"-ansible_roleremote\",\n - \ \"-basedistribution\",\n \"-ca_cert\",\n - \ \"-client_cert\",\n \"-client_key\",\n - \ \"-connect_timeout\",\n \"-container_containerremote\",\n - \ \"-deb_aptremote\",\n \"-distribution\",\n - \ \"-download_concurrency\",\n \"-file_fileremote\",\n - \ \"-group_roles\",\n \"-headers\",\n - \ \"-maven_mavenremote\",\n \"-max_retries\",\n - \ \"-name\",\n \"-password\",\n - \ \"-pk\",\n \"-policy\",\n - \ \"-proxy_password\",\n \"-proxy_url\",\n - \ \"-proxy_username\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-pulp_type\",\n - \ \"-python_pythonremote\",\n \"-rate_limit\",\n - \ \"-remoteartifact\",\n \"-repository\",\n - \ \"-rpm_rpmremote\",\n \"-rpm_ulnremote\",\n - \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n - \ \"-tls_validation\",\n \"-total_timeout\",\n - \ \"-url\",\n \"-user_roles\",\n - \ \"-username\",\n \"alternatecontentsource\",\n - \ \"ansible_collectionremote\",\n \"ansible_gitremote\",\n - \ \"ansible_roleremote\",\n \"basedistribution\",\n - \ \"ca_cert\",\n \"client_cert\",\n - \ \"client_key\",\n \"connect_timeout\",\n - \ \"container_containerremote\",\n \"deb_aptremote\",\n - \ \"distribution\",\n \"download_concurrency\",\n - \ \"file_fileremote\",\n \"group_roles\",\n - \ \"headers\",\n \"maven_mavenremote\",\n - \ \"max_retries\",\n \"name\",\n - \ \"password\",\n \"pk\",\n - \ \"policy\",\n \"proxy_password\",\n - \ \"proxy_url\",\n \"proxy_username\",\n + [\n \"-description\",\n \"-hide_guarded_distributions\",\n + \ \"-name\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"-redirect_to_object_storage\",\n + \ \"-storage_class\",\n \"-storage_settings\",\n + \ \"description\",\n \"hide_guarded_distributions\",\n + \ \"name\",\n \"pk\",\n \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"pulp_type\",\n \"python_pythonremote\",\n - \ \"rate_limit\",\n \"remoteartifact\",\n - \ \"repository\",\n \"rpm_rpmremote\",\n - \ \"rpm_ulnremote\",\n \"sock_connect_timeout\",\n - \ \"sock_read_timeout\",\n \"tls_validation\",\n - \ \"total_timeout\",\n \"url\",\n - \ \"user_roles\",\n \"username\"\n + \ \"pulp_last_updated\",\n \"redirect_to_object_storage\",\n + \ \"storage_class\",\n \"storage_settings\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `name` - Name\\n* `-name` - Name (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `storage_class` - Storage class\\n* + `-storage_class` - Storage class (descending)\\n* `storage_settings` - Storage + settings\\n* `-storage_settings` - Storage settings (descending)\\n* `redirect_to_object_storage` + - Redirect to object storage\\n* `-redirect_to_object_storage` - Redirect + to object storage (descending)\\n* `hide_guarded_distributions` - Hide guarded + distributions\\n* `-hide_guarded_distributions` - Hide guarded distributions + (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"pulp_label_select\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter labels by search string\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gt\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__gte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is greater than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_last_updated__lte\",\n - \ \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_last_updated - is less than or equal to value\"\n },\n {\n + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": + \"fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_last_updated is between two comma separated values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: Uln\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Paginatedrpm.UlnRemoteResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"remotes_rpm_uln_create\",\n \"description\": - \"A ViewSet for UlnRemote.\",\n \"summary\": \"Create an uln - remote\",\n \"tags\": [\n \"Remotes: Uln\"\n + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Domains\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedDomainResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"domains_create\",\n \"description\": \"ViewSet for Domain.\\n\\nNOTE: + This API endpoint is in \\\"tech preview\\\" and subject to change\",\n \"summary\": + \"Create a domain\",\n \"tags\": [\n \"Domains\"\n \ ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/rpm.UlnRemote\"\n + {\n \"$ref\": \"#/components/schemas/Domain\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.UlnRemote\"\n }\n },\n + \"#/components/schemas/Domain\"\n }\n },\n \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/rpm.UlnRemote\"\n + {\n \"$ref\": \"#/components/schemas/Domain\"\n \ }\n }\n },\n \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.UlnRemoteResponse\"\n }\n + \"#/components/schemas/DomainResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{rpm_uln_remote_href}\": {\n \"get\": {\n \"operationId\": - \"remotes_rpm_uln_read\",\n \"description\": \"A ViewSet for - UlnRemote.\",\n \"summary\": \"Inspect an uln remote\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"rpm_uln_remote_href\",\n \"schema\": {\n \"type\": + \ \"{domain_href}\": {\n \"get\": {\n \"operationId\": + \"domains_read\",\n \"description\": \"ViewSet for Domain.\\n\\nNOTE: + This API endpoint is in \\\"tech preview\\\" and subject to change\",\n \"summary\": + \"Inspect a domain\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"domain_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Remotes: Uln\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.UlnRemoteResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"remotes_rpm_uln_update\",\n \"description\": - \"Trigger an asynchronous update task\",\n \"summary\": \"Update - an uln remote\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"rpm_uln_remote_href\",\n \"schema\": {\n \"type\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Domains\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/DomainResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"domains_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a domain\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"domain_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Remotes: Uln\"\n ],\n \"requestBody\": + [\n \"Domains\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.UlnRemote\"\n }\n },\n + \"#/components/schemas/Domain\"\n }\n },\n \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/rpm.UlnRemote\"\n + {\n \"$ref\": \"#/components/schemas/Domain\"\n \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.UlnRemote\"\n }\n }\n + \"#/components/schemas/Domain\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": {\n \"202\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": @@ -14200,96 +15541,89 @@ interactions: \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"patch\": {\n \"operationId\": - \"remotes_rpm_uln_partial_update\",\n \"description\": \"Trigger - an asynchronous partial update task\",\n \"summary\": \"Update - an uln remote\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"rpm_uln_remote_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Remotes: Uln\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedrpm.UlnRemote\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedrpm.UlnRemote\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedrpm.UlnRemote\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"remotes_rpm_uln_delete\",\n \"description\": \"Trigger an - asynchronous delete task\",\n \"summary\": \"Delete an uln - remote\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"rpm_uln_remote_href\",\n \"schema\": + \"domains_partial_update\",\n \"description\": \"Trigger an + asynchronous partial update task\",\n \"summary\": \"Update + a domain\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"domain_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Remotes: Uln\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"tags\": [\n \"Domains\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PatchedDomain\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PatchedDomain\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PatchedDomain\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": {\n \"202\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/repair/\": {\n \"post\": - {\n \"operationId\": \"repair_post\",\n \"description\": - \"Trigger an asynchronous task that checks for missing or corrupted artifacts, - and attempts to redownload them.\",\n \"summary\": \"Repair - Artifact Storage\",\n \"tags\": [\n \"Repair\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Repair\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Repair\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Repair\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"domains_delete\",\n \"description\": \"Trigger an asynchronous + delete task\",\n \"summary\": \"Delete a domain\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"domain_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Domains\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/repositories/\": {\n \"get\": {\n \"operationId\": - \"repositories_list\",\n \"description\": \"Endpoint to list - all repositories.\",\n \"summary\": \"List repositories\",\n - \ \"parameters\": [\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__contains\",\n \"schema\": {\n \"type\": + \ \"/pulp/api/v3/exporters/core/filesystem/\": {\n \"get\": + {\n \"operationId\": \"exporters_core_filesystem_list\",\n + \ \"description\": \"Endpoint for managing FilesystemExporters.\",\n + \ \"summary\": \"List filesystem exporters\",\n \"parameters\": + [\n {\n \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__icontains\",\n \"schema\": {\n \"type\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__in\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where name is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": @@ -14302,440 +15636,330 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-addons\",\n \"-alternatecontentsourcepath\",\n - \ \"-ansible_ansiblerepository\",\n \"-container_containerpushrepository\",\n - \ \"-container_containerrepository\",\n - \ \"-content\",\n \"-core_pulp_exporter\",\n - \ \"-deb_aptrepository\",\n \"-description\",\n - \ \"-distributions\",\n \"-download_logs\",\n - \ \"-file_filerepository\",\n \"-group_roles\",\n - \ \"-maven_mavenrepository\",\n \"-name\",\n - \ \"-next_version\",\n \"-pk\",\n + [\n \"-method\",\n \"-name\",\n + \ \"-path\",\n \"-pk\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-pulpimporterrepository\",\n - \ \"-python_pythonrepository\",\n \"-remote\",\n - \ \"-repositorycontent\",\n \"-retain_repo_versions\",\n - \ \"-rpm_rpmrepository\",\n \"-uploads\",\n - \ \"-user_hidden\",\n \"-user_roles\",\n - \ \"-variants\",\n \"-versions\",\n - \ \"addons\",\n \"alternatecontentsourcepath\",\n - \ \"ansible_ansiblerepository\",\n \"container_containerpushrepository\",\n - \ \"container_containerrepository\",\n \"content\",\n - \ \"core_pulp_exporter\",\n \"deb_aptrepository\",\n - \ \"description\",\n \"distributions\",\n - \ \"download_logs\",\n \"file_filerepository\",\n - \ \"group_roles\",\n \"maven_mavenrepository\",\n - \ \"name\",\n \"next_version\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"pulpimporterrepository\",\n \"python_pythonrepository\",\n - \ \"remote\",\n \"repositorycontent\",\n - \ \"retain_repo_versions\",\n \"rpm_rpmrepository\",\n - \ \"uploads\",\n \"user_hidden\",\n - \ \"user_roles\",\n \"variants\",\n - \ \"versions\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter labels by search string\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"remote\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"uuid\"\n },\n \"description\": - \"Foreign Key referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"method\",\n \"name\",\n + \ \"path\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `path` - Path\\n* `-path` - Path + (descending)\\n* `method` - Method\\n* `-method` - Method (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedRepositoryResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/repositories/ansible/ansible/\": - {\n \"get\": {\n \"operationId\": \"repositories_ansible_ansible_list\",\n - \ \"description\": \"ViewSet for Ansible Repositories.\",\n - \ \"summary\": \"List ansible repositorys\",\n \"parameters\": - [\n {\n \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-addons\",\n \"-alternatecontentsourcepath\",\n - \ \"-ansible_ansiblerepository\",\n \"-container_containerpushrepository\",\n - \ \"-container_containerrepository\",\n - \ \"-content\",\n \"-core_pulp_exporter\",\n - \ \"-deb_aptrepository\",\n \"-description\",\n - \ \"-distributions\",\n \"-download_logs\",\n - \ \"-file_filerepository\",\n \"-group_roles\",\n - \ \"-maven_mavenrepository\",\n \"-name\",\n - \ \"-next_version\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-pulpimporterrepository\",\n - \ \"-python_pythonrepository\",\n \"-remote\",\n - \ \"-repositorycontent\",\n \"-retain_repo_versions\",\n - \ \"-rpm_rpmrepository\",\n \"-uploads\",\n - \ \"-user_hidden\",\n \"-user_roles\",\n - \ \"-variants\",\n \"-versions\",\n - \ \"addons\",\n \"alternatecontentsourcepath\",\n - \ \"ansible_ansiblerepository\",\n \"container_containerpushrepository\",\n - \ \"container_containerrepository\",\n \"content\",\n - \ \"core_pulp_exporter\",\n \"deb_aptrepository\",\n - \ \"description\",\n \"distributions\",\n - \ \"download_logs\",\n \"file_filerepository\",\n - \ \"group_roles\",\n \"maven_mavenrepository\",\n - \ \"name\",\n \"next_version\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"pulpimporterrepository\",\n \"python_pythonrepository\",\n - \ \"remote\",\n \"repositorycontent\",\n - \ \"retain_repo_versions\",\n \"rpm_rpmrepository\",\n - \ \"uploads\",\n \"user_hidden\",\n - \ \"user_roles\",\n \"variants\",\n - \ \"versions\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter labels by search string\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"remote\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"uuid\"\n },\n \"description\": - \"Foreign Key referenced by HREF\"\n },\n {\n + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Ansible\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Exporters: + Filesystem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedansible.AnsibleRepositoryResponseList\"\n + {\n \"$ref\": \"#/components/schemas/PaginatedFilesystemExporterResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"repositories_ansible_ansible_create\",\n \"description\": - \"ViewSet for Ansible Repositories.\",\n \"summary\": \"Create - an ansible repository\",\n \"tags\": [\n \"Repositories: - Ansible\"\n ],\n \"requestBody\": {\n \"content\": + \"exporters_core_filesystem_create\",\n \"description\": \"Endpoint + for managing FilesystemExporters.\",\n \"summary\": \"Create + a filesystem exporter\",\n \"tags\": [\n \"Exporters: + Filesystem\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ansible.AnsibleRepository\"\n + {\n \"$ref\": \"#/components/schemas/FilesystemExporter\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.AnsibleRepository\"\n }\n + \"#/components/schemas/FilesystemExporter\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.AnsibleRepository\"\n }\n + \"#/components/schemas/FilesystemExporter\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ansible.AnsibleRepositoryResponse\"\n + {\n \"$ref\": \"#/components/schemas/FilesystemExporterResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{ansible_ansible_repository_href}\": - {\n \"get\": {\n \"operationId\": \"repositories_ansible_ansible_read\",\n - \ \"description\": \"ViewSet for Ansible Repositories.\",\n - \ \"summary\": \"Inspect an ansible repository\",\n \"parameters\": + \ }\n },\n \"{filesystem_exporter_href}exports/\": + {\n \"get\": {\n \"operationId\": \"exporters_core_filesystem_exports_list\",\n + \ \"description\": \"Endpoint for managing FilesystemExports.\",\n + \ \"summary\": \"List filesystem exports\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": - \"ansible_ansible_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"filesystem_exporter_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Ansible\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ansible.AnsibleRepositoryResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"put\": {\n \"operationId\": \"repositories_ansible_ansible_update\",\n - \ \"description\": \"Trigger an asynchronous update task\",\n - \ \"summary\": \"Update an ansible repository\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"ansible_ansible_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Ansible\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ansible.AnsibleRepository\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.AnsibleRepository\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ansible.AnsibleRepository\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"repositories_ansible_ansible_partial_update\",\n \"description\": - \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update an ansible repository\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"ansible_ansible_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Ansible\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Patchedansible.AnsibleRepository\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedansible.AnsibleRepository\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedansible.AnsibleRepository\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"repositories_ansible_ansible_delete\",\n \"description\": - \"Trigger an asynchronous delete task\",\n \"summary\": \"Delete - an ansible repository\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"ansible_ansible_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Ansible\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{ansible_ansible_repository_href}modify/\": - {\n \"post\": {\n \"operationId\": \"repositories_ansible_ansible_modify\",\n - \ \"description\": \"Trigger an asynchronous task to create - a new repository version.\",\n \"summary\": \"Modify Repository - Content\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"ansible_ansible_repository_href\",\n + \ ],\n \"tags\": [\n \"Exporters: + Filesystem Exports\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PaginatedFilesystemExportResponseList\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n },\n \"post\": + {\n \"operationId\": \"exporters_core_filesystem_exports_create\",\n + \ \"description\": \"Trigger an asynchronous task to export + files to the filesystem\",\n \"summary\": \"Create a filesystem + export\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"filesystem_exporter_href\",\n \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Repositories: Ansible\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": + [\n \"Exporters: Filesystem Exports\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \"#/components/schemas/FilesystemExport\"\n }\n \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \"#/components/schemas/FilesystemExport\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \"#/components/schemas/FilesystemExport\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{ansible_ansible_repository_href}rebuild_metadata/\": - {\n \"post\": {\n \"operationId\": \"repositories_ansible_ansible_rebuild_metadata\",\n - \ \"description\": \"Trigger an asynchronous task to rebuild - Ansible content meta.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"ansible_ansible_repository_href\",\n \"schema\": + \ }\n },\n \"{filesystem_filesystem_export_href}\": + {\n \"get\": {\n \"operationId\": \"exporters_core_filesystem_exports_read\",\n + \ \"description\": \"Endpoint for managing FilesystemExports.\",\n + \ \"summary\": \"Inspect a filesystem export\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"filesystem_filesystem_export_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Exporters: + Filesystem Exports\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/FilesystemExportResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n },\n \"delete\": + {\n \"operationId\": \"exporters_core_filesystem_exports_delete\",\n + \ \"description\": \"Endpoint for managing FilesystemExports.\",\n + \ \"summary\": \"Delete a filesystem export\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"filesystem_filesystem_export_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Ansible\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AnsibleRepositoryRebuild\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AnsibleRepositoryRebuild\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AnsibleRepositoryRebuild\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"tags\": [\n \"Exporters: Filesystem Exports\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"204\": {\n \"description\": + \"No response body\"\n }\n }\n }\n + \ },\n \"{filesystem_exporter_href}\": {\n \"get\": + {\n \"operationId\": \"exporters_core_filesystem_read\",\n + \ \"description\": \"Endpoint for managing FilesystemExporters.\",\n + \ \"summary\": \"Inspect a filesystem exporter\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"filesystem_exporter_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Exporters: + Filesystem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/FilesystemExporterResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{ansible_ansible_repository_href}sign/\": - {\n \"post\": {\n \"operationId\": \"repositories_ansible_ansible_sign\",\n - \ \"description\": \"Trigger an asynchronous task to sign Ansible - content.\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"ansible_ansible_repository_href\",\n - \ \"schema\": {\n \"type\": + \ },\n \"put\": {\n \"operationId\": \"exporters_core_filesystem_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a filesystem exporter\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"filesystem_exporter_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Repositories: Ansible\"\n ],\n \"requestBody\": + [\n \"Exporters: Filesystem\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AnsibleRepositorySignature\"\n }\n + \"#/components/schemas/FilesystemExporter\"\n }\n \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AnsibleRepositorySignature\"\n }\n + \"#/components/schemas/FilesystemExporter\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AnsibleRepositorySignature\"\n }\n + \"#/components/schemas/FilesystemExporter\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{ansible_ansible_repository_href}sync/\": - {\n \"post\": {\n \"operationId\": \"repositories_ansible_ansible_sync\",\n - \ \"description\": \"Trigger an asynchronous task to sync Ansible - content.\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"ansible_ansible_repository_href\",\n - \ \"schema\": {\n \"type\": + \ },\n \"patch\": {\n \"operationId\": + \"exporters_core_filesystem_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update a filesystem exporter\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"filesystem_exporter_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Repositories: Ansible\"\n ],\n \"requestBody\": + [\n \"Exporters: Filesystem\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AnsibleRepositorySyncURL\"\n }\n + \"#/components/schemas/PatchedFilesystemExporter\"\n }\n \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AnsibleRepositorySyncURL\"\n }\n + \"#/components/schemas/PatchedFilesystemExporter\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AnsibleRepositorySyncURL\"\n }\n + \"#/components/schemas/PatchedFilesystemExporter\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{ansible_ansible_repository_href}versions/\": - {\n \"get\": {\n \"operationId\": \"repositories_ansible_ansible_versions_list\",\n - \ \"description\": \"AnsibleRepositoryVersion represents a single - file repository version.\",\n \"summary\": \"List repository - versions\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"ansible_ansible_repository_href\",\n + \ },\n \"delete\": {\n \"operationId\": + \"exporters_core_filesystem_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a filesystem + exporter\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"filesystem_exporter_href\",\n \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"content\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Content Unit referenced by HREF\"\n + true\n }\n ],\n \"tags\": + [\n \"Exporters: Filesystem\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/exporters/core/pulp/\": {\n \"get\": {\n + \ \"operationId\": \"exporters_core_pulp_list\",\n \"description\": + \"ViewSet for viewing PulpExporters.\",\n \"summary\": \"List + pulp exporters\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n \ },\n {\n \"in\": - \"query\",\n \"name\": \"content__in\",\n \"schema\": + \"query\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"Content Unit referenced by HREF\"\n - \ },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"number\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"number__gt\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is greater than value\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"number__gte\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is greater than or equal to value\"\n },\n + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"number__lt\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is less than value\"\n },\n + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"number__lte\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is less than or equal to value\"\n },\n + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"number__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"integer\"\n }\n },\n \"description\": - \"Filter results where number is between two comma separated values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n \ {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": @@ -14744,185 +15968,298 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-added_memberships\",\n \"-base_version\",\n - \ \"-complete\",\n \"-counts\",\n - \ \"-distribution\",\n \"-download_logs\",\n - \ \"-group_roles\",\n \"-info\",\n - \ \"-number\",\n \"-pk\",\n - \ \"-publication\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-removed_memberships\",\n - \ \"-repository\",\n \"-user_roles\",\n - \ \"-versions\",\n \"added_memberships\",\n - \ \"base_version\",\n \"complete\",\n - \ \"counts\",\n \"distribution\",\n - \ \"download_logs\",\n \"group_roles\",\n - \ \"info\",\n \"number\",\n - \ \"pk\",\n \"publication\",\n + [\n \"-name\",\n \"-path\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"name\",\n + \ \"path\",\n \"pk\",\n \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"removed_memberships\",\n \"repository\",\n - \ \"user_roles\",\n \"versions\"\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `path` - Path\\n* `-path` - Path + (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is greater than value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__gte\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is greater than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_created__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is less than or equal to value\"\n },\n + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_created is between two comma separated values\",\n \"explode\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Ansible Versions\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": + \ ],\n \"tags\": [\n \"Exporters: + Pulp\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedPulpExporterResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"exporters_core_pulp_create\",\n \"description\": \"ViewSet + for viewing PulpExporters.\",\n \"summary\": \"Create a pulp + exporter\",\n \"tags\": [\n \"Exporters: + Pulp\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PulpExporter\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PulpExporter\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PulpExporter\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n }\n + \"#/components/schemas/PulpExporterResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{ansible_ansible_repository_version_href}\": {\n \"get\": - {\n \"operationId\": \"repositories_ansible_ansible_versions_read\",\n - \ \"description\": \"AnsibleRepositoryVersion represents a single - file repository version.\",\n \"summary\": \"Inspect a repository - version\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"ansible_ansible_repository_version_href\",\n - \ \"schema\": {\n \"type\": + \ \"{pulp_exporter_href}exports/\": {\n \"get\": {\n \"operationId\": + \"exporters_core_pulp_exports_list\",\n \"description\": \"ViewSet + for viewing exports from a PulpExporter.\",\n \"summary\": + \"List pulp exports\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"pulp_exporter_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Repositories: Ansible Versions\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Exporters: + Pulp Exports\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedPulpExportResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"exporters_core_pulp_exports_create\",\n \"description\": + \"Trigger an asynchronous task to export a set of repositories\",\n \"summary\": + \"Create a pulp export\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"pulp_exporter_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Exporters: Pulp Exports\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PulpExport\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PulpExport\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PulpExport\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n + {\n \"202\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RepositoryVersionResponse\"\n + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{pulp_pulp_export_href}\": {\n \"get\": + {\n \"operationId\": \"exporters_core_pulp_exports_read\",\n + \ \"description\": \"ViewSet for viewing exports from a PulpExporter.\",\n + \ \"summary\": \"Inspect a pulp export\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"pulp_pulp_export_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Exporters: + Pulp Exports\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PulpExportResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"delete\": {\n \"operationId\": - \"repositories_ansible_ansible_versions_delete\",\n \"description\": - \"Trigger an asynchronous task to delete a repository version.\",\n \"summary\": - \"Delete a repository version\",\n \"parameters\": [\n {\n + \"exporters_core_pulp_exports_delete\",\n \"description\": + \"ViewSet for viewing exports from a PulpExporter.\",\n \"summary\": + \"Delete a pulp export\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"ansible_ansible_repository_version_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Ansible Versions\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \"pulp_pulp_export_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Exporters: Pulp Exports\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"204\": + {\n \"description\": \"No response body\"\n }\n + \ }\n }\n },\n \"{pulp_exporter_href}\": + {\n \"get\": {\n \"operationId\": \"exporters_core_pulp_read\",\n + \ \"description\": \"ViewSet for viewing PulpExporters.\",\n + \ \"summary\": \"Inspect a pulp exporter\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"pulp_exporter_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Exporters: + Pulp\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PulpExporterResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"exporters_core_pulp_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a pulp exporter\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"pulp_exporter_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Exporters: Pulp\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PulpExporter\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PulpExporter\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PulpExporter\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{ansible_ansible_repository_version_href}rebuild_metadata/\": - {\n \"post\": {\n \"operationId\": \"repositories_ansible_ansible_versions_rebuild_metadata\",\n - \ \"description\": \"Trigger an asynchronous task to rebuild - Ansible content meta.\",\n \"parameters\": [\n {\n + \ },\n \"patch\": {\n \"operationId\": + \"exporters_core_pulp_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update a pulp exporter\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"ansible_ansible_repository_version_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Ansible Versions\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AnsibleRepositoryRebuild\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": + \"pulp_exporter_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Exporters: Pulp\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AnsibleRepositoryRebuild\"\n }\n + \"#/components/schemas/PatchedPulpExporter\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PatchedPulpExporter\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AnsibleRepositoryRebuild\"\n }\n + \"#/components/schemas/PatchedPulpExporter\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{ansible_ansible_repository_version_href}repair/\": - {\n \"post\": {\n \"operationId\": \"repositories_ansible_ansible_versions_repair\",\n - \ \"description\": \"Trigger an asynchronous task to repair - a repository version.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"ansible_ansible_repository_version_href\",\n \"schema\": + \ },\n \"delete\": {\n \"operationId\": + \"exporters_core_pulp_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a pulp + exporter\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"pulp_exporter_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Ansible Versions\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Repair\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Repair\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Repair\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/repositories/container/container/\": {\n \"get\": - {\n \"operationId\": \"repositories_container_container_list\",\n - \ \"description\": \"ViewSet for container repo.\",\n \"summary\": - \"List container repositorys\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": + \ \"tags\": [\n \"Exporters: Pulp\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/groups/\": {\n \"get\": + {\n \"operationId\": \"groups_list\",\n \"description\": + \"ViewSet for Group.\",\n \"summary\": \"List groups\",\n \"parameters\": + [\n {\n \"in\": \"query\",\n \"name\": + \"id\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where id matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"integer\"\n }\n },\n \"description\": + \"Filter results where id is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n \ },\n {\n \"in\": \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": \"query\",\n \"name\": \"name__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"description\": \"Filter results where name contains @@ -14931,16 +16268,16 @@ interactions: {\n \"type\": \"string\"\n },\n \ \"description\": \"Filter results where name contains value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": \"query\",\n \"name\": \"name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n \ },\n \"description\": \"Filter results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n \ {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": @@ -14949,562 +16286,539 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-addons\",\n \"-alternatecontentsourcepath\",\n - \ \"-ansible_ansiblerepository\",\n \"-container_containerpushrepository\",\n - \ \"-container_containerrepository\",\n - \ \"-content\",\n \"-core_pulp_exporter\",\n - \ \"-deb_aptrepository\",\n \"-description\",\n - \ \"-distributions\",\n \"-download_logs\",\n - \ \"-file_filerepository\",\n \"-group_roles\",\n - \ \"-maven_mavenrepository\",\n \"-name\",\n - \ \"-next_version\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-pulpimporterrepository\",\n - \ \"-python_pythonrepository\",\n \"-remote\",\n - \ \"-repositorycontent\",\n \"-retain_repo_versions\",\n - \ \"-rpm_rpmrepository\",\n \"-uploads\",\n - \ \"-user_hidden\",\n \"-user_roles\",\n - \ \"-variants\",\n \"-versions\",\n - \ \"addons\",\n \"alternatecontentsourcepath\",\n - \ \"ansible_ansiblerepository\",\n \"container_containerpushrepository\",\n - \ \"container_containerrepository\",\n \"content\",\n - \ \"core_pulp_exporter\",\n \"deb_aptrepository\",\n - \ \"description\",\n \"distributions\",\n - \ \"download_logs\",\n \"file_filerepository\",\n - \ \"group_roles\",\n \"maven_mavenrepository\",\n - \ \"name\",\n \"next_version\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"pulpimporterrepository\",\n \"python_pythonrepository\",\n - \ \"remote\",\n \"repositorycontent\",\n - \ \"retain_repo_versions\",\n \"rpm_rpmrepository\",\n - \ \"uploads\",\n \"user_hidden\",\n - \ \"user_roles\",\n \"variants\",\n - \ \"versions\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter labels by search string\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"remote\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"uuid\"\n },\n \"description\": - \"Foreign Key referenced by HREF\"\n },\n {\n + [\n \"-id\",\n \"-name\",\n + \ \"-pk\",\n \"id\",\n + \ \"name\",\n \"pk\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `id` - Id\\n* `-id` + - Id (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* `pk` + - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Container\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Groups\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedcontainer.ContainerRepositoryResponseList\"\n + {\n \"$ref\": \"#/components/schemas/PaginatedGroupResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"repositories_container_container_create\",\n \"description\": - \"ViewSet for container repo.\",\n \"summary\": \"Create a - container repository\",\n \"tags\": [\n \"Repositories: - Container\"\n ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/container.ContainerRepository\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": + \"groups_create\",\n \"description\": \"ViewSet for Group.\",\n + \ \"summary\": \"Create a group\",\n \"tags\": + [\n \"Groups\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/container.ContainerRepository\"\n }\n - \ },\n \"multipart/form-data\": + \"#/components/schemas/Group\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Group\"\n + \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/container.ContainerRepository\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"201\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/container.ContainerRepositoryResponse\"\n + \"#/components/schemas/Group\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/GroupResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/repositories/container/container-push/\": - {\n \"get\": {\n \"operationId\": \"repositories_container_container_push_list\",\n - \ \"description\": \"ViewSet for a container push repository.\\n\\nPOST - and DELETE are disallowed because a push repository is tightly coupled with - a\\nContainerDistribution which handles it automatically.\\nCreated - during - push operation, removed - with ContainerDistribution removal.\",\n \"summary\": - \"List container push repositorys\",\n \"parameters\": [\n - \ {\n \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + \ }\n },\n \"{group_href}roles/\": {\n \"get\": + {\n \"operationId\": \"groups_roles_list\",\n \"description\": + \"ViewSet for GroupRole.\",\n \"summary\": \"List group roles\",\n + \ \"parameters\": [\n {\n \"in\": + \"query\",\n \"name\": \"content_object\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n + \ \"description\": \"content_object\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": + \"domain\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Foreign Key referenced by HREF\"\n + \ },\n {\n \"in\": + \"path\",\n \"name\": \"group_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": + \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-addons\",\n \"-alternatecontentsourcepath\",\n - \ \"-ansible_ansiblerepository\",\n \"-container_containerpushrepository\",\n - \ \"-container_containerrepository\",\n - \ \"-content\",\n \"-core_pulp_exporter\",\n - \ \"-deb_aptrepository\",\n \"-description\",\n - \ \"-distributions\",\n \"-download_logs\",\n - \ \"-file_filerepository\",\n \"-group_roles\",\n - \ \"-maven_mavenrepository\",\n \"-name\",\n - \ \"-next_version\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-pulpimporterrepository\",\n - \ \"-python_pythonrepository\",\n \"-remote\",\n - \ \"-repositorycontent\",\n \"-retain_repo_versions\",\n - \ \"-rpm_rpmrepository\",\n \"-uploads\",\n - \ \"-user_hidden\",\n \"-user_roles\",\n - \ \"-variants\",\n \"-versions\",\n - \ \"addons\",\n \"alternatecontentsourcepath\",\n - \ \"ansible_ansiblerepository\",\n \"container_containerpushrepository\",\n - \ \"container_containerrepository\",\n \"content\",\n - \ \"core_pulp_exporter\",\n \"deb_aptrepository\",\n - \ \"description\",\n \"distributions\",\n - \ \"download_logs\",\n \"file_filerepository\",\n - \ \"group_roles\",\n \"maven_mavenrepository\",\n - \ \"name\",\n \"next_version\",\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"ordering\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-description\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-role\",\n \"description\",\n \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"pulpimporterrepository\",\n \"python_pythonrepository\",\n - \ \"remote\",\n \"repositorycontent\",\n - \ \"retain_repo_versions\",\n \"rpm_rpmrepository\",\n - \ \"uploads\",\n \"user_hidden\",\n - \ \"user_roles\",\n \"variants\",\n - \ \"versions\"\n ]\n + \ \"role\"\n ]\n \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter labels by search string\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"remote\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"uuid\"\n },\n \"description\": - \"Foreign Key referenced by HREF\"\n },\n {\n + \"Ordering\\n\\n* `role` - Role\\n* `-role` - Role (descending)\\n* `description` + - Description\\n* `-description` - Description (descending)\\n* `pulp_created` + - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* `pk` - + Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n + \ \"style\": \"form\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Container-Push\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedcontainer.ContainerPushRepositoryResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_push_repository_href}\": - {\n \"get\": {\n \"operationId\": \"repositories_container_container_push_read\",\n - \ \"description\": \"ViewSet for a container push repository.\\n\\nPOST - and DELETE are disallowed because a push repository is tightly coupled with - a\\nContainerDistribution which handles it automatically.\\nCreated - during - push operation, removed - with ContainerDistribution removal.\",\n \"summary\": - \"Inspect a container push repository\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"container_container_push_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"role\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"role__contains\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"role__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"role__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"role__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Container-Push\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Groups: + Roles\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/container.ContainerPushRepositoryResponse\"\n + {\n \"$ref\": \"#/components/schemas/PaginatedGroupRoleResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"put\": {\n \"operationId\": \"repositories_container_container_push_update\",\n - \ \"description\": \"Trigger an asynchronous update task\",\n - \ \"summary\": \"Update a container push repository\",\n \"parameters\": + \ },\n \"post\": {\n \"operationId\": + \"groups_roles_create\",\n \"description\": \"ViewSet for GroupRole.\",\n + \ \"summary\": \"Create a group role\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": - \"container_container_push_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Container-Push\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/container.ContainerPushRepository\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/container.ContainerPushRepository\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/container.ContainerPushRepository\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"repositories_container_container_push_partial_update\",\n \"description\": - \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a container push repository\",\n \"parameters\": [\n - \ {\n \"in\": \"path\",\n \"name\": - \"container_container_push_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Container-Push\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Patchedcontainer.ContainerPushRepository\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedcontainer.ContainerPushRepository\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedcontainer.ContainerPushRepository\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_push_repository_href}add_role/\": - {\n \"post\": {\n \"operationId\": \"repositories_container_container_push_add_role\",\n - \ \"description\": \"Add a role for this object to users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_push_repository_href\",\n - \ \"schema\": {\n \"type\": + \"group_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Repositories: Container-Push\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": + [\n \"Groups: Roles\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n + \"#/components/schemas/GroupRole\"\n }\n },\n \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + {\n \"$ref\": \"#/components/schemas/GroupRole\"\n \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n + \"#/components/schemas/GroupRole\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": {\n \"201\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + {\n \"$ref\": \"#/components/schemas/GroupRoleResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_push_repository_href}list_roles/\": - {\n \"get\": {\n \"operationId\": \"repositories_container_container_push_list_roles\",\n - \ \"description\": \"List roles assigned to this object.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_push_repository_href\",\n + \ }\n },\n \"{groups_group_role_href}\": {\n \"get\": + {\n \"operationId\": \"groups_roles_read\",\n \"description\": + \"ViewSet for GroupRole.\",\n \"summary\": \"Inspect a group + role\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"groups_group_role_href\",\n \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Repositories: Container-Push\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_push_repository_href}my_permissions/\": - {\n \"get\": {\n \"operationId\": \"repositories_container_container_push_my_permissions\",\n - \ \"description\": \"List permissions available to the current - user on this object.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"container_container_push_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Container-Push\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Groups: + Roles\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + {\n \"$ref\": \"#/components/schemas/GroupRoleResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_push_repository_href}remove_image/\": - {\n \"post\": {\n \"operationId\": \"repositories_container_container_push_remove_image\",\n - \ \"description\": \"Trigger an asynchronous task to remove - a manifest and all its associated data by a digest\",\n \"summary\": - \"Delete an image from a repository\",\n \"parameters\": [\n - \ {\n \"in\": \"path\",\n \"name\": - \"container_container_push_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Container-Push\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RemoveImage\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RemoveImage\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RemoveImage\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{container_container_push_repository_href}remove_role/\": {\n \"post\": - {\n \"operationId\": \"repositories_container_container_push_remove_role\",\n - \ \"description\": \"Remove a role for this object from users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_push_repository_href\",\n - \ \"schema\": {\n \"type\": + \ },\n \"delete\": {\n \"operationId\": + \"groups_roles_delete\",\n \"description\": \"ViewSet for GroupRole.\",\n + \ \"summary\": \"Delete a group role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"groups_group_role_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Repositories: Container-Push\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": + [\n \"Groups: Roles\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"204\": + {\n \"description\": \"No response body\"\n }\n + \ }\n }\n },\n \"{group_href}users/\": + {\n \"get\": {\n \"operationId\": \"groups_users_list\",\n + \ \"description\": \"List group users.\",\n \"summary\": + \"List users\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"group_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Groups: + Users\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedGroupUserResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"groups_users_create\",\n \"description\": \"Add a user to + a group.\",\n \"summary\": \"Create an user\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"group_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Groups: Users\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n + \"#/components/schemas/GroupUser\"\n }\n },\n \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + {\n \"$ref\": \"#/components/schemas/GroupUser\"\n \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n + \"#/components/schemas/GroupUser\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": {\n \"201\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + {\n \"$ref\": \"#/components/schemas/GroupUserResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_push_repository_href}remove_signatures/\": - {\n \"post\": {\n \"operationId\": \"repositories_container_container_push_remove_signatures\",\n - \ \"description\": \"Create a task which deletes signatures - by the passed key_id.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"container_container_push_repository_href\",\n \"schema\": + \ }\n },\n \"{groups_user_href}\": {\n \"delete\": + {\n \"operationId\": \"groups_users_delete\",\n \"description\": + \"Remove a user from a group.\",\n \"summary\": \"Delete an + user\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"groups_user_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Container-Push\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RemoveSignatures\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RemoveSignatures\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RemoveSignatures\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"tags\": [\n \"Groups: Users\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"204\": {\n \"description\": + \"No response body\"\n }\n }\n }\n + \ },\n \"{group_href}\": {\n \"get\": {\n \"operationId\": + \"groups_read\",\n \"description\": \"ViewSet for Group.\",\n + \ \"summary\": \"Inspect a group\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"group_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Groups\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RemoveSignaturesResponse\"\n + {\n \"$ref\": \"#/components/schemas/GroupResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_push_repository_href}sign/\": - {\n \"post\": {\n \"operationId\": \"repositories_container_container_push_sign\",\n - \ \"description\": \"Trigger an asynchronous task to sign content.\",\n - \ \"summary\": \"Sign images in the repo\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"container_container_push_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Container-Push\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RepositorySign\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositorySign\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RepositorySign\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{container_container_push_repository_href}tag/\": {\n \"post\": - {\n \"operationId\": \"repositories_container_container_push_tag\",\n - \ \"description\": \"Trigger an asynchronous task to tag an - image in the repository\",\n \"summary\": \"Create a Tag\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_push_repository_href\",\n - \ \"schema\": {\n \"type\": + \ },\n \"put\": {\n \"operationId\": \"groups_update\",\n + \ \"description\": \"ViewSet for Group.\",\n \"summary\": + \"Update a group\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"group_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Repositories: Container-Push\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": + [\n \"Groups\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/TagImage\"\n }\n },\n + \"#/components/schemas/Group\"\n }\n },\n \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/TagImage\"\n + {\n \"$ref\": \"#/components/schemas/Group\"\n \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/TagImage\"\n }\n }\n + \"#/components/schemas/Group\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n + {\n \"200\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/GroupResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_push_repository_href}untag/\": - {\n \"post\": {\n \"operationId\": \"repositories_container_container_push_untag\",\n - \ \"description\": \"Trigger an asynchronous task to untag an - image in the repository\",\n \"summary\": \"Delete a tag\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_push_repository_href\",\n - \ \"schema\": {\n \"type\": + \ },\n \"patch\": {\n \"operationId\": + \"groups_partial_update\",\n \"description\": \"ViewSet for + Group.\",\n \"summary\": \"Update a group\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"group_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Repositories: Container-Push\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": + [\n \"Groups\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/UnTagImage\"\n }\n },\n + \"#/components/schemas/PatchedGroup\"\n }\n },\n \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/UnTagImage\"\n + {\n \"$ref\": \"#/components/schemas/PatchedGroup\"\n \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/UnTagImage\"\n }\n }\n + \"#/components/schemas/PatchedGroup\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n + {\n \"200\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/GroupResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_push_repository_href}versions/\": - {\n \"get\": {\n \"operationId\": \"repositories_container_container_push_versions_list\",\n - \ \"description\": \"ContainerPushRepositoryVersion represents - a single container push repository version.\\n\\nRepository versions of a - push repository are not allowed to be deleted. Versioning of such\\nrepositories, - as well as creation/removal, happens automatically without explicit user actions.\\nUsers - could make a repository not functional by accident if allowed to delete repository\\nversions.\",\n - \ \"summary\": \"List repository versions\",\n \"parameters\": + \ },\n \"delete\": {\n \"operationId\": + \"groups_delete\",\n \"description\": \"ViewSet for Group.\",\n + \ \"summary\": \"Delete a group\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": - \"container_container_push_repository_href\",\n \"schema\": + \"group_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Groups\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"204\": + {\n \"description\": \"No response body\"\n }\n + \ }\n }\n },\n \"{group_href}add_role/\": + {\n \"post\": {\n \"operationId\": \"groups_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"group_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Groups\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{group_href}list_roles/\": {\n \"get\": + {\n \"operationId\": \"groups_list_roles\",\n \"description\": + \"List roles assigned to this object.\",\n \"summary\": \"List + roles\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"group_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"content\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Content Unit referenced by HREF\"\n },\n {\n + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Groups\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{group_href}my_permissions/\": {\n \"get\": + {\n \"operationId\": \"groups_my_permissions\",\n \"description\": + \"List permissions available to the current user on this object.\",\n \"summary\": + \"List user permissions\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"group_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"content__in\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Content Unit referenced by HREF\"\n },\n {\n + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Groups\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{group_href}remove_role/\": {\n \"post\": + {\n \"operationId\": \"groups_remove_role\",\n \"description\": + \"Remove a role for this object from users/groups.\",\n \"summary\": + \"Remove a role\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"group_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Groups\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/importers/core/pulp/\": + {\n \"get\": {\n \"operationId\": \"importers_core_pulp_list\",\n + \ \"description\": \"ViewSet for PulpImporters.\",\n \"summary\": + \"List pulp importers\",\n \"parameters\": [\n {\n \ \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n \ },\n {\n \"in\": - \"query\",\n \"name\": \"number\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"number__gt\",\n \"schema\": - {\n \"type\": \"integer\"\n },\n - \ \"description\": \"Filter results where number is - greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"number__gte\",\n \"schema\": - {\n \"type\": \"integer\"\n },\n - \ \"description\": \"Filter results where number is - greater than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"number__lt\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is less than value\"\n },\n + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"number__lte\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is less than or equal to value\"\n },\n + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"number__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"integer\"\n }\n },\n \"description\": - \"Filter results where number is between two comma separated values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n \ {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": @@ -15513,601 +16827,676 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-added_memberships\",\n \"-base_version\",\n - \ \"-complete\",\n \"-counts\",\n - \ \"-distribution\",\n \"-download_logs\",\n - \ \"-group_roles\",\n \"-info\",\n - \ \"-number\",\n \"-pk\",\n - \ \"-publication\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-removed_memberships\",\n - \ \"-repository\",\n \"-user_roles\",\n - \ \"-versions\",\n \"added_memberships\",\n - \ \"base_version\",\n \"complete\",\n - \ \"counts\",\n \"distribution\",\n - \ \"download_logs\",\n \"group_roles\",\n - \ \"info\",\n \"number\",\n - \ \"pk\",\n \"publication\",\n + [\n \"-name\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"name\",\n \"pk\",\n \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"removed_memberships\",\n \"repository\",\n - \ \"user_roles\",\n \"versions\"\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is greater than value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__gte\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is greater than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"pulp_created__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is less than or equal to value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_created is between two comma separated values\",\n \"explode\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Container-Push Versions\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{container_container_push_repository_version_href}\": {\n \"get\": - {\n \"operationId\": \"repositories_container_container_push_versions_read\",\n - \ \"description\": \"ContainerPushRepositoryVersion represents - a single container push repository version.\\n\\nRepository versions of a - push repository are not allowed to be deleted. Versioning of such\\nrepositories, - as well as creation/removal, happens automatically without explicit user actions.\\nUsers - could make a repository not functional by accident if allowed to delete repository\\nversions.\",\n - \ \"summary\": \"Inspect a repository version\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"container_container_push_repository_version_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Container-Push Versions\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositoryVersionResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"repositories_container_container_push_versions_delete\",\n - \ \"description\": \"Trigger an asynchronous task to delete - a repository version.\",\n \"summary\": \"Delete a repository - version\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_push_repository_version_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Repositories: Container-Push Versions\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ ],\n \"tags\": [\n \"Importers: + Pulp\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedPulpImporterResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"importers_core_pulp_create\",\n \"description\": \"ViewSet + for PulpImporters.\",\n \"summary\": \"Create a pulp importer\",\n + \ \"tags\": [\n \"Importers: Pulp\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PulpImporter\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PulpImporter\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PulpImporter\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n + {\n \"201\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/PulpImporterResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_push_repository_version_href}repair/\": - {\n \"post\": {\n \"operationId\": \"repositories_container_container_push_versions_repair\",\n - \ \"description\": \"Trigger an asynchronous task to repair - a repository version.\",\n \"parameters\": [\n {\n + \ }\n },\n \"{pulp_importer_href}imports/\": {\n \"get\": + {\n \"operationId\": \"importers_core_pulp_imports_list\",\n + \ \"description\": \"ViewSet for PulpImports.\",\n \"summary\": + \"List pulp imports\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n \ \"in\": \"path\",\n \"name\": - \"container_container_push_repository_version_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Container-Push - Versions\"\n ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Repair\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Repair\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Repair\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{container_container_repository_href}\": {\n \"get\": - {\n \"operationId\": \"repositories_container_container_read\",\n - \ \"description\": \"ViewSet for container repo.\",\n \"summary\": - \"Inspect a container repository\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"container_container_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"pulp_importer_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Container\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Importers: + Pulp Imports\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/container.ContainerRepositoryResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"put\": {\n \"operationId\": \"repositories_container_container_update\",\n - \ \"description\": \"Trigger an asynchronous update task\",\n - \ \"summary\": \"Update a container repository\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"container_container_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Container\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/container.ContainerRepository\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/container.ContainerRepository\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/container.ContainerRepository\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/PaginatedImportResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"repositories_container_container_partial_update\",\n \"description\": - \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a container repository\",\n \"parameters\": [\n {\n + \ },\n \"post\": {\n \"operationId\": + \"importers_core_pulp_imports_create\",\n \"description\": + \"Trigger an asynchronous task to import a Pulp export.\",\n \"summary\": + \"Create a pulp import\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"container_container_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Container\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Patchedcontainer.ContainerRepository\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": + \"pulp_importer_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Importers: Pulp Imports\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedcontainer.ContainerRepository\"\n }\n - \ },\n \"multipart/form-data\": + \"#/components/schemas/PulpImport\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PulpImport\"\n + \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedcontainer.ContainerRepository\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \"#/components/schemas/PulpImport\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/TaskGroupOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"repositories_container_container_delete\",\n \"description\": - \"Trigger an asynchronous delete task\",\n \"summary\": \"Delete - a container repository\",\n \"parameters\": [\n {\n + \ }\n },\n \"{pulp_pulp_import_href}\": {\n \"get\": + {\n \"operationId\": \"importers_core_pulp_imports_read\",\n + \ \"description\": \"ViewSet for PulpImports.\",\n \"summary\": + \"Inspect a pulp import\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"container_container_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Container\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \"pulp_pulp_import_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Importers: + Pulp Imports\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/ImportResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_repository_href}add/\": - {\n \"post\": {\n \"operationId\": \"repositories_container_container_add\",\n - \ \"description\": \"Trigger an asynchronous task to recursively - add container content.\",\n \"summary\": \"Add content\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_repository_href\",\n + \ },\n \"delete\": {\n \"operationId\": + \"importers_core_pulp_imports_delete\",\n \"description\": + \"ViewSet for PulpImports.\",\n \"summary\": \"Delete a pulp + import\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"pulp_pulp_import_href\",\n \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Repositories: Container\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RecursiveManage\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RecursiveManage\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RecursiveManage\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + [\n \"Importers: Pulp Imports\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"204\": + {\n \"description\": \"No response body\"\n }\n + \ }\n }\n },\n \"{pulp_importer_href}\": + {\n \"get\": {\n \"operationId\": \"importers_core_pulp_read\",\n + \ \"description\": \"ViewSet for PulpImporters.\",\n \"summary\": + \"Inspect a pulp importer\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"pulp_importer_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Importers: + Pulp\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/PulpImporterResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_repository_href}add_role/\": - {\n \"post\": {\n \"operationId\": \"repositories_container_container_add_role\",\n - \ \"description\": \"Add a role for this object to users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_repository_href\",\n - \ \"schema\": {\n \"type\": + \ },\n \"put\": {\n \"operationId\": \"importers_core_pulp_update\",\n + \ \"description\": \"ViewSet for PulpImporters.\",\n \"summary\": + \"Update a pulp importer\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"pulp_importer_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Repositories: Container\"\n ],\n \"requestBody\": + [\n \"Importers: Pulp\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n + \"#/components/schemas/PulpImporter\"\n }\n },\n \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + {\n \"$ref\": \"#/components/schemas/PulpImporter\"\n \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n + \"#/components/schemas/PulpImporter\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n + {\n \"200\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + {\n \"$ref\": \"#/components/schemas/PulpImporterResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_repository_href}build_image/\": - {\n \"post\": {\n \"operationId\": \"repositories_container_container_build_image\",\n - \ \"description\": \"Trigger an asynchronous task to build an - OCI image from a Containerfile. A new repository version is created with the - new image and tag. This API is tech preview in Pulp Container 1.1. Backwards - compatibility when upgrading is not guaranteed.\",\n \"summary\": - \"Build an Image\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"container_container_repository_href\",\n \"schema\": + \ },\n \"patch\": {\n \"operationId\": + \"importers_core_pulp_partial_update\",\n \"description\": + \"ViewSet for PulpImporters.\",\n \"summary\": \"Update a pulp + importer\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"pulp_importer_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Container\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/OCIBuildImage\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": + \ \"tags\": [\n \"Importers: Pulp\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/OCIBuildImage\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \"#/components/schemas/PatchedPulpImporter\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PatchedPulpImporter\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PatchedPulpImporter\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PulpImporterResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_repository_href}copy_manifests/\": - {\n \"post\": {\n \"operationId\": \"repositories_container_container_copy_manifests\",\n - \ \"description\": \"Trigger an asynchronous task to copy manifests\",\n - \ \"summary\": \"Copy manifests\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"container_container_repository_href\",\n \"schema\": + \ },\n \"delete\": {\n \"operationId\": + \"importers_core_pulp_delete\",\n \"description\": \"ViewSet + for PulpImporters.\",\n \"summary\": \"Delete a pulp importer\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"pulp_importer_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Container\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ManifestCopy\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": + \ \"tags\": [\n \"Importers: Pulp\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"204\": {\n \"description\": + \"No response body\"\n }\n }\n }\n + \ },\n \"/pulp/api/v3/importers/core/pulp/import-check/\": {\n + \ \"post\": {\n \"operationId\": \"pulp_import_check_post\",\n + \ \"description\": \"Evaluates validity of proposed PulpImport + parameters 'toc', 'path', and 'repo_mapping'.\\n\\n* Checks that toc, path + are in ALLOWED_IMPORT_PATHS\\n* if ALLOWED:\\n * Checks that toc, path exist + and are readable\\n * If toc specified, checks that containing dir is writeable\\n* + Checks that repo_mapping is valid JSON\",\n \"summary\": \"Validate + the parameters to be used for a PulpImport call\",\n \"tags\": + [\n \"Importers: Pulp Import-Check\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ManifestCopy\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ManifestCopy\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + \"#/components/schemas/PulpImportCheck\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PulpImportCheck\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PulpImportCheck\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PulpImportCheckResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/orphans/\": {\n \"delete\": + {\n \"operationId\": \"orphans_delete\",\n \"description\": + \"DEPRECATED! Trigger an asynchronous task that deletes all orphaned content + and artifacts. Use the `POST /pulp/api/v3/orphans/cleanup/` call instead.\",\n + \ \"summary\": \"Delete orphans\",\n \"tags\": + [\n \"Orphans\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{container_container_repository_href}copy_tags/\": {\n \"post\": - {\n \"operationId\": \"repositories_container_container_copy_tags\",\n - \ \"description\": \"Trigger an asynchronous task to copy tags\",\n - \ \"summary\": \"Copy tags\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"container_container_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Container\"\n - \ ],\n \"requestBody\": {\n \"content\": + \ \"/pulp/api/v3/orphans/cleanup/\": {\n \"post\": {\n \"operationId\": + \"orphans_cleanup_cleanup\",\n \"description\": \"Trigger an + asynchronous orphan cleanup operation.\",\n \"tags\": [\n \"Orphans: + Cleanup\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/TagCopy\"\n + {\n \"$ref\": \"#/components/schemas/OrphansCleanup\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/TagCopy\"\n }\n },\n + \"#/components/schemas/OrphansCleanup\"\n }\n },\n \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/TagCopy\"\n + {\n \"$ref\": \"#/components/schemas/OrphansCleanup\"\n \ }\n }\n },\n \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{container_container_repository_href}list_roles/\": {\n \"get\": - {\n \"operationId\": \"repositories_container_container_list_roles\",\n - \ \"description\": \"List roles assigned to this object.\",\n + \ \"/pulp/api/v3/publications/\": {\n \"get\": {\n \"operationId\": + \"publications_list\",\n \"description\": \"A base class for + any publication viewset.\",\n \"summary\": \"List publications\",\n \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_repository_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": + \"query\",\n \"name\": \"content\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"content__in\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Repositories: Container\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ObjectRolesResponse\"\n }\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-complete\",\n \"-pass_through\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"complete\",\n + \ \"pass_through\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `complete` + - Complete\\n* `-complete` - Complete (descending)\\n* `pass_through` - Pass + through\\n* `-pass_through` - Pass through (descending)\\n* `pk` - Pk\\n* + `-pk` - Pk (descending)\",\n \"explode\": false,\n + \ \"style\": \"form\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_created\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__gte\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_created__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_created is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_type\",\n \"schema\": {\n \"type\": + \"string\",\n \"enum\": [\n \"deb.apt-publication\",\n + \ \"deb.verbatim-publication\",\n \"file.file\",\n + \ \"gem.gem\",\n \"python.python\",\n + \ \"rpm.rpm\"\n ]\n + \ },\n \"description\": \"Pulp + type\\n\\n* `deb.verbatim-publication` - deb.verbatim-publication\\n* `deb.apt-publication` + - deb.apt-publication\\n* `gem.gem` - gem.gem\\n* `python.python` - python.python\\n* + `rpm.rpm` - rpm.rpm\\n* `file.file` - file.file\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_type__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"deb.apt-publication\",\n + \ \"deb.verbatim-publication\",\n \"file.file\",\n + \ \"gem.gem\",\n \"python.python\",\n + \ \"rpm.rpm\"\n ]\n \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{container_container_repository_href}my_permissions/\": {\n \"get\": - {\n \"operationId\": \"repositories_container_container_my_permissions\",\n - \ \"description\": \"List permissions available to the current - user on this object.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"container_container_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"Multiple values may be separated by commas.\\n\\n* `deb.verbatim-publication` + - deb.verbatim-publication\\n* `deb.apt-publication` - deb.apt-publication\\n* + `gem.gem` - gem.gem\\n* `python.python` - python.python\\n* `rpm.rpm` - rpm.rpm\\n* + `file.file` - file.file\",\n \"explode\": false,\n + \ \"style\": \"form\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": + \"Repository referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Repository Version referenced by + HREF\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Publications\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedPublicationResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/publications/deb/apt/\": + {\n \"get\": {\n \"operationId\": \"publications_deb_apt_list\",\n + \ \"description\": \"An AptPublication is the ready to serve + Pulp-internal representation of an AptRepositoryVersion.\\n\\nWhen creating + an APT publication, users must use simple or structured mode (or both). If + the\\npublication should include '.deb' packages that were manually uploaded + to the relevant\\nAptRepository, users must use 'simple=true'. Conversely, + 'structured=true' is only useful for\\npublishing content obtained via synchronization. + Once a Pulp publication has been created, it\\ncan be served by creating a + Pulp distribution (in a near atomic action).\",\n \"summary\": + \"List apt publications\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"content\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"content__in\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"ordering\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-complete\",\n + \ \"-pass_through\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"complete\",\n \"pass_through\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `complete` - Complete\\n* `-complete` - Complete (descending)\\n* + `pass_through` - Pass through\\n* `-pass_through` - Pass through (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__gte\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_created__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_created is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": + \"Repository referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Repository Version referenced by + HREF\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Container\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Publications: + Apt\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + {\n \"$ref\": \"#/components/schemas/Paginateddeb.AptPublicationResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_repository_href}remove/\": - {\n \"post\": {\n \"operationId\": \"repositories_container_container_remove\",\n - \ \"description\": \"Trigger an async task to recursively remove - container content.\",\n \"summary\": \"Remove content\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_repository_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Repositories: Container\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RecursiveManage\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": + \ },\n \"post\": {\n \"operationId\": + \"publications_deb_apt_create\",\n \"description\": \"Trigger + an asynchronous task to publish content\",\n \"summary\": \"Create + an apt publication\",\n \"tags\": [\n \"Publications: + Apt\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/deb.AptPublication\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RecursiveManage\"\n }\n + \"#/components/schemas/deb.AptPublication\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RecursiveManage\"\n }\n + \"#/components/schemas/deb.AptPublication\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_repository_href}remove_role/\": - {\n \"post\": {\n \"operationId\": \"repositories_container_container_remove_role\",\n - \ \"description\": \"Remove a role for this object from users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_repository_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Repositories: Container\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_repository_href}sign/\": - {\n \"post\": {\n \"operationId\": \"repositories_container_container_sign\",\n - \ \"description\": \"Trigger an asynchronous task to sign content.\",\n - \ \"summary\": \"Sign images in the repo\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"container_container_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Container\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RepositorySign\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositorySign\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RepositorySign\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{container_container_repository_href}sync/\": {\n \"post\": - {\n \"operationId\": \"repositories_container_container_sync\",\n - \ \"description\": \"Trigger an asynchronous task to sync content.\",\n - \ \"summary\": \"Sync from a remote\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"container_container_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Container\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ContainerRepositorySyncURL\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ContainerRepositorySyncURL\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ContainerRepositorySyncURL\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_repository_href}tag/\": - {\n \"post\": {\n \"operationId\": \"repositories_container_container_tag\",\n - \ \"description\": \"Trigger an asynchronous task to tag an - image in the repository\",\n \"summary\": \"Create a Tag\",\n + \ }\n },\n \"{deb_apt_publication_href}\": {\n \"get\": + {\n \"operationId\": \"publications_deb_apt_read\",\n \"description\": + \"An AptPublication is the ready to serve Pulp-internal representation of + an AptRepositoryVersion.\\n\\nWhen creating an APT publication, users must + use simple or structured mode (or both). If the\\npublication should include + '.deb' packages that were manually uploaded to the relevant\\nAptRepository, + users must use 'simple=true'. Conversely, 'structured=true' is only useful + for\\npublishing content obtained via synchronization. Once a Pulp publication + has been created, it\\ncan be served by creating a Pulp distribution (in a + near atomic action).\",\n \"summary\": \"Inspect an apt publication\",\n \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_repository_href\",\n + \"path\",\n \"name\": \"deb_apt_publication_href\",\n \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Repositories: Container\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/TagImage\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/TagImage\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/TagImage\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Publications: + Apt\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/deb.AptPublicationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_repository_href}untag/\": - {\n \"post\": {\n \"operationId\": \"repositories_container_container_untag\",\n - \ \"description\": \"Trigger an asynchronous task to untag an - image in the repository\",\n \"summary\": \"Delete a tag\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_repository_href\",\n - \ \"schema\": {\n \"type\": + \ },\n \"delete\": {\n \"operationId\": + \"publications_deb_apt_delete\",\n \"description\": \"An AptPublication + is the ready to serve Pulp-internal representation of an AptRepositoryVersion.\\n\\nWhen + creating an APT publication, users must use simple or structured mode (or + both). If the\\npublication should include '.deb' packages that were manually + uploaded to the relevant\\nAptRepository, users must use 'simple=true'. Conversely, + 'structured=true' is only useful for\\npublishing content obtained via synchronization. + Once a Pulp publication has been created, it\\ncan be served by creating a + Pulp distribution (in a near atomic action).\",\n \"summary\": + \"Delete an apt publication\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"deb_apt_publication_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Repositories: Container\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/UnTagImage\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/UnTagImage\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/UnTagImage\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_repository_href}versions/\": - {\n \"get\": {\n \"operationId\": \"repositories_container_container_versions_list\",\n - \ \"description\": \"ContainerRepositoryVersion represents a - single container repository version.\",\n \"summary\": \"List - repository versions\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"container_container_repository_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + [\n \"Publications: Apt\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"204\": + {\n \"description\": \"No response body\"\n }\n + \ }\n }\n },\n \"/pulp/api/v3/publications/deb/verbatim/\": + {\n \"get\": {\n \"operationId\": \"publications_deb_verbatim_list\",\n + \ \"description\": \"An VerbatimPublication is the Pulp-internal + representation of a \\\"mirrored\\\" AptRepositoryVersion.\\n\\nIn other words, + the verbatim publisher will recreate the synced subset of some a APT\\nrepository + using the exact same metadata files and signatures as used by the upstream + original.\\nOnce a Pulp publication has been created, it can be served by + creating a Pulp distribution (in\\na near atomic action).\",\n \"summary\": + \"List verbatim publications\",\n \"parameters\": [\n {\n \ \"in\": \"query\",\n \"name\": \"content\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": @@ -16120,67 +17509,36 @@ interactions: false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"number\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"number__gt\",\n \"schema\": - {\n \"type\": \"integer\"\n },\n - \ \"description\": \"Filter results where number is - greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"number__gte\",\n \"schema\": - {\n \"type\": \"integer\"\n },\n - \ \"description\": \"Filter results where number is - greater than or equal to value\"\n },\n {\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"number__lt\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is less than value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"number__lte\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is less than or equal to value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"number__range\",\n \"schema\": {\n \"type\": + \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"integer\"\n }\n },\n \"description\": - \"Filter results where number is between two comma separated values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-added_memberships\",\n \"-base_version\",\n - \ \"-complete\",\n \"-counts\",\n - \ \"-distribution\",\n \"-download_logs\",\n - \ \"-group_roles\",\n \"-info\",\n - \ \"-number\",\n \"-pk\",\n - \ \"-publication\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-removed_memberships\",\n - \ \"-repository\",\n \"-user_roles\",\n - \ \"-versions\",\n \"added_memberships\",\n - \ \"base_version\",\n \"complete\",\n - \ \"counts\",\n \"distribution\",\n - \ \"download_logs\",\n \"group_roles\",\n - \ \"info\",\n \"number\",\n - \ \"pk\",\n \"publication\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"removed_memberships\",\n \"repository\",\n - \ \"user_roles\",\n \"versions\"\n - \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \"string\",\n \"enum\": [\n \"-complete\",\n + \ \"-pass_through\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"complete\",\n \"pass_through\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `complete` - Complete\\n* `-complete` - Complete (descending)\\n* + `pass_through` - Pass through\\n* `-pass_through` - Pass through (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"pulp_created\",\n \"schema\": {\n \"type\": \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": + \ \"description\": \"Filter results where pulp_created + matches value\"\n },\n {\n \"in\": \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": {\n \"type\": \"string\",\n \"format\": \"date-time\"\n },\n \"description\": @@ -16207,378 +17565,416 @@ interactions: results where pulp_created is between two comma separated values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": + \"Repository referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Repository Version referenced by + HREF\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Container Versions\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{container_container_repository_version_href}\": {\n \"get\": - {\n \"operationId\": \"repositories_container_container_versions_read\",\n - \ \"description\": \"ContainerRepositoryVersion represents a - single container repository version.\",\n \"summary\": \"Inspect - a repository version\",\n \"parameters\": [\n {\n + \ ],\n \"tags\": [\n \"Publications: + Verbatim\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginateddeb.VerbatimPublicationResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"publications_deb_verbatim_create\",\n \"description\": \"Trigger + an asynchronous task to publish content\",\n \"summary\": \"Create + a verbatim publication\",\n \"tags\": [\n \"Publications: + Verbatim\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/deb.VerbatimPublication\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/deb.VerbatimPublication\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/deb.VerbatimPublication\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{deb_verbatim_publication_href}\": {\n + \ \"get\": {\n \"operationId\": \"publications_deb_verbatim_read\",\n + \ \"description\": \"An VerbatimPublication is the Pulp-internal + representation of a \\\"mirrored\\\" AptRepositoryVersion.\\n\\nIn other words, + the verbatim publisher will recreate the synced subset of some a APT\\nrepository + using the exact same metadata files and signatures as used by the upstream + original.\\nOnce a Pulp publication has been created, it can be served by + creating a Pulp distribution (in\\na near atomic action).\",\n \"summary\": + \"Inspect a verbatim publication\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"container_container_repository_version_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n + \"deb_verbatim_publication_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Container Versions\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositoryVersionResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"repositories_container_container_versions_delete\",\n - \ \"description\": \"Trigger an asynchronous task to delete - a repository version.\",\n \"summary\": \"Delete a repository - version\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"container_container_repository_version_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Repositories: Container Versions\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ ],\n \"tags\": [\n \"Publications: + Verbatim\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/deb.VerbatimPublicationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{container_container_repository_version_href}repair/\": - {\n \"post\": {\n \"operationId\": \"repositories_container_container_versions_repair\",\n - \ \"description\": \"Trigger an asynchronous task to repair - a repository version.\",\n \"parameters\": [\n {\n + \ },\n \"delete\": {\n \"operationId\": + \"publications_deb_verbatim_delete\",\n \"description\": \"An + VerbatimPublication is the Pulp-internal representation of a \\\"mirrored\\\" + AptRepositoryVersion.\\n\\nIn other words, the verbatim publisher will recreate + the synced subset of some a APT\\nrepository using the exact same metadata + files and signatures as used by the upstream original.\\nOnce a Pulp publication + has been created, it can be served by creating a Pulp distribution (in\\na + near atomic action).\",\n \"summary\": \"Delete a verbatim + publication\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"container_container_repository_version_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n + \"deb_verbatim_publication_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Container - Versions\"\n ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Repair\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Repair\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Repair\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/repositories/deb/apt/\": {\n \"get\": {\n - \ \"operationId\": \"repositories_deb_apt_list\",\n \"description\": - \"An AptRepository is the locally stored, Pulp-internal representation of - a APT repository.\\n\\nIt may be filled with content via synchronization or - content upload to create an\\nAptRepositoryVersion.\",\n \"summary\": - \"List apt repositorys\",\n \"parameters\": [\n {\n + \ \"tags\": [\n \"Publications: Verbatim\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"204\": {\n \"description\": + \"No response body\"\n }\n }\n }\n + \ },\n \"/pulp/api/v3/publications/file/file/\": {\n \"get\": + {\n \"operationId\": \"publications_file_file_list\",\n \"description\": + \"\\nA FilePublication contains metadata about all the File Content in a particular + File Repository Version.\\nOnce a FilePublication has been created, it can + be hosted using the\\nFile Distribution API.\",\n \"summary\": + \"List file publications\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"content\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"content__in\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n \ \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"ordering\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-complete\",\n + \ \"-pass_through\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"complete\",\n \"pass_through\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `complete` - Complete\\n* `-complete` - Complete (descending)\\n* + `pass_through` - Pass through\\n* `-pass_through` - Pass through (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__gte\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_created__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": + results where pulp_created is between two comma separated values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": + \"Repository referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Repository Version referenced by + HREF\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-addons\",\n \"-alternatecontentsourcepath\",\n - \ \"-ansible_ansiblerepository\",\n \"-container_containerpushrepository\",\n - \ \"-container_containerrepository\",\n - \ \"-content\",\n \"-core_pulp_exporter\",\n - \ \"-deb_aptrepository\",\n \"-description\",\n - \ \"-distributions\",\n \"-download_logs\",\n - \ \"-file_filerepository\",\n \"-group_roles\",\n - \ \"-maven_mavenrepository\",\n \"-name\",\n - \ \"-next_version\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-pulpimporterrepository\",\n - \ \"-python_pythonrepository\",\n \"-remote\",\n - \ \"-repositorycontent\",\n \"-retain_repo_versions\",\n - \ \"-rpm_rpmrepository\",\n \"-uploads\",\n - \ \"-user_hidden\",\n \"-user_roles\",\n - \ \"-variants\",\n \"-versions\",\n - \ \"addons\",\n \"alternatecontentsourcepath\",\n - \ \"ansible_ansiblerepository\",\n \"container_containerpushrepository\",\n - \ \"container_containerrepository\",\n \"content\",\n - \ \"core_pulp_exporter\",\n \"deb_aptrepository\",\n - \ \"description\",\n \"distributions\",\n - \ \"download_logs\",\n \"file_filerepository\",\n - \ \"group_roles\",\n \"maven_mavenrepository\",\n - \ \"name\",\n \"next_version\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"pulpimporterrepository\",\n \"python_pythonrepository\",\n - \ \"remote\",\n \"repositorycontent\",\n - \ \"retain_repo_versions\",\n \"rpm_rpmrepository\",\n - \ \"uploads\",\n \"user_hidden\",\n - \ \"user_roles\",\n \"variants\",\n - \ \"versions\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter labels by search string\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"remote\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"uuid\"\n },\n \"description\": - \"Foreign Key referenced by HREF\"\n },\n {\n + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Apt\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Publications: + File\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginateddeb.AptRepositoryResponseList\"\n + {\n \"$ref\": \"#/components/schemas/Paginatedfile.FilePublicationResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"repositories_deb_apt_create\",\n \"description\": \"An AptRepository - is the locally stored, Pulp-internal representation of a APT repository.\\n\\nIt - may be filled with content via synchronization or content upload to create - an\\nAptRepositoryVersion.\",\n \"summary\": \"Create an apt - repository\",\n \"tags\": [\n \"Repositories: - Apt\"\n ],\n \"requestBody\": {\n \"content\": + \"publications_file_file_create\",\n \"description\": \"Trigger + an asynchronous task to publish file content.\",\n \"summary\": + \"Create a file publication\",\n \"tags\": [\n \"Publications: + File\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/deb.AptRepository\"\n + {\n \"$ref\": \"#/components/schemas/file.FilePublication\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptRepository\"\n }\n + \"#/components/schemas/file.FilePublication\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptRepository\"\n }\n + \"#/components/schemas/file.FilePublication\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"201\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/deb.AptRepositoryResponse\"\n + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{deb_apt_repository_href}\": {\n \"get\": - {\n \"operationId\": \"repositories_deb_apt_read\",\n \"description\": - \"An AptRepository is the locally stored, Pulp-internal representation of - a APT repository.\\n\\nIt may be filled with content via synchronization or - content upload to create an\\nAptRepositoryVersion.\",\n \"summary\": - \"Inspect an apt repository\",\n \"parameters\": [\n {\n + \ }\n },\n \"{file_file_publication_href}\": {\n \"get\": + {\n \"operationId\": \"publications_file_file_read\",\n \"description\": + \"\\nA FilePublication contains metadata about all the File Content in a particular + File Repository Version.\\nOnce a FilePublication has been created, it can + be hosted using the\\nFile Distribution API.\",\n \"summary\": + \"Inspect a file publication\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"deb_apt_repository_href\",\n \"schema\": {\n \"type\": + \"file_file_publication_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Repositories: Apt\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptRepositoryResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"repositories_deb_apt_update\",\n \"description\": - \"Trigger an asynchronous update task\",\n \"summary\": \"Update - an apt repository\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"deb_apt_repository_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Repositories: Apt\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptRepository\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptRepository\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/deb.AptRepository\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Publications: + File\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/file.FilePublicationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"repositories_deb_apt_partial_update\",\n \"description\": - \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update an apt repository\",\n \"parameters\": [\n {\n + \ },\n \"delete\": {\n \"operationId\": + \"publications_file_file_delete\",\n \"description\": \"\\nA + FilePublication contains metadata about all the File Content in a particular + File Repository Version.\\nOnce a FilePublication has been created, it can + be hosted using the\\nFile Distribution API.\",\n \"summary\": + \"Delete a file publication\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"deb_apt_repository_href\",\n \"schema\": {\n \"type\": + \"file_file_publication_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Repositories: Apt\"\n ],\n \"requestBody\": + [\n \"Publications: File\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"204\": + {\n \"description\": \"No response body\"\n }\n + \ }\n }\n },\n \"{file_file_publication_href}add_role/\": + {\n \"post\": {\n \"operationId\": \"publications_file_file_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"file_file_publication_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Publications: File\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patcheddeb.AptRepository\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patcheddeb.AptRepository\"\n }\n - \ },\n \"multipart/form-data\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patcheddeb.AptRepository\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"repositories_deb_apt_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete an apt - repository\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"deb_apt_repository_href\",\n \"schema\": {\n \"type\": + \ }\n },\n \"{file_file_publication_href}list_roles/\": + {\n \"get\": {\n \"operationId\": \"publications_file_file_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"file_file_publication_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Repositories: Apt\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{deb_apt_repository_href}modify/\": {\n \"post\": {\n - \ \"operationId\": \"repositories_deb_apt_modify\",\n \"description\": - \"Trigger an asynchronous task to create a new repository version.\",\n \"summary\": - \"Modify Repository Content\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"deb_apt_repository_href\",\n \"schema\": {\n \"type\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Publications: + File\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_publication_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"publications_file_file_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"file_file_publication_href\",\n + \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Repositories: Apt\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Publications: + File\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{deb_apt_repository_href}sync/\": {\n - \ \"post\": {\n \"operationId\": \"repositories_deb_apt_sync\",\n - \ \"description\": \"Trigger an asynchronous task to sync content\",\n - \ \"summary\": \"Sync from remote\",\n \"parameters\": + \ }\n },\n \"{file_file_publication_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"publications_file_file_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": - \"deb_apt_repository_href\",\n \"schema\": {\n \"type\": + \"file_file_publication_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Repositories: Apt\"\n ],\n \"requestBody\": + [\n \"Publications: File\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AptRepositorySyncURL\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AptRepositorySyncURL\"\n }\n - \ },\n \"multipart/form-data\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AptRepositorySyncURL\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{deb_apt_repository_href}versions/\": - {\n \"get\": {\n \"operationId\": \"repositories_deb_apt_versions_list\",\n - \ \"description\": \"An AptRepositoryVersion represents a single - APT repository version as stored by Pulp.\\n\\nIt may be used as the basis - for the creation of Pulp distributions in order to actually serve\\nthe content - contained within the repository version.\",\n \"summary\": - \"List repository versions\",\n \"parameters\": [\n {\n + \ }\n },\n \"/pulp/api/v3/publications/gem/gem/\": + {\n \"get\": {\n \"operationId\": \"publications_gem_gem_list\",\n + \ \"description\": \"A ViewSet for GemPublication.\",\n \"summary\": + \"List gem publications\",\n \"parameters\": [\n {\n \ \"in\": \"query\",\n \"name\": \"content\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": @@ -16587,74 +17983,40 @@ interactions: \"content__in\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Content Unit referenced by HREF\"\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"deb_apt_repository_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"number\",\n \"schema\": {\n \"type\": + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"number__gt\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is greater than value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"number__gte\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is greater than or equal to value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"number__lt\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is less than value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"number__lte\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is less than or equal to value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"number__range\",\n \"schema\": {\n \"type\": + \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"integer\"\n }\n },\n \"description\": - \"Filter results where number is between two comma separated values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-added_memberships\",\n \"-base_version\",\n - \ \"-complete\",\n \"-counts\",\n - \ \"-distribution\",\n \"-download_logs\",\n - \ \"-group_roles\",\n \"-info\",\n - \ \"-number\",\n \"-pk\",\n - \ \"-publication\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-removed_memberships\",\n - \ \"-repository\",\n \"-user_roles\",\n - \ \"-versions\",\n \"added_memberships\",\n - \ \"base_version\",\n \"complete\",\n - \ \"counts\",\n \"distribution\",\n - \ \"download_logs\",\n \"group_roles\",\n - \ \"info\",\n \"number\",\n - \ \"pk\",\n \"publication\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"removed_memberships\",\n \"repository\",\n - \ \"user_roles\",\n \"versions\"\n - \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \"string\",\n \"enum\": [\n \"-complete\",\n + \ \"-pass_through\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"complete\",\n \"pass_through\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `complete` - Complete\\n* `-complete` - Complete (descending)\\n* + `pass_through` - Pass through\\n* `-pass_through` - Pass through (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"pulp_created\",\n \"schema\": {\n \"type\": \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": + \ \"description\": \"Filter results where pulp_created + matches value\"\n },\n {\n \"in\": \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": {\n \"type\": \"string\",\n \"format\": \"date-time\"\n },\n \"description\": @@ -16681,426 +18043,201 @@ interactions: results where pulp_created is between two comma separated values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Apt Versions\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{deb_apt_repository_version_href}\": - {\n \"get\": {\n \"operationId\": \"repositories_deb_apt_versions_read\",\n - \ \"description\": \"An AptRepositoryVersion represents a single - APT repository version as stored by Pulp.\\n\\nIt may be used as the basis - for the creation of Pulp distributions in order to actually serve\\nthe content - contained within the repository version.\",\n \"summary\": - \"Inspect a repository version\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"deb_apt_repository_version_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Apt Versions\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RepositoryVersionResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"repositories_deb_apt_versions_delete\",\n \"description\": - \"Trigger an asynchronous task to delete a repository version.\",\n \"summary\": - \"Delete a repository version\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"deb_apt_repository_version_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Apt Versions\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{deb_apt_repository_version_href}repair/\": - {\n \"post\": {\n \"operationId\": \"repositories_deb_apt_versions_repair\",\n - \ \"description\": \"Trigger an asynchronous task to repair - a repository version.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"deb_apt_repository_version_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Apt Versions\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Repair\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Repair\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Repair\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/repositories/file/file/\": {\n \"get\": - {\n \"operationId\": \"repositories_file_file_list\",\n \"description\": - \"\\nFileRepository represents a single file repository, to which content - can be synced, added,\\nor removed.\",\n \"summary\": \"List - file repositorys\",\n \"parameters\": [\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n - \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": + \"Repository referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Repository Version referenced by + HREF\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-addons\",\n \"-alternatecontentsourcepath\",\n - \ \"-ansible_ansiblerepository\",\n \"-container_containerpushrepository\",\n - \ \"-container_containerrepository\",\n - \ \"-content\",\n \"-core_pulp_exporter\",\n - \ \"-deb_aptrepository\",\n \"-description\",\n - \ \"-distributions\",\n \"-download_logs\",\n - \ \"-file_filerepository\",\n \"-group_roles\",\n - \ \"-maven_mavenrepository\",\n \"-name\",\n - \ \"-next_version\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-pulpimporterrepository\",\n - \ \"-python_pythonrepository\",\n \"-remote\",\n - \ \"-repositorycontent\",\n \"-retain_repo_versions\",\n - \ \"-rpm_rpmrepository\",\n \"-uploads\",\n - \ \"-user_hidden\",\n \"-user_roles\",\n - \ \"-variants\",\n \"-versions\",\n - \ \"addons\",\n \"alternatecontentsourcepath\",\n - \ \"ansible_ansiblerepository\",\n \"container_containerpushrepository\",\n - \ \"container_containerrepository\",\n \"content\",\n - \ \"core_pulp_exporter\",\n \"deb_aptrepository\",\n - \ \"description\",\n \"distributions\",\n - \ \"download_logs\",\n \"file_filerepository\",\n - \ \"group_roles\",\n \"maven_mavenrepository\",\n - \ \"name\",\n \"next_version\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"pulpimporterrepository\",\n \"python_pythonrepository\",\n - \ \"remote\",\n \"repositorycontent\",\n - \ \"retain_repo_versions\",\n \"rpm_rpmrepository\",\n - \ \"uploads\",\n \"user_hidden\",\n - \ \"user_roles\",\n \"variants\",\n - \ \"versions\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter labels by search string\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"remote\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"uuid\"\n },\n \"description\": - \"Foreign Key referenced by HREF\"\n },\n {\n + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - File\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Publications: + Gem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedfile.FileRepositoryResponseList\"\n + {\n \"$ref\": \"#/components/schemas/Paginatedgem.GemPublicationResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"repositories_file_file_create\",\n \"description\": \"\\nFileRepository - represents a single file repository, to which content can be synced, added,\\nor - removed.\",\n \"summary\": \"Create a file repository\",\n - \ \"tags\": [\n \"Repositories: File\"\n - \ ],\n \"requestBody\": {\n \"content\": + \"publications_gem_gem_create\",\n \"description\": \"Trigger + an asynchronous task to publish gem content\",\n \"summary\": + \"Create a gem publication\",\n \"tags\": [\n \"Publications: + Gem\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/file.FileRepository\"\n + {\n \"$ref\": \"#/components/schemas/gem.GemPublication\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileRepository\"\n }\n + \"#/components/schemas/gem.GemPublication\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileRepository\"\n }\n + \"#/components/schemas/gem.GemPublication\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"201\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/file.FileRepositoryResponse\"\n + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{file_file_repository_href}\": {\n \"get\": - {\n \"operationId\": \"repositories_file_file_read\",\n \"description\": - \"\\nFileRepository represents a single file repository, to which content - can be synced, added,\\nor removed.\",\n \"summary\": \"Inspect - a file repository\",\n \"parameters\": [\n {\n + \ }\n },\n \"{gem_gem_publication_href}\": {\n \"get\": + {\n \"operationId\": \"publications_gem_gem_read\",\n \"description\": + \"A ViewSet for GemPublication.\",\n \"summary\": \"Inspect + a gem publication\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"file_file_repository_href\",\n \"schema\": {\n \"type\": + \"gem_gem_publication_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Repositories: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileRepositoryResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"repositories_file_file_update\",\n \"description\": - \"Trigger an asynchronous update task\",\n \"summary\": \"Update - a file repository\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"file_file_repository_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Repositories: File\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileRepository\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileRepository\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/file.FileRepository\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Publications: + Gem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/gem.GemPublicationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"repositories_file_file_partial_update\",\n \"description\": - \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a file repository\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"file_file_repository_href\",\n \"schema\": {\n \"type\": + \ },\n \"delete\": {\n \"operationId\": + \"publications_gem_gem_delete\",\n \"description\": \"A ViewSet + for GemPublication.\",\n \"summary\": \"Delete a gem publication\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"gem_gem_publication_href\",\n + \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Repositories: File\"\n ],\n \"requestBody\": + [\n \"Publications: Gem\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"204\": + {\n \"description\": \"No response body\"\n }\n + \ }\n }\n },\n \"{gem_gem_publication_href}add_role/\": + {\n \"post\": {\n \"operationId\": \"publications_gem_gem_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"gem_gem_publication_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Publications: Gem\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedfile.FileRepository\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedfile.FileRepository\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedfile.FileRepository\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"repositories_file_file_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete a file - repository\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"file_file_repository_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Repositories: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{file_file_repository_href}add_role/\": {\n \"post\": - {\n \"operationId\": \"repositories_file_file_add_role\",\n - \ \"description\": \"Add a role for this object to users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"file_file_repository_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Repositories: File\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NestedRole\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": {\n \"201\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{file_file_repository_href}list_roles/\": - {\n \"get\": {\n \"operationId\": \"repositories_file_file_list_roles\",\n + \ }\n },\n \"{gem_gem_publication_href}list_roles/\": + {\n \"get\": {\n \"operationId\": \"publications_gem_gem_list_roles\",\n \ \"description\": \"List roles assigned to this object.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"file_file_repository_href\",\n - \ \"schema\": {\n \"type\": + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"gem_gem_publication_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Repositories: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ObjectRolesResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{file_file_repository_href}modify/\": {\n \"post\": {\n - \ \"operationId\": \"repositories_file_file_modify\",\n \"description\": - \"Trigger an asynchronous task to create a new repository version.\",\n \"summary\": - \"Modify Repository Content\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"file_file_repository_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Repositories: File\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Publications: + Gem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{file_file_repository_href}my_permissions/\": - {\n \"get\": {\n \"operationId\": \"repositories_file_file_my_permissions\",\n + \ }\n },\n \"{gem_gem_publication_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"publications_gem_gem_my_permissions\",\n \ \"description\": \"List permissions available to the current - user on this object.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"file_file_repository_href\",\n \"schema\": {\n \"type\": + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"gem_gem_publication_href\",\n + \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Repositories: File\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/MyPermissionsResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{file_file_repository_href}remove_role/\": {\n \"post\": - {\n \"operationId\": \"repositories_file_file_remove_role\",\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Publications: + Gem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_publication_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"publications_gem_gem_remove_role\",\n \ \"description\": \"Remove a role for this object from users/groups.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"file_file_repository_href\",\n - \ \"schema\": {\n \"type\": + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"gem_gem_publication_href\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Repositories: File\"\n ],\n \"requestBody\": + [\n \"Publications: Gem\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NestedRole\"\n }\n },\n @@ -17110,46 +18247,20 @@ interactions: {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NestedRole\"\n }\n }\n \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": {\n \"201\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{file_file_repository_href}sync/\": {\n - \ \"post\": {\n \"operationId\": \"repositories_file_file_sync\",\n - \ \"description\": \"Trigger an asynchronous task to sync file - content.\",\n \"summary\": \"Sync from a remote\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"file_file_repository_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Repositories: File\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositorySyncURL\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositorySyncURL\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositorySyncURL\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{file_file_repository_href}versions/\": - {\n \"get\": {\n \"operationId\": \"repositories_file_file_versions_list\",\n - \ \"description\": \"\\nFileRepositoryVersion represents a single - file repository version.\",\n \"summary\": \"List repository - versions\",\n \"parameters\": [\n {\n \"in\": + \ }\n },\n \"/pulp/api/v3/publications/python/pypi/\": + {\n \"get\": {\n \"operationId\": \"publications_python_pypi_list\",\n + \ \"description\": \"\\nPython Publications refer to the Python + Package content in a repository version, and include\\nmetadata about that + content.\",\n \"summary\": \"List python publications\",\n + \ \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": \"content\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"description\": \"Content Unit referenced by HREF\"\n @@ -17157,41 +18268,12 @@ interactions: \"query\",\n \"name\": \"content__in\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"description\": \"Content Unit referenced by HREF\"\n - \ },\n {\n \"in\": - \"path\",\n \"name\": \"file_file_repository_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"name\": + \ },\n {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"number\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"number__gt\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is greater than value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"number__gte\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is greater than or equal to value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"number__lt\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is less than value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"number__lte\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is less than or equal to value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"number__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"integer\"\n }\n },\n \"description\": - \"Filter results where number is between two comma separated values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": + \ \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n @@ -17199,33 +18281,28 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-added_memberships\",\n \"-base_version\",\n - \ \"-complete\",\n \"-counts\",\n - \ \"-distribution\",\n \"-download_logs\",\n - \ \"-group_roles\",\n \"-info\",\n - \ \"-number\",\n \"-pk\",\n - \ \"-publication\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-removed_memberships\",\n - \ \"-repository\",\n \"-user_roles\",\n - \ \"-versions\",\n \"added_memberships\",\n - \ \"base_version\",\n \"complete\",\n - \ \"counts\",\n \"distribution\",\n - \ \"download_logs\",\n \"group_roles\",\n - \ \"info\",\n \"number\",\n - \ \"pk\",\n \"publication\",\n + [\n \"-complete\",\n \"-pass_through\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"complete\",\n + \ \"pass_through\",\n \"pk\",\n \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"removed_memberships\",\n \"repository\",\n - \ \"user_roles\",\n \"versions\"\n + \ \"pulp_last_updated\",\n \"pulp_type\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `complete` + - Complete\\n* `-complete` - Complete (descending)\\n* `pass_through` - Pass + through\\n* `-pass_through` - Pass through (descending)\\n* `pk` - Pk\\n* + `-pk` - Pk (descending)\",\n \"explode\": false,\n + \ \"style\": \"form\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"pulp_created\",\n \"schema\": {\n \"type\": \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": + \ \"description\": \"Filter results where pulp_created + matches value\"\n },\n {\n \"in\": \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": {\n \"type\": \"string\",\n \"format\": \"date-time\"\n },\n \"description\": @@ -17252,515 +18329,444 @@ interactions: results where pulp_created is between two comma separated values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": + \"Repository referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Repository Version referenced by + HREF\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - File Versions\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Publications: + Pypi\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n + {\n \"$ref\": \"#/components/schemas/Paginatedpython.PythonPublicationResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{file_file_repository_version_href}\": - {\n \"get\": {\n \"operationId\": \"repositories_file_file_versions_read\",\n - \ \"description\": \"\\nFileRepositoryVersion represents a single - file repository version.\",\n \"summary\": \"Inspect a repository - version\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"file_file_repository_version_href\",\n + \ },\n \"post\": {\n \"operationId\": + \"publications_python_pypi_create\",\n \"description\": \"\\nDispatches + a publish task, which generates metadata that will be used by pip.\",\n \"summary\": + \"Create a python publication\",\n \"tags\": [\n \"Publications: + Pypi\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/python.PythonPublication\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/python.PythonPublication\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/python.PythonPublication\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{python_python_publication_href}\": {\n + \ \"get\": {\n \"operationId\": \"publications_python_pypi_read\",\n + \ \"description\": \"\\nPython Publications refer to the Python + Package content in a repository version, and include\\nmetadata about that + content.\",\n \"summary\": \"Inspect a python publication\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"python_python_publication_href\",\n \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Repositories: File Versions\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RepositoryVersionResponse\"\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Publications: + Pypi\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/python.PythonPublicationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"delete\": {\n \"operationId\": - \"repositories_file_file_versions_delete\",\n \"description\": - \"Trigger an asynchronous task to delete a repository version.\",\n \"summary\": - \"Delete a repository version\",\n \"parameters\": [\n {\n + \"publications_python_pypi_delete\",\n \"description\": \"\\nPython + Publications refer to the Python Package content in a repository version, + and include\\nmetadata about that content.\",\n \"summary\": + \"Delete a python publication\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"file_file_repository_version_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n + \"python_python_publication_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: File Versions\"\n + \ \"tags\": [\n \"Publications: Pypi\"\n \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{file_file_repository_version_href}repair/\": - {\n \"post\": {\n \"operationId\": \"repositories_file_file_versions_repair\",\n - \ \"description\": \"Trigger an asynchronous task to repair - a repository version.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"file_file_repository_version_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: File Versions\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Repair\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Repair\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Repair\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/repositories/maven/maven/\": {\n \"get\": - {\n \"operationId\": \"repositories_maven_maven_list\",\n \"description\": - \"A ViewSet for MavenRemote.\",\n \"summary\": \"List maven - repositorys\",\n \"parameters\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"204\": {\n \"description\": + \"No response body\"\n }\n }\n }\n + \ },\n \"/pulp/api/v3/publications/rpm/rpm/\": {\n \"get\": + {\n \"operationId\": \"publications_rpm_rpm_list\",\n \"description\": + \"ViewSet for Rpm Publications.\",\n \"summary\": \"List rpm + publications\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"content\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"content__in\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n \ \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"name__contains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__icontains\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where name contains - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"name__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"ordering\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-complete\",\n + \ \"-pass_through\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"complete\",\n \"pass_through\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `complete` - Complete\\n* `-complete` - Complete (descending)\\n* + `pass_through` - Pass through\\n* `-pass_through` - Pass through (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__gte\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_created__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n \ },\n \"description\": \"Filter - results where name is in a comma-separated list of values\",\n \"explode\": + results where pulp_created is between two comma separated values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": + \"Repository referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Repository Version referenced by + HREF\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-addons\",\n \"-alternatecontentsourcepath\",\n - \ \"-ansible_ansiblerepository\",\n \"-container_containerpushrepository\",\n - \ \"-container_containerrepository\",\n - \ \"-content\",\n \"-core_pulp_exporter\",\n - \ \"-deb_aptrepository\",\n \"-description\",\n - \ \"-distributions\",\n \"-download_logs\",\n - \ \"-file_filerepository\",\n \"-group_roles\",\n - \ \"-maven_mavenrepository\",\n \"-name\",\n - \ \"-next_version\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-pulpimporterrepository\",\n - \ \"-python_pythonrepository\",\n \"-remote\",\n - \ \"-repositorycontent\",\n \"-retain_repo_versions\",\n - \ \"-rpm_rpmrepository\",\n \"-uploads\",\n - \ \"-user_hidden\",\n \"-user_roles\",\n - \ \"-variants\",\n \"-versions\",\n - \ \"addons\",\n \"alternatecontentsourcepath\",\n - \ \"ansible_ansiblerepository\",\n \"container_containerpushrepository\",\n - \ \"container_containerrepository\",\n \"content\",\n - \ \"core_pulp_exporter\",\n \"deb_aptrepository\",\n - \ \"description\",\n \"distributions\",\n - \ \"download_logs\",\n \"file_filerepository\",\n - \ \"group_roles\",\n \"maven_mavenrepository\",\n - \ \"name\",\n \"next_version\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"pulpimporterrepository\",\n \"python_pythonrepository\",\n - \ \"remote\",\n \"repositorycontent\",\n - \ \"retain_repo_versions\",\n \"rpm_rpmrepository\",\n - \ \"uploads\",\n \"user_hidden\",\n - \ \"user_roles\",\n \"variants\",\n - \ \"versions\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter labels by search string\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"remote\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"uuid\"\n },\n \"description\": - \"Foreign Key referenced by HREF\"\n },\n {\n + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Maven\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Publications: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedmaven.MavenRepositoryResponseList\"\n + {\n \"$ref\": \"#/components/schemas/Paginatedrpm.RpmPublicationResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"repositories_maven_maven_create\",\n \"description\": \"A - ViewSet for MavenRemote.\",\n \"summary\": \"Create a maven - repository\",\n \"tags\": [\n \"Repositories: - Maven\"\n ],\n \"requestBody\": {\n \"content\": + \"publications_rpm_rpm_create\",\n \"description\": \"Trigger + an asynchronous task to create a new RPM content publication.\",\n \"summary\": + \"Create a rpm publication\",\n \"tags\": [\n \"Publications: + Rpm\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/maven.MavenRepository\"\n + {\n \"$ref\": \"#/components/schemas/rpm.RpmPublication\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/maven.MavenRepository\"\n }\n + \"#/components/schemas/rpm.RpmPublication\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/maven.MavenRepository\"\n }\n + \"#/components/schemas/rpm.RpmPublication\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"201\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/maven.MavenRepositoryResponse\"\n + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{maven_maven_repository_href}\": {\n - \ \"get\": {\n \"operationId\": \"repositories_maven_maven_read\",\n - \ \"description\": \"A ViewSet for MavenRemote.\",\n \"summary\": - \"Inspect a maven repository\",\n \"parameters\": [\n {\n + \ }\n },\n \"{rpm_rpm_publication_href}\": {\n \"get\": + {\n \"operationId\": \"publications_rpm_rpm_read\",\n \"description\": + \"ViewSet for Rpm Publications.\",\n \"summary\": \"Inspect + a rpm publication\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"maven_maven_repository_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"rpm_rpm_publication_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Maven\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Publications: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/maven.MavenRepositoryResponse\"\n + {\n \"$ref\": \"#/components/schemas/rpm.RpmPublicationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"put\": {\n \"operationId\": \"repositories_maven_maven_update\",\n - \ \"description\": \"Trigger an asynchronous update task\",\n - \ \"summary\": \"Update a maven repository\",\n \"parameters\": + \ },\n \"delete\": {\n \"operationId\": + \"publications_rpm_rpm_delete\",\n \"description\": \"ViewSet + for Rpm Publications.\",\n \"summary\": \"Delete a rpm publication\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_rpm_publication_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Publications: Rpm\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"204\": + {\n \"description\": \"No response body\"\n }\n + \ }\n }\n },\n \"{rpm_rpm_publication_href}add_role/\": + {\n \"post\": {\n \"operationId\": \"publications_rpm_rpm_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": - \"maven_maven_repository_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Maven\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/maven.MavenRepository\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/maven.MavenRepository\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/maven.MavenRepository\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"repositories_maven_maven_partial_update\",\n \"description\": - \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a maven repository\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"maven_maven_repository_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Maven\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Patchedmaven.MavenRepository\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": + \"rpm_rpm_publication_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Publications: Rpm\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedmaven.MavenRepository\"\n }\n - \ },\n \"multipart/form-data\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedmaven.MavenRepository\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"repositories_maven_maven_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete a maven - repository\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"maven_maven_repository_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Maven\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{maven_maven_repository_href}versions/\": - {\n \"get\": {\n \"operationId\": \"repositories_maven_maven_versions_list\",\n - \ \"description\": \"MavenRepositoryVersion represents a single - Maven repository version.\",\n \"summary\": \"List repository - versions\",\n \"parameters\": [\n {\n \"in\": - \"query\",\n \"name\": \"content\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Content Unit referenced by HREF\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"content__in\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Content Unit referenced by HREF\"\n - \ },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"maven_maven_repository_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"number\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"number__gt\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is greater than value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"number__gte\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is greater than or equal to value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"number__lt\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is less than value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"number__lte\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is less than or equal to value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"number__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"integer\"\n }\n },\n \"description\": - \"Filter results where number is between two comma separated values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": + \ }\n },\n \"{rpm_rpm_publication_href}list_roles/\": + {\n \"get\": {\n \"operationId\": \"publications_rpm_rpm_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_publication_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-added_memberships\",\n \"-base_version\",\n - \ \"-complete\",\n \"-counts\",\n - \ \"-distribution\",\n \"-download_logs\",\n - \ \"-group_roles\",\n \"-info\",\n - \ \"-number\",\n \"-pk\",\n - \ \"-publication\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-removed_memberships\",\n - \ \"-repository\",\n \"-user_roles\",\n - \ \"-versions\",\n \"added_memberships\",\n - \ \"base_version\",\n \"complete\",\n - \ \"counts\",\n \"distribution\",\n - \ \"download_logs\",\n \"group_roles\",\n - \ \"info\",\n \"number\",\n - \ \"pk\",\n \"publication\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"removed_memberships\",\n \"repository\",\n - \ \"user_roles\",\n \"versions\"\n - \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is greater than value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__gte\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is greater than or equal to value\"\n },\n {\n + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_created__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is less than or equal to value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_created is between two comma separated values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Maven Versions\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Publications: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{maven_maven_repository_version_href}\": - {\n \"get\": {\n \"operationId\": \"repositories_maven_maven_versions_read\",\n - \ \"description\": \"MavenRepositoryVersion represents a single - Maven repository version.\",\n \"summary\": \"Inspect a repository - version\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"maven_maven_repository_version_href\",\n + \ }\n },\n \"{rpm_rpm_publication_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"publications_rpm_rpm_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_rpm_publication_href\",\n \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Repositories: Maven Versions\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Publications: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_publication_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"publications_rpm_rpm_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_publication_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Publications: Rpm\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n + {\n \"201\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RepositoryVersionResponse\"\n + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"repositories_maven_maven_versions_delete\",\n \"description\": - \"Trigger an asynchronous task to delete a repository version.\",\n \"summary\": - \"Delete a repository version\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"maven_maven_repository_version_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Maven Versions\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ }\n },\n \"/pulp/api/v3/pulp_ansible/tags/\": {\n + \ \"get\": {\n \"operationId\": \"pulp_ansible_tags_list\",\n + \ \"description\": \"ViewSet for Tag models.\",\n \"summary\": + \"List tags\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Tags\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/PaginatedTagResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{maven_maven_repository_version_href}repair/\": - {\n \"post\": {\n \"operationId\": \"repositories_maven_maven_versions_repair\",\n - \ \"description\": \"Trigger an asynchronous task to repair - a repository version.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"maven_maven_repository_version_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Maven Versions\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Repair\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Repair\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Repair\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/repositories/python/python/\": {\n \"get\": - {\n \"operationId\": \"repositories_python_python_list\",\n - \ \"description\": \"PythonRepository represents a single Python - repository, to which content can be\\nsynced, added, or removed.\",\n \"summary\": - \"List python repositorys\",\n \"parameters\": [\n {\n + \ }\n },\n \"/pulp/api/v3/pulp_container/namespaces/\": + {\n \"get\": {\n \"operationId\": \"pulp_container_namespaces_list\",\n + \ \"description\": \"ViewSet for ContainerNamespaces.\",\n \"summary\": + \"List container namespaces\",\n \"parameters\": [\n {\n \ \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n \ },\n {\n \"in\": \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": \"query\",\n \"name\": \"name__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"description\": \"Filter results where name contains @@ -17769,6 +18775,10 @@ interactions: {\n \"type\": \"string\"\n },\n \ \"description\": \"Filter results where name contains value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": \"query\",\n \"name\": \"name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n @@ -17776,6 +18786,18 @@ interactions: results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where name starts with value\"\n },\n @@ -17787,286 +18809,290 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-addons\",\n \"-alternatecontentsourcepath\",\n - \ \"-ansible_ansiblerepository\",\n \"-container_containerpushrepository\",\n - \ \"-container_containerrepository\",\n - \ \"-content\",\n \"-core_pulp_exporter\",\n - \ \"-deb_aptrepository\",\n \"-description\",\n - \ \"-distributions\",\n \"-download_logs\",\n - \ \"-file_filerepository\",\n \"-group_roles\",\n - \ \"-maven_mavenrepository\",\n \"-name\",\n - \ \"-next_version\",\n \"-pk\",\n + [\n \"-name\",\n \"-pk\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-pulpimporterrepository\",\n - \ \"-python_pythonrepository\",\n \"-remote\",\n - \ \"-repositorycontent\",\n \"-retain_repo_versions\",\n - \ \"-rpm_rpmrepository\",\n \"-uploads\",\n - \ \"-user_hidden\",\n \"-user_roles\",\n - \ \"-variants\",\n \"-versions\",\n - \ \"addons\",\n \"alternatecontentsourcepath\",\n - \ \"ansible_ansiblerepository\",\n \"container_containerpushrepository\",\n - \ \"container_containerrepository\",\n \"content\",\n - \ \"core_pulp_exporter\",\n \"deb_aptrepository\",\n - \ \"description\",\n \"distributions\",\n - \ \"download_logs\",\n \"file_filerepository\",\n - \ \"group_roles\",\n \"maven_mavenrepository\",\n - \ \"name\",\n \"next_version\",\n + \ \"-pulp_last_updated\",\n \"name\",\n \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"pulpimporterrepository\",\n \"python_pythonrepository\",\n - \ \"remote\",\n \"repositorycontent\",\n - \ \"retain_repo_versions\",\n \"rpm_rpmrepository\",\n - \ \"uploads\",\n \"user_hidden\",\n - \ \"user_roles\",\n \"variants\",\n - \ \"versions\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + \ \"pulp_id\",\n \"pulp_last_updated\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `name` - Name\\n* `-name` - Name (descending)\\n* `pk` - Pk\\n* `-pk` - Pk + (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter labels by search string\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"remote\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"uuid\"\n },\n \"description\": - \"Foreign Key referenced by HREF\"\n },\n {\n + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Python\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Pulp_Container: + Namespaces\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedpython.PythonRepositoryResponseList\"\n + {\n \"$ref\": \"#/components/schemas/Paginatedcontainer.ContainerNamespaceResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"repositories_python_python_create\",\n \"description\": \"PythonRepository - represents a single Python repository, to which content can be\\nsynced, added, - or removed.\",\n \"summary\": \"Create a python repository\",\n - \ \"tags\": [\n \"Repositories: Python\"\n - \ ],\n \"requestBody\": {\n \"content\": + \"pulp_container_namespaces_create\",\n \"description\": \"ViewSet + for ContainerNamespaces.\",\n \"summary\": \"Create a container + namespace\",\n \"tags\": [\n \"Pulp_Container: + Namespaces\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/python.PythonRepository\"\n + {\n \"$ref\": \"#/components/schemas/container.ContainerNamespace\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonRepository\"\n }\n + \"#/components/schemas/container.ContainerNamespace\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonRepository\"\n }\n + \"#/components/schemas/container.ContainerNamespace\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/python.PythonRepositoryResponse\"\n + {\n \"$ref\": \"#/components/schemas/container.ContainerNamespaceResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{python_python_repository_href}\": {\n - \ \"get\": {\n \"operationId\": \"repositories_python_python_read\",\n - \ \"description\": \"PythonRepository represents a single Python - repository, to which content can be\\nsynced, added, or removed.\",\n \"summary\": - \"Inspect a python repository\",\n \"parameters\": [\n {\n + \ }\n },\n \"{container_container_namespace_href}\": + {\n \"get\": {\n \"operationId\": \"pulp_container_namespaces_read\",\n + \ \"description\": \"ViewSet for ContainerNamespaces.\",\n \"summary\": + \"Inspect a container namespace\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"python_python_repository_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n + \"container_container_namespace_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Python\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Pulp_Container: + Namespaces\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/python.PythonRepositoryResponse\"\n + {\n \"$ref\": \"#/components/schemas/container.ContainerNamespaceResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"put\": {\n \"operationId\": \"repositories_python_python_update\",\n - \ \"description\": \"Trigger an asynchronous update task\",\n - \ \"summary\": \"Update a python repository\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"python_python_repository_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Python\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/python.PythonRepository\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonRepository\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/python.PythonRepository\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": + \ },\n \"delete\": {\n \"operationId\": + \"pulp_container_namespaces_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a container + namespace\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_namespace_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Pulp_Container: Namespaces\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"repositories_python_python_partial_update\",\n \"description\": - \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a python repository\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"python_python_repository_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n + \ }\n },\n \"{container_container_namespace_href}add_role/\": + {\n \"post\": {\n \"operationId\": \"pulp_container_namespaces_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_namespace_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Python\"\n + \ \"tags\": [\n \"Pulp_Container: Namespaces\"\n \ ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Patchedpython.PythonRepository\"\n + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedpython.PythonRepository\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedpython.PythonRepository\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_namespace_href}list_roles/\": {\n \"get\": + {\n \"operationId\": \"pulp_container_namespaces_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_namespace_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Container: + Namespaces\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"repositories_python_python_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete a python - repository\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"python_python_repository_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Python\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ }\n },\n \"{container_container_namespace_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"pulp_container_namespaces_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_namespace_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Container: + Namespaces\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{python_python_repository_href}modify/\": - {\n \"post\": {\n \"operationId\": \"repositories_python_python_modify\",\n - \ \"description\": \"Trigger an asynchronous task to create - a new repository version.\",\n \"summary\": \"Modify Repository - Content\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"python_python_repository_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Repositories: Python\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{python_python_repository_href}sync/\": - {\n \"post\": {\n \"operationId\": \"repositories_python_python_sync\",\n - \ \"description\": \"\\nTrigger an asynchronous task to sync - python content. The sync task will retrieve Python\\ncontent from the specified - `Remote` and update the specified `Respository`, creating a\\nnew `RepositoryVersion`.\",\n - \ \"summary\": \"Sync from remote\",\n \"parameters\": + \ }\n },\n \"{container_container_namespace_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"pulp_container_namespaces_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": - \"python_python_repository_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n + \"container_container_namespace_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Python\"\n + \ \"tags\": [\n \"Pulp_Container: Namespaces\"\n \ ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RepositorySyncURL\"\n + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositorySyncURL\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositorySyncURL\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{python_python_repository_href}versions/\": - {\n \"get\": {\n \"operationId\": \"repositories_python_python_versions_list\",\n - \ \"description\": \"PythonRepositoryVersion represents a single - Python repository version.\",\n \"summary\": \"List repository - versions\",\n \"parameters\": [\n {\n \"in\": - \"query\",\n \"name\": \"content\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Content Unit referenced by HREF\"\n + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/remotes/\": {\n \"get\": {\n \"operationId\": + \"remotes_list\",\n \"description\": \"A customized named ModelViewSet + that knows how to register itself with the Pulp API router.\\n\\nThis viewset + is discoverable by its name.\\n\\\"Normal\\\" Django Models and Master/Detail + models are supported by the ``register_with`` method.\\n\\nAttributes:\\n + \ lookup_field (str): The name of the field by which an object should be + looked up, in\\n addition to any parent lookups if this ViewSet is + nested. Defaults to 'pk'\\n endpoint_name (str): The name of the final + path segment that should identify the ViewSet's\\n collection endpoint.\\n + \ nest_prefix (str): Optional prefix under which this ViewSet should be + nested. This must\\n correspond to the \\\"parent_prefix\\\" of a router + with rest_framework_nested.NestedMixin.\\n None indicates this ViewSet + should not be nested.\\n parent_lookup_kwargs (dict): Optional mapping + of key names that would appear in self.kwargs\\n to django model filter + expressions that can be used with the corresponding value from\\n self.kwargs, + used only by a nested ViewSet to filter based on the parent object's\\n identity.\\n + \ schema (DefaultSchema): The schema class to use by default in a viewset.\",\n + \ \"summary\": \"List remotes\",\n \"parameters\": + [\n {\n \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n \ },\n {\n \"in\": - \"query\",\n \"name\": \"content__in\",\n \"schema\": + \"query\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"Content Unit referenced by HREF\"\n - \ },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"number\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"number__gt\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is greater than value\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"number__gte\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is greater than or equal to value\"\n },\n + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"number__lt\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is less than value\"\n },\n + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"number__lte\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is less than or equal to value\"\n },\n + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"number__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"integer\"\n }\n },\n \"description\": - \"Filter results where number is between two comma separated values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n \ {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": @@ -18075,183 +19101,180 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-added_memberships\",\n \"-base_version\",\n - \ \"-complete\",\n \"-counts\",\n - \ \"-distribution\",\n \"-download_logs\",\n - \ \"-group_roles\",\n \"-info\",\n - \ \"-number\",\n \"-pk\",\n - \ \"-publication\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-removed_memberships\",\n - \ \"-repository\",\n \"-user_roles\",\n - \ \"-versions\",\n \"added_memberships\",\n - \ \"base_version\",\n \"complete\",\n - \ \"counts\",\n \"distribution\",\n - \ \"download_logs\",\n \"group_roles\",\n - \ \"info\",\n \"number\",\n - \ \"pk\",\n \"publication\",\n + [\n \"-ca_cert\",\n \"-client_cert\",\n + \ \"-client_key\",\n \"-connect_timeout\",\n + \ \"-download_concurrency\",\n \"-headers\",\n + \ \"-max_retries\",\n \"-name\",\n + \ \"-password\",\n \"-pk\",\n + \ \"-policy\",\n \"-proxy_password\",\n + \ \"-proxy_url\",\n \"-proxy_username\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-rate_limit\",\n + \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n + \ \"-tls_validation\",\n \"-total_timeout\",\n + \ \"-url\",\n \"-username\",\n + \ \"ca_cert\",\n \"client_cert\",\n + \ \"client_key\",\n \"connect_timeout\",\n + \ \"download_concurrency\",\n \"headers\",\n + \ \"max_retries\",\n \"name\",\n + \ \"password\",\n \"pk\",\n + \ \"policy\",\n \"proxy_password\",\n + \ \"proxy_url\",\n \"proxy_username\",\n \ \"pulp_created\",\n \"pulp_id\",\n \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"removed_memberships\",\n \"repository\",\n - \ \"user_roles\",\n \"versions\"\n + \ \"pulp_type\",\n \"rate_limit\",\n + \ \"sock_connect_timeout\",\n \"sock_read_timeout\",\n + \ \"tls_validation\",\n \"total_timeout\",\n + \ \"url\",\n \"username\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `url` - Url\\n* `-url` - Url + (descending)\\n* `ca_cert` - Ca cert\\n* `-ca_cert` - Ca cert (descending)\\n* + `client_cert` - Client cert\\n* `-client_cert` - Client cert (descending)\\n* + `client_key` - Client key\\n* `-client_key` - Client key (descending)\\n* + `tls_validation` - Tls validation\\n* `-tls_validation` - Tls validation (descending)\\n* + `username` - Username\\n* `-username` - Username (descending)\\n* `password` + - Password\\n* `-password` - Password (descending)\\n* `proxy_url` - Proxy + url\\n* `-proxy_url` - Proxy url (descending)\\n* `proxy_username` - Proxy + username\\n* `-proxy_username` - Proxy username (descending)\\n* `proxy_password` + - Proxy password\\n* `-proxy_password` - Proxy password (descending)\\n* `download_concurrency` + - Download concurrency\\n* `-download_concurrency` - Download concurrency + (descending)\\n* `max_retries` - Max retries\\n* `-max_retries` - Max retries + (descending)\\n* `policy` - Policy\\n* `-policy` - Policy (descending)\\n* + `total_timeout` - Total timeout\\n* `-total_timeout` - Total timeout (descending)\\n* + `connect_timeout` - Connect timeout\\n* `-connect_timeout` - Connect timeout + (descending)\\n* `sock_connect_timeout` - Sock connect timeout\\n* `-sock_connect_timeout` + - Sock connect timeout (descending)\\n* `sock_read_timeout` - Sock read timeout\\n* + `-sock_read_timeout` - Sock read timeout (descending)\\n* `headers` - Headers\\n* + `-headers` - Headers (descending)\\n* `rate_limit` - Rate limit\\n* `-rate_limit` + - Rate limit (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is greater than value\"\n },\n + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__gte\",\n \"schema\": {\n \"type\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated\",\n \"schema\": {\n \"type\": \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created + \ \"description\": \"Filter results where pulp_last_updated + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gt\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated is greater than or equal to value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_created__lt\",\n \"schema\": {\n \"type\": + \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created + \ \"description\": \"Filter results where pulp_last_updated is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is less than or equal to value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"query\",\n \"name\": \"pulp_last_updated__lte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"format\": \"date-time\"\n }\n \ },\n \"description\": \"Filter - results where pulp_created is between two comma separated values\",\n \"explode\": + results where pulp_last_updated is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_type\",\n \"schema\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"ansible.collection\",\n \"ansible.git\",\n + \ \"ansible.role\",\n \"container.container\",\n + \ \"container.remote\",\n \"deb.apt-remote\",\n + \ \"file.file\",\n \"gem.gem\",\n + \ \"maven.maven\",\n \"ostree.ostree\",\n + \ \"python.python\",\n \"rpm.rpm\",\n + \ \"rpm.uln\"\n ]\n + \ },\n \"description\": \"Pulp + type\\n\\n* `ansible.role` - ansible.role\\n* `ansible.collection` - ansible.collection\\n* + `ansible.git` - ansible.git\\n* `container.container` - container.container\\n* + `container.remote` - container.remote\\n* `deb.apt-remote` - deb.apt-remote\\n* + `gem.gem` - gem.gem\\n* `maven.maven` - maven.maven\\n* `ostree.ostree` - + ostree.ostree\\n* `python.python` - python.python\\n* `rpm.rpm` - rpm.rpm\\n* + `rpm.uln` - rpm.uln\\n* `file.file` - file.file\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_type__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"ansible.collection\",\n + \ \"ansible.git\",\n \"ansible.role\",\n + \ \"container.container\",\n \"container.remote\",\n + \ \"deb.apt-remote\",\n \"file.file\",\n + \ \"gem.gem\",\n \"maven.maven\",\n + \ \"ostree.ostree\",\n \"python.python\",\n + \ \"rpm.rpm\",\n \"rpm.uln\"\n + \ ]\n }\n },\n + \ \"description\": \"Multiple values may be separated + by commas.\\n\\n* `ansible.role` - ansible.role\\n* `ansible.collection` - + ansible.collection\\n* `ansible.git` - ansible.git\\n* `container.container` + - container.container\\n* `container.remote` - container.remote\\n* `deb.apt-remote` + - deb.apt-remote\\n* `gem.gem` - gem.gem\\n* `maven.maven` - maven.maven\\n* + `ostree.ostree` - ostree.ostree\\n* `python.python` - python.python\\n* `rpm.rpm` + - rpm.rpm\\n* `rpm.uln` - rpm.uln\\n* `file.file` - file.file\",\n \"explode\": false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"path\",\n \"name\": - \"python_python_repository_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Python Versions\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{python_python_repository_version_href}\": - {\n \"get\": {\n \"operationId\": \"repositories_python_python_versions_read\",\n - \ \"description\": \"PythonRepositoryVersion represents a single - Python repository version.\",\n \"summary\": \"Inspect a repository - version\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"python_python_repository_version_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Repositories: Python Versions\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RepositoryVersionResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"repositories_python_python_versions_delete\",\n \"description\": - \"Trigger an asynchronous task to delete a repository version.\",\n \"summary\": - \"Delete a repository version\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"python_python_repository_version_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Python Versions\"\n + \ ],\n \"tags\": [\n \"Remotes\"\n \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/PaginatedRemoteResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{python_python_repository_version_href}repair/\": - {\n \"post\": {\n \"operationId\": \"repositories_python_python_versions_repair\",\n - \ \"description\": \"Trigger an asynchronous task to repair - a repository version.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"python_python_repository_version_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Python Versions\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Repair\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Repair\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Repair\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/repositories/reclaim_space/\": {\n \"post\": - {\n \"operationId\": \"repositories_reclaim_space_reclaim\",\n - \ \"description\": \"Trigger an asynchronous space reclaim operation.\",\n - \ \"tags\": [\n \"Repositories: Reclaim_Space\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ReclaimSpace\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ReclaimSpace\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ReclaimSpace\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/repositories/rpm/rpm/\": {\n \"get\": {\n - \ \"operationId\": \"repositories_rpm_rpm_list\",\n \"description\": - \"A ViewSet for RpmRepository.\",\n \"summary\": \"List rpm - repositorys\",\n \"parameters\": [\n {\n + \ }\n },\n \"/pulp/api/v3/remotes/ansible/collection/\": + {\n \"get\": {\n \"operationId\": \"remotes_ansible_collection_list\",\n + \ \"description\": \"ViewSet for Collection Remotes.\",\n \"summary\": + \"List collection remotes\",\n \"parameters\": [\n {\n \ \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n \ },\n {\n \"in\": \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": \"query\",\n \"name\": \"name__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"description\": \"Filter results where name contains @@ -18260,6 +19283,10 @@ interactions: {\n \"type\": \"string\"\n },\n \ \"description\": \"Filter results where name contains value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": \"query\",\n \"name\": \"name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n @@ -18267,6 +19294,18 @@ interactions: results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where name starts with value\"\n },\n @@ -18278,281 +19317,490 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-addons\",\n \"-alternatecontentsourcepath\",\n - \ \"-ansible_ansiblerepository\",\n \"-container_containerpushrepository\",\n - \ \"-container_containerrepository\",\n - \ \"-content\",\n \"-core_pulp_exporter\",\n - \ \"-deb_aptrepository\",\n \"-description\",\n - \ \"-distributions\",\n \"-download_logs\",\n - \ \"-file_filerepository\",\n \"-group_roles\",\n - \ \"-maven_mavenrepository\",\n \"-name\",\n - \ \"-next_version\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-pulpimporterrepository\",\n - \ \"-python_pythonrepository\",\n \"-remote\",\n - \ \"-repositorycontent\",\n \"-retain_repo_versions\",\n - \ \"-rpm_rpmrepository\",\n \"-uploads\",\n - \ \"-user_hidden\",\n \"-user_roles\",\n - \ \"-variants\",\n \"-versions\",\n - \ \"addons\",\n \"alternatecontentsourcepath\",\n - \ \"ansible_ansiblerepository\",\n \"container_containerpushrepository\",\n - \ \"container_containerrepository\",\n \"content\",\n - \ \"core_pulp_exporter\",\n \"deb_aptrepository\",\n - \ \"description\",\n \"distributions\",\n - \ \"download_logs\",\n \"file_filerepository\",\n - \ \"group_roles\",\n \"maven_mavenrepository\",\n - \ \"name\",\n \"next_version\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"pulpimporterrepository\",\n \"python_pythonrepository\",\n - \ \"remote\",\n \"repositorycontent\",\n - \ \"retain_repo_versions\",\n \"rpm_rpmrepository\",\n - \ \"uploads\",\n \"user_hidden\",\n - \ \"user_roles\",\n \"variants\",\n - \ \"versions\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + [\n \"-auth_url\",\n \"-ca_cert\",\n + \ \"-client_cert\",\n \"-client_key\",\n + \ \"-connect_timeout\",\n \"-download_concurrency\",\n + \ \"-headers\",\n \"-max_retries\",\n + \ \"-name\",\n \"-password\",\n + \ \"-pk\",\n \"-policy\",\n + \ \"-proxy_password\",\n \"-proxy_url\",\n + \ \"-proxy_username\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_labels\",\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"-rate_limit\",\n \"-requirements_file\",\n + \ \"-signed_only\",\n \"-sock_connect_timeout\",\n + \ \"-sock_read_timeout\",\n \"-sync_dependencies\",\n + \ \"-tls_validation\",\n \"-token\",\n + \ \"-total_timeout\",\n \"-url\",\n + \ \"-username\",\n \"auth_url\",\n + \ \"ca_cert\",\n \"client_cert\",\n + \ \"client_key\",\n \"connect_timeout\",\n + \ \"download_concurrency\",\n \"headers\",\n + \ \"max_retries\",\n \"name\",\n + \ \"password\",\n \"pk\",\n + \ \"policy\",\n \"proxy_password\",\n + \ \"proxy_url\",\n \"proxy_username\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_labels\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"rate_limit\",\n + \ \"requirements_file\",\n \"signed_only\",\n + \ \"sock_connect_timeout\",\n \"sock_read_timeout\",\n + \ \"sync_dependencies\",\n \"tls_validation\",\n + \ \"token\",\n \"total_timeout\",\n + \ \"url\",\n \"username\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `url` - Url\\n* `-url` - Url + (descending)\\n* `ca_cert` - Ca cert\\n* `-ca_cert` - Ca cert (descending)\\n* + `client_cert` - Client cert\\n* `-client_cert` - Client cert (descending)\\n* + `client_key` - Client key\\n* `-client_key` - Client key (descending)\\n* + `tls_validation` - Tls validation\\n* `-tls_validation` - Tls validation (descending)\\n* + `username` - Username\\n* `-username` - Username (descending)\\n* `password` + - Password\\n* `-password` - Password (descending)\\n* `proxy_url` - Proxy + url\\n* `-proxy_url` - Proxy url (descending)\\n* `proxy_username` - Proxy + username\\n* `-proxy_username` - Proxy username (descending)\\n* `proxy_password` + - Proxy password\\n* `-proxy_password` - Proxy password (descending)\\n* `download_concurrency` + - Download concurrency\\n* `-download_concurrency` - Download concurrency + (descending)\\n* `max_retries` - Max retries\\n* `-max_retries` - Max retries + (descending)\\n* `policy` - Policy\\n* `-policy` - Policy (descending)\\n* + `total_timeout` - Total timeout\\n* `-total_timeout` - Total timeout (descending)\\n* + `connect_timeout` - Connect timeout\\n* `-connect_timeout` - Connect timeout + (descending)\\n* `sock_connect_timeout` - Sock connect timeout\\n* `-sock_connect_timeout` + - Sock connect timeout (descending)\\n* `sock_read_timeout` - Sock read timeout\\n* + `-sock_read_timeout` - Sock read timeout (descending)\\n* `headers` - Headers\\n* + `-headers` - Headers (descending)\\n* `rate_limit` - Rate limit\\n* `-rate_limit` + - Rate limit (descending)\\n* `requirements_file` - Requirements file\\n* + `-requirements_file` - Requirements file (descending)\\n* `auth_url` - Auth + url\\n* `-auth_url` - Auth url (descending)\\n* `token` - Token\\n* `-token` + - Token (descending)\\n* `sync_dependencies` - Sync dependencies\\n* `-sync_dependencies` + - Sync dependencies (descending)\\n* `signed_only` - Signed only\\n* `-signed_only` + - Signed only (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_label_select\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter labels by search string\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"remote\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"uuid\"\n },\n \"description\": - \"Foreign Key referenced by HREF\"\n },\n {\n + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gt\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__lte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than or equal to value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_last_updated is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"q\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"url\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where url matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"url__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where url contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"url__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where url contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"url__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where url is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repositories: - Rpm\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ ],\n \"tags\": [\n \"Remotes: + Collection\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Paginatedrpm.RpmRepositoryResponseList\"\n + {\n \"$ref\": \"#/components/schemas/Paginatedansible.CollectionRemoteResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"post\": {\n \"operationId\": - \"repositories_rpm_rpm_create\",\n \"description\": \"A ViewSet - for RpmRepository.\",\n \"summary\": \"Create a rpm repository\",\n - \ \"tags\": [\n \"Repositories: Rpm\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmRepository\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": + \"remotes_ansible_collection_create\",\n \"description\": \"ViewSet + for Collection Remotes.\",\n \"summary\": \"Create a collection + remote\",\n \"tags\": [\n \"Remotes: Collection\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ansible.CollectionRemote\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmRepository\"\n }\n + \"#/components/schemas/ansible.CollectionRemote\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmRepository\"\n }\n + \"#/components/schemas/ansible.CollectionRemote\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/rpm.RpmRepositoryResponse\"\n + {\n \"$ref\": \"#/components/schemas/ansible.CollectionRemoteResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{rpm_rpm_repository_href}\": {\n \"get\": - {\n \"operationId\": \"repositories_rpm_rpm_read\",\n \"description\": - \"A ViewSet for RpmRepository.\",\n \"summary\": \"Inspect - a rpm repository\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"rpm_rpm_repository_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Repositories: Rpm\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmRepositoryResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"repositories_rpm_rpm_update\",\n \"description\": - \"Trigger an asynchronous update task\",\n \"summary\": \"Update - a rpm repository\",\n \"parameters\": [\n {\n + \ }\n },\n \"{ansible_collection_remote_href}\": {\n + \ \"get\": {\n \"operationId\": \"remotes_ansible_collection_read\",\n + \ \"description\": \"ViewSet for Collection Remotes.\",\n \"summary\": + \"Inspect a collection remote\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"rpm_rpm_repository_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Repositories: Rpm\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmRepository\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": + \"ansible_collection_remote_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Collection\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ansible.CollectionRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"remotes_ansible_collection_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a collection remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_collection_remote_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Collection\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ansible.CollectionRemote\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmRepository\"\n }\n + \"#/components/schemas/ansible.CollectionRemote\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/rpm.RpmRepository\"\n }\n + \"#/components/schemas/ansible.CollectionRemote\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"patch\": {\n \"operationId\": - \"repositories_rpm_rpm_partial_update\",\n \"description\": + \"remotes_ansible_collection_partial_update\",\n \"description\": \"Trigger an asynchronous partial update task\",\n \"summary\": - \"Update a rpm repository\",\n \"parameters\": [\n {\n + \"Update a collection remote\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"rpm_rpm_repository_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Repositories: Rpm\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedrpm.RpmRepository\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": + \"ansible_collection_remote_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Collection\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Patchedansible.CollectionRemote\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedrpm.RpmRepository\"\n }\n + \"#/components/schemas/Patchedansible.CollectionRemote\"\n }\n \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Patchedrpm.RpmRepository\"\n }\n + \"#/components/schemas/Patchedansible.CollectionRemote\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"delete\": {\n \"operationId\": - \"repositories_rpm_rpm_delete\",\n \"description\": \"Trigger - an asynchronous delete task\",\n \"summary\": \"Delete a rpm - repository\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"rpm_rpm_repository_href\",\n \"schema\": {\n \"type\": + \"remotes_ansible_collection_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a collection + remote\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_collection_remote_href\",\n + \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Repositories: Rpm\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n \"Remotes: Collection\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{rpm_rpm_repository_href}modify/\": {\n \"post\": {\n - \ \"operationId\": \"repositories_rpm_rpm_modify\",\n \"description\": - \"Trigger an asynchronous task to create a new repository version.\",\n \"summary\": - \"Modify Repository Content\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"rpm_rpm_repository_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Repositories: Rpm\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n - \ },\n \"multipart/form-data\": + \ \"{ansible_collection_remote_href}add_role/\": {\n \"post\": + {\n \"operationId\": \"remotes_ansible_collection_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_collection_remote_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Collection\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{ansible_collection_remote_href}list_roles/\": {\n \"get\": + {\n \"operationId\": \"remotes_ansible_collection_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_collection_remote_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Collection\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{rpm_rpm_repository_href}sync/\": {\n - \ \"post\": {\n \"operationId\": \"repositories_rpm_rpm_sync\",\n - \ \"description\": \"Trigger an asynchronous task to sync RPM - content.\",\n \"summary\": \"Sync from remote\",\n \"parameters\": + \ }\n },\n \"{ansible_collection_remote_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"remotes_ansible_collection_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_collection_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Collection\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_collection_remote_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"remotes_ansible_collection_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": - \"rpm_rpm_repository_href\",\n \"schema\": {\n \"type\": + \"ansible_collection_remote_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Collection\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{ansible_collection_remote_href}set_label/\": {\n \"post\": + {\n \"operationId\": \"remotes_ansible_collection_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_collection_remote_href\",\n + \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Repositories: Rpm\"\n ],\n \"requestBody\": + [\n \"Remotes: Collection\"\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RpmRepositorySyncURL\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RpmRepositorySyncURL\"\n }\n - \ },\n \"multipart/form-data\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RpmRepositorySyncURL\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{rpm_rpm_repository_href}versions/\": - {\n \"get\": {\n \"operationId\": \"repositories_rpm_rpm_versions_list\",\n - \ \"description\": \"RpmRepositoryVersion represents a single - rpm repository version.\",\n \"summary\": \"List repository - versions\",\n \"parameters\": [\n {\n \"in\": - \"query\",\n \"name\": \"content\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Content Unit referenced by HREF\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"content__in\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Content Unit referenced by HREF\"\n - \ },\n {\n \"name\": + \ }\n },\n \"{ansible_collection_remote_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"remotes_ansible_collection_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_collection_remote_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Collection\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabelResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/remotes/ansible/git/\": {\n \"get\": {\n + \ \"operationId\": \"remotes_ansible_git_list\",\n \"description\": + \"ViewSet for Ansible Remotes.\\n\\nThis is a tech preview feature. The functionality + may change in the future.\",\n \"summary\": \"List git remotes\",\n + \ \"parameters\": [\n {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"number\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"number__gt\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is greater than value\"\n },\n + \"name__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"number__gte\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is greater than or equal to value\"\n },\n + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"number__lt\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is less than value\"\n },\n + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"number__lte\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is less than or equal to value\"\n },\n + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"number__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"integer\"\n }\n },\n \"description\": - \"Filter results where number is between two comma separated values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n \ {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": @@ -18561,616 +19809,15507 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-added_memberships\",\n \"-base_version\",\n - \ \"-complete\",\n \"-counts\",\n - \ \"-distribution\",\n \"-download_logs\",\n - \ \"-group_roles\",\n \"-info\",\n - \ \"-number\",\n \"-pk\",\n - \ \"-publication\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-removed_memberships\",\n - \ \"-repository\",\n \"-user_roles\",\n - \ \"-versions\",\n \"added_memberships\",\n - \ \"base_version\",\n \"complete\",\n - \ \"counts\",\n \"distribution\",\n - \ \"download_logs\",\n \"group_roles\",\n - \ \"info\",\n \"number\",\n - \ \"pk\",\n \"publication\",\n + [\n \"-ca_cert\",\n \"-client_cert\",\n + \ \"-client_key\",\n \"-connect_timeout\",\n + \ \"-download_concurrency\",\n \"-headers\",\n + \ \"-max_retries\",\n \"-name\",\n + \ \"-password\",\n \"-pk\",\n + \ \"-policy\",\n \"-proxy_password\",\n + \ \"-proxy_url\",\n \"-proxy_username\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-rate_limit\",\n + \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n + \ \"-tls_validation\",\n \"-total_timeout\",\n + \ \"-url\",\n \"-username\",\n + \ \"ca_cert\",\n \"client_cert\",\n + \ \"client_key\",\n \"connect_timeout\",\n + \ \"download_concurrency\",\n \"headers\",\n + \ \"max_retries\",\n \"name\",\n + \ \"password\",\n \"pk\",\n + \ \"policy\",\n \"proxy_password\",\n + \ \"proxy_url\",\n \"proxy_username\",\n \ \"pulp_created\",\n \"pulp_id\",\n \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"removed_memberships\",\n \"repository\",\n - \ \"user_roles\",\n \"versions\"\n + \ \"pulp_type\",\n \"rate_limit\",\n + \ \"sock_connect_timeout\",\n \"sock_read_timeout\",\n + \ \"tls_validation\",\n \"total_timeout\",\n + \ \"url\",\n \"username\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `url` - Url\\n* `-url` - Url + (descending)\\n* `ca_cert` - Ca cert\\n* `-ca_cert` - Ca cert (descending)\\n* + `client_cert` - Client cert\\n* `-client_cert` - Client cert (descending)\\n* + `client_key` - Client key\\n* `-client_key` - Client key (descending)\\n* + `tls_validation` - Tls validation\\n* `-tls_validation` - Tls validation (descending)\\n* + `username` - Username\\n* `-username` - Username (descending)\\n* `password` + - Password\\n* `-password` - Password (descending)\\n* `proxy_url` - Proxy + url\\n* `-proxy_url` - Proxy url (descending)\\n* `proxy_username` - Proxy + username\\n* `-proxy_username` - Proxy username (descending)\\n* `proxy_password` + - Proxy password\\n* `-proxy_password` - Proxy password (descending)\\n* `download_concurrency` + - Download concurrency\\n* `-download_concurrency` - Download concurrency + (descending)\\n* `max_retries` - Max retries\\n* `-max_retries` - Max retries + (descending)\\n* `policy` - Policy\\n* `-policy` - Policy (descending)\\n* + `total_timeout` - Total timeout\\n* `-total_timeout` - Total timeout (descending)\\n* + `connect_timeout` - Connect timeout\\n* `-connect_timeout` - Connect timeout + (descending)\\n* `sock_connect_timeout` - Sock connect timeout\\n* `-sock_connect_timeout` + - Sock connect timeout (descending)\\n* `sock_read_timeout` - Sock read timeout\\n* + `-sock_read_timeout` - Sock read timeout (descending)\\n* `headers` - Headers\\n* + `-headers` - Headers (descending)\\n* `rate_limit` - Rate limit\\n* `-rate_limit` + - Rate limit (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is greater than value\"\n },\n + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__gte\",\n \"schema\": {\n \"type\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated\",\n \"schema\": {\n \"type\": \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created + \ \"description\": \"Filter results where pulp_last_updated + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gt\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated is greater than or equal to value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_created__lt\",\n \"schema\": {\n \"type\": + \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created + \ \"description\": \"Filter results where pulp_last_updated is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is less than or equal to value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"query\",\n \"name\": \"pulp_last_updated__lte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"format\": \"date-time\"\n }\n \ },\n \"description\": \"Filter - results where pulp_created is between two comma separated values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"path\",\n \"name\": - \"rpm_rpm_repository_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": + results where pulp_last_updated is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"q\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Repositories: Rpm Versions\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Git\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedansible.GitRemoteResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{rpm_rpm_repository_version_href}\": - {\n \"get\": {\n \"operationId\": \"repositories_rpm_rpm_versions_read\",\n - \ \"description\": \"RpmRepositoryVersion represents a single - rpm repository version.\",\n \"summary\": \"Inspect a repository - version\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"rpm_rpm_repository_version_href\",\n + \ },\n \"post\": {\n \"operationId\": + \"remotes_ansible_git_create\",\n \"description\": \"ViewSet + for Ansible Remotes.\\n\\nThis is a tech preview feature. The functionality + may change in the future.\",\n \"summary\": \"Create a git + remote\",\n \"tags\": [\n \"Remotes: Git\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ansible.GitRemote\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.GitRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.GitRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ansible.GitRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_git_remote_href}\": {\n \"get\": + {\n \"operationId\": \"remotes_ansible_git_read\",\n \"description\": + \"ViewSet for Ansible Remotes.\\n\\nThis is a tech preview feature. The functionality + may change in the future.\",\n \"summary\": \"Inspect a git + remote\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_git_remote_href\",\n \ \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Repositories: Rpm Versions\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RepositoryVersionResponse\"\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Git\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ansible.GitRemoteResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"repositories_rpm_rpm_versions_delete\",\n \"description\": - \"Trigger an asynchronous task to delete a repository version.\",\n \"summary\": - \"Delete a repository version\",\n \"parameters\": [\n {\n + \ },\n \"put\": {\n \"operationId\": \"remotes_ansible_git_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a git remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_git_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Git\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.GitRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.GitRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.GitRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"remotes_ansible_git_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update a git remote\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"rpm_rpm_repository_version_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Rpm Versions\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \"ansible_git_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Git\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedansible.GitRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedansible.GitRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedansible.GitRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{rpm_rpm_repository_version_href}repair/\": - {\n \"post\": {\n \"operationId\": \"repositories_rpm_rpm_versions_repair\",\n - \ \"description\": \"Trigger an asynchronous task to repair - a repository version.\",\n \"parameters\": [\n {\n + \ },\n \"delete\": {\n \"operationId\": + \"remotes_ansible_git_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a git + remote\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_git_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Git\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{ansible_git_remote_href}add_role/\": {\n \"post\": {\n + \ \"operationId\": \"remotes_ansible_git_add_role\",\n \"description\": + \"Add a role for this object to users/groups.\",\n \"summary\": + \"Add a role\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ansible_git_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Git\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_git_remote_href}list_roles/\": + {\n \"get\": {\n \"operationId\": \"remotes_ansible_git_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_git_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Git\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_git_remote_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"remotes_ansible_git_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_git_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Git\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_git_remote_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"remotes_ansible_git_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_git_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Git\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_git_remote_href}set_label/\": + {\n \"post\": {\n \"operationId\": \"remotes_ansible_git_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_git_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Git\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_git_remote_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"remotes_ansible_git_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_git_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Git\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/remotes/ansible/role/\": + {\n \"get\": {\n \"operationId\": \"remotes_ansible_role_list\",\n + \ \"description\": \"ViewSet for Role Remotes.\",\n \"summary\": + \"List role remotes\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-ca_cert\",\n \"-client_cert\",\n + \ \"-client_key\",\n \"-connect_timeout\",\n + \ \"-download_concurrency\",\n \"-headers\",\n + \ \"-max_retries\",\n \"-name\",\n + \ \"-password\",\n \"-pk\",\n + \ \"-policy\",\n \"-proxy_password\",\n + \ \"-proxy_url\",\n \"-proxy_username\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-rate_limit\",\n + \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n + \ \"-tls_validation\",\n \"-total_timeout\",\n + \ \"-url\",\n \"-username\",\n + \ \"ca_cert\",\n \"client_cert\",\n + \ \"client_key\",\n \"connect_timeout\",\n + \ \"download_concurrency\",\n \"headers\",\n + \ \"max_retries\",\n \"name\",\n + \ \"password\",\n \"pk\",\n + \ \"policy\",\n \"proxy_password\",\n + \ \"proxy_url\",\n \"proxy_username\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_labels\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"rate_limit\",\n + \ \"sock_connect_timeout\",\n \"sock_read_timeout\",\n + \ \"tls_validation\",\n \"total_timeout\",\n + \ \"url\",\n \"username\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `url` - Url\\n* `-url` - Url + (descending)\\n* `ca_cert` - Ca cert\\n* `-ca_cert` - Ca cert (descending)\\n* + `client_cert` - Client cert\\n* `-client_cert` - Client cert (descending)\\n* + `client_key` - Client key\\n* `-client_key` - Client key (descending)\\n* + `tls_validation` - Tls validation\\n* `-tls_validation` - Tls validation (descending)\\n* + `username` - Username\\n* `-username` - Username (descending)\\n* `password` + - Password\\n* `-password` - Password (descending)\\n* `proxy_url` - Proxy + url\\n* `-proxy_url` - Proxy url (descending)\\n* `proxy_username` - Proxy + username\\n* `-proxy_username` - Proxy username (descending)\\n* `proxy_password` + - Proxy password\\n* `-proxy_password` - Proxy password (descending)\\n* `download_concurrency` + - Download concurrency\\n* `-download_concurrency` - Download concurrency + (descending)\\n* `max_retries` - Max retries\\n* `-max_retries` - Max retries + (descending)\\n* `policy` - Policy\\n* `-policy` - Policy (descending)\\n* + `total_timeout` - Total timeout\\n* `-total_timeout` - Total timeout (descending)\\n* + `connect_timeout` - Connect timeout\\n* `-connect_timeout` - Connect timeout + (descending)\\n* `sock_connect_timeout` - Sock connect timeout\\n* `-sock_connect_timeout` + - Sock connect timeout (descending)\\n* `sock_read_timeout` - Sock read timeout\\n* + `-sock_read_timeout` - Sock read timeout (descending)\\n* `headers` - Headers\\n* + `-headers` - Headers (descending)\\n* `rate_limit` - Rate limit\\n* `-rate_limit` + - Rate limit (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gt\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__lte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_last_updated is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"q\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Role\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedansible.RoleRemoteResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"remotes_ansible_role_create\",\n \"description\": \"ViewSet + for Role Remotes.\",\n \"summary\": \"Create a role remote\",\n + \ \"tags\": [\n \"Remotes: Role\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.RoleRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.RoleRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.RoleRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ansible.RoleRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_role_remote_href}\": {\n \"get\": + {\n \"operationId\": \"remotes_ansible_role_read\",\n \"description\": + \"ViewSet for Role Remotes.\",\n \"summary\": \"Inspect a role + remote\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_role_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Role\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ansible.RoleRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"remotes_ansible_role_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a role remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_role_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Role\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.RoleRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.RoleRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.RoleRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"remotes_ansible_role_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update a role remote\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ansible_role_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Role\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedansible.RoleRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedansible.RoleRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedansible.RoleRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"remotes_ansible_role_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a role + remote\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_role_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Role\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{ansible_role_remote_href}add_role/\": {\n \"post\": + {\n \"operationId\": \"remotes_ansible_role_add_role\",\n \"description\": + \"Add a role for this object to users/groups.\",\n \"summary\": + \"Add a role\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ansible_role_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Role\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_role_remote_href}list_roles/\": + {\n \"get\": {\n \"operationId\": \"remotes_ansible_role_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_role_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Role\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_role_remote_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"remotes_ansible_role_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_role_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Role\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_role_remote_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"remotes_ansible_role_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_role_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Role\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_role_remote_href}set_label/\": + {\n \"post\": {\n \"operationId\": \"remotes_ansible_role_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_role_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Role\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_role_remote_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"remotes_ansible_role_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_role_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Role\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/remotes/container/container/\": + {\n \"get\": {\n \"operationId\": \"remotes_container_container_list\",\n + \ \"description\": \"Container remotes represent an external + repository that implements the Container\\nRegistry API. Container remotes + support deferred downloading by configuring\\nthe ``policy`` field. ``on_demand`` + and ``streamed`` policies can provide\\nsignificant disk space savings.\",\n + \ \"summary\": \"List container remotes\",\n \"parameters\": + [\n {\n \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-ca_cert\",\n \"-client_cert\",\n + \ \"-client_key\",\n \"-connect_timeout\",\n + \ \"-download_concurrency\",\n \"-headers\",\n + \ \"-max_retries\",\n \"-name\",\n + \ \"-password\",\n \"-pk\",\n + \ \"-policy\",\n \"-proxy_password\",\n + \ \"-proxy_url\",\n \"-proxy_username\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-rate_limit\",\n + \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n + \ \"-tls_validation\",\n \"-total_timeout\",\n + \ \"-url\",\n \"-username\",\n + \ \"ca_cert\",\n \"client_cert\",\n + \ \"client_key\",\n \"connect_timeout\",\n + \ \"download_concurrency\",\n \"headers\",\n + \ \"max_retries\",\n \"name\",\n + \ \"password\",\n \"pk\",\n + \ \"policy\",\n \"proxy_password\",\n + \ \"proxy_url\",\n \"proxy_username\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_labels\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"rate_limit\",\n + \ \"sock_connect_timeout\",\n \"sock_read_timeout\",\n + \ \"tls_validation\",\n \"total_timeout\",\n + \ \"url\",\n \"username\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `url` - Url\\n* `-url` - Url + (descending)\\n* `ca_cert` - Ca cert\\n* `-ca_cert` - Ca cert (descending)\\n* + `client_cert` - Client cert\\n* `-client_cert` - Client cert (descending)\\n* + `client_key` - Client key\\n* `-client_key` - Client key (descending)\\n* + `tls_validation` - Tls validation\\n* `-tls_validation` - Tls validation (descending)\\n* + `username` - Username\\n* `-username` - Username (descending)\\n* `password` + - Password\\n* `-password` - Password (descending)\\n* `proxy_url` - Proxy + url\\n* `-proxy_url` - Proxy url (descending)\\n* `proxy_username` - Proxy + username\\n* `-proxy_username` - Proxy username (descending)\\n* `proxy_password` + - Proxy password\\n* `-proxy_password` - Proxy password (descending)\\n* `download_concurrency` + - Download concurrency\\n* `-download_concurrency` - Download concurrency + (descending)\\n* `max_retries` - Max retries\\n* `-max_retries` - Max retries + (descending)\\n* `policy` - Policy\\n* `-policy` - Policy (descending)\\n* + `total_timeout` - Total timeout\\n* `-total_timeout` - Total timeout (descending)\\n* + `connect_timeout` - Connect timeout\\n* `-connect_timeout` - Connect timeout + (descending)\\n* `sock_connect_timeout` - Sock connect timeout\\n* `-sock_connect_timeout` + - Sock connect timeout (descending)\\n* `sock_read_timeout` - Sock read timeout\\n* + `-sock_read_timeout` - Sock read timeout (descending)\\n* `headers` - Headers\\n* + `-headers` - Headers (descending)\\n* `rate_limit` - Rate limit\\n* `-rate_limit` + - Rate limit (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gt\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__lte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_last_updated is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"q\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Container\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedcontainer.ContainerRemoteResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"remotes_container_container_create\",\n \"description\": + \"Container remotes represent an external repository that implements the Container\\nRegistry + API. Container remotes support deferred downloading by configuring\\nthe ``policy`` + field. ``on_demand`` and ``streamed`` policies can provide\\nsignificant + disk space savings.\",\n \"summary\": \"Create a container + remote\",\n \"tags\": [\n \"Remotes: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/container.ContainerRemote\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/container.ContainerRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/container.ContainerRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/container.ContainerRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_remote_href}\": + {\n \"get\": {\n \"operationId\": \"remotes_container_container_read\",\n + \ \"description\": \"Container remotes represent an external + repository that implements the Container\\nRegistry API. Container remotes + support deferred downloading by configuring\\nthe ``policy`` field. ``on_demand`` + and ``streamed`` policies can provide\\nsignificant disk space savings.\",\n + \ \"summary\": \"Inspect a container remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Container\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/container.ContainerRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"remotes_container_container_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a container remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/container.ContainerRemote\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/container.ContainerRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/container.ContainerRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"remotes_container_container_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update a container remote\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"container_container_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Patchedcontainer.ContainerRemote\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedcontainer.ContainerRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedcontainer.ContainerRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"remotes_container_container_delete\",\n \"description\": + \"Trigger an asynchronous delete task\",\n \"summary\": \"Delete + a container remote\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"container_container_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Container\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_remote_href}add_role/\": + {\n \"post\": {\n \"operationId\": \"remotes_container_container_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_remote_href}list_roles/\": {\n \"get\": + {\n \"operationId\": \"remotes_container_container_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Container\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_remote_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"remotes_container_container_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Container\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_remote_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"remotes_container_container_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_remote_href}set_label/\": {\n \"post\": + {\n \"operationId\": \"remotes_container_container_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Container\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_remote_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"remotes_container_container_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabelResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/remotes/container/pull-through/\": {\n \"get\": + {\n \"operationId\": \"remotes_container_pull_through_list\",\n + \ \"description\": \"A Container Remote referencing a remote + registry used as a source for the pull-through caching.\",\n \"summary\": + \"List container pull through remotes\",\n \"parameters\": + [\n {\n \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-ca_cert\",\n \"-client_cert\",\n + \ \"-client_key\",\n \"-connect_timeout\",\n + \ \"-download_concurrency\",\n \"-headers\",\n + \ \"-max_retries\",\n \"-name\",\n + \ \"-password\",\n \"-pk\",\n + \ \"-policy\",\n \"-proxy_password\",\n + \ \"-proxy_url\",\n \"-proxy_username\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-rate_limit\",\n + \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n + \ \"-tls_validation\",\n \"-total_timeout\",\n + \ \"-url\",\n \"-username\",\n + \ \"ca_cert\",\n \"client_cert\",\n + \ \"client_key\",\n \"connect_timeout\",\n + \ \"download_concurrency\",\n \"headers\",\n + \ \"max_retries\",\n \"name\",\n + \ \"password\",\n \"pk\",\n + \ \"policy\",\n \"proxy_password\",\n + \ \"proxy_url\",\n \"proxy_username\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_labels\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"rate_limit\",\n + \ \"sock_connect_timeout\",\n \"sock_read_timeout\",\n + \ \"tls_validation\",\n \"total_timeout\",\n + \ \"url\",\n \"username\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `url` - Url\\n* `-url` - Url + (descending)\\n* `ca_cert` - Ca cert\\n* `-ca_cert` - Ca cert (descending)\\n* + `client_cert` - Client cert\\n* `-client_cert` - Client cert (descending)\\n* + `client_key` - Client key\\n* `-client_key` - Client key (descending)\\n* + `tls_validation` - Tls validation\\n* `-tls_validation` - Tls validation (descending)\\n* + `username` - Username\\n* `-username` - Username (descending)\\n* `password` + - Password\\n* `-password` - Password (descending)\\n* `proxy_url` - Proxy + url\\n* `-proxy_url` - Proxy url (descending)\\n* `proxy_username` - Proxy + username\\n* `-proxy_username` - Proxy username (descending)\\n* `proxy_password` + - Proxy password\\n* `-proxy_password` - Proxy password (descending)\\n* `download_concurrency` + - Download concurrency\\n* `-download_concurrency` - Download concurrency + (descending)\\n* `max_retries` - Max retries\\n* `-max_retries` - Max retries + (descending)\\n* `policy` - Policy\\n* `-policy` - Policy (descending)\\n* + `total_timeout` - Total timeout\\n* `-total_timeout` - Total timeout (descending)\\n* + `connect_timeout` - Connect timeout\\n* `-connect_timeout` - Connect timeout + (descending)\\n* `sock_connect_timeout` - Sock connect timeout\\n* `-sock_connect_timeout` + - Sock connect timeout (descending)\\n* `sock_read_timeout` - Sock read timeout\\n* + `-sock_read_timeout` - Sock read timeout (descending)\\n* `headers` - Headers\\n* + `-headers` - Headers (descending)\\n* `rate_limit` - Rate limit\\n* `-rate_limit` + - Rate limit (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gt\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__lte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_last_updated is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"q\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Pull-Through\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedcontainer.ContainerPullThroughRemoteResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"remotes_container_pull_through_create\",\n \"description\": + \"A Container Remote referencing a remote registry used as a source for the + pull-through caching.\",\n \"summary\": \"Create a container + pull through remote\",\n \"tags\": [\n \"Remotes: + Pull-Through\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/container.ContainerPullThroughRemote\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/container.ContainerPullThroughRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/container.ContainerPullThroughRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/container.ContainerPullThroughRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_pull_through_remote_href}\": + {\n \"get\": {\n \"operationId\": \"remotes_container_pull_through_read\",\n + \ \"description\": \"A Container Remote referencing a remote + registry used as a source for the pull-through caching.\",\n \"summary\": + \"Inspect a container pull through remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_pull_through_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Pull-Through\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/container.ContainerPullThroughRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"remotes_container_pull_through_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a container pull through remote\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_pull_through_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Pull-Through\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/container.ContainerPullThroughRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/container.ContainerPullThroughRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/container.ContainerPullThroughRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"remotes_container_pull_through_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update a container pull through remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_pull_through_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Pull-Through\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Patchedcontainer.ContainerPullThroughRemote\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedcontainer.ContainerPullThroughRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedcontainer.ContainerPullThroughRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"remotes_container_pull_through_delete\",\n \"description\": + \"Trigger an asynchronous delete task\",\n \"summary\": \"Delete + a container pull through remote\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"container_container_pull_through_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Pull-Through\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_pull_through_remote_href}add_role/\": + {\n \"post\": {\n \"operationId\": \"remotes_container_pull_through_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_pull_through_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Pull-Through\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_pull_through_remote_href}list_roles/\": {\n + \ \"get\": {\n \"operationId\": \"remotes_container_pull_through_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_pull_through_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Pull-Through\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_pull_through_remote_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"remotes_container_pull_through_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_pull_through_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Pull-Through\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_pull_through_remote_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"remotes_container_pull_through_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_pull_through_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Pull-Through\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_pull_through_remote_href}set_label/\": {\n + \ \"post\": {\n \"operationId\": \"remotes_container_pull_through_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_pull_through_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Pull-Through\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_pull_through_remote_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"remotes_container_pull_through_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_pull_through_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Pull-Through\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabelResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/remotes/deb/apt/\": {\n \"get\": {\n \"operationId\": + \"remotes_deb_apt_list\",\n \"description\": \"An AptRemote + represents an external APT repository content source.\\n\\nIt contains the + location of the upstream APT repository, as well as the user options that + are\\napplied when using the remote to synchronize the upstream repository + to Pulp.\",\n \"summary\": \"List apt remotes\",\n \"parameters\": + [\n {\n \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-ca_cert\",\n \"-client_cert\",\n + \ \"-client_key\",\n \"-connect_timeout\",\n + \ \"-download_concurrency\",\n \"-headers\",\n + \ \"-max_retries\",\n \"-name\",\n + \ \"-password\",\n \"-pk\",\n + \ \"-policy\",\n \"-proxy_password\",\n + \ \"-proxy_url\",\n \"-proxy_username\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-rate_limit\",\n + \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n + \ \"-tls_validation\",\n \"-total_timeout\",\n + \ \"-url\",\n \"-username\",\n + \ \"ca_cert\",\n \"client_cert\",\n + \ \"client_key\",\n \"connect_timeout\",\n + \ \"download_concurrency\",\n \"headers\",\n + \ \"max_retries\",\n \"name\",\n + \ \"password\",\n \"pk\",\n + \ \"policy\",\n \"proxy_password\",\n + \ \"proxy_url\",\n \"proxy_username\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_labels\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"rate_limit\",\n + \ \"sock_connect_timeout\",\n \"sock_read_timeout\",\n + \ \"tls_validation\",\n \"total_timeout\",\n + \ \"url\",\n \"username\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `url` - Url\\n* `-url` - Url + (descending)\\n* `ca_cert` - Ca cert\\n* `-ca_cert` - Ca cert (descending)\\n* + `client_cert` - Client cert\\n* `-client_cert` - Client cert (descending)\\n* + `client_key` - Client key\\n* `-client_key` - Client key (descending)\\n* + `tls_validation` - Tls validation\\n* `-tls_validation` - Tls validation (descending)\\n* + `username` - Username\\n* `-username` - Username (descending)\\n* `password` + - Password\\n* `-password` - Password (descending)\\n* `proxy_url` - Proxy + url\\n* `-proxy_url` - Proxy url (descending)\\n* `proxy_username` - Proxy + username\\n* `-proxy_username` - Proxy username (descending)\\n* `proxy_password` + - Proxy password\\n* `-proxy_password` - Proxy password (descending)\\n* `download_concurrency` + - Download concurrency\\n* `-download_concurrency` - Download concurrency + (descending)\\n* `max_retries` - Max retries\\n* `-max_retries` - Max retries + (descending)\\n* `policy` - Policy\\n* `-policy` - Policy (descending)\\n* + `total_timeout` - Total timeout\\n* `-total_timeout` - Total timeout (descending)\\n* + `connect_timeout` - Connect timeout\\n* `-connect_timeout` - Connect timeout + (descending)\\n* `sock_connect_timeout` - Sock connect timeout\\n* `-sock_connect_timeout` + - Sock connect timeout (descending)\\n* `sock_read_timeout` - Sock read timeout\\n* + `-sock_read_timeout` - Sock read timeout (descending)\\n* `headers` - Headers\\n* + `-headers` - Headers (descending)\\n* `rate_limit` - Rate limit\\n* `-rate_limit` + - Rate limit (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gt\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__lte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_last_updated is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"q\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Apt\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginateddeb.AptRemoteResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"remotes_deb_apt_create\",\n \"description\": \"An AptRemote + represents an external APT repository content source.\\n\\nIt contains the + location of the upstream APT repository, as well as the user options that + are\\napplied when using the remote to synchronize the upstream repository + to Pulp.\",\n \"summary\": \"Create an apt remote\",\n \"tags\": + [\n \"Remotes: Apt\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/deb.AptRemote\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/deb.AptRemote\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/deb.AptRemote\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/deb.AptRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{deb_apt_remote_href}\": {\n \"get\": + {\n \"operationId\": \"remotes_deb_apt_read\",\n \"description\": + \"An AptRemote represents an external APT repository content source.\\n\\nIt + contains the location of the upstream APT repository, as well as the user + options that are\\napplied when using the remote to synchronize the upstream + repository to Pulp.\",\n \"summary\": \"Inspect an apt remote\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"deb_apt_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Apt\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/deb.AptRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"remotes_deb_apt_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update an apt remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"deb_apt_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Apt\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/deb.AptRemote\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/deb.AptRemote\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/deb.AptRemote\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"remotes_deb_apt_partial_update\",\n \"description\": \"Trigger + an asynchronous partial update task\",\n \"summary\": \"Update + an apt remote\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"deb_apt_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Apt\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patcheddeb.AptRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patcheddeb.AptRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patcheddeb.AptRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"remotes_deb_apt_delete\",\n \"description\": \"Trigger an + asynchronous delete task\",\n \"summary\": \"Delete an apt + remote\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"deb_apt_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Apt\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{deb_apt_remote_href}set_label/\": {\n + \ \"post\": {\n \"operationId\": \"remotes_deb_apt_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"deb_apt_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Apt\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{deb_apt_remote_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"remotes_deb_apt_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"deb_apt_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Apt\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/remotes/file/file/\": {\n + \ \"get\": {\n \"operationId\": \"remotes_file_file_list\",\n + \ \"description\": \"\\nFileRemote represents an external source + of File\\nContent. The target url of a FileRemote must contain a file manifest, + which contains the\\nmetadata for all files at the source.\",\n \"summary\": + \"List file remotes\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-ca_cert\",\n \"-client_cert\",\n + \ \"-client_key\",\n \"-connect_timeout\",\n + \ \"-download_concurrency\",\n \"-headers\",\n + \ \"-max_retries\",\n \"-name\",\n + \ \"-password\",\n \"-pk\",\n + \ \"-policy\",\n \"-proxy_password\",\n + \ \"-proxy_url\",\n \"-proxy_username\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-rate_limit\",\n + \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n + \ \"-tls_validation\",\n \"-total_timeout\",\n + \ \"-url\",\n \"-username\",\n + \ \"ca_cert\",\n \"client_cert\",\n + \ \"client_key\",\n \"connect_timeout\",\n + \ \"download_concurrency\",\n \"headers\",\n + \ \"max_retries\",\n \"name\",\n + \ \"password\",\n \"pk\",\n + \ \"policy\",\n \"proxy_password\",\n + \ \"proxy_url\",\n \"proxy_username\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_labels\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"rate_limit\",\n + \ \"sock_connect_timeout\",\n \"sock_read_timeout\",\n + \ \"tls_validation\",\n \"total_timeout\",\n + \ \"url\",\n \"username\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `url` - Url\\n* `-url` - Url + (descending)\\n* `ca_cert` - Ca cert\\n* `-ca_cert` - Ca cert (descending)\\n* + `client_cert` - Client cert\\n* `-client_cert` - Client cert (descending)\\n* + `client_key` - Client key\\n* `-client_key` - Client key (descending)\\n* + `tls_validation` - Tls validation\\n* `-tls_validation` - Tls validation (descending)\\n* + `username` - Username\\n* `-username` - Username (descending)\\n* `password` + - Password\\n* `-password` - Password (descending)\\n* `proxy_url` - Proxy + url\\n* `-proxy_url` - Proxy url (descending)\\n* `proxy_username` - Proxy + username\\n* `-proxy_username` - Proxy username (descending)\\n* `proxy_password` + - Proxy password\\n* `-proxy_password` - Proxy password (descending)\\n* `download_concurrency` + - Download concurrency\\n* `-download_concurrency` - Download concurrency + (descending)\\n* `max_retries` - Max retries\\n* `-max_retries` - Max retries + (descending)\\n* `policy` - Policy\\n* `-policy` - Policy (descending)\\n* + `total_timeout` - Total timeout\\n* `-total_timeout` - Total timeout (descending)\\n* + `connect_timeout` - Connect timeout\\n* `-connect_timeout` - Connect timeout + (descending)\\n* `sock_connect_timeout` - Sock connect timeout\\n* `-sock_connect_timeout` + - Sock connect timeout (descending)\\n* `sock_read_timeout` - Sock read timeout\\n* + `-sock_read_timeout` - Sock read timeout (descending)\\n* `headers` - Headers\\n* + `-headers` - Headers (descending)\\n* `rate_limit` - Rate limit\\n* `-rate_limit` + - Rate limit (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gt\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__lte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_last_updated is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"q\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + File\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedfile.FileRemoteResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"remotes_file_file_create\",\n \"description\": \"\\nFileRemote + represents an external source of File\\nContent. The target url of a FileRemote + must contain a file manifest, which contains the\\nmetadata for all files + at the source.\",\n \"summary\": \"Create a file remote\",\n + \ \"tags\": [\n \"Remotes: File\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/file.FileRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/file.FileRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/file.FileRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/file.FileRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_remote_href}\": {\n \"get\": + {\n \"operationId\": \"remotes_file_file_read\",\n \"description\": + \"\\nFileRemote represents an external source of File\\nContent. The target + url of a FileRemote must contain a file manifest, which contains the\\nmetadata + for all files at the source.\",\n \"summary\": \"Inspect a + file remote\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"file_file_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + File\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/file.FileRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"remotes_file_file_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a file remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"file_file_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: File\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/file.FileRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/file.FileRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/file.FileRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"remotes_file_file_partial_update\",\n \"description\": \"Trigger + an asynchronous partial update task\",\n \"summary\": \"Update + a file remote\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"file_file_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: File\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedfile.FileRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedfile.FileRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedfile.FileRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"remotes_file_file_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a file + remote\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"file_file_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: File\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{file_file_remote_href}add_role/\": {\n \"post\": {\n + \ \"operationId\": \"remotes_file_file_add_role\",\n \"description\": + \"Add a role for this object to users/groups.\",\n \"summary\": + \"Add a role\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"file_file_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: File\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_remote_href}list_roles/\": + {\n \"get\": {\n \"operationId\": \"remotes_file_file_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"file_file_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + File\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_remote_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"remotes_file_file_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"file_file_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + File\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_remote_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"remotes_file_file_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"file_file_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: File\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_remote_href}set_label/\": + {\n \"post\": {\n \"operationId\": \"remotes_file_file_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"file_file_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: File\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_remote_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"remotes_file_file_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"file_file_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: File\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/remotes/gem/gem/\": {\n + \ \"get\": {\n \"operationId\": \"remotes_gem_gem_list\",\n + \ \"description\": \"A ViewSet for GemRemote.\",\n \"summary\": + \"List gem remotes\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-ca_cert\",\n \"-client_cert\",\n + \ \"-client_key\",\n \"-connect_timeout\",\n + \ \"-download_concurrency\",\n \"-headers\",\n + \ \"-max_retries\",\n \"-name\",\n + \ \"-password\",\n \"-pk\",\n + \ \"-policy\",\n \"-proxy_password\",\n + \ \"-proxy_url\",\n \"-proxy_username\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-rate_limit\",\n + \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n + \ \"-tls_validation\",\n \"-total_timeout\",\n + \ \"-url\",\n \"-username\",\n + \ \"ca_cert\",\n \"client_cert\",\n + \ \"client_key\",\n \"connect_timeout\",\n + \ \"download_concurrency\",\n \"headers\",\n + \ \"max_retries\",\n \"name\",\n + \ \"password\",\n \"pk\",\n + \ \"policy\",\n \"proxy_password\",\n + \ \"proxy_url\",\n \"proxy_username\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_labels\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"rate_limit\",\n + \ \"sock_connect_timeout\",\n \"sock_read_timeout\",\n + \ \"tls_validation\",\n \"total_timeout\",\n + \ \"url\",\n \"username\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `url` - Url\\n* `-url` - Url + (descending)\\n* `ca_cert` - Ca cert\\n* `-ca_cert` - Ca cert (descending)\\n* + `client_cert` - Client cert\\n* `-client_cert` - Client cert (descending)\\n* + `client_key` - Client key\\n* `-client_key` - Client key (descending)\\n* + `tls_validation` - Tls validation\\n* `-tls_validation` - Tls validation (descending)\\n* + `username` - Username\\n* `-username` - Username (descending)\\n* `password` + - Password\\n* `-password` - Password (descending)\\n* `proxy_url` - Proxy + url\\n* `-proxy_url` - Proxy url (descending)\\n* `proxy_username` - Proxy + username\\n* `-proxy_username` - Proxy username (descending)\\n* `proxy_password` + - Proxy password\\n* `-proxy_password` - Proxy password (descending)\\n* `download_concurrency` + - Download concurrency\\n* `-download_concurrency` - Download concurrency + (descending)\\n* `max_retries` - Max retries\\n* `-max_retries` - Max retries + (descending)\\n* `policy` - Policy\\n* `-policy` - Policy (descending)\\n* + `total_timeout` - Total timeout\\n* `-total_timeout` - Total timeout (descending)\\n* + `connect_timeout` - Connect timeout\\n* `-connect_timeout` - Connect timeout + (descending)\\n* `sock_connect_timeout` - Sock connect timeout\\n* `-sock_connect_timeout` + - Sock connect timeout (descending)\\n* `sock_read_timeout` - Sock read timeout\\n* + `-sock_read_timeout` - Sock read timeout (descending)\\n* `headers` - Headers\\n* + `-headers` - Headers (descending)\\n* `rate_limit` - Rate limit\\n* `-rate_limit` + - Rate limit (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gt\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__lte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_last_updated is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"q\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Gem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedgem.GemRemoteResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"remotes_gem_gem_create\",\n \"description\": \"A ViewSet + for GemRemote.\",\n \"summary\": \"Create a gem remote\",\n + \ \"tags\": [\n \"Remotes: Gem\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/gem.GemRemote\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/gem.GemRemote\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/gem.GemRemote\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/gem.GemRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_remote_href}\": {\n \"get\": + {\n \"operationId\": \"remotes_gem_gem_read\",\n \"description\": + \"A ViewSet for GemRemote.\",\n \"summary\": \"Inspect a gem + remote\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"gem_gem_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Gem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/gem.GemRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"remotes_gem_gem_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a gem remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"gem_gem_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Gem\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/gem.GemRemote\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/gem.GemRemote\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/gem.GemRemote\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"remotes_gem_gem_partial_update\",\n \"description\": \"Trigger + an asynchronous partial update task\",\n \"summary\": \"Update + a gem remote\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"gem_gem_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Gem\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedgem.GemRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedgem.GemRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedgem.GemRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"remotes_gem_gem_delete\",\n \"description\": \"Trigger an + asynchronous delete task\",\n \"summary\": \"Delete a gem remote\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"gem_gem_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Gem\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_remote_href}add_role/\": {\n + \ \"post\": {\n \"operationId\": \"remotes_gem_gem_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"gem_gem_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Gem\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_remote_href}list_roles/\": {\n + \ \"get\": {\n \"operationId\": \"remotes_gem_gem_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"gem_gem_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Gem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_remote_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"remotes_gem_gem_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"gem_gem_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Gem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_remote_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"remotes_gem_gem_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"gem_gem_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Gem\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_remote_href}set_label/\": {\n + \ \"post\": {\n \"operationId\": \"remotes_gem_gem_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"gem_gem_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Gem\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_remote_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"remotes_gem_gem_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"gem_gem_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Gem\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/remotes/maven/maven/\": + {\n \"get\": {\n \"operationId\": \"remotes_maven_maven_list\",\n + \ \"description\": \"A ViewSet for MavenRemote.\",\n \"summary\": + \"List maven remotes\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-ca_cert\",\n \"-client_cert\",\n + \ \"-client_key\",\n \"-connect_timeout\",\n + \ \"-download_concurrency\",\n \"-headers\",\n + \ \"-max_retries\",\n \"-name\",\n + \ \"-password\",\n \"-pk\",\n + \ \"-policy\",\n \"-proxy_password\",\n + \ \"-proxy_url\",\n \"-proxy_username\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-rate_limit\",\n + \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n + \ \"-tls_validation\",\n \"-total_timeout\",\n + \ \"-url\",\n \"-username\",\n + \ \"ca_cert\",\n \"client_cert\",\n + \ \"client_key\",\n \"connect_timeout\",\n + \ \"download_concurrency\",\n \"headers\",\n + \ \"max_retries\",\n \"name\",\n + \ \"password\",\n \"pk\",\n + \ \"policy\",\n \"proxy_password\",\n + \ \"proxy_url\",\n \"proxy_username\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_labels\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"rate_limit\",\n + \ \"sock_connect_timeout\",\n \"sock_read_timeout\",\n + \ \"tls_validation\",\n \"total_timeout\",\n + \ \"url\",\n \"username\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `url` - Url\\n* `-url` - Url + (descending)\\n* `ca_cert` - Ca cert\\n* `-ca_cert` - Ca cert (descending)\\n* + `client_cert` - Client cert\\n* `-client_cert` - Client cert (descending)\\n* + `client_key` - Client key\\n* `-client_key` - Client key (descending)\\n* + `tls_validation` - Tls validation\\n* `-tls_validation` - Tls validation (descending)\\n* + `username` - Username\\n* `-username` - Username (descending)\\n* `password` + - Password\\n* `-password` - Password (descending)\\n* `proxy_url` - Proxy + url\\n* `-proxy_url` - Proxy url (descending)\\n* `proxy_username` - Proxy + username\\n* `-proxy_username` - Proxy username (descending)\\n* `proxy_password` + - Proxy password\\n* `-proxy_password` - Proxy password (descending)\\n* `download_concurrency` + - Download concurrency\\n* `-download_concurrency` - Download concurrency + (descending)\\n* `max_retries` - Max retries\\n* `-max_retries` - Max retries + (descending)\\n* `policy` - Policy\\n* `-policy` - Policy (descending)\\n* + `total_timeout` - Total timeout\\n* `-total_timeout` - Total timeout (descending)\\n* + `connect_timeout` - Connect timeout\\n* `-connect_timeout` - Connect timeout + (descending)\\n* `sock_connect_timeout` - Sock connect timeout\\n* `-sock_connect_timeout` + - Sock connect timeout (descending)\\n* `sock_read_timeout` - Sock read timeout\\n* + `-sock_read_timeout` - Sock read timeout (descending)\\n* `headers` - Headers\\n* + `-headers` - Headers (descending)\\n* `rate_limit` - Rate limit\\n* `-rate_limit` + - Rate limit (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gt\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__lte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_last_updated is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"q\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Maven\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedmaven.MavenRemoteResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"remotes_maven_maven_create\",\n \"description\": \"A ViewSet + for MavenRemote.\",\n \"summary\": \"Create a maven remote\",\n + \ \"tags\": [\n \"Remotes: Maven\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/maven.MavenRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/maven.MavenRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/maven.MavenRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/maven.MavenRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{maven_maven_remote_href}\": {\n \"get\": + {\n \"operationId\": \"remotes_maven_maven_read\",\n \"description\": + \"A ViewSet for MavenRemote.\",\n \"summary\": \"Inspect a + maven remote\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"maven_maven_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Maven\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/maven.MavenRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"remotes_maven_maven_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a maven remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"maven_maven_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Maven\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/maven.MavenRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/maven.MavenRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/maven.MavenRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"remotes_maven_maven_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update a maven remote\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"maven_maven_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Maven\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedmaven.MavenRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedmaven.MavenRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedmaven.MavenRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"remotes_maven_maven_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a maven + remote\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"maven_maven_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Maven\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{maven_maven_remote_href}set_label/\": {\n \"post\": + {\n \"operationId\": \"remotes_maven_maven_set_label\",\n \"description\": + \"Set a single pulp_label on the object to a specific value or null.\",\n + \ \"summary\": \"Set a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"maven_maven_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Maven\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{maven_maven_remote_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"remotes_maven_maven_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"maven_maven_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Maven\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/remotes/ostree/ostree/\": + {\n \"get\": {\n \"operationId\": \"remotes_ostree_ostree_list\",\n + \ \"description\": \"A ViewSet class for OSTree remote repositories.\",\n + \ \"summary\": \"List ostree remotes\",\n \"parameters\": + [\n {\n \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-ca_cert\",\n \"-client_cert\",\n + \ \"-client_key\",\n \"-connect_timeout\",\n + \ \"-download_concurrency\",\n \"-headers\",\n + \ \"-max_retries\",\n \"-name\",\n + \ \"-password\",\n \"-pk\",\n + \ \"-policy\",\n \"-proxy_password\",\n + \ \"-proxy_url\",\n \"-proxy_username\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-rate_limit\",\n + \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n + \ \"-tls_validation\",\n \"-total_timeout\",\n + \ \"-url\",\n \"-username\",\n + \ \"ca_cert\",\n \"client_cert\",\n + \ \"client_key\",\n \"connect_timeout\",\n + \ \"download_concurrency\",\n \"headers\",\n + \ \"max_retries\",\n \"name\",\n + \ \"password\",\n \"pk\",\n + \ \"policy\",\n \"proxy_password\",\n + \ \"proxy_url\",\n \"proxy_username\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_labels\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"rate_limit\",\n + \ \"sock_connect_timeout\",\n \"sock_read_timeout\",\n + \ \"tls_validation\",\n \"total_timeout\",\n + \ \"url\",\n \"username\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `url` - Url\\n* `-url` - Url + (descending)\\n* `ca_cert` - Ca cert\\n* `-ca_cert` - Ca cert (descending)\\n* + `client_cert` - Client cert\\n* `-client_cert` - Client cert (descending)\\n* + `client_key` - Client key\\n* `-client_key` - Client key (descending)\\n* + `tls_validation` - Tls validation\\n* `-tls_validation` - Tls validation (descending)\\n* + `username` - Username\\n* `-username` - Username (descending)\\n* `password` + - Password\\n* `-password` - Password (descending)\\n* `proxy_url` - Proxy + url\\n* `-proxy_url` - Proxy url (descending)\\n* `proxy_username` - Proxy + username\\n* `-proxy_username` - Proxy username (descending)\\n* `proxy_password` + - Proxy password\\n* `-proxy_password` - Proxy password (descending)\\n* `download_concurrency` + - Download concurrency\\n* `-download_concurrency` - Download concurrency + (descending)\\n* `max_retries` - Max retries\\n* `-max_retries` - Max retries + (descending)\\n* `policy` - Policy\\n* `-policy` - Policy (descending)\\n* + `total_timeout` - Total timeout\\n* `-total_timeout` - Total timeout (descending)\\n* + `connect_timeout` - Connect timeout\\n* `-connect_timeout` - Connect timeout + (descending)\\n* `sock_connect_timeout` - Sock connect timeout\\n* `-sock_connect_timeout` + - Sock connect timeout (descending)\\n* `sock_read_timeout` - Sock read timeout\\n* + `-sock_read_timeout` - Sock read timeout (descending)\\n* `headers` - Headers\\n* + `-headers` - Headers (descending)\\n* `rate_limit` - Rate limit\\n* `-rate_limit` + - Rate limit (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gt\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__lte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_last_updated is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"q\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Ostree\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedostree.OstreeRemoteResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"remotes_ostree_ostree_create\",\n \"description\": \"A ViewSet + class for OSTree remote repositories.\",\n \"summary\": \"Create + an ostree remote\",\n \"tags\": [\n \"Remotes: + Ostree\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ostree.OstreeRemote\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ostree.OstreeRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ostree.OstreeRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ostree.OstreeRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ostree_ostree_remote_href}\": {\n \"get\": + {\n \"operationId\": \"remotes_ostree_ostree_read\",\n \"description\": + \"A ViewSet class for OSTree remote repositories.\",\n \"summary\": + \"Inspect an ostree remote\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ostree_ostree_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Ostree\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ostree.OstreeRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"remotes_ostree_ostree_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update an ostree remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ostree_ostree_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Ostree\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ostree.OstreeRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ostree.OstreeRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ostree.OstreeRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"remotes_ostree_ostree_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update an ostree remote\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ostree_ostree_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Ostree\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedostree.OstreeRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedostree.OstreeRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedostree.OstreeRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"remotes_ostree_ostree_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete an ostree + remote\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ostree_ostree_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Ostree\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{ostree_ostree_remote_href}set_label/\": {\n \"post\": + {\n \"operationId\": \"remotes_ostree_ostree_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ostree_ostree_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Ostree\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ostree_ostree_remote_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"remotes_ostree_ostree_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ostree_ostree_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Ostree\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/remotes/python/python/\": + {\n \"get\": {\n \"operationId\": \"remotes_python_python_list\",\n + \ \"description\": \"\\nPython Remotes are representations of + an external repository of Python content, eg.\\nPyPI. Fields include upstream + repository config. Python Remotes are also used to `sync` from\\nupstream + repositories, and contains sync settings.\",\n \"summary\": + \"List python remotes\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-ca_cert\",\n \"-client_cert\",\n + \ \"-client_key\",\n \"-connect_timeout\",\n + \ \"-download_concurrency\",\n \"-headers\",\n + \ \"-max_retries\",\n \"-name\",\n + \ \"-password\",\n \"-pk\",\n + \ \"-policy\",\n \"-proxy_password\",\n + \ \"-proxy_url\",\n \"-proxy_username\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-rate_limit\",\n + \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n + \ \"-tls_validation\",\n \"-total_timeout\",\n + \ \"-url\",\n \"-username\",\n + \ \"ca_cert\",\n \"client_cert\",\n + \ \"client_key\",\n \"connect_timeout\",\n + \ \"download_concurrency\",\n \"headers\",\n + \ \"max_retries\",\n \"name\",\n + \ \"password\",\n \"pk\",\n + \ \"policy\",\n \"proxy_password\",\n + \ \"proxy_url\",\n \"proxy_username\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_labels\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"rate_limit\",\n + \ \"sock_connect_timeout\",\n \"sock_read_timeout\",\n + \ \"tls_validation\",\n \"total_timeout\",\n + \ \"url\",\n \"username\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `url` - Url\\n* `-url` - Url + (descending)\\n* `ca_cert` - Ca cert\\n* `-ca_cert` - Ca cert (descending)\\n* + `client_cert` - Client cert\\n* `-client_cert` - Client cert (descending)\\n* + `client_key` - Client key\\n* `-client_key` - Client key (descending)\\n* + `tls_validation` - Tls validation\\n* `-tls_validation` - Tls validation (descending)\\n* + `username` - Username\\n* `-username` - Username (descending)\\n* `password` + - Password\\n* `-password` - Password (descending)\\n* `proxy_url` - Proxy + url\\n* `-proxy_url` - Proxy url (descending)\\n* `proxy_username` - Proxy + username\\n* `-proxy_username` - Proxy username (descending)\\n* `proxy_password` + - Proxy password\\n* `-proxy_password` - Proxy password (descending)\\n* `download_concurrency` + - Download concurrency\\n* `-download_concurrency` - Download concurrency + (descending)\\n* `max_retries` - Max retries\\n* `-max_retries` - Max retries + (descending)\\n* `policy` - Policy\\n* `-policy` - Policy (descending)\\n* + `total_timeout` - Total timeout\\n* `-total_timeout` - Total timeout (descending)\\n* + `connect_timeout` - Connect timeout\\n* `-connect_timeout` - Connect timeout + (descending)\\n* `sock_connect_timeout` - Sock connect timeout\\n* `-sock_connect_timeout` + - Sock connect timeout (descending)\\n* `sock_read_timeout` - Sock read timeout\\n* + `-sock_read_timeout` - Sock read timeout (descending)\\n* `headers` - Headers\\n* + `-headers` - Headers (descending)\\n* `rate_limit` - Rate limit\\n* `-rate_limit` + - Rate limit (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gt\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__lte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_last_updated is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"q\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Python\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedpython.PythonRemoteResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"remotes_python_python_create\",\n \"description\": \"\\nPython + Remotes are representations of an external repository of Python content, eg.\\nPyPI. + \ Fields include upstream repository config. Python Remotes are also used + to `sync` from\\nupstream repositories, and contains sync settings.\",\n \"summary\": + \"Create a python remote\",\n \"tags\": [\n \"Remotes: + Python\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/python.PythonRemote\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/python.PythonRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/python.PythonRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/python.PythonRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{python_python_remote_href}\": {\n \"get\": + {\n \"operationId\": \"remotes_python_python_read\",\n \"description\": + \"\\nPython Remotes are representations of an external repository of Python + content, eg.\\nPyPI. Fields include upstream repository config. Python Remotes + are also used to `sync` from\\nupstream repositories, and contains sync settings.\",\n + \ \"summary\": \"Inspect a python remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"python_python_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Python\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/python.PythonRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"remotes_python_python_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a python remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"python_python_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Python\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/python.PythonRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/python.PythonRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/python.PythonRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"remotes_python_python_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update a python remote\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"python_python_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Python\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedpython.PythonRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedpython.PythonRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedpython.PythonRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"remotes_python_python_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a python + remote\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"python_python_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Python\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{python_python_remote_href}set_label/\": {\n \"post\": + {\n \"operationId\": \"remotes_python_python_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"python_python_remote_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Python\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{python_python_remote_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"remotes_python_python_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"python_python_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Python\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/remotes/python/python/from_bandersnatch/\": + {\n \"post\": {\n \"operationId\": \"remotes_python_python_from_bandersnatch\",\n + \ \"description\": \"\\nTakes the fields specified in the Bandersnatch + config and creates a Python Remote from it.\",\n \"summary\": + \"Create from Bandersnatch\",\n \"tags\": [\n \"Remotes: + Python\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PythonBanderRemote\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PythonBanderRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/python.PythonRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/remotes/rpm/rpm/\": {\n + \ \"get\": {\n \"operationId\": \"remotes_rpm_rpm_list\",\n + \ \"description\": \"A ViewSet for RpmRemote.\",\n \"summary\": + \"List rpm remotes\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-ca_cert\",\n \"-client_cert\",\n + \ \"-client_key\",\n \"-connect_timeout\",\n + \ \"-download_concurrency\",\n \"-headers\",\n + \ \"-max_retries\",\n \"-name\",\n + \ \"-password\",\n \"-pk\",\n + \ \"-policy\",\n \"-proxy_password\",\n + \ \"-proxy_url\",\n \"-proxy_username\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-rate_limit\",\n + \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n + \ \"-tls_validation\",\n \"-total_timeout\",\n + \ \"-url\",\n \"-username\",\n + \ \"ca_cert\",\n \"client_cert\",\n + \ \"client_key\",\n \"connect_timeout\",\n + \ \"download_concurrency\",\n \"headers\",\n + \ \"max_retries\",\n \"name\",\n + \ \"password\",\n \"pk\",\n + \ \"policy\",\n \"proxy_password\",\n + \ \"proxy_url\",\n \"proxy_username\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_labels\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"rate_limit\",\n + \ \"sock_connect_timeout\",\n \"sock_read_timeout\",\n + \ \"tls_validation\",\n \"total_timeout\",\n + \ \"url\",\n \"username\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `url` - Url\\n* `-url` - Url + (descending)\\n* `ca_cert` - Ca cert\\n* `-ca_cert` - Ca cert (descending)\\n* + `client_cert` - Client cert\\n* `-client_cert` - Client cert (descending)\\n* + `client_key` - Client key\\n* `-client_key` - Client key (descending)\\n* + `tls_validation` - Tls validation\\n* `-tls_validation` - Tls validation (descending)\\n* + `username` - Username\\n* `-username` - Username (descending)\\n* `password` + - Password\\n* `-password` - Password (descending)\\n* `proxy_url` - Proxy + url\\n* `-proxy_url` - Proxy url (descending)\\n* `proxy_username` - Proxy + username\\n* `-proxy_username` - Proxy username (descending)\\n* `proxy_password` + - Proxy password\\n* `-proxy_password` - Proxy password (descending)\\n* `download_concurrency` + - Download concurrency\\n* `-download_concurrency` - Download concurrency + (descending)\\n* `max_retries` - Max retries\\n* `-max_retries` - Max retries + (descending)\\n* `policy` - Policy\\n* `-policy` - Policy (descending)\\n* + `total_timeout` - Total timeout\\n* `-total_timeout` - Total timeout (descending)\\n* + `connect_timeout` - Connect timeout\\n* `-connect_timeout` - Connect timeout + (descending)\\n* `sock_connect_timeout` - Sock connect timeout\\n* `-sock_connect_timeout` + - Sock connect timeout (descending)\\n* `sock_read_timeout` - Sock read timeout\\n* + `-sock_read_timeout` - Sock read timeout (descending)\\n* `headers` - Headers\\n* + `-headers` - Headers (descending)\\n* `rate_limit` - Rate limit\\n* `-rate_limit` + - Rate limit (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gt\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__lte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_last_updated is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"q\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedrpm.RpmRemoteResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"remotes_rpm_rpm_create\",\n \"description\": \"A ViewSet + for RpmRemote.\",\n \"summary\": \"Create a rpm remote\",\n + \ \"tags\": [\n \"Remotes: Rpm\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.RpmRemote\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/rpm.RpmRemote\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.RpmRemote\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/rpm.RpmRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_remote_href}\": {\n \"get\": + {\n \"operationId\": \"remotes_rpm_rpm_read\",\n \"description\": + \"A ViewSet for RpmRemote.\",\n \"summary\": \"Inspect a rpm + remote\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_rpm_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/rpm.RpmRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"remotes_rpm_rpm_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a rpm remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Rpm\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.RpmRemote\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/rpm.RpmRemote\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.RpmRemote\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"remotes_rpm_rpm_partial_update\",\n \"description\": \"Trigger + an asynchronous partial update task\",\n \"summary\": \"Update + a rpm remote\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"rpm_rpm_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Rpm\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedrpm.RpmRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedrpm.RpmRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedrpm.RpmRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"remotes_rpm_rpm_delete\",\n \"description\": \"Trigger an + asynchronous delete task\",\n \"summary\": \"Delete a rpm remote\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_rpm_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Rpm\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_remote_href}add_role/\": {\n + \ \"post\": {\n \"operationId\": \"remotes_rpm_rpm_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Rpm\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_remote_href}list_roles/\": {\n + \ \"get\": {\n \"operationId\": \"remotes_rpm_rpm_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_remote_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"remotes_rpm_rpm_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_rpm_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_remote_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"remotes_rpm_rpm_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Rpm\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_remote_href}set_label/\": {\n + \ \"post\": {\n \"operationId\": \"remotes_rpm_rpm_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_rpm_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Rpm\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_remote_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"remotes_rpm_rpm_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Rpm\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/remotes/rpm/uln/\": {\n + \ \"get\": {\n \"operationId\": \"remotes_rpm_uln_list\",\n + \ \"description\": \"A ViewSet for UlnRemote.\",\n \"summary\": + \"List uln remotes\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-ca_cert\",\n \"-client_cert\",\n + \ \"-client_key\",\n \"-connect_timeout\",\n + \ \"-download_concurrency\",\n \"-headers\",\n + \ \"-max_retries\",\n \"-name\",\n + \ \"-password\",\n \"-pk\",\n + \ \"-policy\",\n \"-proxy_password\",\n + \ \"-proxy_url\",\n \"-proxy_username\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-rate_limit\",\n + \ \"-sock_connect_timeout\",\n \"-sock_read_timeout\",\n + \ \"-tls_validation\",\n \"-total_timeout\",\n + \ \"-url\",\n \"-username\",\n + \ \"ca_cert\",\n \"client_cert\",\n + \ \"client_key\",\n \"connect_timeout\",\n + \ \"download_concurrency\",\n \"headers\",\n + \ \"max_retries\",\n \"name\",\n + \ \"password\",\n \"pk\",\n + \ \"policy\",\n \"proxy_password\",\n + \ \"proxy_url\",\n \"proxy_username\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_labels\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"rate_limit\",\n + \ \"sock_connect_timeout\",\n \"sock_read_timeout\",\n + \ \"tls_validation\",\n \"total_timeout\",\n + \ \"url\",\n \"username\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `url` - Url\\n* `-url` - Url + (descending)\\n* `ca_cert` - Ca cert\\n* `-ca_cert` - Ca cert (descending)\\n* + `client_cert` - Client cert\\n* `-client_cert` - Client cert (descending)\\n* + `client_key` - Client key\\n* `-client_key` - Client key (descending)\\n* + `tls_validation` - Tls validation\\n* `-tls_validation` - Tls validation (descending)\\n* + `username` - Username\\n* `-username` - Username (descending)\\n* `password` + - Password\\n* `-password` - Password (descending)\\n* `proxy_url` - Proxy + url\\n* `-proxy_url` - Proxy url (descending)\\n* `proxy_username` - Proxy + username\\n* `-proxy_username` - Proxy username (descending)\\n* `proxy_password` + - Proxy password\\n* `-proxy_password` - Proxy password (descending)\\n* `download_concurrency` + - Download concurrency\\n* `-download_concurrency` - Download concurrency + (descending)\\n* `max_retries` - Max retries\\n* `-max_retries` - Max retries + (descending)\\n* `policy` - Policy\\n* `-policy` - Policy (descending)\\n* + `total_timeout` - Total timeout\\n* `-total_timeout` - Total timeout (descending)\\n* + `connect_timeout` - Connect timeout\\n* `-connect_timeout` - Connect timeout + (descending)\\n* `sock_connect_timeout` - Sock connect timeout\\n* `-sock_connect_timeout` + - Sock connect timeout (descending)\\n* `sock_read_timeout` - Sock read timeout\\n* + `-sock_read_timeout` - Sock read timeout (descending)\\n* `headers` - Headers\\n* + `-headers` - Headers (descending)\\n* `rate_limit` - Rate limit\\n* `-rate_limit` + - Rate limit (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gt\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__gte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_last_updated__lte\",\n + \ \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_last_updated + is less than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_last_updated__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_last_updated is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"q\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Uln\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedrpm.UlnRemoteResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"remotes_rpm_uln_create\",\n \"description\": \"A ViewSet + for UlnRemote.\",\n \"summary\": \"Create an uln remote\",\n + \ \"tags\": [\n \"Remotes: Uln\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.UlnRemote\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/rpm.UlnRemote\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.UlnRemote\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/rpm.UlnRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_uln_remote_href}\": {\n \"get\": + {\n \"operationId\": \"remotes_rpm_uln_read\",\n \"description\": + \"A ViewSet for UlnRemote.\",\n \"summary\": \"Inspect an uln + remote\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_uln_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Uln\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/rpm.UlnRemoteResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"remotes_rpm_uln_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update an uln remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_uln_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Uln\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.UlnRemote\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/rpm.UlnRemote\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.UlnRemote\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"remotes_rpm_uln_partial_update\",\n \"description\": \"Trigger + an asynchronous partial update task\",\n \"summary\": \"Update + an uln remote\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"rpm_uln_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Uln\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedrpm.UlnRemote\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedrpm.UlnRemote\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedrpm.UlnRemote\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"remotes_rpm_uln_delete\",\n \"description\": \"Trigger an + asynchronous delete task\",\n \"summary\": \"Delete an uln + remote\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_uln_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Uln\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_uln_remote_href}add_role/\": {\n + \ \"post\": {\n \"operationId\": \"remotes_rpm_uln_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_uln_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Uln\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_uln_remote_href}list_roles/\": {\n + \ \"get\": {\n \"operationId\": \"remotes_rpm_uln_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_uln_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Uln\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_uln_remote_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"remotes_rpm_uln_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_uln_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Remotes: + Uln\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_uln_remote_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"remotes_rpm_uln_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_uln_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Uln\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_uln_remote_href}set_label/\": {\n + \ \"post\": {\n \"operationId\": \"remotes_rpm_uln_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_uln_remote_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Remotes: Uln\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_uln_remote_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"remotes_rpm_uln_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_uln_remote_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Remotes: Uln\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/repair/\": {\n \"post\": + {\n \"operationId\": \"repair_post\",\n \"description\": + \"Trigger an asynchronous task that checks for missing or corrupted artifacts, + and attempts to redownload them.\",\n \"summary\": \"Repair + Artifact Storage\",\n \"tags\": [\n \"Repair\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Repair\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/repositories/\": {\n \"get\": {\n \"operationId\": + \"repositories_list\",\n \"description\": \"Endpoint to list + all repositories.\",\n \"summary\": \"List repositories\",\n + \ \"parameters\": [\n {\n \"in\": + \"query\",\n \"name\": \"latest_with_content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-description\",\n \"-name\",\n + \ \"-next_version\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-retain_repo_versions\",\n + \ \"-user_hidden\",\n \"description\",\n + \ \"name\",\n \"next_version\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"retain_repo_versions\",\n \"user_hidden\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `next_version` - Next version\\n* + `-next_version` - Next version (descending)\\n* `retain_repo_versions` - Retain + repo versions\\n* `-retain_repo_versions` - Retain repo versions (descending)\\n* + `user_hidden` - User hidden\\n* `-user_hidden` - User hidden (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_type\",\n \"schema\": {\n \"type\": + \"string\",\n \"enum\": [\n \"ansible.ansible\",\n + \ \"container.container\",\n \"container.container-push\",\n + \ \"deb.deb\",\n \"file.file\",\n + \ \"gem.gem\",\n \"maven.maven\",\n + \ \"ostree.ostree\",\n \"python.python\",\n + \ \"rpm.rpm\"\n ]\n + \ },\n \"description\": \"Pulp + type\\n\\n* `ansible.ansible` - ansible.ansible\\n* `container.container` + - container.container\\n* `container.container-push` - container.container-push\\n* + `deb.deb` - deb.deb\\n* `gem.gem` - gem.gem\\n* `maven.maven` - maven.maven\\n* + `ostree.ostree` - ostree.ostree\\n* `python.python` - python.python\\n* `rpm.rpm` + - rpm.rpm\\n* `file.file` - file.file\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_type__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"ansible.ansible\",\n + \ \"container.container\",\n \"container.container-push\",\n + \ \"deb.deb\",\n \"file.file\",\n + \ \"gem.gem\",\n \"maven.maven\",\n + \ \"ostree.ostree\",\n \"python.python\",\n + \ \"rpm.rpm\"\n ]\n + \ }\n },\n \"description\": + \"Multiple values may be separated by commas.\\n\\n* `ansible.ansible` - ansible.ansible\\n* + `container.container` - container.container\\n* `container.container-push` + - container.container-push\\n* `deb.deb` - deb.deb\\n* `gem.gem` - gem.gem\\n* + `maven.maven` - maven.maven\\n* `ostree.ostree` - ostree.ostree\\n* `python.python` + - python.python\\n* `rpm.rpm` - rpm.rpm\\n* `file.file` - file.file\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"remote\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Foreign Key referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__isnull\",\n + \ \"schema\": {\n \"type\": + \"boolean\"\n },\n \"description\": + \"Filter results where retain_repo_versions has a null value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__ne\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions not equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__range\",\n \"schema\": {\n + \ \"type\": \"array\",\n \"items\": + {\n \"type\": \"integer\"\n }\n + \ },\n \"description\": \"Filter + results where retain_repo_versions is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedRepositoryResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/repositories/ansible/ansible/\": + {\n \"get\": {\n \"operationId\": \"repositories_ansible_ansible_list\",\n + \ \"description\": \"ViewSet for Ansible Repositories.\",\n + \ \"summary\": \"List ansible repositorys\",\n \"parameters\": + [\n {\n \"in\": \"query\",\n \"name\": + \"latest_with_content\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-description\",\n \"-name\",\n + \ \"-next_version\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-retain_repo_versions\",\n + \ \"-user_hidden\",\n \"description\",\n + \ \"name\",\n \"next_version\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"retain_repo_versions\",\n \"user_hidden\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `next_version` - Next version\\n* + `-next_version` - Next version (descending)\\n* `retain_repo_versions` - Retain + repo versions\\n* `-retain_repo_versions` - Retain repo versions (descending)\\n* + `user_hidden` - User hidden\\n* `-user_hidden` - User hidden (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"remote\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Foreign Key referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__isnull\",\n + \ \"schema\": {\n \"type\": + \"boolean\"\n },\n \"description\": + \"Filter results where retain_repo_versions has a null value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__ne\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions not equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__range\",\n \"schema\": {\n + \ \"type\": \"array\",\n \"items\": + {\n \"type\": \"integer\"\n }\n + \ },\n \"description\": \"Filter + results where retain_repo_versions is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Ansible\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedansible.AnsibleRepositoryResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"repositories_ansible_ansible_create\",\n \"description\": + \"ViewSet for Ansible Repositories.\",\n \"summary\": \"Create + an ansible repository\",\n \"tags\": [\n \"Repositories: + Ansible\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ansible.AnsibleRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.AnsibleRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.AnsibleRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ansible.AnsibleRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_ansible_repository_href}\": + {\n \"get\": {\n \"operationId\": \"repositories_ansible_ansible_read\",\n + \ \"description\": \"ViewSet for Ansible Repositories.\",\n + \ \"summary\": \"Inspect an ansible repository\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_ansible_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Ansible\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ansible.AnsibleRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"repositories_ansible_ansible_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update an ansible repository\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_ansible_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ansible\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ansible.AnsibleRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.AnsibleRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.AnsibleRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"repositories_ansible_ansible_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update an ansible repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ansible_ansible_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ansible\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Patchedansible.AnsibleRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedansible.AnsibleRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedansible.AnsibleRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"repositories_ansible_ansible_delete\",\n \"description\": + \"Trigger an asynchronous delete task\",\n \"summary\": \"Delete + an ansible repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ansible_ansible_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ansible\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_ansible_repository_href}add_role/\": + {\n \"post\": {\n \"operationId\": \"repositories_ansible_ansible_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_ansible_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ansible\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{ansible_ansible_repository_href}copy_collection_version/\": {\n + \ \"post\": {\n \"operationId\": \"repositories_ansible_ansible_copy_collection_version\",\n + \ \"description\": \"Trigger an asynchronous task to copy collection + versions.\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_ansible_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Ansible\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CollectionVersionCopyMove\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CollectionVersionCopyMove\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CollectionVersionCopyMove\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_ansible_repository_href}list_roles/\": + {\n \"get\": {\n \"operationId\": \"repositories_ansible_ansible_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_ansible_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Ansible\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_ansible_repository_href}mark/\": + {\n \"post\": {\n \"operationId\": \"repositories_ansible_ansible_mark\",\n + \ \"description\": \"Trigger an asynchronous task to mark Ansible + content.\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_ansible_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Ansible\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AnsibleRepositoryMark\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AnsibleRepositoryMark\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AnsibleRepositoryMark\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_ansible_repository_href}modify/\": + {\n \"post\": {\n \"operationId\": \"repositories_ansible_ansible_modify\",\n + \ \"description\": \"Trigger an asynchronous task to create + a new repository version.\",\n \"summary\": \"Modify Repository + Content\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_ansible_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Ansible\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_ansible_repository_href}move_collection_version/\": + {\n \"post\": {\n \"operationId\": \"repositories_ansible_ansible_move_collection_version\",\n + \ \"description\": \"Trigger an asynchronous task to move collection + versions.\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_ansible_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Ansible\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CollectionVersionCopyMove\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CollectionVersionCopyMove\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CollectionVersionCopyMove\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_ansible_repository_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"repositories_ansible_ansible_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_ansible_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Ansible\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_ansible_repository_href}rebuild_metadata/\": + {\n \"post\": {\n \"operationId\": \"repositories_ansible_ansible_rebuild_metadata\",\n + \ \"description\": \"Trigger an asynchronous task to rebuild + Ansible content meta.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ansible_ansible_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ansible\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AnsibleRepositoryRebuild\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AnsibleRepositoryRebuild\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AnsibleRepositoryRebuild\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_ansible_repository_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"repositories_ansible_ansible_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_ansible_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ansible\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{ansible_ansible_repository_href}set_label/\": {\n \"post\": + {\n \"operationId\": \"repositories_ansible_ansible_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_ansible_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Ansible\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_ansible_repository_href}sign/\": + {\n \"post\": {\n \"operationId\": \"repositories_ansible_ansible_sign\",\n + \ \"description\": \"Trigger an asynchronous task to sign Ansible + content.\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_ansible_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Ansible\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AnsibleRepositorySignature\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AnsibleRepositorySignature\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AnsibleRepositorySignature\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_ansible_repository_href}sync/\": + {\n \"post\": {\n \"operationId\": \"repositories_ansible_ansible_sync\",\n + \ \"description\": \"Trigger an asynchronous task to sync Ansible + content.\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_ansible_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Ansible\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AnsibleRepositorySyncURL\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AnsibleRepositorySyncURL\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AnsibleRepositorySyncURL\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_ansible_repository_href}unmark/\": + {\n \"post\": {\n \"operationId\": \"repositories_ansible_ansible_unmark\",\n + \ \"description\": \"Trigger an asynchronous task to unmark + Ansible content.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ansible_ansible_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ansible\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AnsibleRepositoryMark\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AnsibleRepositoryMark\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AnsibleRepositoryMark\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_ansible_repository_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"repositories_ansible_ansible_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_ansible_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ansible\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabelResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{ansible_ansible_repository_href}versions/\": {\n \"get\": + {\n \"operationId\": \"repositories_ansible_ansible_versions_list\",\n + \ \"description\": \"AnsibleRepositoryVersion represents a single + file repository version.\",\n \"summary\": \"List repository + versions\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_ansible_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"content__in\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is greater than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"integer\"\n }\n },\n \"description\": + \"Filter results where number is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-complete\",\n \"-info\",\n + \ \"-number\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"complete\",\n + \ \"info\",\n \"number\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `number` - Number\\n* `-number` - Number (descending)\\n* `complete` - Complete\\n* + `-complete` - Complete (descending)\\n* `info` - Info\\n* `-info` - Info (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__gte\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_created__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_created is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Ansible Versions\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{ansible_ansible_repository_version_href}\": {\n \"get\": + {\n \"operationId\": \"repositories_ansible_ansible_versions_read\",\n + \ \"description\": \"AnsibleRepositoryVersion represents a single + file repository version.\",\n \"summary\": \"Inspect a repository + version\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_ansible_repository_version_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Ansible Versions\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryVersionResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n },\n \"delete\": + {\n \"operationId\": \"repositories_ansible_ansible_versions_delete\",\n + \ \"description\": \"Trigger an asynchronous task to delete + a repository version.\",\n \"summary\": \"Delete a repository + version\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_ansible_repository_version_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Ansible Versions\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_ansible_repository_version_href}rebuild_metadata/\": + {\n \"post\": {\n \"operationId\": \"repositories_ansible_ansible_versions_rebuild_metadata\",\n + \ \"description\": \"Trigger an asynchronous task to rebuild + Ansible content meta.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ansible_ansible_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ansible Versions\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AnsibleRepositoryRebuild\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AnsibleRepositoryRebuild\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AnsibleRepositoryRebuild\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_ansible_repository_version_href}repair/\": + {\n \"post\": {\n \"operationId\": \"repositories_ansible_ansible_versions_repair\",\n + \ \"description\": \"Trigger an asynchronous task to repair + a repository version.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ansible_ansible_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ansible Versions\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Repair\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/repositories/container/container/\": {\n \"get\": + {\n \"operationId\": \"repositories_container_container_list\",\n + \ \"description\": \"ViewSet for container repo.\",\n \"summary\": + \"List container repositorys\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"latest_with_content\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-description\",\n \"-name\",\n + \ \"-next_version\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-retain_repo_versions\",\n + \ \"-user_hidden\",\n \"description\",\n + \ \"name\",\n \"next_version\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"retain_repo_versions\",\n \"user_hidden\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `next_version` - Next version\\n* + `-next_version` - Next version (descending)\\n* `retain_repo_versions` - Retain + repo versions\\n* `-retain_repo_versions` - Retain repo versions (descending)\\n* + `user_hidden` - User hidden\\n* `-user_hidden` - User hidden (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"remote\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Foreign Key referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__isnull\",\n + \ \"schema\": {\n \"type\": + \"boolean\"\n },\n \"description\": + \"Filter results where retain_repo_versions has a null value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__ne\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions not equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__range\",\n \"schema\": {\n + \ \"type\": \"array\",\n \"items\": + {\n \"type\": \"integer\"\n }\n + \ },\n \"description\": \"Filter + results where retain_repo_versions is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Container\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedcontainer.ContainerRepositoryResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"repositories_container_container_create\",\n \"description\": + \"ViewSet for container repo.\",\n \"summary\": \"Create a + container repository\",\n \"tags\": [\n \"Repositories: + Container\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/container.ContainerRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/container.ContainerRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/container.ContainerRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/container.ContainerRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/repositories/container/container-push/\": + {\n \"get\": {\n \"operationId\": \"repositories_container_container_push_list\",\n + \ \"description\": \"ViewSet for a container push repository.\\n\\nPOST + and DELETE are disallowed because a push repository is tightly coupled with + a\\nContainerDistribution which handles it automatically.\\nCreated - during + push operation, removed - with ContainerDistribution removal.\",\n \"summary\": + \"List container push repositorys\",\n \"parameters\": [\n + \ {\n \"in\": \"query\",\n \"name\": + \"latest_with_content\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-description\",\n \"-name\",\n + \ \"-next_version\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-retain_repo_versions\",\n + \ \"-user_hidden\",\n \"description\",\n + \ \"name\",\n \"next_version\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"retain_repo_versions\",\n \"user_hidden\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `next_version` - Next version\\n* + `-next_version` - Next version (descending)\\n* `retain_repo_versions` - Retain + repo versions\\n* `-retain_repo_versions` - Retain repo versions (descending)\\n* + `user_hidden` - User hidden\\n* `-user_hidden` - User hidden (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"remote\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Foreign Key referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__isnull\",\n + \ \"schema\": {\n \"type\": + \"boolean\"\n },\n \"description\": + \"Filter results where retain_repo_versions has a null value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__ne\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions not equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__range\",\n \"schema\": {\n + \ \"type\": \"array\",\n \"items\": + {\n \"type\": \"integer\"\n }\n + \ },\n \"description\": \"Filter + results where retain_repo_versions is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Container-Push\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedcontainer.ContainerPushRepositoryResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_push_repository_href}\": + {\n \"get\": {\n \"operationId\": \"repositories_container_container_push_read\",\n + \ \"description\": \"ViewSet for a container push repository.\\n\\nPOST + and DELETE are disallowed because a push repository is tightly coupled with + a\\nContainerDistribution which handles it automatically.\\nCreated - during + push operation, removed - with ContainerDistribution removal.\",\n \"summary\": + \"Inspect a container push repository\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_push_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Container-Push\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/container.ContainerPushRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"repositories_container_container_push_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a container push repository\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_push_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container-Push\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/container.ContainerPushRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/container.ContainerPushRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/container.ContainerPushRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"repositories_container_container_push_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update a container push repository\",\n \"parameters\": [\n + \ {\n \"in\": \"path\",\n \"name\": + \"container_container_push_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container-Push\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Patchedcontainer.ContainerPushRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedcontainer.ContainerPushRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedcontainer.ContainerPushRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_push_repository_href}add_role/\": + {\n \"post\": {\n \"operationId\": \"repositories_container_container_push_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_push_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container-Push\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_push_repository_href}list_roles/\": {\n \"get\": + {\n \"operationId\": \"repositories_container_container_push_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_push_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Container-Push\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_push_repository_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"repositories_container_container_push_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_push_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Container-Push\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_push_repository_href}remove_image/\": + {\n \"post\": {\n \"operationId\": \"repositories_container_container_push_remove_image\",\n + \ \"description\": \"Trigger an asynchronous task to remove + a manifest and all its associated data by a digest\",\n \"summary\": + \"Delete an image from a repository\",\n \"parameters\": [\n + \ {\n \"in\": \"path\",\n \"name\": + \"container_container_push_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container-Push\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RemoveImage\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RemoveImage\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RemoveImage\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_push_repository_href}remove_role/\": {\n \"post\": + {\n \"operationId\": \"repositories_container_container_push_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_push_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container-Push\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_push_repository_href}remove_signatures/\": + {\n \"post\": {\n \"operationId\": \"repositories_container_container_push_remove_signatures\",\n + \ \"description\": \"Create a task which deletes signatures + by the passed key_id.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"container_container_push_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container-Push\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RemoveSignatures\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RemoveSignatures\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RemoveSignatures\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RemoveSignaturesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_push_repository_href}sign/\": + {\n \"post\": {\n \"operationId\": \"repositories_container_container_push_sign\",\n + \ \"description\": \"Trigger an asynchronous task to sign content.\",\n + \ \"summary\": \"Sign images in the repo\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_push_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container-Push\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RepositorySign\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositorySign\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RepositorySign\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_push_repository_href}tag/\": {\n \"post\": + {\n \"operationId\": \"repositories_container_container_push_tag\",\n + \ \"description\": \"Trigger an asynchronous task to tag an + image in the repository\",\n \"summary\": \"Create a Tag\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_push_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Container-Push\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/TagImage\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/TagImage\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/TagImage\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_push_repository_href}untag/\": + {\n \"post\": {\n \"operationId\": \"repositories_container_container_push_untag\",\n + \ \"description\": \"Trigger an asynchronous task to untag an + image in the repository\",\n \"summary\": \"Delete a tag\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_push_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Container-Push\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnTagImage\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnTagImage\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnTagImage\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_push_repository_href}versions/\": + {\n \"get\": {\n \"operationId\": \"repositories_container_container_push_versions_list\",\n + \ \"description\": \"ContainerPushRepositoryVersion represents + a single container push repository version.\\n\\nRepository versions of a + push repository are not allowed to be deleted. Versioning of such\\nrepositories, + as well as creation/removal, happens automatically without explicit user actions.\\nUsers + could make a repository not functional by accident if allowed to delete repository\\nversions.\",\n + \ \"summary\": \"List repository versions\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_push_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"content\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"content__in\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"number\",\n \"schema\": + {\n \"type\": \"integer\"\n },\n + \ \"description\": \"Filter results where number matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"number__gt\",\n \"schema\": + {\n \"type\": \"integer\"\n },\n + \ \"description\": \"Filter results where number is + greater than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"number__gte\",\n \"schema\": + {\n \"type\": \"integer\"\n },\n + \ \"description\": \"Filter results where number is + greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"integer\"\n }\n },\n \"description\": + \"Filter results where number is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-complete\",\n \"-info\",\n + \ \"-number\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"complete\",\n + \ \"info\",\n \"number\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `number` - Number\\n* `-number` - Number (descending)\\n* `complete` - Complete\\n* + `-complete` - Complete (descending)\\n* `info` - Info\\n* `-info` - Info (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__gte\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_created__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_created is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Container-Push Versions\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_push_repository_version_href}\": {\n \"get\": + {\n \"operationId\": \"repositories_container_container_push_versions_read\",\n + \ \"description\": \"ContainerPushRepositoryVersion represents + a single container push repository version.\\n\\nRepository versions of a + push repository are not allowed to be deleted. Versioning of such\\nrepositories, + as well as creation/removal, happens automatically without explicit user actions.\\nUsers + could make a repository not functional by accident if allowed to delete repository\\nversions.\",\n + \ \"summary\": \"Inspect a repository version\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_push_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Container-Push Versions\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryVersionResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n },\n \"delete\": + {\n \"operationId\": \"repositories_container_container_push_versions_delete\",\n + \ \"description\": \"Trigger an asynchronous task to delete + a repository version.\",\n \"summary\": \"Delete a repository + version\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_push_repository_version_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Container-Push Versions\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_push_repository_version_href}repair/\": + {\n \"post\": {\n \"operationId\": \"repositories_container_container_push_versions_repair\",\n + \ \"description\": \"Trigger an asynchronous task to repair + a repository version.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"container_container_push_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container-Push + Versions\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Repair\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_repository_href}\": {\n \"get\": + {\n \"operationId\": \"repositories_container_container_read\",\n + \ \"description\": \"ViewSet for container repo.\",\n \"summary\": + \"Inspect a container repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"container_container_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Container\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/container.ContainerRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"repositories_container_container_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a container repository\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/container.ContainerRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/container.ContainerRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/container.ContainerRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"repositories_container_container_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update a container repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"container_container_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Patchedcontainer.ContainerRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedcontainer.ContainerRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedcontainer.ContainerRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"repositories_container_container_delete\",\n \"description\": + \"Trigger an asynchronous delete task\",\n \"summary\": \"Delete + a container repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"container_container_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_repository_href}add/\": + {\n \"post\": {\n \"operationId\": \"repositories_container_container_add\",\n + \ \"description\": \"Trigger an asynchronous task to recursively + add container content.\",\n \"summary\": \"Add content\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Container\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RecursiveManage\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RecursiveManage\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RecursiveManage\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_repository_href}add_role/\": + {\n \"post\": {\n \"operationId\": \"repositories_container_container_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_repository_href}build_image/\": {\n \"post\": + {\n \"operationId\": \"repositories_container_container_build_image\",\n + \ \"description\": \"Trigger an asynchronous task to build an + OCI image from a Containerfile. A new repository version is created with the + new image and tag. This API is in tech preview. Backwards compatibility when + upgrading is not guaranteed.\",\n \"summary\": \"Build an Image\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Container\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/OCIBuildImage\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/OCIBuildImage\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_repository_href}copy_manifests/\": {\n \"post\": + {\n \"operationId\": \"repositories_container_container_copy_manifests\",\n + \ \"description\": \"Trigger an asynchronous task to copy manifests\",\n + \ \"summary\": \"Copy manifests\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ManifestCopy\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ManifestCopy\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ManifestCopy\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_repository_href}copy_tags/\": {\n \"post\": + {\n \"operationId\": \"repositories_container_container_copy_tags\",\n + \ \"description\": \"Trigger an asynchronous task to copy tags\",\n + \ \"summary\": \"Copy tags\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/TagCopy\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/TagCopy\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/TagCopy\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_repository_href}list_roles/\": {\n \"get\": + {\n \"operationId\": \"repositories_container_container_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Container\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_repository_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"repositories_container_container_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Container\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_repository_href}remove/\": + {\n \"post\": {\n \"operationId\": \"repositories_container_container_remove\",\n + \ \"description\": \"Trigger an async task to recursively remove + container content.\",\n \"summary\": \"Remove content\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Container\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RecursiveManage\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RecursiveManage\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RecursiveManage\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_repository_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"repositories_container_container_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRoleResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_repository_href}set_label/\": {\n \"post\": + {\n \"operationId\": \"repositories_container_container_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Container\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_repository_href}sign/\": + {\n \"post\": {\n \"operationId\": \"repositories_container_container_sign\",\n + \ \"description\": \"Trigger an asynchronous task to sign content.\",\n + \ \"summary\": \"Sign images in the repo\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RepositorySign\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositorySign\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RepositorySign\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_repository_href}sync/\": {\n \"post\": + {\n \"operationId\": \"repositories_container_container_sync\",\n + \ \"description\": \"Trigger an asynchronous task to sync content.\",\n + \ \"summary\": \"Sync from a remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ContainerRepositorySyncURL\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ContainerRepositorySyncURL\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ContainerRepositorySyncURL\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_repository_href}tag/\": + {\n \"post\": {\n \"operationId\": \"repositories_container_container_tag\",\n + \ \"description\": \"Trigger an asynchronous task to tag an + image in the repository\",\n \"summary\": \"Create a Tag\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Container\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/TagImage\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/TagImage\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/TagImage\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_repository_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"repositories_container_container_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"container_container_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabelResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_repository_href}untag/\": {\n \"post\": + {\n \"operationId\": \"repositories_container_container_untag\",\n + \ \"description\": \"Trigger an asynchronous task to untag an + image in the repository\",\n \"summary\": \"Delete a tag\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Container\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnTagImage\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnTagImage\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnTagImage\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_repository_href}versions/\": + {\n \"get\": {\n \"operationId\": \"repositories_container_container_versions_list\",\n + \ \"description\": \"ContainerRepositoryVersion represents a + single container repository version.\",\n \"summary\": \"List + repository versions\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"container_container_repository_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"content\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"content__in\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"number\",\n \"schema\": + {\n \"type\": \"integer\"\n },\n + \ \"description\": \"Filter results where number matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"number__gt\",\n \"schema\": + {\n \"type\": \"integer\"\n },\n + \ \"description\": \"Filter results where number is + greater than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"number__gte\",\n \"schema\": + {\n \"type\": \"integer\"\n },\n + \ \"description\": \"Filter results where number is + greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"integer\"\n }\n },\n \"description\": + \"Filter results where number is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-complete\",\n \"-info\",\n + \ \"-number\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"complete\",\n + \ \"info\",\n \"number\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `number` - Number\\n* `-number` - Number (descending)\\n* `complete` - Complete\\n* + `-complete` - Complete (descending)\\n* `info` - Info\\n* `-info` - Info (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__gte\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_created__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_created is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Container Versions\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{container_container_repository_version_href}\": {\n \"get\": + {\n \"operationId\": \"repositories_container_container_versions_read\",\n + \ \"description\": \"ContainerRepositoryVersion represents a + single container repository version.\",\n \"summary\": \"Inspect + a repository version\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"container_container_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Container Versions\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryVersionResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n },\n \"delete\": + {\n \"operationId\": \"repositories_container_container_versions_delete\",\n + \ \"description\": \"Trigger an asynchronous task to delete + a repository version.\",\n \"summary\": \"Delete a repository + version\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"container_container_repository_version_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Container Versions\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{container_container_repository_version_href}repair/\": + {\n \"post\": {\n \"operationId\": \"repositories_container_container_versions_repair\",\n + \ \"description\": \"Trigger an asynchronous task to repair + a repository version.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"container_container_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Container + Versions\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Repair\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/repositories/deb/apt/\": {\n \"get\": {\n + \ \"operationId\": \"repositories_deb_apt_list\",\n \"description\": + \"An AptRepository is the locally stored, Pulp-internal representation of + a APT repository.\\n\\nIt may be filled with content via synchronization or + content upload to create an\\nAptRepositoryVersion.\",\n \"summary\": + \"List apt repositorys\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"latest_with_content\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-description\",\n \"-name\",\n + \ \"-next_version\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-retain_repo_versions\",\n + \ \"-user_hidden\",\n \"description\",\n + \ \"name\",\n \"next_version\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"retain_repo_versions\",\n \"user_hidden\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `next_version` - Next version\\n* + `-next_version` - Next version (descending)\\n* `retain_repo_versions` - Retain + repo versions\\n* `-retain_repo_versions` - Retain repo versions (descending)\\n* + `user_hidden` - User hidden\\n* `-user_hidden` - User hidden (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"remote\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Foreign Key referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__isnull\",\n + \ \"schema\": {\n \"type\": + \"boolean\"\n },\n \"description\": + \"Filter results where retain_repo_versions has a null value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__ne\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions not equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__range\",\n \"schema\": {\n + \ \"type\": \"array\",\n \"items\": + {\n \"type\": \"integer\"\n }\n + \ },\n \"description\": \"Filter + results where retain_repo_versions is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Apt\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginateddeb.AptRepositoryResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"repositories_deb_apt_create\",\n \"description\": \"An AptRepository + is the locally stored, Pulp-internal representation of a APT repository.\\n\\nIt + may be filled with content via synchronization or content upload to create + an\\nAptRepositoryVersion.\",\n \"summary\": \"Create an apt + repository\",\n \"tags\": [\n \"Repositories: + Apt\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/deb.AptRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/deb.AptRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/deb.AptRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/deb.AptRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{deb_apt_repository_href}\": {\n \"get\": + {\n \"operationId\": \"repositories_deb_apt_read\",\n \"description\": + \"An AptRepository is the locally stored, Pulp-internal representation of + a APT repository.\\n\\nIt may be filled with content via synchronization or + content upload to create an\\nAptRepositoryVersion.\",\n \"summary\": + \"Inspect an apt repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"deb_apt_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Apt\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/deb.AptRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"repositories_deb_apt_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update an apt repository\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"deb_apt_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Apt\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/deb.AptRepository\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/deb.AptRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/deb.AptRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"repositories_deb_apt_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update an apt repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"deb_apt_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Apt\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patcheddeb.AptRepository\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patcheddeb.AptRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patcheddeb.AptRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"repositories_deb_apt_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete an apt + repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"deb_apt_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Apt\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{deb_apt_repository_href}modify/\": {\n \"post\": {\n + \ \"operationId\": \"repositories_deb_apt_modify\",\n \"description\": + \"Trigger an asynchronous task to create a new repository version.\",\n \"summary\": + \"Modify Repository Content\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"deb_apt_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Apt\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{deb_apt_repository_href}set_label/\": + {\n \"post\": {\n \"operationId\": \"repositories_deb_apt_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"deb_apt_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Apt\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{deb_apt_repository_href}sync/\": {\n + \ \"post\": {\n \"operationId\": \"repositories_deb_apt_sync\",\n + \ \"description\": \"Trigger an asynchronous task to sync content\",\n + \ \"summary\": \"Sync from remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"deb_apt_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Apt\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AptRepositorySyncURL\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AptRepositorySyncURL\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AptRepositorySyncURL\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{deb_apt_repository_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"repositories_deb_apt_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"deb_apt_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Apt\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{deb_apt_repository_href}versions/\": + {\n \"get\": {\n \"operationId\": \"repositories_deb_apt_versions_list\",\n + \ \"description\": \"An AptRepositoryVersion represents a single + APT repository version as stored by Pulp.\\n\\nIt may be used as the basis + for the creation of Pulp distributions in order to actually serve\\nthe content + contained within the repository version.\",\n \"summary\": + \"List repository versions\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"content\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"content__in\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"deb_apt_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is greater than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"integer\"\n }\n },\n \"description\": + \"Filter results where number is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-complete\",\n \"-info\",\n + \ \"-number\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"complete\",\n + \ \"info\",\n \"number\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `number` - Number\\n* `-number` - Number (descending)\\n* `complete` - Complete\\n* + `-complete` - Complete (descending)\\n* `info` - Info\\n* `-info` - Info (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__gte\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_created__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_created is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Apt Versions\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{deb_apt_repository_version_href}\": + {\n \"get\": {\n \"operationId\": \"repositories_deb_apt_versions_read\",\n + \ \"description\": \"An AptRepositoryVersion represents a single + APT repository version as stored by Pulp.\\n\\nIt may be used as the basis + for the creation of Pulp distributions in order to actually serve\\nthe content + contained within the repository version.\",\n \"summary\": + \"Inspect a repository version\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"deb_apt_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Apt Versions\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RepositoryVersionResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"repositories_deb_apt_versions_delete\",\n \"description\": + \"Trigger an asynchronous task to delete a repository version.\",\n \"summary\": + \"Delete a repository version\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"deb_apt_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Apt Versions\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{deb_apt_repository_version_href}repair/\": + {\n \"post\": {\n \"operationId\": \"repositories_deb_apt_versions_repair\",\n + \ \"description\": \"Trigger an asynchronous task to repair + a repository version.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"deb_apt_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Apt Versions\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Repair\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/repositories/file/file/\": {\n \"get\": + {\n \"operationId\": \"repositories_file_file_list\",\n \"description\": + \"\\nFileRepository represents a single file repository, to which content + can be synced, added,\\nor removed.\",\n \"summary\": \"List + file repositorys\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"latest_with_content\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-description\",\n \"-name\",\n + \ \"-next_version\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-retain_repo_versions\",\n + \ \"-user_hidden\",\n \"description\",\n + \ \"name\",\n \"next_version\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"retain_repo_versions\",\n \"user_hidden\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `next_version` - Next version\\n* + `-next_version` - Next version (descending)\\n* `retain_repo_versions` - Retain + repo versions\\n* `-retain_repo_versions` - Retain repo versions (descending)\\n* + `user_hidden` - User hidden\\n* `-user_hidden` - User hidden (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"remote\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Foreign Key referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__isnull\",\n + \ \"schema\": {\n \"type\": + \"boolean\"\n },\n \"description\": + \"Filter results where retain_repo_versions has a null value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__ne\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions not equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__range\",\n \"schema\": {\n + \ \"type\": \"array\",\n \"items\": + {\n \"type\": \"integer\"\n }\n + \ },\n \"description\": \"Filter + results where retain_repo_versions is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + File\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedfile.FileRepositoryResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"repositories_file_file_create\",\n \"description\": \"\\nFileRepository + represents a single file repository, to which content can be synced, added,\\nor + removed.\",\n \"summary\": \"Create a file repository\",\n + \ \"tags\": [\n \"Repositories: File\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/file.FileRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/file.FileRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/file.FileRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/file.FileRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_repository_href}\": {\n \"get\": + {\n \"operationId\": \"repositories_file_file_read\",\n \"description\": + \"\\nFileRepository represents a single file repository, to which content + can be synced, added,\\nor removed.\",\n \"summary\": \"Inspect + a file repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"file_file_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + File\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/file.FileRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"repositories_file_file_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a file repository\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"file_file_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: File\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/file.FileRepository\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/file.FileRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/file.FileRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"repositories_file_file_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update a file repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"file_file_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: File\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedfile.FileRepository\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedfile.FileRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedfile.FileRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"repositories_file_file_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a file + repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"file_file_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: File\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{file_file_repository_href}add_role/\": {\n \"post\": + {\n \"operationId\": \"repositories_file_file_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"file_file_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: File\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_repository_href}list_roles/\": + {\n \"get\": {\n \"operationId\": \"repositories_file_file_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"file_file_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + File\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_repository_href}modify/\": + {\n \"post\": {\n \"operationId\": \"repositories_file_file_modify\",\n + \ \"description\": \"Trigger an asynchronous task to create + a new repository version.\",\n \"summary\": \"Modify Repository + Content\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"file_file_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: File\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_repository_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"repositories_file_file_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"file_file_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + File\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_repository_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"repositories_file_file_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"file_file_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: File\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_repository_href}set_label/\": + {\n \"post\": {\n \"operationId\": \"repositories_file_file_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"file_file_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: File\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_repository_href}sync/\": {\n + \ \"post\": {\n \"operationId\": \"repositories_file_file_sync\",\n + \ \"description\": \"Trigger an asynchronous task to sync file + content.\",\n \"summary\": \"Sync from a remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"file_file_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: File\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositorySyncURL\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositorySyncURL\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositorySyncURL\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_repository_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"repositories_file_file_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"file_file_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: File\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_repository_href}versions/\": + {\n \"get\": {\n \"operationId\": \"repositories_file_file_versions_list\",\n + \ \"description\": \"\\nFileRepositoryVersion represents a single + file repository version.\",\n \"summary\": \"List repository + versions\",\n \"parameters\": [\n {\n \"in\": + \"query\",\n \"name\": \"content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"content__in\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"path\",\n \"name\": \"file_file_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is greater than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"integer\"\n }\n },\n \"description\": + \"Filter results where number is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-complete\",\n \"-info\",\n + \ \"-number\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"complete\",\n + \ \"info\",\n \"number\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `number` - Number\\n* `-number` - Number (descending)\\n* `complete` - Complete\\n* + `-complete` - Complete (descending)\\n* `info` - Info\\n* `-info` - Info (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__gte\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_created__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_created is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + File Versions\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_repository_version_href}\": + {\n \"get\": {\n \"operationId\": \"repositories_file_file_versions_read\",\n + \ \"description\": \"\\nFileRepositoryVersion represents a single + file repository version.\",\n \"summary\": \"Inspect a repository + version\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"file_file_repository_version_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + File Versions\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RepositoryVersionResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"repositories_file_file_versions_delete\",\n \"description\": + \"Trigger an asynchronous task to delete a repository version.\",\n \"summary\": + \"Delete a repository version\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"file_file_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: File Versions\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{file_file_repository_version_href}repair/\": + {\n \"post\": {\n \"operationId\": \"repositories_file_file_versions_repair\",\n + \ \"description\": \"Trigger an asynchronous task to repair + a repository version.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"file_file_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: File Versions\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Repair\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/repositories/gem/gem/\": {\n \"get\": {\n + \ \"operationId\": \"repositories_gem_gem_list\",\n \"description\": + \"A ViewSet for GemRepository.\",\n \"summary\": \"List gem + repositorys\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"latest_with_content\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-description\",\n \"-name\",\n + \ \"-next_version\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-retain_repo_versions\",\n + \ \"-user_hidden\",\n \"description\",\n + \ \"name\",\n \"next_version\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"retain_repo_versions\",\n \"user_hidden\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `next_version` - Next version\\n* + `-next_version` - Next version (descending)\\n* `retain_repo_versions` - Retain + repo versions\\n* `-retain_repo_versions` - Retain repo versions (descending)\\n* + `user_hidden` - User hidden\\n* `-user_hidden` - User hidden (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"remote\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Foreign Key referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__isnull\",\n + \ \"schema\": {\n \"type\": + \"boolean\"\n },\n \"description\": + \"Filter results where retain_repo_versions has a null value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__ne\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions not equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__range\",\n \"schema\": {\n + \ \"type\": \"array\",\n \"items\": + {\n \"type\": \"integer\"\n }\n + \ },\n \"description\": \"Filter + results where retain_repo_versions is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Gem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedgem.GemRepositoryResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"repositories_gem_gem_create\",\n \"description\": \"A ViewSet + for GemRepository.\",\n \"summary\": \"Create a gem repository\",\n + \ \"tags\": [\n \"Repositories: Gem\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/gem.GemRepository\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/gem.GemRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/gem.GemRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/gem.GemRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_repository_href}\": {\n \"get\": + {\n \"operationId\": \"repositories_gem_gem_read\",\n \"description\": + \"A ViewSet for GemRepository.\",\n \"summary\": \"Inspect + a gem repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"gem_gem_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Gem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/gem.GemRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"repositories_gem_gem_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a gem repository\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"gem_gem_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Gem\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/gem.GemRepository\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/gem.GemRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/gem.GemRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"repositories_gem_gem_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update a gem repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"gem_gem_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Gem\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedgem.GemRepository\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedgem.GemRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedgem.GemRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"repositories_gem_gem_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a gem + repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"gem_gem_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Gem\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{gem_gem_repository_href}add_role/\": {\n \"post\": {\n + \ \"operationId\": \"repositories_gem_gem_add_role\",\n \"description\": + \"Add a role for this object to users/groups.\",\n \"summary\": + \"Add a role\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"gem_gem_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Gem\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_repository_href}list_roles/\": + {\n \"get\": {\n \"operationId\": \"repositories_gem_gem_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"gem_gem_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Gem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_repository_href}modify/\": {\n + \ \"post\": {\n \"operationId\": \"repositories_gem_gem_modify\",\n + \ \"description\": \"Trigger an asynchronous task to create + a new repository version.\",\n \"summary\": \"Modify Repository + Content\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"gem_gem_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Gem\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_repository_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"repositories_gem_gem_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"gem_gem_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Gem\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_repository_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"repositories_gem_gem_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"gem_gem_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Gem\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_repository_href}set_label/\": + {\n \"post\": {\n \"operationId\": \"repositories_gem_gem_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"gem_gem_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Gem\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_repository_href}sync/\": {\n + \ \"post\": {\n \"operationId\": \"repositories_gem_gem_sync\",\n + \ \"description\": \"Trigger an asynchronous task to sync gem + content.\",\n \"summary\": \"Sync from a remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"gem_gem_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Gem\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositorySyncURL\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositorySyncURL\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositorySyncURL\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_repository_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"repositories_gem_gem_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"gem_gem_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Gem\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_repository_href}versions/\": + {\n \"get\": {\n \"operationId\": \"repositories_gem_gem_versions_list\",\n + \ \"description\": \"A ViewSet for a GemRepositoryVersion represents + a single Gem repository version.\",\n \"summary\": \"List repository + versions\",\n \"parameters\": [\n {\n \"in\": + \"query\",\n \"name\": \"content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"content__in\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"path\",\n \"name\": \"gem_gem_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is greater than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"integer\"\n }\n },\n \"description\": + \"Filter results where number is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-complete\",\n \"-info\",\n + \ \"-number\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"complete\",\n + \ \"info\",\n \"number\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `number` - Number\\n* `-number` - Number (descending)\\n* `complete` - Complete\\n* + `-complete` - Complete (descending)\\n* `info` - Info\\n* `-info` - Info (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__gte\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_created__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_created is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Gem Versions\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_repository_version_href}\": + {\n \"get\": {\n \"operationId\": \"repositories_gem_gem_versions_read\",\n + \ \"description\": \"A ViewSet for a GemRepositoryVersion represents + a single Gem repository version.\",\n \"summary\": \"Inspect + a repository version\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"gem_gem_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Gem Versions\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RepositoryVersionResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"repositories_gem_gem_versions_delete\",\n \"description\": + \"Trigger an asynchronous task to delete a repository version.\",\n \"summary\": + \"Delete a repository version\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"gem_gem_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Gem Versions\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{gem_gem_repository_version_href}repair/\": + {\n \"post\": {\n \"operationId\": \"repositories_gem_gem_versions_repair\",\n + \ \"description\": \"Trigger an asynchronous task to repair + a repository version.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"gem_gem_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Gem Versions\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Repair\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/repositories/maven/maven/\": {\n \"get\": + {\n \"operationId\": \"repositories_maven_maven_list\",\n \"description\": + \"A ViewSet for MavenRemote.\",\n \"summary\": \"List maven + repositorys\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"latest_with_content\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-description\",\n \"-name\",\n + \ \"-next_version\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-retain_repo_versions\",\n + \ \"-user_hidden\",\n \"description\",\n + \ \"name\",\n \"next_version\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"retain_repo_versions\",\n \"user_hidden\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `next_version` - Next version\\n* + `-next_version` - Next version (descending)\\n* `retain_repo_versions` - Retain + repo versions\\n* `-retain_repo_versions` - Retain repo versions (descending)\\n* + `user_hidden` - User hidden\\n* `-user_hidden` - User hidden (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"remote\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Foreign Key referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__isnull\",\n + \ \"schema\": {\n \"type\": + \"boolean\"\n },\n \"description\": + \"Filter results where retain_repo_versions has a null value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__ne\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions not equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__range\",\n \"schema\": {\n + \ \"type\": \"array\",\n \"items\": + {\n \"type\": \"integer\"\n }\n + \ },\n \"description\": \"Filter + results where retain_repo_versions is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Maven\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedmaven.MavenRepositoryResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"repositories_maven_maven_create\",\n \"description\": \"A + ViewSet for MavenRemote.\",\n \"summary\": \"Create a maven + repository\",\n \"tags\": [\n \"Repositories: + Maven\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/maven.MavenRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/maven.MavenRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/maven.MavenRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/maven.MavenRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{maven_maven_repository_href}\": {\n + \ \"get\": {\n \"operationId\": \"repositories_maven_maven_read\",\n + \ \"description\": \"A ViewSet for MavenRemote.\",\n \"summary\": + \"Inspect a maven repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"maven_maven_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Maven\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/maven.MavenRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"repositories_maven_maven_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a maven repository\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"maven_maven_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Maven\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/maven.MavenRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/maven.MavenRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/maven.MavenRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"repositories_maven_maven_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update a maven repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"maven_maven_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Maven\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Patchedmaven.MavenRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedmaven.MavenRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedmaven.MavenRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"repositories_maven_maven_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a maven + repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"maven_maven_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Maven\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{maven_maven_repository_href}add_cached_content/\": + {\n \"post\": {\n \"operationId\": \"repositories_maven_maven_add_cached_content\",\n + \ \"description\": \"Trigger an asynchronous task to add cached + content to a repository.\",\n \"summary\": \"Add cached content\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"maven_maven_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Maven\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddCachedContent\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddCachedContent\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddCachedContent\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{maven_maven_repository_href}set_label/\": + {\n \"post\": {\n \"operationId\": \"repositories_maven_maven_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"maven_maven_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Maven\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{maven_maven_repository_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"repositories_maven_maven_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"maven_maven_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Maven\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabelResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{maven_maven_repository_href}versions/\": {\n \"get\": + {\n \"operationId\": \"repositories_maven_maven_versions_list\",\n + \ \"description\": \"MavenRepositoryVersion represents a single + Maven repository version.\",\n \"summary\": \"List repository + versions\",\n \"parameters\": [\n {\n \"in\": + \"query\",\n \"name\": \"content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"content__in\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"maven_maven_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is greater than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"integer\"\n }\n },\n \"description\": + \"Filter results where number is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-complete\",\n \"-info\",\n + \ \"-number\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"complete\",\n + \ \"info\",\n \"number\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `number` - Number\\n* `-number` - Number (descending)\\n* `complete` - Complete\\n* + `-complete` - Complete (descending)\\n* `info` - Info\\n* `-info` - Info (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__gte\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_created__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_created is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Maven Versions\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{maven_maven_repository_version_href}\": + {\n \"get\": {\n \"operationId\": \"repositories_maven_maven_versions_read\",\n + \ \"description\": \"MavenRepositoryVersion represents a single + Maven repository version.\",\n \"summary\": \"Inspect a repository + version\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"maven_maven_repository_version_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Maven Versions\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RepositoryVersionResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"repositories_maven_maven_versions_delete\",\n \"description\": + \"Trigger an asynchronous task to delete a repository version.\",\n \"summary\": + \"Delete a repository version\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"maven_maven_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Maven Versions\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{maven_maven_repository_version_href}repair/\": + {\n \"post\": {\n \"operationId\": \"repositories_maven_maven_versions_repair\",\n + \ \"description\": \"Trigger an asynchronous task to repair + a repository version.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"maven_maven_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Maven Versions\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Repair\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/repositories/ostree/ostree/\": {\n \"get\": + {\n \"operationId\": \"repositories_ostree_ostree_list\",\n + \ \"description\": \"A ViewSet class for OSTree repositories.\",\n + \ \"summary\": \"List ostree repositorys\",\n \"parameters\": + [\n {\n \"in\": \"query\",\n \"name\": + \"latest_with_content\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-description\",\n \"-name\",\n + \ \"-next_version\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-retain_repo_versions\",\n + \ \"-user_hidden\",\n \"description\",\n + \ \"name\",\n \"next_version\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"retain_repo_versions\",\n \"user_hidden\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `next_version` - Next version\\n* + `-next_version` - Next version (descending)\\n* `retain_repo_versions` - Retain + repo versions\\n* `-retain_repo_versions` - Retain repo versions (descending)\\n* + `user_hidden` - User hidden\\n* `-user_hidden` - User hidden (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"remote\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Foreign Key referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__isnull\",\n + \ \"schema\": {\n \"type\": + \"boolean\"\n },\n \"description\": + \"Filter results where retain_repo_versions has a null value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__ne\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions not equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__range\",\n \"schema\": {\n + \ \"type\": \"array\",\n \"items\": + {\n \"type\": \"integer\"\n }\n + \ },\n \"description\": \"Filter + results where retain_repo_versions is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Ostree\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedostree.OstreeRepositoryResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"repositories_ostree_ostree_create\",\n \"description\": \"A + ViewSet class for OSTree repositories.\",\n \"summary\": \"Create + an ostree repository\",\n \"tags\": [\n \"Repositories: + Ostree\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ostree.OstreeRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ostree.OstreeRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ostree.OstreeRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ostree.OstreeRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ostree_ostree_repository_href}\": {\n + \ \"get\": {\n \"operationId\": \"repositories_ostree_ostree_read\",\n + \ \"description\": \"A ViewSet class for OSTree repositories.\",\n + \ \"summary\": \"Inspect an ostree repository\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ostree_ostree_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Ostree\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ostree.OstreeRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"repositories_ostree_ostree_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update an ostree repository\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ostree_ostree_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ostree\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ostree.OstreeRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ostree.OstreeRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ostree.OstreeRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"repositories_ostree_ostree_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update an ostree repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ostree_ostree_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ostree\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Patchedostree.OstreeRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedostree.OstreeRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedostree.OstreeRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"repositories_ostree_ostree_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete an ostree + repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ostree_ostree_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ostree\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ostree_ostree_repository_href}import_all/\": + {\n \"post\": {\n \"operationId\": \"repositories_ostree_ostree_import_all\",\n + \ \"description\": \"Trigger an asynchronous task to import + all refs and commits to a repository.\",\n \"summary\": \"Import + refs and commits to a repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ostree_ostree_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ostree\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/OstreeImportAll\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/OstreeImportAll\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/OstreeImportAll\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ostree_ostree_repository_href}import_commits/\": + {\n \"post\": {\n \"operationId\": \"repositories_ostree_ostree_import_commits\",\n + \ \"description\": \"Trigger an asynchronous task to append + child commits to a repository.\",\n \"summary\": \"Append child + commits to a repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ostree_ostree_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ostree\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/OstreeImportCommitsToRef\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/OstreeImportCommitsToRef\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/OstreeImportCommitsToRef\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ostree_ostree_repository_href}modify/\": + {\n \"post\": {\n \"operationId\": \"repositories_ostree_ostree_modify\",\n + \ \"description\": \"Trigger an asynchronous task to modify + content.\",\n \"summary\": \"Modify repository\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ostree_ostree_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ostree\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RepositoryAddRemoveContent\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ostree_ostree_repository_href}set_label/\": + {\n \"post\": {\n \"operationId\": \"repositories_ostree_ostree_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ostree_ostree_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Ostree\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ostree_ostree_repository_href}sync/\": + {\n \"post\": {\n \"operationId\": \"repositories_ostree_ostree_sync\",\n + \ \"description\": \"Trigger an asynchronous task to sync content.\",\n + \ \"summary\": \"Sync from remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ostree_ostree_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ostree\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RepositorySyncURL\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositorySyncURL\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositorySyncURL\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ostree_ostree_repository_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"repositories_ostree_ostree_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ostree_ostree_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ostree\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabelResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{ostree_ostree_repository_href}versions/\": {\n \"get\": + {\n \"operationId\": \"repositories_ostree_ostree_versions_list\",\n + \ \"description\": \"A ViewSet class that represents a single + OSTree repository version.\",\n \"summary\": \"List repository + versions\",\n \"parameters\": [\n {\n \"in\": + \"query\",\n \"name\": \"content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"content__in\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is greater than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"integer\"\n }\n },\n \"description\": + \"Filter results where number is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-complete\",\n \"-info\",\n + \ \"-number\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"complete\",\n + \ \"info\",\n \"number\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `number` - Number\\n* `-number` - Number (descending)\\n* `complete` - Complete\\n* + `-complete` - Complete (descending)\\n* `info` - Info\\n* `-info` - Info (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"path\",\n \"name\": + \"ostree_ostree_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_created\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__gte\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_created__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_created is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Ostree Versions\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ostree_ostree_repository_version_href}\": + {\n \"get\": {\n \"operationId\": \"repositories_ostree_ostree_versions_read\",\n + \ \"description\": \"A ViewSet class that represents a single + OSTree repository version.\",\n \"summary\": \"Inspect a repository + version\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ostree_ostree_repository_version_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Ostree Versions\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RepositoryVersionResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"repositories_ostree_ostree_versions_delete\",\n \"description\": + \"Trigger an asynchronous task to delete a repository version.\",\n \"summary\": + \"Delete a repository version\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ostree_ostree_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ostree Versions\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ostree_ostree_repository_version_href}repair/\": + {\n \"post\": {\n \"operationId\": \"repositories_ostree_ostree_versions_repair\",\n + \ \"description\": \"Trigger an asynchronous task to repair + a repository version.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ostree_ostree_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Ostree Versions\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Repair\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/repositories/python/python/\": {\n \"get\": + {\n \"operationId\": \"repositories_python_python_list\",\n + \ \"description\": \"PythonRepository represents a single Python + repository, to which content can be\\nsynced, added, or removed.\",\n \"summary\": + \"List python repositorys\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"latest_with_content\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-description\",\n \"-name\",\n + \ \"-next_version\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-retain_repo_versions\",\n + \ \"-user_hidden\",\n \"description\",\n + \ \"name\",\n \"next_version\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"retain_repo_versions\",\n \"user_hidden\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `next_version` - Next version\\n* + `-next_version` - Next version (descending)\\n* `retain_repo_versions` - Retain + repo versions\\n* `-retain_repo_versions` - Retain repo versions (descending)\\n* + `user_hidden` - User hidden\\n* `-user_hidden` - User hidden (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"remote\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Foreign Key referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__isnull\",\n + \ \"schema\": {\n \"type\": + \"boolean\"\n },\n \"description\": + \"Filter results where retain_repo_versions has a null value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__ne\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions not equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__range\",\n \"schema\": {\n + \ \"type\": \"array\",\n \"items\": + {\n \"type\": \"integer\"\n }\n + \ },\n \"description\": \"Filter + results where retain_repo_versions is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Python\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedpython.PythonRepositoryResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"repositories_python_python_create\",\n \"description\": \"PythonRepository + represents a single Python repository, to which content can be\\nsynced, added, + or removed.\",\n \"summary\": \"Create a python repository\",\n + \ \"tags\": [\n \"Repositories: Python\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/python.PythonRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/python.PythonRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/python.PythonRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/python.PythonRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{python_python_repository_href}\": {\n + \ \"get\": {\n \"operationId\": \"repositories_python_python_read\",\n + \ \"description\": \"PythonRepository represents a single Python + repository, to which content can be\\nsynced, added, or removed.\",\n \"summary\": + \"Inspect a python repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"python_python_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Python\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/python.PythonRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"repositories_python_python_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a python repository\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"python_python_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Python\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/python.PythonRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/python.PythonRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/python.PythonRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"repositories_python_python_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update a python repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"python_python_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Python\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Patchedpython.PythonRepository\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedpython.PythonRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedpython.PythonRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"repositories_python_python_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a python + repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"python_python_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Python\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{python_python_repository_href}modify/\": + {\n \"post\": {\n \"operationId\": \"repositories_python_python_modify\",\n + \ \"description\": \"Trigger an asynchronous task to create + a new repository version.\",\n \"summary\": \"Modify Repository + Content\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"python_python_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Python\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{python_python_repository_href}set_label/\": + {\n \"post\": {\n \"operationId\": \"repositories_python_python_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"python_python_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Python\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{python_python_repository_href}sync/\": + {\n \"post\": {\n \"operationId\": \"repositories_python_python_sync\",\n + \ \"description\": \"\\nTrigger an asynchronous task to sync + python content. The sync task will retrieve Python\\ncontent from the specified + `Remote` and update the specified `Respository`, creating a\\nnew `RepositoryVersion`.\",\n + \ \"summary\": \"Sync from remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"python_python_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Python\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RepositorySyncURL\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositorySyncURL\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositorySyncURL\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{python_python_repository_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"repositories_python_python_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"python_python_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Python\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"201\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabelResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{python_python_repository_href}versions/\": {\n \"get\": + {\n \"operationId\": \"repositories_python_python_versions_list\",\n + \ \"description\": \"PythonRepositoryVersion represents a single + Python repository version.\",\n \"summary\": \"List repository + versions\",\n \"parameters\": [\n {\n \"in\": + \"query\",\n \"name\": \"content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"content__in\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is greater than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"integer\"\n }\n },\n \"description\": + \"Filter results where number is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-complete\",\n \"-info\",\n + \ \"-number\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"complete\",\n + \ \"info\",\n \"number\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `number` - Number\\n* `-number` - Number (descending)\\n* `complete` - Complete\\n* + `-complete` - Complete (descending)\\n* `info` - Info\\n* `-info` - Info (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__gte\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_created__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_created is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"path\",\n \"name\": + \"python_python_repository_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Python Versions\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{python_python_repository_version_href}\": + {\n \"get\": {\n \"operationId\": \"repositories_python_python_versions_read\",\n + \ \"description\": \"PythonRepositoryVersion represents a single + Python repository version.\",\n \"summary\": \"Inspect a repository + version\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"python_python_repository_version_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Python Versions\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RepositoryVersionResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"repositories_python_python_versions_delete\",\n \"description\": + \"Trigger an asynchronous task to delete a repository version.\",\n \"summary\": + \"Delete a repository version\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"python_python_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Python Versions\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{python_python_repository_version_href}repair/\": + {\n \"post\": {\n \"operationId\": \"repositories_python_python_versions_repair\",\n + \ \"description\": \"Trigger an asynchronous task to repair + a repository version.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"python_python_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Python Versions\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Repair\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/repositories/reclaim_space/\": {\n \"post\": + {\n \"operationId\": \"repositories_reclaim_space_reclaim\",\n + \ \"description\": \"Trigger an asynchronous space reclaim operation.\",\n + \ \"tags\": [\n \"Repositories: Reclaim_Space\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ReclaimSpace\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ReclaimSpace\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ReclaimSpace\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/repositories/rpm/rpm/\": {\n \"get\": {\n + \ \"operationId\": \"repositories_rpm_rpm_list\",\n \"description\": + \"A ViewSet for RpmRepository.\",\n \"summary\": \"List rpm + repositorys\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"latest_with_content\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-description\",\n \"-name\",\n + \ \"-next_version\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n + \ \"-pulp_type\",\n \"-retain_repo_versions\",\n + \ \"-user_hidden\",\n \"description\",\n + \ \"name\",\n \"next_version\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_labels\",\n + \ \"pulp_last_updated\",\n \"pulp_type\",\n + \ \"retain_repo_versions\",\n \"user_hidden\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pulp_labels` - Pulp labels\\n* + `-pulp_labels` - Pulp labels (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `next_version` - Next version\\n* + `-next_version` - Next version (descending)\\n* `retain_repo_versions` - Retain + repo versions\\n* `-retain_repo_versions` - Retain repo versions (descending)\\n* + `user_hidden` - User hidden\\n* `-user_hidden` - User hidden (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_label_select\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"remote\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Foreign Key referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is greater than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__isnull\",\n + \ \"schema\": {\n \"type\": + \"boolean\"\n },\n \"description\": + \"Filter results where retain_repo_versions has a null value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions is less than or equal to value\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"retain_repo_versions__ne\",\n + \ \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where retain_repo_versions not equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"retain_repo_versions__range\",\n \"schema\": {\n + \ \"type\": \"array\",\n \"items\": + {\n \"type\": \"integer\"\n }\n + \ },\n \"description\": \"Filter + results where retain_repo_versions is between two comma separated values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"with_content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Paginatedrpm.RpmRepositoryResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"repositories_rpm_rpm_create\",\n \"description\": \"A ViewSet + for RpmRepository.\",\n \"summary\": \"Create a rpm repository\",\n + \ \"tags\": [\n \"Repositories: Rpm\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.RpmRepository\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.RpmRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.RpmRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/rpm.RpmRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_repository_href}\": {\n \"get\": + {\n \"operationId\": \"repositories_rpm_rpm_read\",\n \"description\": + \"A ViewSet for RpmRepository.\",\n \"summary\": \"Inspect + a rpm repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"rpm_rpm_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/rpm.RpmRepositoryResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"repositories_rpm_rpm_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"summary\": \"Update a rpm repository\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Rpm\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.RpmRepository\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.RpmRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/rpm.RpmRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"repositories_rpm_rpm_partial_update\",\n \"description\": + \"Trigger an asynchronous partial update task\",\n \"summary\": + \"Update a rpm repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"rpm_rpm_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Rpm\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedrpm.RpmRepository\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedrpm.RpmRepository\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedrpm.RpmRepository\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"repositories_rpm_rpm_delete\",\n \"description\": \"Trigger + an asynchronous delete task\",\n \"summary\": \"Delete a rpm + repository\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"rpm_rpm_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Rpm\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{rpm_rpm_repository_href}add_role/\": {\n \"post\": {\n + \ \"operationId\": \"repositories_rpm_rpm_add_role\",\n \"description\": + \"Add a role for this object to users/groups.\",\n \"summary\": + \"Add a role\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"rpm_rpm_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Rpm\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_repository_href}list_roles/\": + {\n \"get\": {\n \"operationId\": \"repositories_rpm_rpm_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_repository_href}modify/\": {\n + \ \"post\": {\n \"operationId\": \"repositories_rpm_rpm_modify\",\n + \ \"description\": \"Trigger an asynchronous task to create + a new repository version.\",\n \"summary\": \"Modify Repository + Content\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_rpm_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Rpm\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepositoryAddRemoveContent\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_repository_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"repositories_rpm_rpm_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_rpm_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Rpm\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_repository_href}remove_role/\": + {\n \"post\": {\n \"operationId\": \"repositories_rpm_rpm_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Rpm\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_repository_href}set_label/\": + {\n \"post\": {\n \"operationId\": \"repositories_rpm_rpm_set_label\",\n + \ \"description\": \"Set a single pulp_label on the object to + a specific value or null.\",\n \"summary\": \"Set a label\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_rpm_repository_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Rpm\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/SetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_repository_href}sync/\": {\n + \ \"post\": {\n \"operationId\": \"repositories_rpm_rpm_sync\",\n + \ \"description\": \"Trigger an asynchronous task to sync RPM + content.\",\n \"summary\": \"Sync from remote\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Rpm\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RpmRepositorySyncURL\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RpmRepositorySyncURL\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RpmRepositorySyncURL\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_repository_href}unset_label/\": + {\n \"post\": {\n \"operationId\": \"repositories_rpm_rpm_unset_label\",\n + \ \"description\": \"Unset a single pulp_label on the object.\",\n + \ \"summary\": \"Unset a label\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"rpm_rpm_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Repositories: Rpm\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabel\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UnsetLabel\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UnsetLabelResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_repository_href}versions/\": + {\n \"get\": {\n \"operationId\": \"repositories_rpm_rpm_versions_list\",\n + \ \"description\": \"RpmRepositoryVersion represents a single + rpm repository version.\",\n \"summary\": \"List repository + versions\",\n \"parameters\": [\n {\n \"in\": + \"query\",\n \"name\": \"content\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"content__in\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Content Unit referenced by HREF\"\n + \ },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__gte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is greater than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"integer\"\n }\n },\n \"description\": + \"Filter results where number is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-complete\",\n \"-info\",\n + \ \"-number\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"complete\",\n + \ \"info\",\n \"number\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `number` - Number\\n* `-number` - Number (descending)\\n* `complete` - Complete\\n* + `-complete` - Complete (descending)\\n* `info` - Info\\n* `-info` - Info (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__gte\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_created__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_created is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"rpm_rpm_repository_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Rpm Versions\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_repository_version_href}\": + {\n \"get\": {\n \"operationId\": \"repositories_rpm_rpm_versions_read\",\n + \ \"description\": \"RpmRepositoryVersion represents a single + rpm repository version.\",\n \"summary\": \"Inspect a repository + version\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"rpm_rpm_repository_version_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repositories: + Rpm Versions\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RepositoryVersionResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"repositories_rpm_rpm_versions_delete\",\n \"description\": + \"Trigger an asynchronous task to delete a repository version.\",\n \"summary\": + \"Delete a repository version\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"rpm_rpm_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Rpm Versions\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{rpm_rpm_repository_version_href}repair/\": + {\n \"post\": {\n \"operationId\": \"repositories_rpm_rpm_versions_repair\",\n + \ \"description\": \"Trigger an asynchronous task to repair + a repository version.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"rpm_rpm_repository_version_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Repositories: Rpm Versions\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Repair\"\n }\n },\n + \ \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Repair\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/repository_versions/\": {\n \"get\": {\n + \ \"operationId\": \"repository_versions_list\",\n \"description\": + \"A mixin to hold the shared get_queryset logic used by RepositoryVersionViewSets.\",\n + \ \"summary\": \"List repository versions\",\n \"parameters\": + [\n {\n \"in\": \"query\",\n \"name\": + \"content\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"content__in\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Content Unit referenced by HREF\"\n },\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"number\",\n \"schema\": + {\n \"type\": \"integer\"\n },\n + \ \"description\": \"Filter results where number matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"number__gt\",\n \"schema\": + {\n \"type\": \"integer\"\n },\n + \ \"description\": \"Filter results where number is + greater than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"number__gte\",\n \"schema\": + {\n \"type\": \"integer\"\n },\n + \ \"description\": \"Filter results where number is + greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"number__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__lte\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where number is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"number__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"integer\"\n }\n },\n \"description\": + \"Filter results where number is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-complete\",\n \"-info\",\n + \ \"-number\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"complete\",\n + \ \"info\",\n \"number\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `number` - Number\\n* `-number` - Number (descending)\\n* `complete` - Complete\\n* + `-complete` - Complete (descending)\\n* `info` - Info\\n* `-info` - Info (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__gte\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_created__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where pulp_created + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where pulp_created is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_created__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where pulp_created is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Repository_Versions\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/roles/\": {\n \"get\": + {\n \"operationId\": \"roles_list\",\n \"description\": + \"ViewSet for Role.\",\n \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"query\",\n \"name\": + \"contains_permission\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter roles that have any of the permissions in the list.\",\n \"explode\": + true,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"description\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where description matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"description__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where description contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"description__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where description contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"description__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where description matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"for_object_type\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter roles that only have permissions for the specified object HREF.\"\n + \ },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"locked\",\n \"schema\": {\n \"type\": + \"boolean\"\n },\n \"description\": + \"Filter results where locked matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-description\",\n \"-locked\",\n + \ \"-name\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"description\",\n + \ \"locked\",\n \"name\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `name` - Name\\n* `-name` - Name (descending)\\n* `description` - Description\\n* + `-description` - Description (descending)\\n* `locked` - Locked\\n* `-locked` + - Locked (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Roles\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedRoleResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"roles_create\",\n \"description\": \"ViewSet for Role.\",\n + \ \"summary\": \"Create a role\",\n \"tags\": + [\n \"Roles\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Role\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Role\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Role\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{role_href}\": {\n \"get\": + {\n \"operationId\": \"roles_read\",\n \"description\": + \"ViewSet for Role.\",\n \"summary\": \"Inspect a role\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"role_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Roles\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"roles_update\",\n + \ \"description\": \"ViewSet for Role.\",\n \"summary\": + \"Update a role\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"role_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Roles\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Role\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Role\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Role\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"roles_partial_update\",\n \"description\": \"ViewSet for + Role.\",\n \"summary\": \"Update a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"role_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Roles\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PatchedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PatchedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PatchedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"roles_delete\",\n \"description\": \"ViewSet for Role.\",\n + \ \"summary\": \"Delete a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"role_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Roles\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"204\": + {\n \"description\": \"No response body\"\n }\n + \ }\n }\n },\n \"/pulp/api/v3/rpm/comps/\": + {\n \"post\": {\n \"operationId\": \"rpm_comps_upload\",\n + \ \"description\": \"Trigger an asynchronous task to upload + a comps.xml file.\",\n \"summary\": \"Upload comps.xml\",\n + \ \"tags\": [\n \"Rpm: Comps\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CompsXml\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/CompsXml\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/rpm/copy/\": {\n \"post\": {\n \"operationId\": + \"copy_content\",\n \"description\": \"Trigger an asynchronous + task to copy RPM contentfrom one repository into another, creating a newrepository + version.\",\n \"summary\": \"Copy content\",\n \"tags\": + [\n \"Rpm: Copy\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Copy\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Copy\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Copy\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/signing-services/\": {\n + \ \"get\": {\n \"operationId\": \"signing_services_list\",\n + \ \"description\": \"A ViewSet that supports browsing of existing + signing services.\",\n \"summary\": \"List signing services\",\n + \ \"parameters\": [\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-name\",\n \"-pk\",\n + \ \"-pubkey_fingerprint\",\n \"-public_key\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"-script\",\n + \ \"name\",\n \"pk\",\n + \ \"pubkey_fingerprint\",\n \"public_key\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\",\n \"script\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `name` - Name\\n* `-name` - Name (descending)\\n* `public_key` - Public key\\n* + `-public_key` - Public key (descending)\\n* `pubkey_fingerprint` - Pubkey + fingerprint\\n* `-pubkey_fingerprint` - Pubkey fingerprint (descending)\\n* + `script` - Script\\n* `-script` - Script (descending)\\n* `pk` - Pk\\n* `-pk` + - Pk (descending)\",\n \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Signing-Services\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedSigningServiceResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{signing_service_href}\": {\n \"get\": + {\n \"operationId\": \"signing_services_read\",\n \"description\": + \"A ViewSet that supports browsing of existing signing services.\",\n \"summary\": + \"Inspect a signing service\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"signing_service_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Signing-Services\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/SigningServiceResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/status/\": {\n \"get\": + {\n \"operationId\": \"status_read\",\n \"description\": + \"Returns status and app information about Pulp.\\n\\nInformation includes:\\n + * version of pulpcore and loaded pulp plugins\\n * known workers\\n * known + content apps\\n * database connection status\\n * redis connection status\\n + * disk usage information\",\n \"summary\": \"Inspect status + of Pulp\",\n \"tags\": [\n \"Status\"\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/StatusResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/task-groups/\": {\n \"get\": {\n \"operationId\": + \"task_groups_list\",\n \"description\": \"A customized named + ModelViewSet that knows how to register itself with the Pulp API router.\\n\\nThis + viewset is discoverable by its name.\\n\\\"Normal\\\" Django Models and Master/Detail + models are supported by the ``register_with`` method.\\n\\nAttributes:\\n + \ lookup_field (str): The name of the field by which an object should be + looked up, in\\n addition to any parent lookups if this ViewSet is + nested. Defaults to 'pk'\\n endpoint_name (str): The name of the final + path segment that should identify the ViewSet's\\n collection endpoint.\\n + \ nest_prefix (str): Optional prefix under which this ViewSet should be + nested. This must\\n correspond to the \\\"parent_prefix\\\" of a router + with rest_framework_nested.NestedMixin.\\n None indicates this ViewSet + should not be nested.\\n parent_lookup_kwargs (dict): Optional mapping + of key names that would appear in self.kwargs\\n to django model filter + expressions that can be used with the corresponding value from\\n self.kwargs, + used only by a nested ViewSet to filter based on the parent object's\\n identity.\\n + \ schema (DefaultSchema): The schema class to use by default in a viewset.\",\n + \ \"summary\": \"List task groups\",\n \"parameters\": + [\n {\n \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Task-Groups\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedTaskGroupResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{task_group_href}\": {\n \"get\": + {\n \"operationId\": \"task_groups_read\",\n \"description\": + \"A customized named ModelViewSet that knows how to register itself with the + Pulp API router.\\n\\nThis viewset is discoverable by its name.\\n\\\"Normal\\\" + Django Models and Master/Detail models are supported by the ``register_with`` + method.\\n\\nAttributes:\\n lookup_field (str): The name of the field by + which an object should be looked up, in\\n addition to any parent lookups + if this ViewSet is nested. Defaults to 'pk'\\n endpoint_name (str): The + name of the final path segment that should identify the ViewSet's\\n collection + endpoint.\\n nest_prefix (str): Optional prefix under which this ViewSet + should be nested. This must\\n correspond to the \\\"parent_prefix\\\" + of a router with rest_framework_nested.NestedMixin.\\n None indicates + this ViewSet should not be nested.\\n parent_lookup_kwargs (dict): Optional + mapping of key names that would appear in self.kwargs\\n to django + model filter expressions that can be used with the corresponding value from\\n + \ self.kwargs, used only by a nested ViewSet to filter based on the + parent object's\\n identity.\\n schema (DefaultSchema): The schema + class to use by default in a viewset.\",\n \"summary\": \"Inspect + a task group\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"task_group_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Task-Groups\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/TaskGroupResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/task-schedules/\": {\n \"get\": + {\n \"operationId\": \"task_schedules_list\",\n \"description\": + \"ViewSet to monitor task schedules.\",\n \"summary\": \"List + task schedules\",\n \"parameters\": [\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"ordering\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-dispatch_interval\",\n + \ \"-name\",\n \"-next_dispatch\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-task_name\",\n \"dispatch_interval\",\n + \ \"name\",\n \"next_dispatch\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"task_name\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* + `next_dispatch` - Next dispatch\\n* `-next_dispatch` - Next dispatch (descending)\\n* + `dispatch_interval` - Dispatch interval\\n* `-dispatch_interval` - Dispatch + interval (descending)\\n* `task_name` - Task name\\n* `-task_name` - Task + name (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"task_name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where task_name matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"task_name__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where task_name contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Task-Schedules\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedTaskScheduleResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{task_schedule_href}\": {\n \"get\": + {\n \"operationId\": \"task_schedules_read\",\n \"description\": + \"ViewSet to monitor task schedules.\",\n \"summary\": \"Inspect + a task schedule\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"task_schedule_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Task-Schedules\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/TaskScheduleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{task_schedule_href}add_role/\": {\n + \ \"post\": {\n \"operationId\": \"task_schedules_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"task_schedule_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Task-Schedules\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{task_schedule_href}list_roles/\": {\n + \ \"get\": {\n \"operationId\": \"task_schedules_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"task_schedule_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Task-Schedules\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{task_schedule_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"task_schedules_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"task_schedule_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Task-Schedules\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{task_schedule_href}remove_role/\": {\n + \ \"post\": {\n \"operationId\": \"task_schedules_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"task_schedule_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Task-Schedules\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/tasks/\": {\n \"get\": + {\n \"operationId\": \"tasks_list\",\n \"description\": + \"A customized named ModelViewSet that knows how to register itself with the + Pulp API router.\\n\\nThis viewset is discoverable by its name.\\n\\\"Normal\\\" + Django Models and Master/Detail models are supported by the ``register_with`` + method.\\n\\nAttributes:\\n lookup_field (str): The name of the field by + which an object should be looked up, in\\n addition to any parent lookups + if this ViewSet is nested. Defaults to 'pk'\\n endpoint_name (str): The + name of the final path segment that should identify the ViewSet's\\n collection + endpoint.\\n nest_prefix (str): Optional prefix under which this ViewSet + should be nested. This must\\n correspond to the \\\"parent_prefix\\\" + of a router with rest_framework_nested.NestedMixin.\\n None indicates + this ViewSet should not be nested.\\n parent_lookup_kwargs (dict): Optional + mapping of key names that would appear in self.kwargs\\n to django + model filter expressions that can be used with the corresponding value from\\n + \ self.kwargs, used only by a nested ViewSet to filter based on the + parent object's\\n identity.\\n schema (DefaultSchema): The schema + class to use by default in a viewset.\",\n \"summary\": \"List + tasks\",\n \"parameters\": [\n {\n \"in\": + \"query\",\n \"name\": \"child_tasks\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"uuid\"\n },\n \"description\": + \"Filter results where child_tasks matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"created_resources\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"exclusive_resources\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"exclusive_resources__in\",\n + \ \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"finished_at\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where finished_at + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"finished_at__gt\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where finished_at is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"finished_at__gte\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where finished_at + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"finished_at__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where finished_at + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"finished_at__lte\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where finished_at is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"finished_at__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where finished_at is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"logging_cid\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where logging_cid + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"logging_cid__contains\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where logging_cid contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__ne\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name not equal to value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-enc_args\",\n \"-enc_kwargs\",\n + \ \"-error\",\n \"-finished_at\",\n + \ \"-logging_cid\",\n \"-name\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-reserved_resources_record\",\n \"-started_at\",\n + \ \"-state\",\n \"-versions\",\n + \ \"enc_args\",\n \"enc_kwargs\",\n + \ \"error\",\n \"finished_at\",\n + \ \"logging_cid\",\n \"name\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"reserved_resources_record\",\n \"started_at\",\n + \ \"state\",\n \"versions\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `state` - State\\n* `-state` - State (descending)\\n* `name` - Name\\n* `-name` + - Name (descending)\\n* `logging_cid` - Logging cid\\n* `-logging_cid` - Logging + cid (descending)\\n* `started_at` - Started at\\n* `-started_at` - Started + at (descending)\\n* `finished_at` - Finished at\\n* `-finished_at` - Finished + at (descending)\\n* `error` - Error\\n* `-error` - Error (descending)\\n* + `enc_args` - Enc args\\n* `-enc_args` - Enc args (descending)\\n* `enc_kwargs` + - Enc kwargs\\n* `-enc_kwargs` - Enc kwargs (descending)\\n* `reserved_resources_record` + - Reserved resources record\\n* `-reserved_resources_record` - Reserved resources + record (descending)\\n* `versions` - Versions\\n* `-versions` - Versions (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"parent_task\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Filter results where parent_task + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"reserved_resources\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"reserved_resources__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"reserved_resources_record\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n },\n \"nullable\": + true\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"shared_resources\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"shared_resources__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"started_at\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where started_at + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"started_at__gt\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where started_at is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"started_at__gte\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where started_at + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"started_at__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where started_at + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"started_at__lte\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where started_at is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"started_at__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where started_at is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"state\",\n \"schema\": {\n \"type\": + \"string\",\n \"enum\": [\n \"canceled\",\n + \ \"canceling\",\n \"completed\",\n + \ \"failed\",\n \"running\",\n + \ \"skipped\",\n \"waiting\"\n + \ ]\n },\n \"description\": + \"Filter results where state matches value\\n\\n* `waiting` - Waiting\\n* + `skipped` - Skipped\\n* `running` - Running\\n* `completed` - Completed\\n* + `failed` - Failed\\n* `canceled` - Canceled\\n* `canceling` - Canceling\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"state__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where state is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"state__ne\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where state not equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"task_group\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Filter results where task_group + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"worker\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"uuid\"\n },\n \"description\": + \"Filter results where worker matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"worker__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Filter + results where worker is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"worker__isnull\",\n \"schema\": {\n \"type\": + \"boolean\"\n },\n \"description\": + \"Filter results where worker has a null value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Tasks\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedTaskResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{task_href}\": {\n \"get\": + {\n \"operationId\": \"tasks_read\",\n \"description\": + \"A customized named ModelViewSet that knows how to register itself with the + Pulp API router.\\n\\nThis viewset is discoverable by its name.\\n\\\"Normal\\\" + Django Models and Master/Detail models are supported by the ``register_with`` + method.\\n\\nAttributes:\\n lookup_field (str): The name of the field by + which an object should be looked up, in\\n addition to any parent lookups + if this ViewSet is nested. Defaults to 'pk'\\n endpoint_name (str): The + name of the final path segment that should identify the ViewSet's\\n collection + endpoint.\\n nest_prefix (str): Optional prefix under which this ViewSet + should be nested. This must\\n correspond to the \\\"parent_prefix\\\" + of a router with rest_framework_nested.NestedMixin.\\n None indicates + this ViewSet should not be nested.\\n parent_lookup_kwargs (dict): Optional + mapping of key names that would appear in self.kwargs\\n to django + model filter expressions that can be used with the corresponding value from\\n + \ self.kwargs, used only by a nested ViewSet to filter based on the + parent object's\\n identity.\\n schema (DefaultSchema): The schema + class to use by default in a viewset.\",\n \"summary\": \"Inspect + a task\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"task_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Tasks\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/TaskResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"tasks_cancel\",\n \"description\": \"This operation cancels + a task.\",\n \"summary\": \"Cancel a task\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"task_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Tasks\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PatchedTaskCancel\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PatchedTaskCancel\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PatchedTaskCancel\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/TaskResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n },\n \"409\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/TaskResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n },\n \"delete\": + {\n \"operationId\": \"tasks_delete\",\n \"description\": + \"A customized named ModelViewSet that knows how to register itself with the + Pulp API router.\\n\\nThis viewset is discoverable by its name.\\n\\\"Normal\\\" + Django Models and Master/Detail models are supported by the ``register_with`` + method.\\n\\nAttributes:\\n lookup_field (str): The name of the field by + which an object should be looked up, in\\n addition to any parent lookups + if this ViewSet is nested. Defaults to 'pk'\\n endpoint_name (str): The + name of the final path segment that should identify the ViewSet's\\n collection + endpoint.\\n nest_prefix (str): Optional prefix under which this ViewSet + should be nested. This must\\n correspond to the \\\"parent_prefix\\\" + of a router with rest_framework_nested.NestedMixin.\\n None indicates + this ViewSet should not be nested.\\n parent_lookup_kwargs (dict): Optional + mapping of key names that would appear in self.kwargs\\n to django + model filter expressions that can be used with the corresponding value from\\n + \ self.kwargs, used only by a nested ViewSet to filter based on the + parent object's\\n identity.\\n schema (DefaultSchema): The schema + class to use by default in a viewset.\",\n \"summary\": \"Delete + a task\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"task_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Tasks\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"204\": {\n \"description\": + \"No response body\"\n }\n }\n }\n + \ },\n \"{task_href}add_role/\": {\n \"post\": {\n + \ \"operationId\": \"tasks_add_role\",\n \"description\": + \"Add a role for this object to users/groups.\",\n \"summary\": + \"Add a role\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"task_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Tasks\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{task_href}list_roles/\": {\n \"get\": + {\n \"operationId\": \"tasks_list_roles\",\n \"description\": + \"List roles assigned to this object.\",\n \"summary\": \"List + roles\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"task_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Tasks\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{task_href}my_permissions/\": {\n \"get\": + {\n \"operationId\": \"tasks_my_permissions\",\n \"description\": + \"List permissions available to the current user on this object.\",\n \"summary\": + \"List user permissions\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"task_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Tasks\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{task_href}remove_role/\": {\n \"post\": + {\n \"operationId\": \"tasks_remove_role\",\n \"description\": + \"Remove a role for this object from users/groups.\",\n \"summary\": + \"Remove a role\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"task_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Tasks\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/tasks/purge/\": {\n \"post\": + {\n \"operationId\": \"tasks_purge\",\n \"description\": + \"Trigger an asynchronous task that deletes completed tasks that finished + prior to a specified timestamp.\",\n \"summary\": \"Purge Completed + Tasks\",\n \"tags\": [\n \"Tasks\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Purge\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Purge\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Purge\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/uploads/\": {\n \"get\": + {\n \"operationId\": \"uploads_list\",\n \"description\": + \"View for chunked uploads.\",\n \"summary\": \"List uploads\",\n + \ \"parameters\": [\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-size\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\",\n \"size\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `size` - Size\\n* `-size` - Size (descending)\\n* `pk` - Pk\\n* `-pk` - Pk + (descending)\",\n \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"size\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where size matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"size__gt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where size is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"size__lt\",\n \"schema\": {\n \"type\": + \"integer\"\n },\n \"description\": + \"Filter results where size is less than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"size__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"integer\"\n }\n },\n \"description\": + \"Filter results where size is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Uploads\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedUploadResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"uploads_create\",\n \"description\": \"View for chunked uploads.\",\n + \ \"summary\": \"Create an upload\",\n \"tags\": + [\n \"Uploads\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Upload\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Upload\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Upload\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UploadResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{upload_href}\": {\n \"get\": + {\n \"operationId\": \"uploads_read\",\n \"description\": + \"View for chunked uploads.\",\n \"summary\": \"Inspect an + upload\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"upload_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Uploads\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UploadDetailResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"uploads_update\",\n + \ \"description\": \"Upload a chunk for an upload.\",\n \"summary\": + \"Upload a file chunk\",\n \"parameters\": [\n {\n + \ \"in\": \"header\",\n \"name\": + \"Content-Range\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"The Content-Range header specifies the location of the file chunk within + the file.\",\n \"required\": true\n },\n + \ {\n \"in\": \"path\",\n \"name\": + \"upload_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Uploads\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UploadChunk\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UploadChunk\"\n + \ }\n }\n },\n + \ \"required\": true\n },\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UploadResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n },\n \"delete\": + {\n \"operationId\": \"uploads_delete\",\n \"description\": + \"View for chunked uploads.\",\n \"summary\": \"Delete an upload\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"upload_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Uploads\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"204\": {\n \"description\": + \"No response body\"\n }\n }\n }\n + \ },\n \"{upload_href}add_role/\": {\n \"post\": {\n + \ \"operationId\": \"uploads_add_role\",\n \"description\": + \"Add a role for this object to users/groups.\",\n \"summary\": + \"Add a role\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"upload_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Uploads\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Upload\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Upload\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Upload\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{upload_href}commit/\": {\n \"post\": + {\n \"operationId\": \"uploads_commit\",\n \"description\": + \"Queues a Task that creates an Artifact, and the Upload gets deleted and + cannot be re-used.\",\n \"summary\": \"Finish an Upload\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"upload_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Uploads\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UploadCommit\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UploadCommit\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UploadCommit\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{upload_href}list_roles/\": {\n \"get\": + {\n \"operationId\": \"uploads_list_roles\",\n \"description\": + \"List roles assigned to this object.\",\n \"summary\": \"List + roles\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"upload_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Uploads\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{upload_href}my_permissions/\": {\n \"get\": + {\n \"operationId\": \"uploads_my_permissions\",\n \"description\": + \"List permissions available to the current user on this object.\",\n \"summary\": + \"List user permissions\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"upload_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Uploads\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{upload_href}remove_role/\": {\n \"post\": + {\n \"operationId\": \"uploads_remove_role\",\n \"description\": + \"Remove a role for this object from users/groups.\",\n \"summary\": + \"Remove a role\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"upload_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Uploads\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Upload\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Upload\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Upload\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/api/v3/upstream-pulps/\": {\n \"get\": + {\n \"operationId\": \"upstream_pulps_list\",\n \"description\": + \"API for configuring an upstream Pulp to replicate. This API is provided + as a tech preview.\",\n \"summary\": \"List upstream pulps\",\n + \ \"parameters\": [\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Upstream-Pulps\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedUpstreamPulpResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"upstream_pulps_create\",\n \"description\": \"API for configuring + an upstream Pulp to replicate. This API is provided as a tech preview.\",\n + \ \"summary\": \"Create an upstream pulp\",\n \"tags\": + [\n \"Upstream-Pulps\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UpstreamPulp\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UpstreamPulp\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UpstreamPulp\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UpstreamPulpResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{upstream_pulp_href}\": {\n \"get\": + {\n \"operationId\": \"upstream_pulps_read\",\n \"description\": + \"API for configuring an upstream Pulp to replicate. This API is provided + as a tech preview.\",\n \"summary\": \"Inspect an upstream + pulp\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"upstream_pulp_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Upstream-Pulps\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UpstreamPulpResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"upstream_pulps_update\",\n + \ \"description\": \"API for configuring an upstream Pulp to + replicate. This API is provided as a tech preview.\",\n \"summary\": + \"Update an upstream pulp\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"upstream_pulp_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Upstream-Pulps\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UpstreamPulp\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UpstreamPulp\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UpstreamPulp\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UpstreamPulpResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"upstream_pulps_partial_update\",\n \"description\": \"API + for configuring an upstream Pulp to replicate. This API is provided as a tech + preview.\",\n \"summary\": \"Update an upstream pulp\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"upstream_pulp_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Upstream-Pulps\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PatchedUpstreamPulp\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PatchedUpstreamPulp\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PatchedUpstreamPulp\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UpstreamPulpResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"upstream_pulps_delete\",\n \"description\": \"API for configuring + an upstream Pulp to replicate. This API is provided as a tech preview.\",\n + \ \"summary\": \"Delete an upstream pulp\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"upstream_pulp_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Upstream-Pulps\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"204\": + {\n \"description\": \"No response body\"\n }\n + \ }\n }\n },\n \"{upstream_pulp_href}add_role/\": + {\n \"post\": {\n \"operationId\": \"upstream_pulps_add_role\",\n + \ \"description\": \"Add a role for this object to users/groups.\",\n + \ \"summary\": \"Add a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"upstream_pulp_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Upstream-Pulps\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{upstream_pulp_href}list_roles/\": {\n + \ \"get\": {\n \"operationId\": \"upstream_pulps_list_roles\",\n + \ \"description\": \"List roles assigned to this object.\",\n + \ \"summary\": \"List roles\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"upstream_pulp_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Upstream-Pulps\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{upstream_pulp_href}my_permissions/\": + {\n \"get\": {\n \"operationId\": \"upstream_pulps_my_permissions\",\n + \ \"description\": \"List permissions available to the current + user on this object.\",\n \"summary\": \"List user permissions\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"upstream_pulp_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Upstream-Pulps\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/MyPermissionsResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{upstream_pulp_href}remove_role/\": {\n + \ \"post\": {\n \"operationId\": \"upstream_pulps_remove_role\",\n + \ \"description\": \"Remove a role for this object from users/groups.\",\n + \ \"summary\": \"Remove a role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"upstream_pulp_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Upstream-Pulps\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/NestedRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{upstream_pulp_href}replicate/\": {\n + \ \"post\": {\n \"operationId\": \"upstream_pulps_replicate\",\n + \ \"description\": \"Trigger an asynchronous repository replication + task group. This API is provided as a tech preview.\",\n \"summary\": + \"Replicate\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"upstream_pulp_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Upstream-Pulps\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/TaskGroupOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp/api/v3/users/\": {\n \"get\": {\n \"operationId\": + \"users_list\",\n \"description\": \"ViewSet for User.\",\n + \ \"summary\": \"List users\",\n \"parameters\": + [\n {\n \"in\": \"query\",\n \"name\": + \"email\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where email matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"email__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where email contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"email__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where email contains value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"email__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where email matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"email__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where email is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"first_name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where first_name matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"first_name__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where first_name contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"first_name__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where first_name contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"first_name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where first_name matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"first_name__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where first_name is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"is_active\",\n \"schema\": + {\n \"type\": \"boolean\"\n },\n + \ \"description\": \"Filter results where is_active + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"is_staff\",\n \"schema\": + {\n \"type\": \"boolean\"\n },\n + \ \"description\": \"Filter results where is_staff matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"last_name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where last_name + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"last_name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where last_name + contains value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"last_name__icontains\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where last_name contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"last_name__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where last_name matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"last_name__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where last_name is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-date_joined\",\n \"-email\",\n + \ \"-first_name\",\n \"-id\",\n + \ \"-is_active\",\n \"-is_staff\",\n + \ \"-is_superuser\",\n \"-last_login\",\n + \ \"-last_name\",\n \"-password\",\n + \ \"-pk\",\n \"-username\",\n + \ \"date_joined\",\n \"email\",\n + \ \"first_name\",\n \"id\",\n + \ \"is_active\",\n \"is_staff\",\n + \ \"is_superuser\",\n \"last_login\",\n + \ \"last_name\",\n \"password\",\n + \ \"pk\",\n \"username\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `id` - Id\\n* `-id` + - Id (descending)\\n* `password` - Password\\n* `-password` - Password (descending)\\n* + `last_login` - Last login\\n* `-last_login` - Last login (descending)\\n* + `is_superuser` - Is superuser\\n* `-is_superuser` - Is superuser (descending)\\n* + `username` - Username\\n* `-username` - Username (descending)\\n* `first_name` + - First name\\n* `-first_name` - First name (descending)\\n* `last_name` - + Last name\\n* `-last_name` - Last name (descending)\\n* `email` - Email\\n* + `-email` - Email (descending)\\n* `is_staff` - Is staff\\n* `-is_staff` - + Is staff (descending)\\n* `is_active` - Is active\\n* `-is_active` - Is active + (descending)\\n* `date_joined` - Date joined\\n* `-date_joined` - Date joined + (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"username\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where username matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"username__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where username contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"username__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where username contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"username__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where username matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"username__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where username is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Users\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedUserResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"users_create\",\n \"description\": \"ViewSet for User.\",\n + \ \"summary\": \"Create an user\",\n \"tags\": + [\n \"Users\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/User\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/User\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/User\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UserResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{auth_user_href}\": {\n \"get\": + {\n \"operationId\": \"users_read\",\n \"description\": + \"ViewSet for User.\",\n \"summary\": \"Inspect an user\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"auth_user_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Users\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UserResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"put\": {\n \"operationId\": \"users_update\",\n + \ \"description\": \"ViewSet for User.\",\n \"summary\": + \"Update an user\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"auth_user_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Users\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/User\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/User\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/User\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UserResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"users_partial_update\",\n \"description\": \"ViewSet for + User.\",\n \"summary\": \"Update an user\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"auth_user_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Users\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PatchedUser\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PatchedUser\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PatchedUser\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UserResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"users_delete\",\n \"description\": \"ViewSet for User.\",\n + \ \"summary\": \"Delete an user\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"auth_user_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Users\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"204\": + {\n \"description\": \"No response body\"\n }\n + \ }\n }\n },\n \"{auth_user_href}roles/\": + {\n \"get\": {\n \"operationId\": \"users_roles_list\",\n + \ \"description\": \"ViewSet for UserRole.\",\n \"summary\": + \"List user roles\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"auth_user_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"content_object\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"content_object\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"domain\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n },\n + \ \"description\": \"Foreign Key referenced by HREF\"\n + \ },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-description\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-role\",\n + \ \"description\",\n \"pk\",\n + \ \"pulp_created\",\n \"role\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `role` - Role\\n* + `-role` - Role (descending)\\n* `description` - Description\\n* `-description` + - Description (descending)\\n* `pulp_created` - Pulp created\\n* `-pulp_created` + - Pulp created (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"role\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"role__contains\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"role__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"role__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"role__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Users: + Roles\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedUserRoleResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"users_roles_create\",\n \"description\": \"ViewSet for UserRole.\",\n + \ \"summary\": \"Create an user role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"auth_user_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Users: Roles\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UserRole\"\n }\n },\n + \ \"application/x-www-form-urlencoded\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UserRole\"\n + \ }\n },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/UserRole\"\n }\n }\n + \ },\n \"required\": true\n },\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"201\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UserRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{auth_users_user_role_href}\": {\n \"get\": + {\n \"operationId\": \"users_roles_read\",\n \"description\": + \"ViewSet for UserRole.\",\n \"summary\": \"Inspect an user + role\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"auth_users_user_role_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Users: + Roles\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/UserRoleResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"users_roles_delete\",\n \"description\": \"ViewSet for UserRole.\",\n + \ \"summary\": \"Delete an user role\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"auth_users_user_role_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Users: Roles\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"204\": + {\n \"description\": \"No response body\"\n }\n + \ }\n }\n },\n \"/pulp/api/v3/workers/\": + {\n \"get\": {\n \"operationId\": \"workers_list\",\n + \ \"description\": \"A customized named ModelViewSet that knows + how to register itself with the Pulp API router.\\n\\nThis viewset is discoverable + by its name.\\n\\\"Normal\\\" Django Models and Master/Detail models are supported + by the ``register_with`` method.\\n\\nAttributes:\\n lookup_field (str): + The name of the field by which an object should be looked up, in\\n addition + to any parent lookups if this ViewSet is nested. Defaults to 'pk'\\n endpoint_name + (str): The name of the final path segment that should identify the ViewSet's\\n + \ collection endpoint.\\n nest_prefix (str): Optional prefix under + which this ViewSet should be nested. This must\\n correspond to the + \\\"parent_prefix\\\" of a router with rest_framework_nested.NestedMixin.\\n + \ None indicates this ViewSet should not be nested.\\n parent_lookup_kwargs + (dict): Optional mapping of key names that would appear in self.kwargs\\n + \ to django model filter expressions that can be used with the corresponding + value from\\n self.kwargs, used only by a nested ViewSet to filter + based on the parent object's\\n identity.\\n schema (DefaultSchema): + The schema class to use by default in a viewset.\",\n \"summary\": + \"List workers\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"last_heartbeat\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where last_heartbeat + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"last_heartbeat__gt\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where last_heartbeat is greater than value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"last_heartbeat__gte\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where last_heartbeat + is greater than or equal to value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"last_heartbeat__lt\",\n \"schema\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n },\n + \ \"description\": \"Filter results where last_heartbeat + is less than value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"last_heartbeat__lte\",\n \"schema\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"description\": + \"Filter results where last_heartbeat is less than or equal to value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"last_heartbeat__range\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"date-time\"\n }\n + \ },\n \"description\": \"Filter + results where last_heartbeat is between two comma separated values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"missing\",\n \"schema\": + {\n \"type\": \"boolean\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"online\",\n \"schema\": + {\n \"type\": \"boolean\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-last_heartbeat\",\n \"-name\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"-versions\",\n \"last_heartbeat\",\n + \ \"name\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\",\n \"versions\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `name` - Name\\n* `-name` - Name (descending)\\n* `last_heartbeat` - Last + heartbeat\\n* `-last_heartbeat` - Last heartbeat (descending)\\n* `versions` + - Versions\\n* `-versions` - Versions (descending)\\n* `pk` - Pk\\n* `-pk` + - Pk (descending)\",\n \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Workers\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedWorkerResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{worker_href}\": {\n \"get\": + {\n \"operationId\": \"workers_read\",\n \"description\": + \"A customized named ModelViewSet that knows how to register itself with the + Pulp API router.\\n\\nThis viewset is discoverable by its name.\\n\\\"Normal\\\" + Django Models and Master/Detail models are supported by the ``register_with`` + method.\\n\\nAttributes:\\n lookup_field (str): The name of the field by + which an object should be looked up, in\\n addition to any parent lookups + if this ViewSet is nested. Defaults to 'pk'\\n endpoint_name (str): The + name of the final path segment that should identify the ViewSet's\\n collection + endpoint.\\n nest_prefix (str): Optional prefix under which this ViewSet + should be nested. This must\\n correspond to the \\\"parent_prefix\\\" + of a router with rest_framework_nested.NestedMixin.\\n None indicates + this ViewSet should not be nested.\\n parent_lookup_kwargs (dict): Optional + mapping of key names that would appear in self.kwargs\\n to django + model filter expressions that can be used with the corresponding value from\\n + \ self.kwargs, used only by a nested ViewSet to filter based on the + parent object's\\n identity.\\n schema (DefaultSchema): The schema + class to use by default in a viewset.\",\n \"summary\": \"Inspect + a worker\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"worker_href\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Workers\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/WorkerResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp/maven/{name}/{path}\": {\n \"get\": + {\n \"operationId\": \"pulp_maven_get\",\n \"description\": + \"Responds to GET requests about manifests by reference\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\",\n \"pattern\": \"^[\\\\w-]+$\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": + \"string\",\n \"pattern\": \"^.*$\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp: + Maven\"\n ],\n \"responses\": {\n \"200\": + {\n \"description\": \"No response body\"\n }\n + \ }\n },\n \"put\": {\n \"operationId\": + \"pulp_maven_put\",\n \"description\": \"ViewSet for interacting + with maven deploy API\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\",\n \"pattern\": \"^[\\\\w-]+$\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": + \"string\",\n \"pattern\": \"^.*$\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Pulp: Maven\"\n ],\n + \ \"responses\": {\n \"200\": {\n \"description\": + \"No response body\"\n }\n }\n }\n + \ },\n \"/pulp_ansible/galaxy/{path}/api/\": {\n \"get\": + {\n \"operationId\": \"pulp_ansible_galaxy_api_get\",\n \"description\": + \"Return a response to the \\\"GET\\\" action.\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api\"\n ],\n \"responses\": {\n \"200\": + {\n \"description\": \"No response body\"\n }\n + \ }\n }\n },\n \"{ansible_role_href}api/v1/roles/\": + {\n \"get\": {\n \"operationId\": \"api_v1_roles_get\",\n + \ \"description\": \"APIView for Roles.\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_role_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Api: + Roles\"\n ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PaginatedGalaxyRoleResponseList\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{ansible_role_href}versions/\": {\n \"get\": {\n \"operationId\": + \"api_v1_roles_versions_list\",\n \"description\": \"APIView + for Role Versions.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ansible_role_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"name\": \"offset\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"The initial index from which to return the results.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Versions\"\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PaginatedGalaxyRoleVersionResponseList\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"{ansible_collection_import_href}\": {\n \"get\": {\n + \ \"operationId\": \"collection_import_read\",\n \"description\": + \"Returns a CollectionImport object.\",\n \"summary\": \"Inspect + a collection import\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"ansible_collection_import_href\",\n \"schema\": {\n + \ \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"since\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter messages since a given timestamp\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Collection: + Import\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"200\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/CollectionImportDetailResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_collection_href}api/v2/collections/\": + {\n \"get\": {\n \"operationId\": \"api_v2_collections_get\",\n + \ \"description\": \"View for Collection models.\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"ansible_collection_href\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"name\": + \"page\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"A page number within + the paginated result set.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Api: + Collections\"\n ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PaginatedGalaxyCollectionResponseList\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n },\n \"post\": + {\n \"operationId\": \"api_v2_collections_post\",\n \"description\": + \"Queues a task that creates a new Collection from an uploaded artifact.\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_collection_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Api: Collections\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/GalaxyCollection\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/GalaxyCollection\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/GalaxyCollection\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"deprecated\": true,\n \"responses\": + {\n \"200\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/GalaxyCollectionResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"{ansible_collection_version_href}versions/\": + {\n \"get\": {\n \"operationId\": \"api_v2_collection_versions_list\",\n + \ \"description\": \"APIView for Collections by namespace/name.\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"ansible_collection_version_href\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"name\": + \"page\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"A page number within + the paginated result set.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Versions\"\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/PaginatedGalaxyCollectionVersionResponseList\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp_ansible/galaxy/{path}/api/v2/collections/{namespace}/{name}/versions/{version}/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v2_collections_versions_get\",\n + \ \"description\": \"Return a response to the \\\"GET\\\" action.\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"namespace\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"path\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V2 Collections Versions\"\n ],\n \"responses\": + {\n \"200\": {\n \"description\": + \"No response body\"\n }\n }\n }\n + \ },\n \"/pulp_ansible/galaxy/{path}/api/v3/\": {\n \"get\": + {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_read\",\n + \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"deprecated\": true,\n \"responses\": {\n + \ \"302\": {\n \"description\": \"No + response body\"\n },\n \"202\": {\n + \ \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/RepoMetadataResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp_ansible/galaxy/{path}/api/v3/artifacts/collections/\": {\n + \ \"post\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_artifacts_collections_create\",\n + \ \"description\": \"Create an artifact and trigger an asynchronous + task to create Collection content from it.\",\n \"summary\": + \"Upload a collection\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"rpm_rpm_repository_version_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Repositories: Rpm Versions\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Repair\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": + \"path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Pulp_Ansible: Artifacts Collections V3\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Repair\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Repair\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": + \"#/components/schemas/CollectionOneShot\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CollectionOneShot\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"deprecated\": true,\n \"responses\": {\n + \ \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/repository_versions/\": {\n \"get\": {\n - \ \"operationId\": \"repository_versions_list\",\n \"summary\": - \"List repository versions\",\n \"parameters\": [\n {\n - \ \"in\": \"query\",\n \"name\": - \"content\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Content Unit referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"content__in\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Content Unit referenced by HREF\"\n },\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"number\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"number__gt\",\n \"schema\": - {\n \"type\": \"integer\"\n },\n - \ \"description\": \"Filter results where number is - greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"number__gte\",\n \"schema\": - {\n \"type\": \"integer\"\n },\n - \ \"description\": \"Filter results where number is - greater than or equal to value\"\n },\n {\n + \ \"/pulp_ansible/galaxy/{path}/api/v3/artifacts/collections/{path}/{filename}\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_artifacts_collections_get\",\n + \ \"description\": \"Download collection.\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"filename\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"path\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"number__lt\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is less than value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"number__lte\",\n \"schema\": {\n \"type\": - \"integer\"\n },\n \"description\": - \"Filter results where number is less than or equal to value\"\n },\n + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"number__range\",\n \"schema\": {\n \"type\": + \"exclude_fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"integer\"\n }\n },\n \"description\": - \"Filter results where number is between two comma separated values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Artifacts Collections\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"description\": \"No response body\"\n }\n + \ }\n }\n },\n \"/pulp_ansible/galaxy/{path}/api/v3/collection_versions/all/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collection_versions_all_list\",\n + \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-added_memberships\",\n \"-base_version\",\n - \ \"-complete\",\n \"-counts\",\n - \ \"-distribution\",\n \"-download_logs\",\n - \ \"-group_roles\",\n \"-info\",\n - \ \"-number\",\n \"-pk\",\n - \ \"-publication\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-removed_memberships\",\n - \ \"-repository\",\n \"-user_roles\",\n - \ \"-versions\",\n \"added_memberships\",\n - \ \"base_version\",\n \"complete\",\n - \ \"counts\",\n \"distribution\",\n - \ \"download_logs\",\n \"group_roles\",\n - \ \"info\",\n \"number\",\n - \ \"pk\",\n \"publication\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"removed_memberships\",\n \"repository\",\n - \ \"user_roles\",\n \"versions\"\n - \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__gt\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is greater than value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__gte\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is greater than or equal to value\"\n },\n {\n + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"pulp_created__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where pulp_created - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"pulp_created__lte\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where pulp_created is less than or equal to value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"pulp_created__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where pulp_created is between two comma separated values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Repository_Versions\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedRepositoryVersionResponseList\"\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Collection_Versions All\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"deprecated\": true,\n \"responses\": + {\n \"302\": {\n \"description\": + \"No response body\"\n },\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/UnpaginatedCollectionVersionResponse\"\n }\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/roles/\": {\n \"get\": - {\n \"operationId\": \"roles_list\",\n \"description\": - \"ViewSet for Role.\\n\\nNOTE: This API endpoint is in \\\"tech preview\\\" - and subject to change\",\n \"summary\": \"List roles\",\n \"parameters\": + \ }\n },\n \"/pulp_ansible/galaxy/{path}/api/v3/collections/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collections_list\",\n + \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": - \"contains_permission\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter roles that have any of the permissions in the list.\",\n \"explode\": - true,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"description\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where description matches value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"description__contains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where description contains value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"description__icontains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where description contains value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"description__iexact\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where description matches value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"for_object_type\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter roles that only have permissions for the specified object HREF.\"\n + \"deprecated\",\n \"schema\": {\n \"type\": + \"boolean\"\n }\n },\n {\n + \ \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"namespace\",\n \"schema\": + {\n \"type\": \"string\"\n }\n \ },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"locked\",\n \"schema\": {\n \"type\": - \"boolean\"\n },\n \"description\": - \"Filter results where locked matches value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where name matches value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__contains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__icontains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__in\",\n \"schema\": {\n \"type\": + \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where name is in a comma-separated list of values\",\n \"explode\": + \"string\",\n \"enum\": [\n \"-name\",\n + \ \"-namespace\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"name\",\n + \ \"namespace\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `namespace` - Namespace\\n* `-namespace` - Namespace + (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* `pk` - + Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n + \ \"style\": \"form\"\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"name__startswith\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where name starts with value\"\n },\n - \ {\n \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-description\",\n \"-group_roles\",\n - \ \"-locked\",\n \"-name\",\n - \ \"-object_groups\",\n \"-object_users\",\n - \ \"-permissions\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-user_roles\",\n \"description\",\n - \ \"group_roles\",\n \"locked\",\n - \ \"name\",\n \"object_groups\",\n - \ \"object_users\",\n \"permissions\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"user_roles\"\n - \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Roles\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedRoleResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"post\": {\n \"operationId\": - \"roles_create\",\n \"description\": \"ViewSet for Role.\\n\\nNOTE: - This API endpoint is in \\\"tech preview\\\" and subject to change\",\n \"summary\": - \"Create a role\",\n \"tags\": [\n \"Roles\"\n - \ ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Role\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Role\"\n }\n },\n - \ \"multipart/form-data\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Role\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"201\": + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Collections\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"deprecated\": true,\n \"responses\": + {\n \"302\": {\n \"description\": + \"No response body\"\n },\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RoleResponse\"\n }\n + \"#/components/schemas/PaginatedCollectionResponseList\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{role_href}\": {\n \"get\": {\n \"operationId\": - \"roles_read\",\n \"description\": \"ViewSet for Role.\\n\\nNOTE: - This API endpoint is in \\\"tech preview\\\" and subject to change\",\n \"summary\": - \"Inspect a role\",\n \"parameters\": [\n {\n + \ \"/pulp_ansible/galaxy/{path}/api/v3/collections/{namespace}/{name}/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collections_read\",\n + \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"namespace\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n \ \"in\": \"path\",\n \"name\": - \"role_href\",\n \"schema\": {\n \"type\": + \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Roles\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Collections\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"deprecated\": true,\n \"responses\": + {\n \"302\": {\n \"description\": + \"No response body\"\n },\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RoleResponse\"\n }\n + \"#/components/schemas/CollectionResponse\"\n }\n \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"put\": - {\n \"operationId\": \"roles_update\",\n \"description\": - \"ViewSet for Role.\\n\\nNOTE: This API endpoint is in \\\"tech preview\\\" - and subject to change\",\n \"summary\": \"Update a role\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"role_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Roles\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Role\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Role\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Role\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RoleResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"roles_partial_update\",\n \"description\": \"ViewSet for - Role.\\n\\nNOTE: This API endpoint is in \\\"tech preview\\\" and subject - to change\",\n \"summary\": \"Update a role\",\n \"parameters\": + \"\"\n }\n }\n },\n \"patch\": + {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collections_update\",\n + \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": - \"role_href\",\n \"schema\": {\n \"type\": + \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Roles\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PatchedRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RoleResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"roles_delete\",\n \"description\": \"ViewSet for Role.\\n\\nNOTE: - This API endpoint is in \\\"tech preview\\\" and subject to change\",\n \"summary\": - \"Delete a role\",\n \"parameters\": [\n {\n + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"namespace\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n \ \"in\": \"path\",\n \"name\": - \"role_href\",\n \"schema\": {\n \"type\": + \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Roles\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"204\": - {\n \"description\": \"No response body\"\n }\n - \ }\n }\n },\n \"/pulp/api/v3/rpm/comps/\": - {\n \"post\": {\n \"operationId\": \"rpm_comps_upload\",\n - \ \"description\": \"Trigger an asynchronous task to upload - a comps.xml file.\",\n \"summary\": \"Upload comps.xml\",\n - \ \"tags\": [\n \"Rpm: Comps\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"multipart/form-data\": + [\n \"Pulp_Ansible: Api V3 Collections\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/CompsXml\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/CompsXml\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/rpm/copy/\": {\n \"post\": {\n \"operationId\": - \"copy_content\",\n \"description\": \"Trigger an asynchronous - task to copy RPM contentfrom one repository into another, creating a newrepository - version.\",\n \"summary\": \"Copy content\",\n \"tags\": - [\n \"Rpm: Copy\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": + \"#/components/schemas/PatchedCollection\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Copy\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Copy\"\n - \ }\n },\n \"multipart/form-data\": + \"#/components/schemas/PatchedCollection\"\n }\n + \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Copy\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/signing-services/\": {\n - \ \"get\": {\n \"operationId\": \"signing_services_list\",\n - \ \"description\": \"A ViewSet that supports browsing of existing - signing services.\",\n \"summary\": \"List signing services\",\n - \ \"parameters\": [\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Signing-Services\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": + \"#/components/schemas/PatchedCollection\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"deprecated\": true,\n \"responses\": {\n + \ \"302\": {\n \"description\": \"No + response body\"\n },\n \"202\": {\n + \ \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PaginatedSigningServiceResponseList\"\n }\n + \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{signing_service_href}\": {\n \"get\": {\n \"operationId\": - \"signing_services_read\",\n \"description\": \"A ViewSet that - supports browsing of existing signing services.\",\n \"summary\": - \"Inspect a signing service\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"signing_service_href\",\n \"schema\": {\n \"type\": + \"\"\n }\n }\n },\n \"delete\": + {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collections_delete\",\n + \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \"path\",\n \"name\": \"namespace\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Signing-Services\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Pulp_Ansible: Api V3 Collections\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"deprecated\": + true,\n \"responses\": {\n \"302\": {\n + \ \"description\": \"No response body\"\n },\n + \ \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/SigningServiceResponse\"\n }\n + \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/status/\": {\n \"get\": {\n \"operationId\": - \"status_read\",\n \"description\": \"Returns status and app - information about Pulp.\\n\\nInformation includes:\\n * version of pulpcore - and loaded pulp plugins\\n * known workers\\n * known content apps\\n * database - connection status\\n * redis connection status\\n * disk usage information\",\n - \ \"summary\": \"Inspect status of Pulp\",\n \"tags\": - [\n \"Status\"\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/StatusResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/task-groups/\": {\n \"get\": - {\n \"operationId\": \"task_groups_list\",\n \"description\": - \"A customized named ModelViewSet that knows how to register itself with the - Pulp API router.\\n\\nThis viewset is discoverable by its name.\\n\\\"Normal\\\" - Django Models and Master/Detail models are supported by the ``register_with`` - method.\\n\\nAttributes:\\n lookup_field (str): The name of the field by - which an object should be looked up, in\\n addition to any parent lookups - if this ViewSet is nested. Defaults to 'pk'\\n endpoint_name (str): The - name of the final path segment that should identify the ViewSet's\\n collection - endpoint.\\n nest_prefix (str): Optional prefix under which this ViewSet - should be nested. This must\\n correspond to the \\\"parent_prefix\\\" - of a router with rest_framework_nested.NestedMixin.\\n None indicates - this ViewSet should not be nested.\\n parent_lookup_kwargs (dict): Optional - mapping of key names that would appear in self.kwargs\\n to django - model filter expressions that can be used with the corresponding value from\\n - \ self.kwargs, used only by a nested ViewSet to filter based on the - parent object's\\n identity.\\n schema (DefaultSchema): The schema - class to use by default in a viewset.\",\n \"summary\": \"List - task groups\",\n \"parameters\": [\n {\n + \ \"/pulp_ansible/galaxy/{path}/api/v3/collections/{namespace}/{name}/versions/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collections_versions_list\",\n + \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": + [\n {\n \"in\": \"query\",\n \"name\": + \"is_highest\",\n \"schema\": {\n \"type\": + \"boolean\"\n }\n },\n {\n \ \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"path\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"namespace\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"namespace\",\n \"schema\": + {\n \"type\": \"string\"\n }\n \ },\n {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from @@ -19179,341 +35318,408 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-all_tasks_dispatched\",\n - \ \"-description\",\n \"-group_progress_reports\",\n - \ \"-group_roles\",\n \"-pk\",\n + \"string\",\n \"enum\": [\n \"-authors\",\n + \ \"-contents\",\n \"-dependencies\",\n + \ \"-description\",\n \"-docs_blob\",\n + \ \"-documentation\",\n \"-files\",\n + \ \"-homepage\",\n \"-is_highest\",\n + \ \"-issues\",\n \"-license\",\n + \ \"-manifest\",\n \"-name\",\n + \ \"-namespace\",\n \"-pk\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-tasks\",\n \"-user_roles\",\n - \ \"all_tasks_dispatched\",\n \"description\",\n - \ \"group_progress_reports\",\n \"group_roles\",\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"-repository\",\n \"-requires_ansible\",\n + \ \"-search_vector\",\n \"-timestamp_of_interest\",\n + \ \"-upstream_id\",\n \"-version\",\n + \ \"-version_major\",\n \"-version_minor\",\n + \ \"-version_patch\",\n \"-version_prerelease\",\n + \ \"authors\",\n \"contents\",\n + \ \"dependencies\",\n \"description\",\n + \ \"docs_blob\",\n \"documentation\",\n + \ \"files\",\n \"homepage\",\n + \ \"is_highest\",\n \"issues\",\n + \ \"license\",\n \"manifest\",\n + \ \"name\",\n \"namespace\",\n \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"tasks\",\n - \ \"user_roles\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"repository\",\n + \ \"requires_ansible\",\n \"search_vector\",\n + \ \"timestamp_of_interest\",\n \"upstream_id\",\n + \ \"version\",\n \"version_major\",\n + \ \"version_minor\",\n \"version_patch\",\n + \ \"version_prerelease\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `authors` - Authors\\n* `-authors` + - Authors (descending)\\n* `contents` - Contents\\n* `-contents` - Contents + (descending)\\n* `dependencies` - Dependencies\\n* `-dependencies` - Dependencies + (descending)\\n* `description` - Description\\n* `-description` - Description + (descending)\\n* `docs_blob` - Docs blob\\n* `-docs_blob` - Docs blob (descending)\\n* + `manifest` - Manifest\\n* `-manifest` - Manifest (descending)\\n* `files` + - Files\\n* `-files` - Files (descending)\\n* `documentation` - Documentation\\n* + `-documentation` - Documentation (descending)\\n* `homepage` - Homepage\\n* + `-homepage` - Homepage (descending)\\n* `issues` - Issues\\n* `-issues` - + Issues (descending)\\n* `license` - License\\n* `-license` - License (descending)\\n* + `name` - Name\\n* `-name` - Name (descending)\\n* `namespace` - Namespace\\n* + `-namespace` - Namespace (descending)\\n* `repository` - Repository\\n* `-repository` + - Repository (descending)\\n* `requires_ansible` - Requires ansible\\n* `-requires_ansible` + - Requires ansible (descending)\\n* `version` - Version\\n* `-version` - Version + (descending)\\n* `version_major` - Version major\\n* `-version_major` - Version + major (descending)\\n* `version_minor` - Version minor\\n* `-version_minor` + - Version minor (descending)\\n* `version_patch` - Version patch\\n* `-version_patch` + - Version patch (descending)\\n* `version_prerelease` - Version prerelease\\n* + `-version_prerelease` - Version prerelease (descending)\\n* `is_highest` - + Is highest\\n* `-is_highest` - Is highest (descending)\\n* `search_vector` + - Search vector\\n* `-search_vector` - Search vector (descending)\\n* `pk` + - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"path\",\n \"name\": \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Task-Groups\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_removed\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"tags\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter by comma separate list of tags that must all be matched\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where version matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Collections Versions\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"deprecated\": true,\n \"responses\": + {\n \"302\": {\n \"description\": + \"No response body\"\n },\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PaginatedTaskGroupResponseList\"\n }\n + \"#/components/schemas/PaginatedCollectionVersionListResponseList\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{task_group_href}\": {\n \"get\": {\n \"operationId\": - \"task_groups_read\",\n \"description\": \"A customized named - ModelViewSet that knows how to register itself with the Pulp API router.\\n\\nThis - viewset is discoverable by its name.\\n\\\"Normal\\\" Django Models and Master/Detail - models are supported by the ``register_with`` method.\\n\\nAttributes:\\n - \ lookup_field (str): The name of the field by which an object should be - looked up, in\\n addition to any parent lookups if this ViewSet is - nested. Defaults to 'pk'\\n endpoint_name (str): The name of the final - path segment that should identify the ViewSet's\\n collection endpoint.\\n - \ nest_prefix (str): Optional prefix under which this ViewSet should be - nested. This must\\n correspond to the \\\"parent_prefix\\\" of a router - with rest_framework_nested.NestedMixin.\\n None indicates this ViewSet - should not be nested.\\n parent_lookup_kwargs (dict): Optional mapping - of key names that would appear in self.kwargs\\n to django model filter - expressions that can be used with the corresponding value from\\n self.kwargs, - used only by a nested ViewSet to filter based on the parent object's\\n identity.\\n - \ schema (DefaultSchema): The schema class to use by default in a viewset.\",\n - \ \"summary\": \"Inspect a task group\",\n \"parameters\": + \ \"/pulp_ansible/galaxy/{path}/api/v3/collections/{namespace}/{name}/versions/{version}/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collections_versions_read\",\n + \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": - \"task_group_href\",\n \"schema\": {\n \"type\": + \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": + \"path\",\n \"name\": \"namespace\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"version\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Task-Groups\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/TaskGroupResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp/api/v3/task-schedules/\": {\n \"get\": {\n \"operationId\": - \"task_schedules_list\",\n \"description\": \"ViewSet to monitor - task schedules.\\n\\nNOTE: This feature is in tech-preview and may change - in backwards incompatible ways.\",\n \"summary\": \"List task - schedules\",\n \"parameters\": [\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__contains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n - \ \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"ordering\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"enum\": - [\n \"-dispatch_interval\",\n \"-group_roles\",\n - \ \"-last_task\",\n \"-name\",\n - \ \"-next_dispatch\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-task_name\",\n \"-user_roles\",\n - \ \"dispatch_interval\",\n \"group_roles\",\n - \ \"last_task\",\n \"name\",\n - \ \"next_dispatch\",\n \"pk\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"task_name\",\n \"user_roles\"\n - \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"task_name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n + \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"task_name__contains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where task_name contains value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Task-Schedules\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedTaskScheduleResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{task_schedule_href}\": {\n \"get\": - {\n \"operationId\": \"task_schedules_read\",\n \"description\": - \"ViewSet to monitor task schedules.\\n\\nNOTE: This feature is in tech-preview - and may change in backwards incompatible ways.\",\n \"summary\": - \"Inspect a task schedule\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"task_schedule_href\",\n \"schema\": {\n \"type\": + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Collections Versions\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"deprecated\": true,\n \"responses\": + {\n \"302\": {\n \"description\": + \"No response body\"\n },\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CollectionVersionResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n },\n \"delete\": + {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collections_versions_delete\",\n + \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": + \"path\",\n \"name\": \"namespace\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"version\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Task-Schedules\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Pulp_Ansible: Api V3 Collections + Versions\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"deprecated\": true,\n \"responses\": {\n + \ \"302\": {\n \"description\": \"No + response body\"\n },\n \"202\": {\n + \ \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/TaskScheduleResponse\"\n }\n + \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{task_schedule_href}add_role/\": {\n \"post\": {\n \"operationId\": - \"task_schedules_add_role\",\n \"description\": \"Add a role - for this object to users/groups.\",\n \"parameters\": [\n {\n + \ \"/pulp_ansible/galaxy/{path}/api/v3/collections/{namespace}/{name}/versions/{version}/docs-blob/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collections_versions_docs_blob_read\",\n + \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"namespace\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n \ \"in\": \"path\",\n \"name\": - \"task_schedule_href\",\n \"schema\": {\n \"type\": + \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Task-Schedules\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{task_schedule_href}list_roles/\": {\n - \ \"get\": {\n \"operationId\": \"task_schedules_list_roles\",\n - \ \"description\": \"List roles assigned to this object.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"task_schedule_href\",\n \"schema\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Task-Schedules\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ObjectRolesResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{task_schedule_href}my_permissions/\": - {\n \"get\": {\n \"operationId\": \"task_schedules_my_permissions\",\n - \ \"description\": \"List permissions available to the current - user on this object.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"task_schedule_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Task-Schedules\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Collections Versions Docs-Blob\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"deprecated\": true,\n \"responses\": + {\n \"302\": {\n \"description\": + \"No response body\"\n },\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/MyPermissionsResponse\"\n }\n + \"#/components/schemas/CollectionVersionDocsResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{task_schedule_href}remove_role/\": {\n \"post\": {\n - \ \"operationId\": \"task_schedules_remove_role\",\n \"description\": - \"Remove a role for this object from users/groups.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"task_schedule_href\",\n \"schema\": {\n \"type\": + \ \"/pulp_ansible/galaxy/{path}/api/v3/collections/all/\": {\n \"get\": + {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collections_all_list\",\n + \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": + [\n {\n \"in\": \"query\",\n \"name\": + \"deprecated\",\n \"schema\": {\n \"type\": + \"boolean\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"namespace\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"ordering\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-name\",\n + \ \"-namespace\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"name\",\n + \ \"namespace\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `namespace` - Namespace\\n* `-namespace` - Namespace + (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* `pk` - + Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n + \ \"style\": \"form\"\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Task-Schedules\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Collections All\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"deprecated\": true,\n \"responses\": + {\n \"302\": {\n \"description\": + \"No response body\"\n },\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/CollectionResponse\"\n }\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/tasks/\": {\n \"get\": - {\n \"operationId\": \"tasks_list\",\n \"description\": - \"A customized named ModelViewSet that knows how to register itself with the - Pulp API router.\\n\\nThis viewset is discoverable by its name.\\n\\\"Normal\\\" - Django Models and Master/Detail models are supported by the ``register_with`` - method.\\n\\nAttributes:\\n lookup_field (str): The name of the field by - which an object should be looked up, in\\n addition to any parent lookups - if this ViewSet is nested. Defaults to 'pk'\\n endpoint_name (str): The - name of the final path segment that should identify the ViewSet's\\n collection - endpoint.\\n nest_prefix (str): Optional prefix under which this ViewSet - should be nested. This must\\n correspond to the \\\"parent_prefix\\\" - of a router with rest_framework_nested.NestedMixin.\\n None indicates - this ViewSet should not be nested.\\n parent_lookup_kwargs (dict): Optional - mapping of key names that would appear in self.kwargs\\n to django - model filter expressions that can be used with the corresponding value from\\n - \ self.kwargs, used only by a nested ViewSet to filter based on the - parent object's\\n identity.\\n schema (DefaultSchema): The schema - class to use by default in a viewset.\",\n \"summary\": \"List - tasks\",\n \"parameters\": [\n {\n \"in\": - \"query\",\n \"name\": \"child_tasks\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"uuid\"\n },\n \"description\": - \"Foreign Key referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"created_resources\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"uuid\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"finished_at\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"ISO 8601 formatted dates are supported\"\n },\n {\n + \ }\n },\n \"/pulp_ansible/galaxy/{path}/api/v3/namespaces/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_namespaces_list\",\n + \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": + [\n {\n \"in\": \"query\",\n \"name\": + \"company\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"finished_at__gt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where finished_at - is greater than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"finished_at__gte\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where finished_at is greater than or equal to value\"\n },\n + \"company__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company contains value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"finished_at__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where finished_at - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"finished_at__lte\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where finished_at is less than or equal to value\"\n },\n + \"company__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company contains value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"finished_at__range\",\n \"schema\": {\n \"type\": + \"company__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"company__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where finished_at is between two comma separated values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n + \"string\"\n }\n },\n \"description\": + \"Filter results where company is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"company__iregex\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where company matches + regex value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"company__istartswith\",\n + \ \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"company__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"company__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company starts with value\"\n },\n \ {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n \ },\n {\n \"in\": - \"query\",\n \"name\": \"logging_cid\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"logging_cid__contains\",\n - \ \"schema\": {\n \"type\": + \"query\",\n \"name\": \"metadata_sha256\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where metadata_sha256 + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"metadata_sha256__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where metadata_sha256 is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where logging_cid contains value\"\n },\n + \"Filter results where name matches regex value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name__contains\",\n \"schema\": {\n \"type\": + \"name__istartswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Filter results where name contains value\"\n },\n {\n - \ \"name\": \"offset\",\n \"required\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n @@ -19521,660 +35727,358 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-args\",\n \"-child_tasks\",\n - \ \"-created_resources\",\n \"-error\",\n - \ \"-export\",\n \"-finished_at\",\n - \ \"-group_roles\",\n \"-import\",\n - \ \"-kwargs\",\n \"-logging_cid\",\n - \ \"-name\",\n \"-parent_task\",\n - \ \"-pk\",\n \"-progress_reports\",\n + [\n \"-avatar_sha256\",\n \"-company\",\n + \ \"-description\",\n \"-email\",\n + \ \"-links\",\n \"-metadata_sha256\",\n + \ \"-name\",\n \"-pk\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-reserved_resources_record\",\n \"-started_at\",\n - \ \"-state\",\n \"-task_group\",\n - \ \"-taskschedule\",\n \"-user_roles\",\n - \ \"-worker\",\n \"args\",\n - \ \"child_tasks\",\n \"created_resources\",\n - \ \"error\",\n \"export\",\n - \ \"finished_at\",\n \"group_roles\",\n - \ \"import\",\n \"kwargs\",\n - \ \"logging_cid\",\n \"name\",\n - \ \"parent_task\",\n \"pk\",\n - \ \"progress_reports\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"reserved_resources_record\",\n - \ \"started_at\",\n \"state\",\n - \ \"task_group\",\n \"taskschedule\",\n - \ \"user_roles\",\n \"worker\"\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"-resources\",\n \"-timestamp_of_interest\",\n + \ \"-upstream_id\",\n \"avatar_sha256\",\n + \ \"company\",\n \"description\",\n + \ \"email\",\n \"links\",\n + \ \"metadata_sha256\",\n \"name\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"resources\",\n + \ \"timestamp_of_interest\",\n \"upstream_id\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"parent_task\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"uuid\"\n },\n - \ \"description\": \"Foreign Key referenced by HREF\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"reserved_resources_record\",\n - \ \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n },\n \"nullable\": - true\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"started_at\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"started_at__gt\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where started_at is greater than value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"started_at__gte\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where started_at - is greater than or equal to value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"started_at__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where started_at - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"started_at__lte\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where started_at is less than or equal to value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"started_at__range\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where started_at is between two comma separated values\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* `company` + - Company\\n* `-company` - Company (descending)\\n* `email` - Email\\n* `-email` + - Email (descending)\\n* `description` - Description\\n* `-description` - + Description (descending)\\n* `resources` - Resources\\n* `-resources` - Resources + (descending)\\n* `links` - Links\\n* `-links` - Links (descending)\\n* `avatar_sha256` + - Avatar sha256\\n* `-avatar_sha256` - Avatar sha256 (descending)\\n* `metadata_sha256` + - Metadata sha256\\n* `-metadata_sha256` - Metadata sha256 (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"state\",\n \"schema\": {\n \"type\": - \"string\",\n \"enum\": [\n \"canceled\",\n - \ \"canceling\",\n \"completed\",\n - \ \"failed\",\n \"running\",\n - \ \"skipped\",\n \"waiting\"\n - \ ]\n }\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"state__in\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where state is in a comma-separated list of values\",\n \"explode\": + \ {\n \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"task_group\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"uuid\"\n },\n - \ \"description\": \"Foreign Key referenced by HREF\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"worker\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"uuid\"\n },\n \"description\": - \"Foreign Key referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"worker__in\",\n \"schema\": {\n \"type\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"format\": \"uuid\"\n }\n - \ },\n \"description\": \"Filter - results where worker is in a comma-separated list of values\",\n \"explode\": + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Tasks\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedTaskResponseList\"\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Namespaces\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"deprecated\": true,\n \"responses\": + {\n \"302\": {\n \"description\": + \"No response body\"\n },\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Paginatedansible.AnsibleNamespaceMetadataResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{task_href}\": {\n \"get\": - {\n \"operationId\": \"tasks_read\",\n \"description\": - \"A customized named ModelViewSet that knows how to register itself with the - Pulp API router.\\n\\nThis viewset is discoverable by its name.\\n\\\"Normal\\\" - Django Models and Master/Detail models are supported by the ``register_with`` - method.\\n\\nAttributes:\\n lookup_field (str): The name of the field by - which an object should be looked up, in\\n addition to any parent lookups - if this ViewSet is nested. Defaults to 'pk'\\n endpoint_name (str): The - name of the final path segment that should identify the ViewSet's\\n collection - endpoint.\\n nest_prefix (str): Optional prefix under which this ViewSet - should be nested. This must\\n correspond to the \\\"parent_prefix\\\" - of a router with rest_framework_nested.NestedMixin.\\n None indicates - this ViewSet should not be nested.\\n parent_lookup_kwargs (dict): Optional - mapping of key names that would appear in self.kwargs\\n to django - model filter expressions that can be used with the corresponding value from\\n - \ self.kwargs, used only by a nested ViewSet to filter based on the - parent object's\\n identity.\\n schema (DefaultSchema): The schema - class to use by default in a viewset.\",\n \"summary\": \"Inspect - a task\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"task_href\",\n \"schema\": + \ }\n },\n \"/pulp_ansible/galaxy/{path}/api/v3/namespaces/{name}/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_namespaces_read\",\n + \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Tasks\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/TaskResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"tasks_cancel\",\n \"description\": \"This operation cancels - a task.\",\n \"summary\": \"Cancel a task\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"task_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Tasks\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedTaskCancel\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedTaskCancel\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedTaskCancel\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/TaskResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n },\n \"409\": + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Namespaces\"\n ],\n \"security\": [\n + \ {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"deprecated\": true,\n \"responses\": + {\n \"302\": {\n \"description\": + \"No response body\"\n },\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/TaskResponse\"\n }\n + \"#/components/schemas/ansible.AnsibleNamespaceMetadataResponse\"\n }\n \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"tasks_delete\",\n \"description\": - \"A customized named ModelViewSet that knows how to register itself with the - Pulp API router.\\n\\nThis viewset is discoverable by its name.\\n\\\"Normal\\\" - Django Models and Master/Detail models are supported by the ``register_with`` - method.\\n\\nAttributes:\\n lookup_field (str): The name of the field by - which an object should be looked up, in\\n addition to any parent lookups - if this ViewSet is nested. Defaults to 'pk'\\n endpoint_name (str): The - name of the final path segment that should identify the ViewSet's\\n collection - endpoint.\\n nest_prefix (str): Optional prefix under which this ViewSet - should be nested. This must\\n correspond to the \\\"parent_prefix\\\" - of a router with rest_framework_nested.NestedMixin.\\n None indicates - this ViewSet should not be nested.\\n parent_lookup_kwargs (dict): Optional - mapping of key names that would appear in self.kwargs\\n to django - model filter expressions that can be used with the corresponding value from\\n - \ self.kwargs, used only by a nested ViewSet to filter based on the - parent object's\\n identity.\\n schema (DefaultSchema): The schema - class to use by default in a viewset.\",\n \"summary\": \"Delete - a task\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"task_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Tasks\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"204\": {\n \"description\": - \"No response body\"\n }\n }\n }\n - \ },\n \"{task_href}add_role/\": {\n \"post\": {\n - \ \"operationId\": \"tasks_add_role\",\n \"description\": - \"Add a role for this object to users/groups.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"task_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Tasks\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{task_href}list_roles/\": {\n \"get\": - {\n \"operationId\": \"tasks_list_roles\",\n \"description\": - \"List roles assigned to this object.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"task_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/client-configuration/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_client_configuration_read\",\n + \ \"description\": \"Return configurations for the ansible-galaxy + client.\",\n \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Tasks\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Plugin Ansible Client-Configuration\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ObjectRolesResponse\"\n }\n + \"#/components/schemas/ClientConfigurationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{task_href}my_permissions/\": {\n \"get\": {\n \"operationId\": - \"tasks_my_permissions\",\n \"description\": \"List permissions - available to the current user on this object.\",\n \"parameters\": + \ \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_read\",\n + \ \"description\": \"ViewSet for Repository Metadata.\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": - \"task_href\",\n \"schema\": {\n \"type\": + \"distro_base_path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Tasks\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/MyPermissionsResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{task_href}remove_role/\": {\n \"post\": {\n \"operationId\": - \"tasks_remove_role\",\n \"description\": \"Remove a role for - this object from users/groups.\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"task_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Tasks\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/NestedRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/tasks/purge/\": {\n \"post\": - {\n \"operationId\": \"tasks_purge\",\n \"description\": - \"Trigger an asynchronous task that deletes completed tasks that finished - prior to a specified timestamp (tech-preview, may change in the future).\",\n - \ \"summary\": \"Purge Completed Tasks\",\n \"tags\": - [\n \"Tasks\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Purge\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Purge\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Purge\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/uploads/\": {\n \"get\": - {\n \"operationId\": \"uploads_list\",\n \"description\": - \"View for chunked uploads.\",\n \"summary\": \"List uploads\",\n - \ \"parameters\": [\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Uploads\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PaginatedUploadResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"uploads_create\",\n \"description\": - \"View for chunked uploads.\",\n \"summary\": \"Create an upload\",\n - \ \"tags\": [\n \"Uploads\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Upload\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Upload\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Upload\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/UploadResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{upload_href}\": {\n \"get\": - {\n \"operationId\": \"uploads_read\",\n \"description\": - \"View for chunked uploads.\",\n \"summary\": \"Inspect an - upload\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"upload_href\",\n \"schema\": + \"path\",\n \"name\": \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Uploads\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/UploadDetailResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"put\": {\n \"operationId\": \"uploads_update\",\n - \ \"description\": \"Upload a chunk for an upload.\",\n \"summary\": - \"Upload a file chunk\",\n \"parameters\": [\n {\n - \ \"in\": \"header\",\n \"name\": - \"Content-Range\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"The Content-Range header specifies the location of the file chunk within - the file.\",\n \"required\": true\n },\n - \ {\n \"in\": \"path\",\n \"name\": - \"upload_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Uploads\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/UploadChunk\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/UploadChunk\"\n - \ }\n }\n },\n - \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Plugin Ansible Content Collections\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/UploadResponse\"\n }\n + \"#/components/schemas/RepoMetadataResponse\"\n }\n \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"uploads_delete\",\n \"description\": - \"View for chunked uploads.\",\n \"summary\": \"Delete an upload\",\n + \"\"\n }\n }\n }\n },\n + \ \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/all-collections/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_all_collections_list\",\n + \ \"description\": \"Unpaginated ViewSet for Collections.\",\n \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"upload_href\",\n \"schema\": + \"query\",\n \"name\": \"deprecated\",\n \"schema\": + {\n \"type\": \"boolean\"\n }\n + \ },\n {\n \"in\": + \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Uploads\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"204\": {\n \"description\": - \"No response body\"\n }\n }\n }\n - \ },\n \"{upload_href}add_role/\": {\n \"post\": {\n - \ \"operationId\": \"uploads_add_role\",\n \"description\": - \"Add a role for this object to users/groups.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"upload_href\",\n \"schema\": {\n \"type\": + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"namespace\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"ordering\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-name\",\n + \ \"-namespace\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"name\",\n + \ \"namespace\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `namespace` - Namespace\\n* `-namespace` - Namespace + (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* `pk` - + Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n + \ \"style\": \"form\"\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Uploads\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Upload\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Upload\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Upload\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{upload_href}commit/\": {\n \"post\": - {\n \"operationId\": \"uploads_commit\",\n \"description\": - \"Queues a Task that creates an Artifact, and the Upload gets deleted and - cannot be re-used.\",\n \"summary\": \"Finish an Upload\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"upload_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Uploads\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/UploadCommit\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/UploadCommit\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/UploadCommit\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Plugin Ansible Content Collections All-Collections\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n + {\n \"200\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{upload_href}list_roles/\": {\n \"get\": - {\n \"operationId\": \"uploads_list_roles\",\n \"description\": - \"List roles assigned to this object.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"upload_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Uploads\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/ObjectRolesResponse\"\n }\n + {\n \"type\": \"array\",\n \"items\": + {\n \"$ref\": \"#/components/schemas/CollectionResponse\"\n + \ }\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"{upload_href}my_permissions/\": {\n \"get\": {\n \"operationId\": - \"uploads_my_permissions\",\n \"description\": \"List permissions - available to the current user on this object.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"upload_href\",\n \"schema\": {\n \"type\": + \ \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/all-versions/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_all_versions_list\",\n + \ \"description\": \"Returns paginated CollectionVersions list.\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Uploads\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/MyPermissionsResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{upload_href}remove_role/\": {\n \"post\": {\n \"operationId\": - \"uploads_remove_role\",\n \"description\": \"Remove a role - for this object from users/groups.\",\n \"parameters\": [\n - \ {\n \"in\": \"path\",\n \"name\": - \"upload_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Uploads\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Upload\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/Upload\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/Upload\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/NestedRoleResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp/api/v3/users/\": {\n \"get\": - {\n \"operationId\": \"users_list\",\n \"description\": - \"ViewSet for User.\\n\\nNOTE: This API endpoint is in \\\"tech preview\\\" - and subject to change\",\n \"summary\": \"List users\",\n \"parameters\": - [\n {\n \"in\": \"query\",\n \"name\": - \"email\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where email matches value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"email__contains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where email contains value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"email__icontains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where email contains value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"email__iexact\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where email matches value\"\n },\n {\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"email__in\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n }\n },\n \"description\": - \"Filter results where email is in a comma-separated list of values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"first_name\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where first_name matches value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"first_name__contains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where first_name contains value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"first_name__icontains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where first_name contains value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"first_name__iexact\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where first_name matches value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"first_name__in\",\n \"schema\": {\n \"type\": + \"exclude_fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": - \"Filter results where first_name is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"is_active\",\n \"schema\": - {\n \"type\": \"boolean\"\n },\n - \ \"description\": \"Filter results where is_active - matches value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"is_staff\",\n \"schema\": - {\n \"type\": \"boolean\"\n },\n - \ \"description\": \"Filter results where is_staff matches - value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"last_name\",\n \"schema\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Plugin Ansible Content Collections All-Versions\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"$ref\": \"#/components/schemas/UnpaginatedCollectionVersionResponse\"\n + \ }\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/artifacts/\": + {\n \"post\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_artifacts_create\",\n + \ \"description\": \"Create an artifact and trigger an asynchronous + task to create Collection content from it.\",\n \"summary\": + \"Upload a collection\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"distro_base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where last_name - matches value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"last_name__contains\",\n \"schema\": + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Pulp_Ansible: Artifacts + Collections V3\"\n ],\n \"requestBody\": {\n + \ \"content\": {\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CollectionOneShot\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CollectionOneShot\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/artifacts/{filename}\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_artifacts_download\",\n + \ \"description\": \"Collection download endpoint.\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"distro_base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"filename\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"Filter results where last_name - contains value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"last_name__icontains\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where last_name contains value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"last_name__iexact\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where last_name matches value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"last_name__in\",\n \"schema\": {\n \"type\": + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": - \"Filter results where last_name is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"name\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Plugin Ansible Content Collections Artifacts\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"description\": + \"No response body\"\n }\n }\n }\n + \ },\n \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_index_list\",\n + \ \"description\": \"ViewSet for Collections.\",\n \"parameters\": + [\n {\n \"in\": \"query\",\n \"name\": + \"deprecated\",\n \"schema\": {\n \"type\": + \"boolean\"\n }\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"distro_base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"namespace\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": @@ -20183,192 +36087,187 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-date_joined\",\n \"-download_logs\",\n - \ \"-email\",\n \"-first_name\",\n - \ \"-groups\",\n \"-id\",\n - \ \"-is_active\",\n \"-is_staff\",\n - \ \"-is_superuser\",\n \"-last_login\",\n - \ \"-last_name\",\n \"-object_roles\",\n - \ \"-password\",\n \"-pk\",\n - \ \"-user_permissions\",\n \"-username\",\n - \ \"date_joined\",\n \"download_logs\",\n - \ \"email\",\n \"first_name\",\n - \ \"groups\",\n \"id\",\n - \ \"is_active\",\n \"is_staff\",\n - \ \"is_superuser\",\n \"last_login\",\n - \ \"last_name\",\n \"object_roles\",\n - \ \"password\",\n \"pk\",\n - \ \"user_permissions\",\n \"username\"\n + [\n \"-name\",\n \"-namespace\",\n + \ \"-pk\",\n \"-pulp_created\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n + \ \"name\",\n \"namespace\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `namespace` - Namespace\\n* `-namespace` - Namespace (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"path\",\n \"name\": \"path\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"username\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where username matches value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"username__contains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where username contains value\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"username__icontains\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where username contains value\"\n },\n + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"username__iexact\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where username matches value\"\n },\n + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"username__in\",\n \"schema\": {\n \"type\": + \"exclude_fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"description\": - \"Filter results where username is in a comma-separated list of values\",\n - \ \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Users\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Plugin Ansible Content Collections Index\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PaginatedUserResponseList\"\n }\n + \"#/components/schemas/PaginatedCollectionResponseList\"\n }\n \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"users_create\",\n \"description\": - \"ViewSet for User.\\n\\nNOTE: This API endpoint is in \\\"tech preview\\\" - and subject to change\",\n \"summary\": \"Create an user\",\n - \ \"tags\": [\n \"Users\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/User\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/User\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/User\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/UserResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{auth_user_href}\": {\n \"get\": - {\n \"operationId\": \"users_read\",\n \"description\": - \"ViewSet for User.\\n\\nNOTE: This API endpoint is in \\\"tech preview\\\" - and subject to change\",\n \"summary\": \"Inspect an user\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"auth_user_href\",\n \"schema\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/{namespace}/{name}/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_index_read\",\n + \ \"description\": \"ViewSet for Collections.\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"distro_base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"namespace\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Users\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/UserResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"put\": {\n \"operationId\": \"users_update\",\n - \ \"description\": \"ViewSet for User.\\n\\nNOTE: This API endpoint - is in \\\"tech preview\\\" and subject to change\",\n \"summary\": - \"Update an user\",\n \"parameters\": [\n {\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Plugin Ansible Content Collections Index\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CollectionResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n },\n \"patch\": + {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_index_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n \ \"in\": \"path\",\n \"name\": - \"auth_user_href\",\n \"schema\": {\n \"type\": + \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Users\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/User\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/User\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/User\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/UserResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"patch\": {\n \"operationId\": - \"users_partial_update\",\n \"description\": \"ViewSet for - User.\\n\\nNOTE: This API endpoint is in \\\"tech preview\\\" and subject - to change\",\n \"summary\": \"Update an user\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"auth_user_href\",\n \"schema\": {\n \"type\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"namespace\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Users\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": + [\n \"Pulp_Ansible: Api V3 Plugin Ansible Content Collections + Index\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PatchedCollection\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedUser\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PatchedUser\"\n - \ }\n },\n \"multipart/form-data\": + \"#/components/schemas/PatchedCollection\"\n }\n + \ },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedUser\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/UserResponse\"\n + \"#/components/schemas/PatchedCollection\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"delete\": {\n \"operationId\": - \"users_delete\",\n \"description\": \"ViewSet for User.\\n\\nNOTE: - This API endpoint is in \\\"tech preview\\\" and subject to change\",\n \"summary\": - \"Delete an user\",\n \"parameters\": [\n {\n + \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_index_delete\",\n + \ \"description\": \"Trigger an asynchronous delete task\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n \ \"in\": \"path\",\n \"name\": - \"auth_user_href\",\n \"schema\": {\n \"type\": + \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Users\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"204\": - {\n \"description\": \"No response body\"\n }\n - \ }\n }\n },\n \"{auth_user_href}roles/\": - {\n \"get\": {\n \"operationId\": \"users_roles_list\",\n - \ \"description\": \"ViewSet for UserRole.\\n\\nNOTE: This API - endpoint is in \\\"tech preview\\\" and subject to change\",\n \"summary\": - \"List user roles\",\n \"parameters\": [\n {\n + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"namespace\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n \ \"in\": \"path\",\n \"name\": - \"auth_user_href\",\n \"schema\": {\n \"type\": + \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"content_object\",\n \"schema\": + true\n }\n ],\n \"tags\": + [\n \"Pulp_Ansible: Api V3 Plugin Ansible Content Collections + Index\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/{namespace}/{name}/versions/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_index_versions_list\",\n + \ \"description\": \"Returns paginated CollectionVersions list.\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"content_object\"\n },\n - \ {\n \"name\": \"limit\",\n \"required\": + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"is_highest\",\n \"schema\": {\n \"type\": + \"boolean\"\n }\n },\n {\n + \ \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"path\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"namespace\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"namespace\",\n \"schema\": + {\n \"type\": \"string\"\n }\n \ },\n {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from @@ -20377,174 +36276,309 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-description\",\n - \ \"-pk\",\n \"-pulp_created\",\n - \ \"-role\",\n \"description\",\n + \"string\",\n \"enum\": [\n \"-authors\",\n + \ \"-contents\",\n \"-dependencies\",\n + \ \"-description\",\n \"-docs_blob\",\n + \ \"-documentation\",\n \"-files\",\n + \ \"-homepage\",\n \"-is_highest\",\n + \ \"-issues\",\n \"-license\",\n + \ \"-manifest\",\n \"-name\",\n + \ \"-namespace\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"-repository\",\n \"-requires_ansible\",\n + \ \"-search_vector\",\n \"-timestamp_of_interest\",\n + \ \"-upstream_id\",\n \"-version\",\n + \ \"-version_major\",\n \"-version_minor\",\n + \ \"-version_patch\",\n \"-version_prerelease\",\n + \ \"authors\",\n \"contents\",\n + \ \"dependencies\",\n \"description\",\n + \ \"docs_blob\",\n \"documentation\",\n + \ \"files\",\n \"homepage\",\n + \ \"is_highest\",\n \"issues\",\n + \ \"license\",\n \"manifest\",\n + \ \"name\",\n \"namespace\",\n \ \"pk\",\n \"pulp_created\",\n - \ \"role\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"role\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"role__contains\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"role__icontains\",\n \"schema\": - {\n \"type\": \"string\"\n }\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"repository\",\n + \ \"requires_ansible\",\n \"search_vector\",\n + \ \"timestamp_of_interest\",\n \"upstream_id\",\n + \ \"version\",\n \"version_major\",\n + \ \"version_minor\",\n \"version_patch\",\n + \ \"version_prerelease\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `authors` - Authors\\n* `-authors` + - Authors (descending)\\n* `contents` - Contents\\n* `-contents` - Contents + (descending)\\n* `dependencies` - Dependencies\\n* `-dependencies` - Dependencies + (descending)\\n* `description` - Description\\n* `-description` - Description + (descending)\\n* `docs_blob` - Docs blob\\n* `-docs_blob` - Docs blob (descending)\\n* + `manifest` - Manifest\\n* `-manifest` - Manifest (descending)\\n* `files` + - Files\\n* `-files` - Files (descending)\\n* `documentation` - Documentation\\n* + `-documentation` - Documentation (descending)\\n* `homepage` - Homepage\\n* + `-homepage` - Homepage (descending)\\n* `issues` - Issues\\n* `-issues` - + Issues (descending)\\n* `license` - License\\n* `-license` - License (descending)\\n* + `name` - Name\\n* `-name` - Name (descending)\\n* `namespace` - Namespace\\n* + `-namespace` - Namespace (descending)\\n* `repository` - Repository\\n* `-repository` + - Repository (descending)\\n* `requires_ansible` - Requires ansible\\n* `-requires_ansible` + - Requires ansible (descending)\\n* `version` - Version\\n* `-version` - Version + (descending)\\n* `version_major` - Version major\\n* `-version_major` - Version + major (descending)\\n* `version_minor` - Version minor\\n* `-version_minor` + - Version minor (descending)\\n* `version_patch` - Version patch\\n* `-version_patch` + - Version patch (descending)\\n* `version_prerelease` - Version prerelease\\n* + `-version_prerelease` - Version prerelease (descending)\\n* `is_highest` - + Is highest\\n* `-is_highest` - Is highest (descending)\\n* `search_vector` + - Search vector\\n* `-search_vector` - Search vector (descending)\\n* `pk` + - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n \ },\n {\n \"in\": - \"query\",\n \"name\": \"role__in\",\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\"\n }\n + \"path\",\n \"name\": \"path\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n \ },\n \"description\": \"Multiple values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"role__startswith\",\n \"schema\": {\n \"type\": + \"q\",\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \"repository_version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_removed\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"tags\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter by comma separate list of tags that must all be matched\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where version matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Plugin Ansible Content Collections Index Versions\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedCollectionVersionListResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/{namespace}/{name}/versions/{version}/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_index_versions_read\",\n + \ \"description\": \"Returns a CollectionVersion object.\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"namespace\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"version\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Plugin Ansible Content Collections Index Versions\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/CollectionVersionResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_index_versions_delete\",\n + \ \"description\": \"Trigger an asynchronous delete task\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"namespace\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"version\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Pulp_Ansible: Api V3 Plugin + Ansible Content Collections Index Versions\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/AsyncOperationResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/{namespace}/{name}/versions/{version}/docs-blob/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_index_versions_docs_blob_read\",\n + \ \"description\": \"Returns a CollectionVersion object.\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"namespace\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"version\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Users: - Roles\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedUserRoleResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"post\": {\n \"operationId\": - \"users_roles_create\",\n \"description\": \"ViewSet for UserRole.\\n\\nNOTE: - This API endpoint is in \\\"tech preview\\\" and subject to change\",\n \"summary\": - \"Create an user role\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"auth_user_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Users: Roles\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/UserRole\"\n }\n },\n - \ \"application/x-www-form-urlencoded\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/UserRole\"\n - \ }\n },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/UserRole\"\n }\n }\n - \ },\n \"required\": true\n },\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Plugin Ansible Content Collections Index Versions Docs-Blob\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": - {\n \"201\": {\n \"content\": {\n + {\n \"200\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/UserRoleResponse\"\n + {\n \"$ref\": \"#/components/schemas/CollectionVersionDocsResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{auth_users_user_role_href}\": {\n \"get\": - {\n \"operationId\": \"users_roles_read\",\n \"description\": - \"ViewSet for UserRole.\\n\\nNOTE: This API endpoint is in \\\"tech preview\\\" - and subject to change\",\n \"summary\": \"Inspect an user role\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"auth_users_user_role_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \ }\n },\n \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/namespaces/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_namespaces_list\",\n + \ \"description\": \"Provides the authentication and permission + classes from settings.\",\n \"parameters\": [\n {\n + \ \"in\": \"query\",\n \"name\": + \"company\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"company__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"company__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"company__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company matches value\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"company__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where company is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"company__iregex\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Users: Roles\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/UserRoleResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"users_roles_delete\",\n \"description\": - \"ViewSet for UserRole.\\n\\nNOTE: This API endpoint is in \\\"tech preview\\\" - and subject to change\",\n \"summary\": \"Delete an user role\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"auth_users_user_role_href\",\n + \ \"description\": \"Filter results where company matches + regex value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"company__istartswith\",\n \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Users: Roles\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"204\": - {\n \"description\": \"No response body\"\n }\n - \ }\n }\n },\n \"/pulp/api/v3/workers/\": - {\n \"get\": {\n \"operationId\": \"workers_list\",\n - \ \"description\": \"A customized named ModelViewSet that knows - how to register itself with the Pulp API router.\\n\\nThis viewset is discoverable - by its name.\\n\\\"Normal\\\" Django Models and Master/Detail models are supported - by the ``register_with`` method.\\n\\nAttributes:\\n lookup_field (str): - The name of the field by which an object should be looked up, in\\n addition - to any parent lookups if this ViewSet is nested. Defaults to 'pk'\\n endpoint_name - (str): The name of the final path segment that should identify the ViewSet's\\n - \ collection endpoint.\\n nest_prefix (str): Optional prefix under - which this ViewSet should be nested. This must\\n correspond to the - \\\"parent_prefix\\\" of a router with rest_framework_nested.NestedMixin.\\n - \ None indicates this ViewSet should not be nested.\\n parent_lookup_kwargs - (dict): Optional mapping of key names that would appear in self.kwargs\\n - \ to django model filter expressions that can be used with the corresponding - value from\\n self.kwargs, used only by a nested ViewSet to filter - based on the parent object's\\n identity.\\n schema (DefaultSchema): - The schema class to use by default in a viewset.\",\n \"summary\": - \"List workers\",\n \"parameters\": [\n {\n - \ \"in\": \"query\",\n \"name\": - \"last_heartbeat\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"ISO 8601 formatted dates are supported\"\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"last_heartbeat__gt\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where last_heartbeat is greater than value\"\n },\n + \"string\"\n },\n \"description\": + \"Filter results where company starts with value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"last_heartbeat__gte\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where last_heartbeat - is greater than or equal to value\"\n },\n {\n + \"company__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"company__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company starts with value\"\n },\n + \ {\n \"in\": \"path\",\n \"name\": + \"distro_base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"last_heartbeat__lt\",\n \"schema\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"description\": \"Filter results where last_heartbeat - is less than value\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"last_heartbeat__lte\",\n \"schema\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"description\": - \"Filter results where last_heartbeat is less than or equal to value\"\n },\n + \"metadata_sha256\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where metadata_sha256 matches value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"last_heartbeat__range\",\n \"schema\": {\n \"type\": + \"metadata_sha256__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"description\": \"Filter - results where last_heartbeat is between two comma separated values\",\n \"explode\": - false,\n \"style\": \"form\"\n },\n - \ {\n \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"missing\",\n \"schema\": - {\n \"type\": \"boolean\"\n }\n - \ },\n {\n \"in\": + \"string\"\n }\n },\n \"description\": + \"Filter results where metadata_sha256 is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": \"query\",\n \"name\": \"name__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"description\": \"Filter results where name contains @@ -20553,6 +36587,10 @@ interactions: {\n \"type\": \"string\"\n },\n \ \"description\": \"Filter results where name contains value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": \"query\",\n \"name\": \"name__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n @@ -20560,6 +36598,18 @@ interactions: results where name is in a comma-separated list of values\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"name__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter results where name starts with value\"\n },\n @@ -20568,330 +36618,377 @@ interactions: \"The initial index from which to return the results.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n \ },\n {\n \"in\": - \"query\",\n \"name\": \"online\",\n \"schema\": - {\n \"type\": \"boolean\"\n }\n - \ },\n {\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-group_roles\",\n \"-last_heartbeat\",\n + [\n \"-avatar_sha256\",\n \"-company\",\n + \ \"-description\",\n \"-email\",\n + \ \"-links\",\n \"-metadata_sha256\",\n \ \"-name\",\n \"-pk\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-tasks\",\n \"-user_roles\",\n - \ \"group_roles\",\n \"last_heartbeat\",\n - \ \"name\",\n \"pk\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"tasks\",\n \"user_roles\"\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"-resources\",\n \"-timestamp_of_interest\",\n + \ \"-upstream_id\",\n \"avatar_sha256\",\n + \ \"company\",\n \"description\",\n + \ \"email\",\n \"links\",\n + \ \"metadata_sha256\",\n \"name\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"resources\",\n + \ \"timestamp_of_interest\",\n \"upstream_id\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* `company` + - Company\\n* `-company` - Company (descending)\\n* `email` - Email\\n* `-email` + - Email (descending)\\n* `description` - Description\\n* `-description` - + Description (descending)\\n* `resources` - Resources\\n* `-resources` - Resources + (descending)\\n* `links` - Links\\n* `-links` - Links (descending)\\n* `avatar_sha256` + - Avatar sha256\\n* `-avatar_sha256` - Avatar sha256 (descending)\\n* `metadata_sha256` + - Metadata sha256\\n* `-metadata_sha256` - Metadata sha256 (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Workers\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedWorkerResponseList\"\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Plugin Ansible Content Namespaces\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Paginatedansible.AnsibleNamespaceMetadataResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{worker_href}\": {\n \"get\": - {\n \"operationId\": \"workers_read\",\n \"description\": - \"A customized named ModelViewSet that knows how to register itself with the - Pulp API router.\\n\\nThis viewset is discoverable by its name.\\n\\\"Normal\\\" - Django Models and Master/Detail models are supported by the ``register_with`` - method.\\n\\nAttributes:\\n lookup_field (str): The name of the field by - which an object should be looked up, in\\n addition to any parent lookups - if this ViewSet is nested. Defaults to 'pk'\\n endpoint_name (str): The - name of the final path segment that should identify the ViewSet's\\n collection - endpoint.\\n nest_prefix (str): Optional prefix under which this ViewSet - should be nested. This must\\n correspond to the \\\"parent_prefix\\\" - of a router with rest_framework_nested.NestedMixin.\\n None indicates - this ViewSet should not be nested.\\n parent_lookup_kwargs (dict): Optional - mapping of key names that would appear in self.kwargs\\n to django - model filter expressions that can be used with the corresponding value from\\n - \ self.kwargs, used only by a nested ViewSet to filter based on the - parent object's\\n identity.\\n schema (DefaultSchema): The schema - class to use by default in a viewset.\",\n \"summary\": \"Inspect - a worker\",\n \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"worker_href\",\n \"schema\": + \ },\n \"post\": {\n \"operationId\": + \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_namespaces_create\",\n + \ \"description\": \"Provides the authentication and permission + classes from settings.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"distro_base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Workers\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Pulp_Ansible: Api V3 Plugin + Ansible Content Namespaces\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.AnsibleNamespaceMetadata\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.AnsibleNamespaceMetadata\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/WorkerResponse\"\n + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp_ansible/galaxy/{path}/api/\": {\n - \ \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_get\",\n - \ \"description\": \"Return a response to the \\\"GET\\\" action.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"path\",\n \"schema\": + \ }\n },\n \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/namespaces/{name}/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_namespaces_read\",\n + \ \"description\": \"Provides the authentication and permission + classes from settings.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"distro_base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Pulp_Ansible: - Api\"\n ],\n \"responses\": {\n \"200\": - {\n \"description\": \"No response body\"\n }\n - \ }\n }\n },\n \"{ansible_role_href}api/v1/roles/\": - {\n \"get\": {\n \"operationId\": \"api_v1_roles_get\",\n - \ \"description\": \"APIView for Roles.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"ansible_role_href\",\n \"schema\": {\n \"type\": + Api V3 Plugin Ansible Content Namespaces\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.AnsibleNamespaceMetadataResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n },\n \"patch\": + {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_namespaces_partial_update\",\n + \ \"description\": \"Provides the authentication and permission + classes from settings.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"distro_base_path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": - true\n },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"name\": \"offset\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Api: Roles\"\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedGalaxyRoleResponseList\"\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Pulp_Ansible: Api V3 Plugin Ansible Content Namespaces\"\n + \ ],\n \"requestBody\": {\n \"content\": + {\n \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/Patchedansible.AnsibleNamespaceMetadata\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Patchedansible.AnsibleNamespaceMetadata\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{ansible_role_href}versions/\": {\n \"get\": - {\n \"operationId\": \"versions_get\",\n \"description\": - \"APIView for Role Versions.\",\n \"parameters\": [\n {\n + \ },\n \"delete\": {\n \"operationId\": + \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_namespaces_delete\",\n + \ \"description\": \"Try to remove the Namespace if no Collections + under Namespace are present.\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"ansible_role_href\",\n \"schema\": {\n \"type\": + \"distro_base_path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": - true\n },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"name\": \"offset\",\n \"required\": + true\n },\n {\n \"in\": + \"path\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Pulp_Ansible: Api V3 Plugin Ansible Content Namespaces\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/search/collection-versions/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_search_collection_versions_list\",\n + \ \"description\": \"A viewset for cross-repo searches.\",\n + \ \"parameters\": [\n {\n \"in\": + \"query\",\n \"name\": \"dependency\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"deprecated\",\n \"schema\": + {\n \"type\": \"boolean\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"distribution\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + collectionversions that are in these distrubtion ids.\",\n \"explode\": + true,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"distribution_base_path\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter collectionversions that are in these base paths.\",\n \"explode\": + true,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"highest\",\n \"schema\": {\n \"type\": + \"boolean\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"is_deprecated\",\n \"schema\": {\n \"type\": + \"boolean\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"is_highest\",\n \"schema\": {\n \"type\": + \"boolean\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"is_signed\",\n \"schema\": {\n \"type\": + \"boolean\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"keywords\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": - \"The initial index from which to return the results.\",\n \"schema\": + \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n \ },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"namespace\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"name\": + \"offset\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"The initial index from + which to return the results.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"order_by\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"-name\",\n + \ \"-namespace\",\n \"-pulp_created\",\n + \ \"-version\",\n \"name\",\n + \ \"namespace\",\n \"pulp_created\",\n + \ \"version\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_created` - by CV created\\n* `-pulp_created` - by + CV created (descending)\\n* `namespace` - by CV namespace\\n* `-namespace` + - by CV namespace (descending)\\n* `name` - by CV name\\n* `-name` - by CV + name (descending)\\n* `version` - by CV version\\n* `-version` - by CV version + (descending)\",\n \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"path\",\n \"name\": \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Versions\"\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedGalaxyRoleVersionResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{ansible_collection_import_href}\": {\n - \ \"get\": {\n \"operationId\": \"collection_import_read\",\n - \ \"description\": \"Returns a CollectionImport object.\",\n - \ \"summary\": \"Inspect a collection import\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"ansible_collection_import_href\",\n \"schema\": {\n - \ \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"since\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter messages since a given timestamp\"\n },\n {\n + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \"repository\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter collectionversions that are in these repository ids.\",\n \"explode\": + true,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"repository_label\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n + \"Filter labels by search string\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_name\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter collectionversions that are in these repositories.\",\n \"explode\": + true,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"signed\",\n \"schema\": {\n \"type\": + \"boolean\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"tags\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Collection: - Import\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/CollectionImportDetailResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"{ansible_collection_href}api/v2/collections/\": - {\n \"get\": {\n \"operationId\": \"api_v2_collections_get\",\n - \ \"description\": \"View for Collection models.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"ansible_collection_href\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"name\": - \"page\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"A page number within - the paginated result set.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n + \"Filter by comma separate list of tags that must all be matched\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"version\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"version_range\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Api: - Collections\"\n ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PaginatedGalaxyCollectionResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"post\": - {\n \"operationId\": \"api_v2_collections_post\",\n \"description\": - \"Queues a task that creates a new Collection from an uploaded artifact.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"ansible_collection_href\",\n - \ \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Api: Collections\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/GalaxyCollection\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/GalaxyCollection\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/GalaxyCollection\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"responses\": {\n \"200\": + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Api V3 Plugin Ansible Search Collection-Versions\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/GalaxyCollectionResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"{ansible_collection_version_href}versions/\": {\n \"get\": - {\n \"operationId\": \"versions_get\",\n \"description\": - \"APIView for Collections by namespace/name.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"ansible_collection_version_href\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"name\": \"page\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"A page number within the paginated result set.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Versions\"\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedGalaxyCollectionVersionResponseList\"\n + \"#/components/schemas/PaginatedCollectionVersionSearchListResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp_ansible/galaxy/{path}/api/v2/collections/{namespace}/{name}/versions/{version}/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v2_collections_versions_get\",\n - \ \"description\": \"Return a response to the \\\"GET\\\" action.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"namespace\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"path\",\n \"name\": \"path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"version\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Api V2 Collections Versions\"\n ],\n - \ \"responses\": {\n \"200\": {\n \"description\": - \"No response body\"\n }\n }\n }\n - \ },\n \"/pulp_ansible/galaxy/{path}/api/v3/\": {\n \"get\": - {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_read\",\n - \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \ },\n \"post\": {\n \"operationId\": + \"pulp_ansible_galaxy_api_v3_plugin_ansible_search_collection_versions_rebuild\",\n + \ \"description\": \"A viewset for cross-repo searches.\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Api V3\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"deprecated\": true,\n \"responses\": - {\n \"302\": {\n \"description\": - \"No response body\"\n },\n \"202\": - {\n \"content\": {\n \"application/json\": + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Pulp_Ansible: Api V3 Plugin + Ansible Search Collection-Versions\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CollectionVersionSearchList\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CollectionVersionSearchList\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CollectionVersionSearchList\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/CollectionVersionSearchListResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp_ansible/galaxy/default/api/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_get\",\n + \ \"description\": \"Return a response to the \\\"GET\\\" action.\",\n + \ \"tags\": [\n \"Pulp_Ansible: Default Api\"\n + \ ],\n \"responses\": {\n \"200\": + {\n \"description\": \"No response body\"\n }\n + \ }\n }\n },\n \"/pulp_ansible/galaxy/default/api/v3/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_read\",\n + \ \"description\": \"Legacy v3 endpoint.\",\n \"tags\": + [\n \"Pulp_Ansible: Default Api V3\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"deprecated\": + true,\n \"responses\": {\n \"302\": {\n + \ \"description\": \"No response body\"\n },\n + \ \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/RepoMetadataResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/{path}/api/v3/artifacts/collections/\": {\n - \ \"post\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_artifacts_collections_create\",\n + \ \"/pulp_ansible/galaxy/default/api/v3/artifacts/collections/\": {\n + \ \"post\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_artifacts_collections_create\",\n \ \"description\": \"Create an artifact and trigger an asynchronous task to create Collection content from it.\",\n \"summary\": - \"Upload a collection\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Artifacts Collections V3\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"multipart/form-data\": + \"Upload a collection\",\n \"tags\": [\n \"Pulp_Ansible: + Artifacts Collections V3\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/CollectionOneShot\"\n }\n \ },\n \"application/x-www-form-urlencoded\": @@ -20899,16 +36996,16 @@ interactions: \"#/components/schemas/CollectionOneShot\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"deprecated\": true,\n \"responses\": {\n \ \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/{path}/api/v3/artifacts/collections/{path}/{filename}\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_artifacts_collections_get\",\n + \ \"/pulp_ansible/galaxy/default/api/v3/artifacts/collections/{path}/{filename}\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_artifacts_collections_get\",\n \ \"description\": \"Download collection.\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"filename\",\n \"schema\": {\n \"type\": @@ -20919,37 +37016,27 @@ interactions: \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Pulp_Ansible: - Api V3 Artifacts Collections\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + Default Api V3 Artifacts Collections\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"description\": \"No response body\"\n }\n - \ }\n }\n },\n \"/pulp_ansible/galaxy/{path}/api/v3/collection_versions/all/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collection_versions_all_list\",\n - \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Api V3 Collection_Versions All\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ }\n }\n },\n \"/pulp_ansible/galaxy/default/api/v3/collection_versions/all/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collection_versions_all_list\",\n + \ \"description\": \"Legacy v3 endpoint.\",\n \"tags\": + [\n \"Pulp_Ansible: Default Api V3 Collection_Versions + All\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"deprecated\": true,\n \"responses\": {\n \ \"302\": {\n \"description\": \"No response body\"\n },\n \"202\": {\n @@ -20959,8 +37046,8 @@ interactions: \"#/components/schemas/UnpaginatedCollectionVersionResponse\"\n }\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp_ansible/galaxy/{path}/api/v3/collections/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collections_list\",\n + \ }\n },\n \"/pulp_ansible/galaxy/default/api/v3/collections/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collections_list\",\n \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": \"deprecated\",\n \"schema\": {\n \"type\": @@ -20983,35 +37070,51 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-group_roles\",\n - \ \"-name\",\n \"-namespace\",\n - \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-user_roles\",\n - \ \"-versions\",\n \"group_roles\",\n - \ \"name\",\n \"namespace\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"user_roles\",\n - \ \"versions\"\n ]\n + \"string\",\n \"enum\": [\n \"-name\",\n + \ \"-namespace\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"name\",\n + \ \"namespace\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\"\n ]\n \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"path\",\n \"name\": \"path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `namespace` - Namespace\\n* `-namespace` - Namespace + (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* `pk` - + Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n + \ \"style\": \"form\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Pulp_Ansible: - Api V3 Collections\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + Default Api V3 Collections\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"deprecated\": true,\n \"responses\": {\n \"302\": {\n \"description\": \"No response body\"\n },\n \"202\": @@ -21020,8 +37123,8 @@ interactions: \"#/components/schemas/PaginatedCollectionResponseList\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/{path}/api/v3/collections/{namespace}/{name}/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collections_read\",\n + \ \"/pulp_ansible/galaxy/default/api/v3/collections/{namespace}/{name}/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collections_read\",\n \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": @@ -21030,30 +37133,29 @@ interactions: \"path\",\n \"name\": \"namespace\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Api V3 Collections\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"deprecated\": - true,\n \"responses\": {\n \"302\": {\n - \ \"description\": \"No response body\"\n },\n - \ \"202\": {\n \"content\": {\n \"application/json\": + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Default Api V3 Collections\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"deprecated\": true,\n \"responses\": + {\n \"302\": {\n \"description\": + \"No response body\"\n },\n \"202\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/CollectionResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n },\n \"patch\": - {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collections_update\",\n + {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collections_update\",\n \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": @@ -21061,13 +37163,10 @@ interactions: true\n },\n {\n \"in\": \"path\",\n \"name\": \"namespace\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Api V3 Collections\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"application/json\": + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Pulp_Ansible: Default Api + V3 Collections\"\n ],\n \"requestBody\": {\n + \ \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedCollection\"\n }\n \ },\n \"application/x-www-form-urlencoded\": @@ -21078,8 +37177,8 @@ interactions: \"#/components/schemas/PatchedCollection\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"deprecated\": true,\n \"responses\": {\n \ \"302\": {\n \"description\": \"No response body\"\n },\n \"202\": {\n @@ -21088,7 +37187,7 @@ interactions: \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collections_delete\",\n + {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collections_delete\",\n \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": @@ -21096,24 +37195,21 @@ interactions: true\n },\n {\n \"in\": \"path\",\n \"name\": \"namespace\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Api V3 Collections\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"deprecated\": - true,\n \"responses\": {\n \"302\": {\n - \ \"description\": \"No response body\"\n },\n - \ \"202\": {\n \"content\": {\n \"application/json\": + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Pulp_Ansible: Default Api + V3 Collections\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"deprecated\": true,\n \"responses\": {\n + \ \"302\": {\n \"description\": \"No + response body\"\n },\n \"202\": {\n + \ \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/{path}/api/v3/collections/{namespace}/{name}/versions/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collections_versions_list\",\n + \ \"/pulp_ansible/galaxy/default/api/v3/collections/{namespace}/{name}/versions/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collections_versions_list\",\n \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": \"is_highest\",\n \"schema\": {\n \"type\": @@ -21143,51 +37239,85 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-_artifacts\",\n - \ \"-authors\",\n \"-collection\",\n - \ \"-content_ptr\",\n \"-contentartifact\",\n + \"string\",\n \"enum\": [\n \"-authors\",\n \ \"-contents\",\n \"-dependencies\",\n \ \"-description\",\n \"-docs_blob\",\n - \ \"-documentation\",\n \"-download_logs\",\n - \ \"-files\",\n \"-group_roles\",\n + \ \"-documentation\",\n \"-files\",\n \ \"-homepage\",\n \"-is_highest\",\n \ \"-issues\",\n \"-license\",\n \ \"-manifest\",\n \"-name\",\n \ \"-namespace\",\n \"-pk\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-repositories\",\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n \ \"-repository\",\n \"-requires_ansible\",\n - \ \"-search_vector\",\n \"-signatures\",\n - \ \"-tags\",\n \"-timestamp_of_interest\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"authors\",\n - \ \"collection\",\n \"content_ptr\",\n - \ \"contentartifact\",\n \"contents\",\n + \ \"-search_vector\",\n \"-timestamp_of_interest\",\n + \ \"-upstream_id\",\n \"-version\",\n + \ \"-version_major\",\n \"-version_minor\",\n + \ \"-version_patch\",\n \"-version_prerelease\",\n + \ \"authors\",\n \"contents\",\n \ \"dependencies\",\n \"description\",\n \ \"docs_blob\",\n \"documentation\",\n - \ \"download_logs\",\n \"files\",\n - \ \"group_roles\",\n \"homepage\",\n + \ \"files\",\n \"homepage\",\n \ \"is_highest\",\n \"issues\",\n \ \"license\",\n \"manifest\",\n \ \"name\",\n \"namespace\",\n \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"repositories\",\n \"repository\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"repository\",\n \ \"requires_ansible\",\n \"search_vector\",\n - \ \"signatures\",\n \"tags\",\n \ \"timestamp_of_interest\",\n \"upstream_id\",\n - \ \"user_roles\",\n \"version\",\n - \ \"version_memberships\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"path\",\n \"name\": \"path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"query\",\n \"name\": + \ \"version\",\n \"version_major\",\n + \ \"version_minor\",\n \"version_patch\",\n + \ \"version_prerelease\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `authors` - Authors\\n* `-authors` + - Authors (descending)\\n* `contents` - Contents\\n* `-contents` - Contents + (descending)\\n* `dependencies` - Dependencies\\n* `-dependencies` - Dependencies + (descending)\\n* `description` - Description\\n* `-description` - Description + (descending)\\n* `docs_blob` - Docs blob\\n* `-docs_blob` - Docs blob (descending)\\n* + `manifest` - Manifest\\n* `-manifest` - Manifest (descending)\\n* `files` + - Files\\n* `-files` - Files (descending)\\n* `documentation` - Documentation\\n* + `-documentation` - Documentation (descending)\\n* `homepage` - Homepage\\n* + `-homepage` - Homepage (descending)\\n* `issues` - Issues\\n* `-issues` - + Issues (descending)\\n* `license` - License\\n* `-license` - License (descending)\\n* + `name` - Name\\n* `-name` - Name (descending)\\n* `namespace` - Namespace\\n* + `-namespace` - Namespace (descending)\\n* `repository` - Repository\\n* `-repository` + - Repository (descending)\\n* `requires_ansible` - Requires ansible\\n* `-requires_ansible` + - Requires ansible (descending)\\n* `version` - Version\\n* `-version` - Version + (descending)\\n* `version_major` - Version major\\n* `-version_major` - Version + major (descending)\\n* `version_minor` - Version minor\\n* `-version_minor` + - Version minor (descending)\\n* `version_patch` - Version patch\\n* `-version_patch` + - Version patch (descending)\\n* `version_prerelease` - Version prerelease\\n* + `-version_prerelease` - Version prerelease (descending)\\n* `is_highest` - + Is highest\\n* `-is_highest` - Is highest (descending)\\n* `search_vector` + - Search vector\\n* `-search_vector` - Search vector (descending)\\n* `pk` + - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": \"q\",\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": @@ -21212,16 +37342,18 @@ interactions: \"Filter results where version matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Pulp_Ansible: - Api V3 Collections Versions\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + Default Api V3 Collections Versions\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"deprecated\": true,\n \"responses\": {\n \"302\": {\n \"description\": \"No response body\"\n },\n \"202\": @@ -21230,8 +37362,8 @@ interactions: \"#/components/schemas/PaginatedCollectionVersionListResponseList\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/{path}/api/v3/collections/{namespace}/{name}/versions/{version}/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collections_versions_read\",\n + \ \"/pulp_ansible/galaxy/default/api/v3/collections/{namespace}/{name}/versions/{version}/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collections_versions_read\",\n \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": @@ -21241,24 +37373,23 @@ interactions: {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": + \"version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": - \"path\",\n \"name\": \"version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Pulp_Ansible: - Api V3 Collections Versions\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + Default Api V3 Collections Versions\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"deprecated\": true,\n \"responses\": {\n \"302\": {\n \"description\": \"No response body\"\n },\n \"202\": @@ -21267,7 +37398,7 @@ interactions: \"#/components/schemas/CollectionVersionResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collections_versions_delete\",\n + {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collections_versions_delete\",\n \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": @@ -21277,16 +37408,13 @@ interactions: {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": + \"version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"path\",\n \"name\": \"version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Pulp_Ansible: Api V3 Collections - Versions\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + true\n }\n ],\n \"tags\": + [\n \"Pulp_Ansible: Default Api V3 Collections Versions\"\n + \ ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"deprecated\": true,\n \"responses\": {\n \ \"302\": {\n \"description\": \"No response body\"\n },\n \"202\": {\n @@ -21295,8 +37423,8 @@ interactions: \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/{path}/api/v3/collections/{namespace}/{name}/versions/{version}/docs-blob/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collections_versions_docs_blob_read\",\n + \ \"/pulp_ansible/galaxy/default/api/v3/collections/{namespace}/{name}/versions/{version}/docs-blob/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collections_versions_docs_blob_read\",\n \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": @@ -21306,24 +37434,23 @@ interactions: {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": + \"version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": - \"path\",\n \"name\": \"version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Pulp_Ansible: - Api V3 Collections Versions Docs-Blob\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + Default Api V3 Collections Versions Docs-Blob\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"deprecated\": true,\n \"responses\": {\n \"302\": {\n \"description\": \"No response body\"\n },\n \"202\": @@ -21332,8 +37459,8 @@ interactions: \"#/components/schemas/CollectionVersionDocsResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/{path}/api/v3/collections/all/\": {\n \"get\": - {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_collections_all_list\",\n + \ \"/pulp_ansible/galaxy/default/api/v3/collections/all/\": {\n \"get\": + {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collections_all_list\",\n \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": \"deprecated\",\n \"schema\": {\n \"type\": @@ -21347,35 +37474,51 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-group_roles\",\n - \ \"-name\",\n \"-namespace\",\n - \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-user_roles\",\n - \ \"-versions\",\n \"group_roles\",\n - \ \"name\",\n \"namespace\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"user_roles\",\n - \ \"versions\"\n ]\n + \"string\",\n \"enum\": [\n \"-name\",\n + \ \"-namespace\",\n \"-pk\",\n + \ \"-pulp_created\",\n \"-pulp_id\",\n + \ \"-pulp_last_updated\",\n \"name\",\n + \ \"namespace\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\"\n ]\n \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"path\",\n \"name\": \"path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `namespace` - Namespace\\n* `-namespace` - Namespace + (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* `pk` - + Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n + \ \"style\": \"form\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Pulp_Ansible: - Api V3 Collections All\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + Default Api V3 Collections All\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"deprecated\": true,\n \"responses\": {\n \"302\": {\n \"description\": \"No response body\"\n },\n \"202\": @@ -21385,222 +37528,103 @@ interactions: \"#/components/schemas/CollectionResponse\"\n }\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/client-configuration/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_client_configuration_get\",\n - \ \"description\": \"Get the client configs.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Api V3 Plugin Ansible Client-Configuration\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ClientConfigurationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_read\",\n - \ \"description\": \"ViewSet for Repository Metadata.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"distro_base_path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"path\",\n \"name\": \"path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \ }\n },\n \"/pulp_ansible/galaxy/default/api/v3/namespaces/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_namespaces_list\",\n + \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": + [\n {\n \"in\": \"query\",\n \"name\": + \"company\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \"company__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n + \"Filter results where company contains value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": + \"company__icontains\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Pulp_Ansible: - Api V3 Plugin Ansible Content Collections\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepoMetadataResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/all-collections/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_all_collections_list\",\n - \ \"description\": \"Unpaginated ViewSet for Collections.\",\n - \ \"parameters\": [\n {\n \"in\": - \"query\",\n \"name\": \"deprecated\",\n \"schema\": - {\n \"type\": \"boolean\"\n }\n - \ },\n {\n \"in\": - \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"namespace\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n + \"Filter results where company contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"company__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"ordering\",\n \"schema\": {\n \"type\": + \"company__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-group_roles\",\n - \ \"-name\",\n \"-namespace\",\n - \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-user_roles\",\n - \ \"-versions\",\n \"group_roles\",\n - \ \"name\",\n \"namespace\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"user_roles\",\n - \ \"versions\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + \"string\"\n }\n },\n \"description\": + \"Filter results where company is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"path\",\n \"name\": \"path\",\n \"schema\": + \"query\",\n \"name\": \"company__iregex\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \ \"description\": \"Filter results where company matches + regex value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"company__istartswith\",\n + \ \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n + \"Filter results where company starts with value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": + \"company__regex\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Pulp_Ansible: - Api V3 Plugin Ansible Content Collections All-Collections\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"$ref\": \"#/components/schemas/CollectionResponse\"\n - \ }\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/all-versions/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_all_versions_list\",\n - \ \"description\": \"Returns paginated CollectionVersions list.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \"Filter results where company matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"company__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company starts with value\"\n },\n + \ {\n \"name\": \"limit\",\n \"required\": + false,\n \"in\": \"query\",\n \"description\": + \"Number of results to return per page.\",\n \"schema\": + {\n \"type\": \"integer\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"metadata_sha256\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Api V3 Plugin Ansible Content Collections - All-Versions\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"$ref\": \"#/components/schemas/UnpaginatedCollectionVersionResponse\"\n - \ }\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/artifacts/\": - {\n \"post\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_artifacts_create\",\n - \ \"description\": \"Create an artifact and trigger an asynchronous - task to create Collection content from it.\",\n \"summary\": - \"Upload a collection\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"distro_base_path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"path\",\n \"name\": \"path\",\n \"schema\": + \ \"description\": \"Filter results where metadata_sha256 + matches value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"metadata_sha256__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where metadata_sha256 is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Pulp_Ansible: Artifacts - Collections V3\"\n ],\n \"requestBody\": {\n - \ \"content\": {\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/CollectionOneShot\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/CollectionOneShot\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/artifacts/{filename}\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_artifacts_download\",\n - \ \"description\": \"Collection download endpoint.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"distro_base_path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"path\",\n \"name\": \"filename\",\n \"schema\": + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Api V3 Plugin Ansible Content Collections - Artifacts\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"description\": - \"No response body\"\n }\n }\n }\n - \ },\n \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_index_list\",\n - \ \"description\": \"ViewSet for Collections.\",\n \"parameters\": - [\n {\n \"in\": \"query\",\n \"name\": - \"deprecated\",\n \"schema\": {\n \"type\": - \"boolean\"\n }\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"distro_base_path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"name\": - \"limit\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"Number of results to - return per page.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"namespace\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"name\": \"offset\",\n \"required\": + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n @@ -21608,394 +37632,257 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-group_roles\",\n \"-name\",\n - \ \"-namespace\",\n \"-pk\",\n + [\n \"-avatar_sha256\",\n \"-company\",\n + \ \"-description\",\n \"-email\",\n + \ \"-links\",\n \"-metadata_sha256\",\n + \ \"-name\",\n \"-pk\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-user_roles\",\n \"-versions\",\n - \ \"group_roles\",\n \"name\",\n - \ \"namespace\",\n \"pk\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"user_roles\",\n \"versions\"\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"-resources\",\n \"-timestamp_of_interest\",\n + \ \"-upstream_id\",\n \"avatar_sha256\",\n + \ \"company\",\n \"description\",\n + \ \"email\",\n \"links\",\n + \ \"metadata_sha256\",\n \"name\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"resources\",\n + \ \"timestamp_of_interest\",\n \"upstream_id\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* `company` + - Company\\n* `-company` - Company (descending)\\n* `email` - Email\\n* `-email` + - Email (descending)\\n* `description` - Description\\n* `-description` - + Description (descending)\\n* `resources` - Resources\\n* `-resources` - Resources + (descending)\\n* `links` - Links\\n* `-links` - Links (descending)\\n* `avatar_sha256` + - Avatar sha256\\n* `-avatar_sha256` - Avatar sha256 (descending)\\n* `metadata_sha256` + - Metadata sha256\\n* `-metadata_sha256` - Metadata sha256 (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n - \ {\n \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Api V3 Plugin Ansible Content Collections - Index\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedCollectionResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/{namespace}/{name}/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_index_read\",\n - \ \"description\": \"ViewSet for Collections.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"distro_base_path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"path\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"namespace\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"path\",\n \"name\": \"path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Pulp_Ansible: - Api V3 Plugin Ansible Content Collections Index\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": + Default Api V3 Namespaces\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"deprecated\": true,\n \"responses\": + {\n \"302\": {\n \"description\": + \"No response body\"\n },\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/CollectionResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"patch\": - {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_index_update\",\n - \ \"description\": \"Trigger an asynchronous update task\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": + \"#/components/schemas/Paginatedansible.AnsibleNamespaceMetadataResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp_ansible/galaxy/default/api/v3/namespaces/{name}/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_namespaces_read\",\n + \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": - \"path\",\n \"name\": \"namespace\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Api V3 Plugin Ansible Content Collections - Index\"\n ],\n \"requestBody\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PatchedCollection\"\n - \ }\n },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedCollection\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedCollection\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Default Api V3 Namespaces\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"deprecated\": true,\n \"responses\": + {\n \"302\": {\n \"description\": + \"No response body\"\n },\n \"202\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.AnsibleNamespaceMetadataResponse\"\n }\n + \ }\n },\n \"description\": + \"\"\n }\n }\n }\n },\n + \ \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/client-configuration/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_client_configuration_read\",\n + \ \"description\": \"Return configurations for the ansible-galaxy + client.\",\n \"tags\": [\n \"Pulp_Ansible: + Default Api V3 Plugin Ansible Client-Configuration\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ClientConfigurationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_index_delete\",\n - \ \"description\": \"Trigger an asynchronous delete task\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": + \ }\n },\n \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_read\",\n + \ \"description\": \"ViewSet for Repository Metadata.\",\n \"parameters\": + [\n {\n \"in\": \"path\",\n \"name\": + \"distro_base_path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": - \"path\",\n \"name\": \"namespace\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Api V3 Plugin Ansible Content Collections - Index\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Default Api V3 Plugin Ansible Content Collections\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/RepoMetadataResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/{namespace}/{name}/versions/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_index_versions_list\",\n - \ \"description\": \"Returns paginated CollectionVersions list.\",\n + \ }\n },\n \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/all-collections/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_all_collections_list\",\n + \ \"description\": \"Unpaginated ViewSet for Collections.\",\n \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"is_highest\",\n \"schema\": {\n \"type\": - \"boolean\"\n }\n },\n {\n - \ \"name\": \"limit\",\n \"required\": - false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": - {\n \"type\": \"integer\"\n }\n + \"query\",\n \"name\": \"deprecated\",\n \"schema\": + {\n \"type\": \"boolean\"\n }\n \ },\n {\n \"in\": - \"path\",\n \"name\": \"name\",\n \"schema\": + \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n - \ \"in\": \"path\",\n \"name\": + \ \"in\": \"query\",\n \"name\": \"namespace\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"namespace\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"name\": - \"offset\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"The initial index from - which to return the results.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-_artifacts\",\n - \ \"-authors\",\n \"-collection\",\n - \ \"-content_ptr\",\n \"-contentartifact\",\n - \ \"-contents\",\n \"-dependencies\",\n - \ \"-description\",\n \"-docs_blob\",\n - \ \"-documentation\",\n \"-download_logs\",\n - \ \"-files\",\n \"-group_roles\",\n - \ \"-homepage\",\n \"-is_highest\",\n - \ \"-issues\",\n \"-license\",\n - \ \"-manifest\",\n \"-name\",\n + \"string\",\n \"enum\": [\n \"-name\",\n \ \"-namespace\",\n \"-pk\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-repositories\",\n - \ \"-repository\",\n \"-requires_ansible\",\n - \ \"-search_vector\",\n \"-signatures\",\n - \ \"-tags\",\n \"-timestamp_of_interest\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"authors\",\n - \ \"collection\",\n \"content_ptr\",\n - \ \"contentartifact\",\n \"contents\",\n - \ \"dependencies\",\n \"description\",\n - \ \"docs_blob\",\n \"documentation\",\n - \ \"download_logs\",\n \"files\",\n - \ \"group_roles\",\n \"homepage\",\n - \ \"is_highest\",\n \"issues\",\n - \ \"license\",\n \"manifest\",\n - \ \"name\",\n \"namespace\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"repositories\",\n \"repository\",\n - \ \"requires_ansible\",\n \"search_vector\",\n - \ \"signatures\",\n \"tags\",\n - \ \"timestamp_of_interest\",\n \"upstream_id\",\n - \ \"user_roles\",\n \"version\",\n - \ \"version_memberships\"\n ]\n + \ \"-pulp_last_updated\",\n \"name\",\n + \ \"namespace\",\n \"pk\",\n + \ \"pulp_created\",\n \"pulp_id\",\n + \ \"pulp_last_updated\"\n ]\n \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"path\",\n \"name\": \"path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `namespace` - Namespace\\n* `-namespace` - Namespace + (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* `pk` - + Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": false,\n + \ \"style\": \"form\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"q\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"repository_version\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Repository Version referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"repository_version_added\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Repository Version referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"repository_version_removed\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Repository Version referenced by HREF\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"tags\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter by comma separate list of tags that must all be matched\"\n },\n + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"version\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where version matches value\"\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Pulp_Ansible: - Api V3 Plugin Ansible Content Collections Index Versions\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedCollectionVersionListResponseList\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/{namespace}/{name}/versions/{version}/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_index_versions_read\",\n - \ \"description\": \"Returns a CollectionVersion object.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"path\",\n \"name\": \"namespace\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"path\",\n \"name\": \"version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Pulp_Ansible: - Api V3 Plugin Ansible Content Collections Index Versions\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + Default Api V3 Plugin Ansible Content Collections All-Collections\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/CollectionVersionResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ },\n \"delete\": {\n \"operationId\": - \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_index_versions_delete\",\n - \ \"description\": \"Trigger an asynchronous delete task\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"path\",\n \"name\": \"namespace\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"path\",\n \"name\": \"version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n }\n ],\n - \ \"tags\": [\n \"Pulp_Ansible: Api V3 Plugin - Ansible Content Collections Index Versions\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n + {\n \"type\": \"array\",\n \"items\": + {\n \"$ref\": \"#/components/schemas/CollectionResponse\"\n + \ }\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/{path}/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/{namespace}/{name}/versions/{version}/docs-blob/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_api_v3_plugin_ansible_content_collections_index_versions_docs_blob_read\",\n - \ \"description\": \"Returns a CollectionVersion object.\",\n + \ \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/all-versions/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_all_versions_list\",\n + \ \"description\": \"Returns paginated CollectionVersions list.\",\n \ \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"path\",\n \"name\": \"namespace\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"path\",\n \"name\": \"version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Pulp_Ansible: - Api V3 Plugin Ansible Content Collections Index Versions Docs-Blob\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + Default Api V3 Plugin Ansible Content Collections All-Versions\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n + {\n \"202\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/CollectionVersionDocsResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp_ansible/galaxy/default/api/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_get\",\n - \ \"description\": \"Return a response to the \\\"GET\\\" action.\",\n - \ \"tags\": [\n \"Pulp_Ansible: Default Api\"\n - \ ],\n \"responses\": {\n \"200\": - {\n \"description\": \"No response body\"\n }\n - \ }\n }\n },\n \"/pulp_ansible/galaxy/default/api/v3/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_read\",\n - \ \"description\": \"Legacy v3 endpoint.\",\n \"tags\": - [\n \"Pulp_Ansible: Default Api V3\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"deprecated\": - true,\n \"responses\": {\n \"302\": {\n - \ \"description\": \"No response body\"\n },\n - \ \"202\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/RepoMetadataResponse\"\n }\n + {\n \"type\": \"array\",\n \"items\": + {\n \"$ref\": \"#/components/schemas/UnpaginatedCollectionVersionResponse\"\n + \ }\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/default/api/v3/artifacts/collections/\": {\n - \ \"post\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_artifacts_collections_create\",\n + \ \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/artifacts/\": + {\n \"post\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_artifacts_create\",\n \ \"description\": \"Create an artifact and trigger an asynchronous task to create Collection content from it.\",\n \"summary\": - \"Upload a collection\",\n \"tags\": [\n \"Pulp_Ansible: - Artifacts Collections V3\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"multipart/form-data\": + \"Upload a collection\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"distro_base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Pulp_Ansible: Artifacts Collections V3\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/CollectionOneShot\"\n }\n \ },\n \"application/x-www-form-urlencoded\": @@ -22003,144 +37890,161 @@ interactions: \"#/components/schemas/CollectionOneShot\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"deprecated\": true,\n \"responses\": {\n - \ \"202\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/default/api/v3/artifacts/collections/{path}/{filename}\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_artifacts_collections_get\",\n - \ \"description\": \"Download collection.\",\n \"parameters\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/artifacts/{filename}\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_artifacts_download\",\n + \ \"description\": \"Collection download endpoint.\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": - \"filename\",\n \"schema\": {\n \"type\": + \"distro_base_path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": - \"path\",\n \"name\": \"path\",\n \"schema\": + \"path\",\n \"name\": \"filename\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Pulp_Ansible: - Default Api V3 Artifacts Collections\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"description\": \"No response body\"\n }\n - \ }\n }\n },\n \"/pulp_ansible/galaxy/default/api/v3/collection_versions/all/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collection_versions_all_list\",\n - \ \"description\": \"Legacy v3 endpoint.\",\n \"tags\": - [\n \"Pulp_Ansible: Default Api V3 Collection_Versions - All\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"deprecated\": true,\n \"responses\": {\n - \ \"302\": {\n \"description\": \"No - response body\"\n },\n \"202\": {\n - \ \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"$ref\": - \"#/components/schemas/UnpaginatedCollectionVersionResponse\"\n }\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp_ansible/galaxy/default/api/v3/collections/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collections_list\",\n - \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": + Default Api V3 Plugin Ansible Content Collections Artifacts\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"description\": + \"No response body\"\n }\n }\n }\n + \ },\n \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_index_list\",\n + \ \"description\": \"ViewSet for Collections.\",\n \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": \"deprecated\",\n \"schema\": {\n \"type\": \"boolean\"\n }\n },\n {\n - \ \"name\": \"limit\",\n \"required\": + \ \"in\": \"path\",\n \"name\": + \"distro_base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"name\": + \"limit\",\n \"required\": false,\n \"in\": + \"query\",\n \"description\": \"Number of results to + return per page.\",\n \"schema\": {\n \"type\": + \"integer\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"name\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"namespace\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": - \"Number of results to return per page.\",\n \"schema\": + \"The initial index from which to return the results.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n \ },\n {\n \"in\": - \"query\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"in\": - \"query\",\n \"name\": \"namespace\",\n \"schema\": - {\n \"type\": \"string\"\n }\n - \ },\n {\n \"name\": - \"offset\",\n \"required\": false,\n \"in\": - \"query\",\n \"description\": \"The initial index from - which to return the results.\",\n \"schema\": {\n \"type\": - \"integer\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"ordering\",\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-group_roles\",\n - \ \"-name\",\n \"-namespace\",\n + \"query\",\n \"name\": \"ordering\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"enum\": + [\n \"-name\",\n \"-namespace\",\n \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-user_roles\",\n - \ \"-versions\",\n \"group_roles\",\n + \ \"-pulp_id\",\n \"-pulp_last_updated\",\n \ \"name\",\n \"namespace\",\n \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"user_roles\",\n - \ \"versions\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + \ \"pulp_id\",\n \"pulp_last_updated\"\n + \ ]\n }\n },\n + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `namespace` - Namespace\\n* `-namespace` - Namespace (descending)\\n* `name` + - Name\\n* `-name` - Name (descending)\\n* `pk` - Pk\\n* `-pk` - Pk (descending)\",\n + \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Default Api V3 Collections\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"deprecated\": - true,\n \"responses\": {\n \"302\": {\n - \ \"description\": \"No response body\"\n },\n - \ \"202\": {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PaginatedCollectionResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/default/api/v3/collections/{namespace}/{name}/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collections_read\",\n - \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Default Api V3 Plugin Ansible Content Collections Index\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedCollectionResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/{namespace}/{name}/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_index_read\",\n + \ \"description\": \"ViewSet for Collections.\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": + \"distro_base_path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": - \"path\",\n \"name\": \"namespace\",\n \"schema\": + \"path\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": + \"namespace\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n },\n {\n \"in\": + \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n - \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Pulp_Ansible: - Default Api V3 Collections\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"deprecated\": true,\n \"responses\": - {\n \"302\": {\n \"description\": - \"No response body\"\n },\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/CollectionResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"patch\": - {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collections_update\",\n - \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": + Default Api V3 Plugin Ansible Content Collections Index\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/CollectionResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"patch\": {\n \"operationId\": + \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_index_update\",\n + \ \"description\": \"Trigger an asynchronous update task\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": @@ -22148,8 +38052,8 @@ interactions: {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n \ \"tags\": [\n \"Pulp_Ansible: Default Api - V3 Collections\"\n ],\n \"requestBody\": {\n - \ \"content\": {\n \"application/json\": + V3 Plugin Ansible Content Collections Index\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedCollection\"\n }\n \ },\n \"application/x-www-form-urlencoded\": @@ -22160,19 +38064,21 @@ interactions: \"#/components/schemas/PatchedCollection\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"deprecated\": true,\n \"responses\": {\n - \ \"302\": {\n \"description\": \"No - response body\"\n },\n \"202\": {\n - \ \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collections_delete\",\n - \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_index_delete\",\n + \ \"description\": \"Trigger an asynchronous delete task\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": @@ -22180,21 +38086,23 @@ interactions: {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n \ \"tags\": [\n \"Pulp_Ansible: Default Api - V3 Collections\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"deprecated\": true,\n \"responses\": {\n - \ \"302\": {\n \"description\": \"No - response body\"\n },\n \"202\": {\n - \ \"content\": {\n \"application/json\": + V3 Plugin Ansible Content Collections Index\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/default/api/v3/collections/{namespace}/{name}/versions/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collections_versions_list\",\n - \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": - [\n {\n \"in\": \"query\",\n \"name\": + \ \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/{namespace}/{name}/versions/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_index_versions_list\",\n + \ \"description\": \"Returns paginated CollectionVersions list.\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"is_highest\",\n \"schema\": {\n \"type\": \"boolean\"\n }\n },\n {\n \ \"name\": \"limit\",\n \"required\": @@ -22222,56 +38130,93 @@ interactions: \ \"in\": \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-_artifacts\",\n - \ \"-authors\",\n \"-collection\",\n - \ \"-content_ptr\",\n \"-contentartifact\",\n + \"string\",\n \"enum\": [\n \"-authors\",\n \ \"-contents\",\n \"-dependencies\",\n \ \"-description\",\n \"-docs_blob\",\n - \ \"-documentation\",\n \"-download_logs\",\n - \ \"-files\",\n \"-group_roles\",\n + \ \"-documentation\",\n \"-files\",\n \ \"-homepage\",\n \"-is_highest\",\n \ \"-issues\",\n \"-license\",\n \ \"-manifest\",\n \"-name\",\n \ \"-namespace\",\n \"-pk\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-repositories\",\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n \ \"-repository\",\n \"-requires_ansible\",\n - \ \"-search_vector\",\n \"-signatures\",\n - \ \"-tags\",\n \"-timestamp_of_interest\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"authors\",\n - \ \"collection\",\n \"content_ptr\",\n - \ \"contentartifact\",\n \"contents\",\n + \ \"-search_vector\",\n \"-timestamp_of_interest\",\n + \ \"-upstream_id\",\n \"-version\",\n + \ \"-version_major\",\n \"-version_minor\",\n + \ \"-version_patch\",\n \"-version_prerelease\",\n + \ \"authors\",\n \"contents\",\n \ \"dependencies\",\n \"description\",\n \ \"docs_blob\",\n \"documentation\",\n - \ \"download_logs\",\n \"files\",\n - \ \"group_roles\",\n \"homepage\",\n + \ \"files\",\n \"homepage\",\n \ \"is_highest\",\n \"issues\",\n \ \"license\",\n \"manifest\",\n \ \"name\",\n \"namespace\",\n \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"repositories\",\n \"repository\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"repository\",\n \ \"requires_ansible\",\n \"search_vector\",\n - \ \"signatures\",\n \"tags\",\n \ \"timestamp_of_interest\",\n \"upstream_id\",\n - \ \"user_roles\",\n \"version\",\n - \ \"version_memberships\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"q\",\n \"schema\": - {\n \"type\": \"string\"\n }\n + \ \"version\",\n \"version_major\",\n + \ \"version_minor\",\n \"version_patch\",\n + \ \"version_prerelease\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_id` - Pulp id\\n* `-pulp_id` - Pulp id (descending)\\n* + `pulp_created` - Pulp created\\n* `-pulp_created` - Pulp created (descending)\\n* + `pulp_last_updated` - Pulp last updated\\n* `-pulp_last_updated` - Pulp last + updated (descending)\\n* `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type + (descending)\\n* `upstream_id` - Upstream id\\n* `-upstream_id` - Upstream + id (descending)\\n* `timestamp_of_interest` - Timestamp of interest\\n* `-timestamp_of_interest` + - Timestamp of interest (descending)\\n* `authors` - Authors\\n* `-authors` + - Authors (descending)\\n* `contents` - Contents\\n* `-contents` - Contents + (descending)\\n* `dependencies` - Dependencies\\n* `-dependencies` - Dependencies + (descending)\\n* `description` - Description\\n* `-description` - Description + (descending)\\n* `docs_blob` - Docs blob\\n* `-docs_blob` - Docs blob (descending)\\n* + `manifest` - Manifest\\n* `-manifest` - Manifest (descending)\\n* `files` + - Files\\n* `-files` - Files (descending)\\n* `documentation` - Documentation\\n* + `-documentation` - Documentation (descending)\\n* `homepage` - Homepage\\n* + `-homepage` - Homepage (descending)\\n* `issues` - Issues\\n* `-issues` - + Issues (descending)\\n* `license` - License\\n* `-license` - License (descending)\\n* + `name` - Name\\n* `-name` - Name (descending)\\n* `namespace` - Namespace\\n* + `-namespace` - Namespace (descending)\\n* `repository` - Repository\\n* `-repository` + - Repository (descending)\\n* `requires_ansible` - Requires ansible\\n* `-requires_ansible` + - Requires ansible (descending)\\n* `version` - Version\\n* `-version` - Version + (descending)\\n* `version_major` - Version major\\n* `-version_major` - Version + major (descending)\\n* `version_minor` - Version minor\\n* `-version_minor` + - Version minor (descending)\\n* `version_patch` - Version patch\\n* `-version_patch` + - Version patch (descending)\\n* `version_prerelease` - Version prerelease\\n* + `-version_prerelease` - Version prerelease (descending)\\n* `is_highest` - + Is highest\\n* `-is_highest` - Is highest (descending)\\n* `search_vector` + - Search vector\\n* `-search_vector` - Search vector (descending)\\n* `pk` + - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"orphaned_for\",\n \"schema\": {\n \"type\": + \"number\"\n },\n \"description\": + \"Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.\"\n \ },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \"query\",\n \"name\": \"pulp_href__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Repository Version referenced by HREF\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"repository_version_added\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Repository Version referenced by HREF\"\n },\n {\n \ \"in\": \"query\",\n \"name\": @@ -22288,28 +38233,32 @@ interactions: \"Filter results where version matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Pulp_Ansible: - Default Api V3 Collections Versions\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"deprecated\": true,\n \"responses\": - {\n \"302\": {\n \"description\": - \"No response body\"\n },\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PaginatedCollectionVersionListResponseList\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/default/api/v3/collections/{namespace}/{name}/versions/{version}/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collections_versions_read\",\n - \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": + Default Api V3 Plugin Ansible Content Collections Index Versions\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"202\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/PaginatedCollectionVersionListResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/{namespace}/{name}/versions/{version}/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_index_versions_read\",\n + \ \"description\": \"Returns a CollectionVersion object.\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": @@ -22321,28 +38270,33 @@ interactions: \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Default Api V3 Plugin Ansible Content Collections Index Versions\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": + []\n }\n ],\n \"responses\": + {\n \"200\": {\n \"content\": {\n + \ \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/CollectionVersionResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"delete\": {\n \"operationId\": + \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_index_versions_delete\",\n + \ \"description\": \"Trigger an asynchronous delete task\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Default Api V3 Collections Versions\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"deprecated\": true,\n \"responses\": {\n - \ \"302\": {\n \"description\": \"No - response body\"\n },\n \"202\": {\n - \ \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/CollectionVersionResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collections_versions_delete\",\n - \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": @@ -22353,22 +38307,24 @@ interactions: \"version\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Default Api V3 Collections Versions\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"deprecated\": true,\n \"responses\": {\n - \ \"302\": {\n \"description\": \"No - response body\"\n },\n \"202\": {\n - \ \"content\": {\n \"application/json\": + [\n \"Pulp_Ansible: Default Api V3 Plugin Ansible Content + Collections Index Versions\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"202\": + {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/default/api/v3/collections/{namespace}/{name}/versions/{version}/docs-blob/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collections_versions_docs_blob_read\",\n - \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": + \ \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/{namespace}/{name}/versions/{version}/docs-blob/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_index_versions_docs_blob_read\",\n + \ \"description\": \"Returns a CollectionVersion object.\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"required\": true\n },\n {\n + \ \"in\": \"path\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": @@ -22380,247 +38336,69 @@ interactions: \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Default Api V3 Collections Versions - Docs-Blob\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"deprecated\": true,\n \"responses\": {\n - \ \"302\": {\n \"description\": \"No - response body\"\n },\n \"202\": {\n - \ \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/CollectionVersionDocsResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/default/api/v3/collections/all/\": {\n \"get\": - {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_collections_all_list\",\n - \ \"description\": \"Legacy v3 endpoint.\",\n \"parameters\": - [\n {\n \"in\": \"query\",\n \"name\": - \"deprecated\",\n \"schema\": {\n \"type\": - \"boolean\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"namespace\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"ordering\",\n \"schema\": {\n \"type\": + \"exclude_fields\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-group_roles\",\n - \ \"-name\",\n \"-namespace\",\n - \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-user_roles\",\n - \ \"-versions\",\n \"group_roles\",\n - \ \"name\",\n \"namespace\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"user_roles\",\n - \ \"versions\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": - \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Default Api V3 Collections All\"\n - \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"deprecated\": true,\n \"responses\": {\n - \ \"302\": {\n \"description\": \"No - response body\"\n },\n \"202\": {\n - \ \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"$ref\": - \"#/components/schemas/CollectionResponse\"\n }\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/client-configuration/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_client_configuration_get\",\n - \ \"description\": \"Get the client configs.\",\n \"tags\": - [\n \"Pulp_Ansible: Default Api V3 Plugin Ansible Client-Configuration\"\n + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Default Api V3 Plugin Ansible Content Collections Index Versions Docs-Blob\"\n \ ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"200\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/ClientConfigurationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_read\",\n - \ \"description\": \"ViewSet for Repository Metadata.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"distro_base_path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Default Api V3 Plugin Ansible Content - Collections\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/RepoMetadataResponse\"\n + {\n \"$ref\": \"#/components/schemas/CollectionVersionDocsResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/all-collections/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_all_collections_list\",\n - \ \"description\": \"Unpaginated ViewSet for Collections.\",\n - \ \"parameters\": [\n {\n \"in\": - \"query\",\n \"name\": \"deprecated\",\n \"schema\": - {\n \"type\": \"boolean\"\n }\n - \ },\n {\n \"in\": - \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \ }\n },\n \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/namespaces/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_namespaces_list\",\n + \ \"description\": \"Provides the authentication and permission + classes from settings.\",\n \"parameters\": [\n {\n \ \"in\": \"query\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n + \"company\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"namespace\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n + \"company__contains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"company__icontains\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company contains value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"company__iexact\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where company matches value\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"ordering\",\n \"schema\": {\n \"type\": + \"company__in\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-group_roles\",\n - \ \"-name\",\n \"-namespace\",\n - \ \"-pk\",\n \"-pulp_created\",\n - \ \"-pulp_id\",\n \"-pulp_labels\",\n - \ \"-pulp_last_updated\",\n \"-user_roles\",\n - \ \"-versions\",\n \"group_roles\",\n - \ \"name\",\n \"namespace\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"user_roles\",\n - \ \"versions\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + \"string\"\n }\n },\n \"description\": + \"Filter results where company is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Default Api V3 Plugin Ansible Content - Collections All-Collections\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"type\": - \"array\",\n \"items\": {\n \"$ref\": - \"#/components/schemas/CollectionResponse\"\n }\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/all-versions/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_all_versions_list\",\n - \ \"description\": \"Returns paginated CollectionVersions list.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": + \"query\",\n \"name\": \"company__iregex\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \ \"description\": \"Filter results where company matches + regex value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"company__istartswith\",\n + \ \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n + \"Filter results where company starts with value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Pulp_Ansible: - Default Api V3 Plugin Ansible Content Collections All-Versions\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"type\": \"array\",\n \"items\": - {\n \"$ref\": \"#/components/schemas/UnpaginatedCollectionVersionResponse\"\n - \ }\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/artifacts/\": - {\n \"post\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_artifacts_create\",\n - \ \"description\": \"Create an artifact and trigger an asynchronous - task to create Collection content from it.\",\n \"summary\": - \"Upload a collection\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"distro_base_path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Artifacts Collections V3\"\n ],\n - \ \"requestBody\": {\n \"content\": {\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/CollectionOneShot\"\n }\n - \ },\n \"application/x-www-form-urlencoded\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/CollectionOneShot\"\n }\n - \ }\n },\n \"required\": - true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n - \ \"responses\": {\n \"202\": {\n \"content\": - {\n \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/artifacts/{filename}\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_artifacts_download\",\n - \ \"description\": \"Collection download endpoint.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"distro_base_path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"path\",\n \"name\": \"filename\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"fields\",\n \"schema\": {\n \"type\": + \"company__regex\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"A list of fields to include in the response.\"\n },\n + \"Filter results where company matches regex value\"\n },\n \ {\n \"in\": \"query\",\n \"name\": - \"exclude_fields\",\n \"schema\": {\n \"type\": + \"company__startswith\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"A list of fields to exclude from the response.\"\n }\n - \ ],\n \"tags\": [\n \"Pulp_Ansible: - Default Api V3 Plugin Ansible Content Collections Artifacts\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"description\": - \"No response body\"\n }\n }\n }\n - \ },\n \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_index_list\",\n - \ \"description\": \"ViewSet for Collections.\",\n \"parameters\": - [\n {\n \"in\": \"query\",\n \"name\": - \"deprecated\",\n \"schema\": {\n \"type\": - \"boolean\"\n }\n },\n {\n - \ \"in\": \"path\",\n \"name\": + \"Filter results where company starts with value\"\n },\n + \ {\n \"in\": \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"name\": @@ -22629,12 +38407,55 @@ interactions: return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"namespace\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"name\": \"offset\",\n \"required\": + \"metadata_sha256\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where metadata_sha256 matches value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"metadata_sha256__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter results where metadata_sha256 is in a comma-separated list of values\",\n + \ \"explode\": false,\n \"style\": + \"form\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__contains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__icontains\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name contains + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__iexact\",\n \"schema\": + {\n \"type\": \"string\"\n },\n + \ \"description\": \"Filter results where name matches + value\"\n },\n {\n \"in\": + \"query\",\n \"name\": \"name__in\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + results where name is in a comma-separated list of values\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__iregex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__istartswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__regex\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name matches regex value\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"name__startswith\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Filter results where name starts with value\"\n },\n + \ {\n \"name\": \"offset\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"The initial index from which to return the results.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n @@ -22642,151 +38463,222 @@ interactions: \"query\",\n \"name\": \"ordering\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"enum\": - [\n \"-group_roles\",\n \"-name\",\n - \ \"-namespace\",\n \"-pk\",\n + [\n \"-avatar_sha256\",\n \"-company\",\n + \ \"-description\",\n \"-email\",\n + \ \"-links\",\n \"-metadata_sha256\",\n + \ \"-name\",\n \"-pk\",\n \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-user_roles\",\n \"-versions\",\n - \ \"group_roles\",\n \"name\",\n - \ \"namespace\",\n \"pk\",\n - \ \"pulp_created\",\n \"pulp_id\",\n - \ \"pulp_labels\",\n \"pulp_last_updated\",\n - \ \"user_roles\",\n \"versions\"\n + \ \"-pulp_last_updated\",\n \"-pulp_type\",\n + \ \"-resources\",\n \"-timestamp_of_interest\",\n + \ \"-upstream_id\",\n \"avatar_sha256\",\n + \ \"company\",\n \"description\",\n + \ \"email\",\n \"links\",\n + \ \"metadata_sha256\",\n \"name\",\n + \ \"pk\",\n \"pulp_created\",\n + \ \"pulp_id\",\n \"pulp_last_updated\",\n + \ \"pulp_type\",\n \"resources\",\n + \ \"timestamp_of_interest\",\n \"upstream_id\"\n \ ]\n }\n },\n - \ \"description\": \"Ordering\",\n \"explode\": + \ \"description\": \"Ordering\\n\\n* `pulp_id` - Pulp + id\\n* `-pulp_id` - Pulp id (descending)\\n* `pulp_created` - Pulp created\\n* + `-pulp_created` - Pulp created (descending)\\n* `pulp_last_updated` - Pulp + last updated\\n* `-pulp_last_updated` - Pulp last updated (descending)\\n* + `pulp_type` - Pulp type\\n* `-pulp_type` - Pulp type (descending)\\n* `upstream_id` + - Upstream id\\n* `-upstream_id` - Upstream id (descending)\\n* `timestamp_of_interest` + - Timestamp of interest\\n* `-timestamp_of_interest` - Timestamp of interest + (descending)\\n* `name` - Name\\n* `-name` - Name (descending)\\n* `company` + - Company\\n* `-company` - Company (descending)\\n* `email` - Email\\n* `-email` + - Email (descending)\\n* `description` - Description\\n* `-description` - + Description (descending)\\n* `resources` - Resources\\n* `-resources` - Resources + (descending)\\n* `links` - Links\\n* `-links` - Links (descending)\\n* `avatar_sha256` + - Avatar sha256\\n* `-avatar_sha256` - Avatar sha256 (descending)\\n* `metadata_sha256` + - Metadata sha256\\n* `-metadata_sha256` - Metadata sha256 (descending)\\n* + `pk` - Pk\\n* `-pk` - Pk (descending)\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"pulp_href__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Multiple values may be separated by commas.\",\n \"explode\": false,\n \"style\": \"form\"\n },\n \ {\n \"in\": \"query\",\n \"name\": + \"pulp_id__in\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uuid\"\n }\n + \ },\n \"description\": \"Multiple + values may be separated by commas.\",\n \"explode\": + false,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"q\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Pulp_Ansible: - Default Api V3 Plugin Ansible Content Collections Index\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": - []\n }\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedCollectionResponseList\"\n + Default Api V3 Plugin Ansible Content Namespaces\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n + \ ],\n \"responses\": {\n \"200\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/Paginatedansible.AnsibleNamespaceMetadataResponseList\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ },\n \"post\": {\n \"operationId\": + \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_namespaces_create\",\n + \ \"description\": \"Provides the authentication and permission + classes from settings.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": + \"distro_base_path\",\n \"schema\": {\n \"type\": + \"string\"\n },\n \"required\": + true\n }\n ],\n \"tags\": + [\n \"Pulp_Ansible: Default Api V3 Plugin Ansible Content + Namespaces\"\n ],\n \"requestBody\": {\n \"content\": + {\n \"multipart/form-data\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/ansible.AnsibleNamespaceMetadata\"\n + \ }\n },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/ansible.AnsibleNamespaceMetadata\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"202\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/{namespace}/{name}/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_index_read\",\n - \ \"description\": \"ViewSet for Collections.\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": + \ }\n },\n \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/namespaces/{name}/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_namespaces_read\",\n + \ \"description\": \"Provides the authentication and permission + classes from settings.\",\n \"parameters\": [\n {\n + \ \"in\": \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"path\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"namespace\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Default Api V3 Plugin Ansible Content - Collections Index\"\n ],\n \"security\": [\n - \ {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + \ \"in\": \"query\",\n \"name\": + \"fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to include in the response.\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pulp_Ansible: + Default Api V3 Plugin Ansible Content Namespaces\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/CollectionResponse\"\n }\n + \"#/components/schemas/ansible.AnsibleNamespaceMetadataResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n },\n \"patch\": - {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_index_update\",\n - \ \"description\": \"Trigger an asynchronous update task\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_namespaces_partial_update\",\n + \ \"description\": \"Provides the authentication and permission + classes from settings.\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": + \"distro_base_path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": - \"path\",\n \"name\": \"namespace\",\n \"schema\": + \"path\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n \ \"tags\": [\n \"Pulp_Ansible: Default Api - V3 Plugin Ansible Content Collections Index\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"application/json\": + V3 Plugin Ansible Content Namespaces\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedCollection\"\n }\n + \"#/components/schemas/Patchedansible.AnsibleNamespaceMetadata\"\n }\n \ },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedCollection\"\n }\n - \ },\n \"multipart/form-data\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/PatchedCollection\"\n }\n + \"#/components/schemas/Patchedansible.AnsibleNamespaceMetadata\"\n }\n \ }\n },\n \"required\": true\n },\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n }\n ],\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n \ \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n \ },\n \"delete\": {\n \"operationId\": - \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_index_delete\",\n - \ \"description\": \"Trigger an asynchronous delete task\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_namespaces_delete\",\n + \ \"description\": \"Try to remove the Namespace if no Collections + under Namespace are present.\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": + \"distro_base_path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": - \"path\",\n \"name\": \"namespace\",\n \"schema\": + \"path\",\n \"name\": \"name\",\n \"schema\": {\n \"type\": \"string\"\n },\n \ \"required\": true\n }\n ],\n \ \"tags\": [\n \"Pulp_Ansible: Default Api - V3 Plugin Ansible Content Collections Index\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + V3 Plugin Ansible Content Namespaces\"\n ],\n \"security\": + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"202\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AsyncOperationResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/{namespace}/{name}/versions/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_index_versions_list\",\n - \ \"description\": \"Returns paginated CollectionVersions list.\",\n + \ \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/search/collection-versions/\": + {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_search_collection_versions_list\",\n + \ \"description\": \"A viewset for cross-repo searches.\",\n \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \"query\",\n \"name\": \"dependency\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"deprecated\",\n \"schema\": + {\n \"type\": \"boolean\"\n }\n + \ },\n {\n \"in\": + \"query\",\n \"name\": \"distribution\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + collectionversions that are in these distrubtion ids.\",\n \"explode\": + true,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"distribution_base_path\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter collectionversions that are in these base paths.\",\n \"explode\": + true,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"highest\",\n \"schema\": {\n \"type\": + \"boolean\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"is_deprecated\",\n \"schema\": {\n \"type\": + \"boolean\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"is_highest\",\n \"schema\": {\n \"type\": \"boolean\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"is_signed\",\n \"schema\": {\n \"type\": + \"boolean\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"keywords\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"name\": \"limit\",\n \"required\": false,\n \"in\": \"query\",\n \"description\": \"Number of results to return per page.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n \ },\n {\n \"in\": - \"path\",\n \"name\": \"name\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"query\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n }\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"namespace\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": + \"query\",\n \"name\": \"name\",\n \"schema\": + {\n \"type\": \"string\"\n }\n + \ },\n {\n \"in\": \"query\",\n \"name\": \"namespace\",\n \"schema\": {\n \"type\": \"string\"\n }\n \ },\n {\n \"name\": @@ -22795,229 +38687,141 @@ interactions: which to return the results.\",\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"ordering\",\n \"schema\": {\n \"type\": + \"order_by\",\n \"schema\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\",\n \"enum\": [\n \"-_artifacts\",\n - \ \"-authors\",\n \"-collection\",\n - \ \"-content_ptr\",\n \"-contentartifact\",\n - \ \"-contents\",\n \"-dependencies\",\n - \ \"-description\",\n \"-docs_blob\",\n - \ \"-documentation\",\n \"-download_logs\",\n - \ \"-files\",\n \"-group_roles\",\n - \ \"-homepage\",\n \"-is_highest\",\n - \ \"-issues\",\n \"-license\",\n - \ \"-manifest\",\n \"-name\",\n - \ \"-namespace\",\n \"-pk\",\n - \ \"-pulp_created\",\n \"-pulp_id\",\n - \ \"-pulp_labels\",\n \"-pulp_last_updated\",\n - \ \"-pulp_type\",\n \"-repositories\",\n - \ \"-repository\",\n \"-requires_ansible\",\n - \ \"-search_vector\",\n \"-signatures\",\n - \ \"-tags\",\n \"-timestamp_of_interest\",\n - \ \"-upstream_id\",\n \"-user_roles\",\n - \ \"-version\",\n \"-version_memberships\",\n - \ \"_artifacts\",\n \"authors\",\n - \ \"collection\",\n \"content_ptr\",\n - \ \"contentartifact\",\n \"contents\",\n - \ \"dependencies\",\n \"description\",\n - \ \"docs_blob\",\n \"documentation\",\n - \ \"download_logs\",\n \"files\",\n - \ \"group_roles\",\n \"homepage\",\n - \ \"is_highest\",\n \"issues\",\n - \ \"license\",\n \"manifest\",\n - \ \"name\",\n \"namespace\",\n - \ \"pk\",\n \"pulp_created\",\n - \ \"pulp_id\",\n \"pulp_labels\",\n - \ \"pulp_last_updated\",\n \"pulp_type\",\n - \ \"repositories\",\n \"repository\",\n - \ \"requires_ansible\",\n \"search_vector\",\n - \ \"signatures\",\n \"tags\",\n - \ \"timestamp_of_interest\",\n \"upstream_id\",\n - \ \"user_roles\",\n \"version\",\n - \ \"version_memberships\"\n ]\n - \ }\n },\n \"description\": - \"Ordering\",\n \"explode\": false,\n \"style\": + \"string\",\n \"enum\": [\n \"-name\",\n + \ \"-namespace\",\n \"-pulp_created\",\n + \ \"-version\",\n \"name\",\n + \ \"namespace\",\n \"pulp_created\",\n + \ \"version\"\n ]\n + \ }\n },\n \"description\": + \"Ordering\\n\\n* `pulp_created` - by CV created\\n* `-pulp_created` - by + CV created (descending)\\n* `namespace` - by CV namespace\\n* `-namespace` + - by CV namespace (descending)\\n* `name` - by CV name\\n* `-name` - by CV + name (descending)\\n* `version` - by CV version\\n* `-version` - by CV version + (descending)\",\n \"explode\": false,\n \"style\": \"form\"\n },\n {\n \"in\": \"query\",\n \"name\": \"q\",\n \"schema\": {\n \"type\": \"string\"\n }\n \ },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"Repository Version referenced by - HREF\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"repository_version_added\",\n - \ \"schema\": {\n \"type\": + \"query\",\n \"name\": \"repository\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"Filter + collectionversions that are in these repository ids.\",\n \"explode\": + true,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"repository_label\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": - \"Repository Version referenced by HREF\"\n },\n {\n + \"Filter labels by search string\"\n },\n {\n \ \"in\": \"query\",\n \"name\": - \"repository_version_removed\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Repository Version referenced by HREF\"\n },\n {\n + \"repository_name\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"Filter collectionversions that are in these repositories.\",\n \"explode\": + true,\n \"style\": \"form\"\n },\n + \ {\n \"in\": \"query\",\n \"name\": + \"repository_version\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"signed\",\n \"schema\": {\n \"type\": + \"boolean\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"tags\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"description\": \"Filter by comma separate list of tags that must all be matched\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"version\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": - \"Filter results where version matches value\"\n },\n {\n + \"string\"\n }\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"version_range\",\n \"schema\": {\n \"type\": + \"string\"\n }\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Pulp_Ansible: - Default Api V3 Plugin Ansible Content Collections Index Versions\"\n ],\n - \ \"security\": [\n {\n \"cookieAuth\": - []\n },\n {\n \"basicAuth\": + Default Api V3 Plugin Ansible Search Collection-Versions\"\n ],\n + \ \"security\": [\n {\n \"basicAuth\": + []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"responses\": - {\n \"202\": {\n \"content\": {\n + {\n \"200\": {\n \"content\": {\n \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/PaginatedCollectionVersionListResponseList\"\n + {\n \"$ref\": \"#/components/schemas/PaginatedCollectionVersionSearchListResponseList\"\n \ }\n }\n },\n \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/{namespace}/{name}/versions/{version}/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_index_versions_read\",\n - \ \"description\": \"Returns a CollectionVersion object.\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"path\",\n \"name\": \"namespace\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n + \ },\n \"post\": {\n \"operationId\": + \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_search_collection_versions_rebuild\",\n + \ \"description\": \"A viewset for cross-repo searches.\",\n + \ \"tags\": [\n \"Pulp_Ansible: Default Api + V3 Plugin Ansible Search Collection-Versions\"\n ],\n \"requestBody\": + {\n \"content\": {\n \"application/json\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CollectionVersionSearchList\"\n }\n + \ },\n \"application/x-www-form-urlencoded\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CollectionVersionSearchList\"\n }\n + \ },\n \"multipart/form-data\": + {\n \"schema\": {\n \"$ref\": + \"#/components/schemas/CollectionVersionSearchList\"\n }\n + \ }\n },\n \"required\": + true\n },\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n }\n ],\n + \ \"responses\": {\n \"201\": {\n \"content\": + {\n \"application/json\": {\n \"schema\": + {\n \"$ref\": \"#/components/schemas/CollectionVersionSearchListResponse\"\n + \ }\n }\n },\n + \ \"description\": \"\"\n }\n }\n + \ }\n },\n \"/pypi/{path}/\": {\n \"get\": + {\n \"operationId\": \"pypi_read\",\n \"description\": + \"Gets package summary stats of index.\",\n \"summary\": \"Get + index summary\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": - \"version\",\n \"schema\": {\n \"type\": + \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Default Api V3 Plugin Ansible Content - Collections Index Versions\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pypi\"\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/CollectionVersionResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n },\n \"delete\": - {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_index_versions_delete\",\n - \ \"description\": \"Trigger an asynchronous delete task\",\n - \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"path\",\n \"name\": \"namespace\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"version\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Default Api V3 Plugin Ansible Content - Collections Index Versions\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"202\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/AsyncOperationResponse\"\n }\n + \"#/components/schemas/SummaryResponse\"\n }\n \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n - \ \"/pulp_ansible/galaxy/default/api/v3/plugin/ansible/content/{distro_base_path}/collections/index/{namespace}/{name}/versions/{version}/docs-blob/\": - {\n \"get\": {\n \"operationId\": \"pulp_ansible_galaxy_default_api_v3_plugin_ansible_content_collections_index_versions_docs_blob_read\",\n - \ \"description\": \"Returns a CollectionVersion object.\",\n + \ \"/pypi/{path}/legacy/\": {\n \"post\": {\n \"operationId\": + \"pypi_legacy_create\",\n \"description\": \"Upload package + to the index.\\n\\nThis is the endpoint that tools like Twine and Poetry use + for their upload commands.\",\n \"summary\": \"Upload a package\",\n \ \"parameters\": [\n {\n \"in\": - \"path\",\n \"name\": \"distro_base_path\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"name\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"path\",\n \"name\": \"namespace\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"required\": true\n },\n {\n - \ \"in\": \"path\",\n \"name\": - \"version\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pulp_Ansible: Default Api V3 Plugin Ansible Content - Collections Index Versions Docs-Blob\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n - \ ],\n \"responses\": {\n \"200\": - {\n \"content\": {\n \"application/json\": - {\n \"schema\": {\n \"$ref\": - \"#/components/schemas/CollectionVersionDocsResponse\"\n }\n - \ }\n },\n \"description\": - \"\"\n }\n }\n }\n },\n - \ \"/pypi/{path}/\": {\n \"get\": {\n \"operationId\": - \"pypi_read\",\n \"description\": \"Gets package summary stats - of index.\",\n \"summary\": \"Get index summary\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n },\n {\n \"in\": - \"query\",\n \"name\": \"fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": + \"path\",\n \"name\": \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pypi\"\n ],\n \"responses\": - {\n \"200\": {\n \"content\": {\n - \ \"application/json\": {\n \"schema\": - {\n \"$ref\": \"#/components/schemas/SummaryResponse\"\n - \ }\n }\n },\n - \ \"description\": \"\"\n }\n }\n - \ }\n },\n \"/pypi/{path}/legacy/\": {\n \"post\": - {\n \"operationId\": \"pypi_legacy_create\",\n \"description\": - \"Upload package to the index.\\n\\nThis is the endpoint that tools like Twine - and Poetry use for their upload commands.\",\n \"summary\": - \"Upload a package\",\n \"parameters\": [\n {\n - \ \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Pypi: Legacy\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"multipart/form-data\": + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Pypi: Legacy\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PackageUpload\"\n }\n },\n \ \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PackageUpload\"\n \ }\n }\n },\n \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": @@ -23038,11 +38842,13 @@ interactions: \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Pypi: Metadata\"\n ],\n \"responses\": {\n \"200\": @@ -23060,39 +38866,41 @@ interactions: \"string\"\n },\n \"required\": true\n },\n {\n \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n + \ },\n \"description\": \"A list + of fields to include in the response.\"\n },\n {\n + \ \"in\": \"query\",\n \"name\": + \"exclude_fields\",\n \"schema\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": + \"A list of fields to exclude from the response.\"\n }\n + \ ],\n \"tags\": [\n \"Pypi: + Simple\"\n ],\n \"security\": [\n {\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n },\n {}\n + \ ],\n \"responses\": {\n \"200\": + {\n \"description\": \"No response body\"\n }\n + \ }\n },\n \"post\": {\n \"operationId\": + \"pypi_simple_create\",\n \"description\": \"Upload package + to the index.\\nThis endpoint has the same functionality as the upload endpoint + at the `/legacy` url of the\\nindex. This is provided for convenience for + users who want a single index url for all their\\nPython tools. (pip, twine, + poetry, pipenv, ...)\",\n \"summary\": \"Upload a package\",\n + \ \"parameters\": [\n {\n \"in\": + \"path\",\n \"name\": \"path\",\n \"schema\": {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to include in - the response.\"\n },\n {\n \"in\": - \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": - {\n \"type\": \"string\"\n },\n - \ \"description\": \"A list of fields to exclude from - the response.\"\n }\n ],\n \"tags\": - [\n \"Pypi: Simple\"\n ],\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n },\n - \ {}\n ],\n \"responses\": - {\n \"200\": {\n \"description\": - \"No response body\"\n }\n }\n },\n - \ \"post\": {\n \"operationId\": \"pypi_simple_create\",\n - \ \"description\": \"Upload package to the index.\\nThis endpoint - has the same functionality as the upload endpoint at the `/legacy` url of - the\\nindex. This is provided for convenience for users who want a single - index url for all their\\nPython tools. (pip, twine, poetry, pipenv, ...)\",\n - \ \"summary\": \"Upload a package\",\n \"parameters\": - [\n {\n \"in\": \"path\",\n \"name\": - \"path\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"required\": - true\n }\n ],\n \"tags\": - [\n \"Pypi: Simple\"\n ],\n \"requestBody\": - {\n \"content\": {\n \"multipart/form-data\": + \ \"required\": true\n }\n ],\n + \ \"tags\": [\n \"Pypi: Simple\"\n ],\n + \ \"requestBody\": {\n \"content\": {\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PackageUpload\"\n }\n },\n \ \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PackageUpload\"\n \ }\n }\n },\n \ \"required\": true\n },\n \"security\": - [\n {\n \"cookieAuth\": []\n },\n - \ {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": @@ -23100,9 +38908,9 @@ interactions: \ }\n },\n \"description\": \"\"\n }\n }\n }\n },\n \ \"/pypi/{path}/simple/{package}/\": {\n \"get\": {\n \"operationId\": - \"pypi_simple_read\",\n \"description\": \"Retrieves the simple - api html page for a package.\",\n \"summary\": \"Get package - simple page\",\n \"parameters\": [\n {\n + \"pypi_simple_package_read\",\n \"description\": \"Retrieves + the simple api html page for a package.\",\n \"summary\": \"Get + package simple page\",\n \"parameters\": [\n {\n \ \"in\": \"path\",\n \"name\": \"package\",\n \"schema\": {\n \"type\": \"string\"\n },\n \"required\": @@ -23112,23 +38920,26 @@ interactions: \ \"required\": true\n },\n {\n \ \"in\": \"query\",\n \"name\": \"fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to include in the response.\"\n },\n \ {\n \"in\": \"query\",\n \"name\": \"exclude_fields\",\n \"schema\": {\n \"type\": - \"string\"\n },\n \"description\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n }\n },\n \"description\": \"A list of fields to exclude from the response.\"\n }\n \ ],\n \"tags\": [\n \"Pypi: Simple\"\n ],\n \"security\": [\n {\n - \ \"cookieAuth\": []\n },\n {\n - \ \"basicAuth\": []\n },\n {}\n + \ \"basicAuth\": []\n },\n {\n + \ \"cookieAuth\": []\n },\n {}\n \ ],\n \"responses\": {\n \"200\": {\n \"description\": \"No response body\"\n }\n \ }\n }\n },\n \"/token/\": {\n \"get\": {\n \"operationId\": \"token_get\",\n \"description\": \"Handles GET requests for the /token/ endpoint.\",\n \"tags\": [\n \"Token\"\n ],\n \"security\": - [\n {\n \"basicAuth\": []\n }\n + [\n {\n \"basicAuth\": []\n },\n + \ {\n \"cookieAuth\": []\n }\n \ ],\n \"responses\": {\n \"200\": {\n \"description\": \"No response body\"\n }\n \ }\n }\n }\n },\n \"components\": {\n @@ -23199,13 +39010,24 @@ interactions: binary RPMs.\"\n }\n },\n \"required\": [\n \"addon_id\",\n \"name\",\n \"packages\",\n \ \"type\",\n \"uid\"\n ]\n - \ },\n \"AnsibleRepositoryRebuild\": {\n \"type\": - \"object\",\n \"description\": \"Serializer for Ansible Repository - Rebuild.\",\n \"properties\": {\n \"namespace\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"nullable\": true,\n \"minLength\": + \ },\n \"AnsibleRepositoryMark\": {\n \"type\": + \"object\",\n \"description\": \"A serializer for the mark + action.\",\n \"properties\": {\n \"content_units\": + {\n \"type\": \"array\",\n \"items\": + {},\n \"description\": \"List of collection version + hrefs to mark, use * to mark all content in repository\"\n },\n + \ \"value\": {\n \"type\": \"string\",\n + \ \"minLength\": 1,\n \"description\": + \"The string value of this mark.\",\n \"pattern\": + \"^[-a-zA-Z0-9_]+$\"\n }\n },\n \"required\": + [\n \"content_units\",\n \"value\"\n + \ ]\n },\n \"AnsibleRepositoryRebuild\": + {\n \"type\": \"object\",\n \"description\": + \"Serializer for Ansible Repository Rebuild.\",\n \"properties\": + {\n \"namespace\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1\n },\n \"name\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": 1\n },\n \"version\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"minLength\": 1\n }\n }\n },\n \"AnsibleRepositorySignature\": @@ -23232,6 +39054,23 @@ interactions: \ \"optimize\": {\n \"type\": \"boolean\",\n \ \"default\": true,\n \"description\": \"Whether to optimize sync or not.\"\n }\n }\n + \ },\n \"ApiAppStatusResponse\": {\n \"type\": + \"object\",\n \"description\": \"Base serializer for use with + :class:`pulpcore.app.models.Model`\\n\\nThis ensures that all Serializers + provide values for the 'pulp_href` field.\\n\\nThe class provides a default + for the ``ref_name`` attribute in the\\nModelSerializers's ``Meta`` class. + This ensures that the OpenAPI definitions\\nof plugins are namespaced properly.\",\n + \ \"properties\": {\n \"name\": {\n \"type\": + \"string\",\n \"readOnly\": true,\n \"description\": + \"The name of the worker.\"\n },\n \"last_heartbeat\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\",\n \"readOnly\": true,\n \"description\": + \"Timestamp of the last time the worker talked to the service.\"\n },\n + \ \"versions\": {\n \"type\": \"object\",\n + \ \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n },\n + \ \"readOnly\": true,\n \"description\": + \"Versions of the components installed.\"\n }\n }\n \ },\n \"AptRepositorySyncURL\": {\n \"type\": \"object\",\n \"description\": \"A Serializer for AptRepository Sync.\",\n \"properties\": {\n \"remote\": @@ -23259,12 +39098,12 @@ interactions: {\n \"type\": \"string\",\n \"format\": \"binary\",\n \"description\": \"The stored file.\"\n \ },\n \"size\": {\n \"type\": - \"integer\",\n \"description\": \"The size of the file - in bytes.\"\n },\n \"md5\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"The MD5 checksum of the file - if available.\"\n },\n \"sha1\": {\n - \ \"type\": \"string\",\n \"nullable\": + \"integer\",\n \"format\": \"int64\",\n \"description\": + \"The size of the file in bytes.\"\n },\n \"md5\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The MD5 checksum of the file if available.\"\n },\n \"sha1\": + {\n \"type\": \"string\",\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"The SHA-1 checksum of the file if available.\"\n },\n \ \"sha224\": {\n \"type\": \"string\",\n @@ -23282,15 +39121,44 @@ interactions: true,\n \"minLength\": 1,\n \"description\": \"The SHA-512 checksum of the file if available.\"\n }\n \ },\n \"required\": [\n \"file\"\n - \ ]\n },\n \"ArtifactRefResponse\": {\n - \ \"type\": \"object\",\n \"description\": \"A - serializer for an Artifact reference.\",\n \"properties\": + \ ]\n },\n \"ArtifactDistributionResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for ArtifactDistribution.\",\n \"properties\": + {\n \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"content_guard\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"An optional content-guard.\"\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name. Ex, + `rawhide` and `stable`.\"\n },\n \"base_url\": + {\n \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"The URL for accessing the + publication as defined by this distribution.\"\n },\n \"hidden\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Whether this distribution + should be shown in the content app.\"\n },\n \"base_path\": + {\n \"type\": \"string\",\n \"description\": + \"The base (relative) path component of the published url. Avoid paths that + \ overlap with other distribution base paths (e.g. \\\"foo\\\" + and \\\"foo/bar\\\")\"\n },\n \"pulp_labels\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n }\n + \ },\n \"required\": [\n \"base_path\",\n + \ \"name\"\n ]\n },\n \"ArtifactRefResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for an Artifact reference.\",\n \"properties\": {\n \"filename\": {\n \"type\": \"string\"\n },\n \"sha256\": {\n \"type\": \"string\"\n },\n \"size\": {\n \"type\": - \"integer\"\n }\n },\n \"required\": - [\n \"filename\",\n \"sha256\",\n \"size\"\n - \ ]\n },\n \"ArtifactResponse\": {\n \"type\": + \"integer\",\n \"format\": \"int64\"\n }\n + \ },\n \"required\": [\n \"filename\",\n + \ \"sha256\",\n \"size\"\n ]\n + \ },\n \"ArtifactResponse\": {\n \"type\": \"object\",\n \"description\": \"Base serializer for use with :class:`pulpcore.app.models.Model`\\n\\nThis ensures that all Serializers provide values for the 'pulp_href` field.\\n\\nThe class provides a default @@ -23305,10 +39173,11 @@ interactions: \ },\n \"file\": {\n \"type\": \"string\",\n \"description\": \"The stored file.\"\n \ },\n \"size\": {\n \"type\": - \"integer\",\n \"description\": \"The size of the file - in bytes.\"\n },\n \"md5\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"description\": - \"The MD5 checksum of the file if available.\"\n },\n \"sha1\": + \"integer\",\n \"format\": \"int64\",\n \"description\": + \"The size of the file in bytes.\"\n },\n \"md5\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"The MD5 checksum of the + file if available.\"\n },\n \"sha1\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"description\": \"The SHA-1 checksum of the file if available.\"\n },\n \"sha224\": @@ -23391,86 +39260,164 @@ interactions: \ },\n \"CollectionNamespaceResponse\": {\n \"type\": \"object\",\n \"description\": \"A serializer for a Collection Version namespace field.\",\n \"properties\": {\n \"name\": - {\n \"type\": \"string\"\n }\n },\n - \ \"required\": [\n \"name\"\n ]\n - \ },\n \"CollectionOneShot\": {\n \"type\": - \"object\",\n \"description\": \"A serializer for the Collection - One Shot Upload API.\",\n \"properties\": {\n \"file\": - {\n \"type\": \"string\",\n \"format\": - \"binary\",\n \"description\": \"The Collection tarball.\"\n - \ },\n \"sha256\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"An optional sha256 checksum of the uploaded file.\"\n },\n - \ \"expected_namespace\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"The expected 'namespace' of the Collection to be verified against the metadata - during import.\"\n },\n \"expected_name\": + {\n \"type\": \"string\"\n },\n + \ \"metadata_sha256\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"required\": [\n \"metadata_sha256\",\n + \ \"name\"\n ]\n },\n \"CollectionOneShot\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for the Collection One Shot Upload API.\",\n \"properties\": + {\n \"file\": {\n \"type\": \"string\",\n + \ \"format\": \"binary\",\n \"description\": + \"The Collection tarball.\"\n },\n \"sha256\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"An optional sha256 checksum + of the uploaded file.\"\n },\n \"expected_namespace\": {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"The expected 'name' of the - Collection to be verified against the metadata during import.\"\n },\n - \ \"expected_version\": {\n \"type\": + 1,\n \"description\": \"The expected 'namespace' of + the Collection to be verified against the metadata during import.\"\n },\n + \ \"expected_name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": - \"The expected version of the Collection to be verified against the metadata - during import.\"\n }\n },\n \"required\": - [\n \"file\"\n ]\n },\n \"CollectionRefResponse\": + \"The expected 'name' of the Collection to be verified against the metadata + during import.\"\n },\n \"expected_version\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The expected version of the + Collection to be verified against the metadata during import.\"\n }\n + \ },\n \"required\": [\n \"file\"\n + \ ]\n },\n \"CollectionRefResponse\": {\n \"type\": \"object\",\n \"description\": \"A serializer for a Collection reference.\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n \ },\n \"name\": {\n \"type\": \"string\"\n },\n \"href\": {\n \"type\": - \"string\",\n \"readOnly\": true\n }\n + \"string\",\n \"description\": \"Returns link to a + collection.\",\n \"readOnly\": true\n }\n \ },\n \"required\": [\n \"id\",\n \ \"name\"\n ]\n },\n \"CollectionResponse\": {\n \"type\": \"object\",\n \"description\": \"A serializer for a Collection.\",\n \"properties\": {\n \"href\": + {\n \"type\": \"string\",\n \"description\": + \"Get href.\",\n \"readOnly\": true\n },\n + \ \"namespace\": {\n \"type\": \"string\",\n + \ \"readOnly\": true\n },\n \"name\": {\n \"type\": \"string\",\n \"readOnly\": + true\n },\n \"deprecated\": {\n \"type\": + \"boolean\"\n },\n \"versions_url\": + {\n \"type\": \"string\",\n \"description\": + \"Get a link to a collection versions list.\",\n \"readOnly\": + true\n },\n \"highest_version\": {\n + \ \"type\": \"object\",\n \"description\": + \"Get a highest version and its link.\",\n \"readOnly\": + true\n },\n \"created_at\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"description\": + \"Get the timestamp of the lowest version CollectionVersion's created timestamp.\",\n + \ \"readOnly\": true\n },\n \"updated_at\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\",\n \"description\": \"Get the timestamp + of the latest version CollectionVersion's created timestamp.\",\n \"readOnly\": + true\n },\n \"download_count\": {\n + \ \"type\": \"string\",\n \"readOnly\": + true\n }\n },\n \"required\": + [\n \"deprecated\"\n ]\n },\n + \ \"CollectionSummary\": {\n \"type\": \"object\",\n + \ \"description\": \"Collection Version serializer without docs + blob.\",\n \"properties\": {}\n },\n \"CollectionSummaryResponse\": + {\n \"type\": \"object\",\n \"description\": + \"Collection Version serializer without docs blob.\",\n \"properties\": + {\n \"pulp_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \"namespace\": {\n \"type\": - \"string\",\n \"readOnly\": true\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"readOnly\": true\n },\n \"deprecated\": - {\n \"type\": \"boolean\",\n \"readOnly\": - true\n },\n \"versions_url\": {\n \"type\": - \"string\",\n \"readOnly\": true\n },\n - \ \"highest_version\": {\n \"type\": - \"object\",\n \"readOnly\": true\n },\n - \ \"created_at\": {\n \"type\": \"string\",\n - \ \"format\": \"date-time\",\n \"readOnly\": - true\n },\n \"updated_at\": {\n \"type\": + \"string\",\n \"readOnly\": true,\n \"description\": + \"The namespace of the collection.\",\n \"maxLength\": + 64\n },\n \"name\": {\n \"type\": + \"string\",\n \"readOnly\": true,\n \"description\": + \"The name of the collection.\",\n \"maxLength\": 64\n + \ },\n \"version\": {\n \"type\": + \"string\",\n \"readOnly\": true,\n \"description\": + \"The version of the collection.\",\n \"maxLength\": + 128\n },\n \"requires_ansible\": {\n + \ \"type\": \"string\",\n \"readOnly\": + true,\n \"nullable\": true,\n \"description\": + \"The version of Ansible required to use the collection. Multiple versions + can be separated with a comma.\",\n \"maxLength\": + 255\n },\n \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": - true\n }\n }\n },\n \"CollectionVersionDocsResponse\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"contents\": {\n \"type\": + \"object\",\n \"readOnly\": true,\n \"description\": + \"A JSON field with data about the contents.\"\n },\n \"dependencies\": + {\n \"type\": \"object\",\n \"readOnly\": + true,\n \"description\": \"A dict declaring Collections + that this collection requires to be installed for it to be usable.\"\n },\n + \ \"description\": {\n \"type\": + \"string\",\n \"readOnly\": true,\n \"description\": + \"A short summary description of the collection.\"\n },\n + \ \"tags\": {\n \"type\": \"array\",\n + \ \"items\": {\n \"$ref\": + \"#/components/schemas/ansible.TagResponse\"\n },\n + \ \"readOnly\": true\n }\n }\n + \ },\n \"CollectionVersionCopyMove\": {\n \"type\": + \"object\",\n \"description\": \"Copy or move collections from + a source repository into one or more destinations.\\n\\nThis will carry associated + content like Signatures and Marks along.\",\n \"properties\": + {\n \"collection_versions\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uri\"\n },\n + \ \"description\": \"A list of collection versions to + move or copy.\"\n },\n \"destination_repositories\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"format\": + \"uri\"\n },\n \"description\": + \"List of repository HREFs to put content in.\"\n },\n + \ \"signing_service\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"HREF for a signing service. This will be used to sign the collection before + moving putting it in any new repositories.\"\n }\n },\n + \ \"required\": [\n \"collection_versions\",\n + \ \"destination_repositories\"\n ]\n },\n + \ \"CollectionVersionDocsResponse\": {\n \"type\": + \"object\",\n \"description\": \"A serializer to display the + docs_blob of a CollectionVersion.\",\n \"properties\": {\n + \ \"docs_blob\": {\n \"type\": \"object\"\n + \ }\n },\n \"required\": [\n + \ \"docs_blob\"\n ]\n },\n \"CollectionVersionListResponse\": {\n \"type\": \"object\",\n \"description\": - \"A serializer to display the docs_blob of a CollectionVersion.\",\n \"properties\": - {\n \"docs_blob\": {\n \"type\": - \"object\"\n }\n },\n \"required\": - [\n \"docs_blob\"\n ]\n },\n - \ \"CollectionVersionListResponse\": {\n \"type\": - \"object\",\n \"description\": \"A serializer for a CollectionVersion - list item.\",\n \"properties\": {\n \"version\": - {\n \"type\": \"string\",\n \"readOnly\": - true\n },\n \"href\": {\n \"type\": - \"string\",\n \"readOnly\": true\n },\n + \"A serializer for a CollectionVersion list item.\",\n \"properties\": + {\n \"version\": {\n \"type\": \"string\",\n + \ \"maxLength\": 128\n },\n \"href\": + {\n \"type\": \"string\",\n \"description\": + \"Get href.\",\n \"readOnly\": true\n },\n \ \"created_at\": {\n \"type\": \"string\",\n \ \"format\": \"date-time\"\n },\n \ \"updated_at\": {\n \"type\": \"string\",\n \ \"format\": \"date-time\"\n },\n \ \"requires_ansible\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"maxLength\": - 255\n }\n },\n \"required\": - [\n \"created_at\",\n \"updated_at\"\n - \ ]\n },\n \"CollectionVersionResponse\": + 255\n },\n \"marks\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Get a list of mark values filtering only those in the current repo.\",\n + \ \"readOnly\": true\n }\n },\n + \ \"required\": [\n \"created_at\",\n \"updated_at\",\n + \ \"version\"\n ]\n },\n \"CollectionVersionResponse\": {\n \"type\": \"object\",\n \"description\": \"A serializer for a CollectionVersion.\",\n \"properties\": {\n \"version\": {\n \"type\": \"string\",\n - \ \"readOnly\": true\n },\n \"href\": - {\n \"type\": \"string\",\n \"readOnly\": - true\n },\n \"created_at\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n + \ \"maxLength\": 128\n },\n \"href\": + {\n \"type\": \"string\",\n \"description\": + \"Get href.\",\n \"readOnly\": true\n },\n + \ \"created_at\": {\n \"type\": \"string\",\n + \ \"format\": \"date-time\"\n },\n \ \"updated_at\": {\n \"type\": \"string\",\n \ \"format\": \"date-time\"\n },\n \ \"requires_ansible\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"maxLength\": - 255\n },\n \"artifact\": {\n \"allOf\": - [\n {\n \"$ref\": + 255\n },\n \"marks\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Get a list of mark values filtering only those in the current repo.\",\n + \ \"readOnly\": true\n },\n \"artifact\": + {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/ArtifactRefResponse\"\n }\n \ ],\n \"readOnly\": true\n },\n \ \"collection\": {\n \"allOf\": @@ -23478,39 +39425,135 @@ interactions: \"#/components/schemas/CollectionRefResponse\"\n }\n \ ],\n \"readOnly\": true\n },\n \ \"download_url\": {\n \"type\": - \"string\",\n \"readOnly\": true\n },\n + \"string\",\n \"description\": \"Get artifact download + URL.\",\n \"readOnly\": true\n },\n \ \"name\": {\n \"type\": \"string\",\n \ \"readOnly\": true\n },\n \"namespace\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/CollectionNamespaceResponse\"\n }\n \ ],\n \"readOnly\": true\n },\n - \ \"signatures\": {\n \"type\": \"string\",\n - \ \"readOnly\": true\n },\n \"metadata\": - {\n \"allOf\": [\n {\n \"$ref\": + \ \"signatures\": {\n \"type\": \"array\",\n + \ \"items\": {\n \"$ref\": + \"#/components/schemas/CollectionVersionSignatureResponse\"\n }\n + \ },\n \"metadata\": {\n \"allOf\": + [\n {\n \"$ref\": \"#/components/schemas/CollectionMetadataResponse\"\n }\n \ ],\n \"readOnly\": true\n },\n \ \"git_url\": {\n \"type\": \"string\",\n - \ \"readOnly\": true\n },\n \"git_commit_sha\": - {\n \"type\": \"string\",\n \"readOnly\": - true\n },\n \"manifest\": {\n \"type\": + \ \"description\": \"Get the git URL.\",\n \"readOnly\": + true\n },\n \"git_commit_sha\": {\n + \ \"type\": \"string\",\n \"description\": + \"Get the git commit sha.\",\n \"readOnly\": true\n + \ },\n \"manifest\": {\n \"type\": \"object\",\n \"readOnly\": true,\n \"description\": \"A JSON field holding MANIFEST.json data.\"\n },\n \"files\": {\n \"type\": \"object\",\n \"readOnly\": true,\n \"description\": \"A JSON field holding FILES.json data.\"\n }\n },\n \"required\": - [\n \"created_at\",\n \"updated_at\"\n - \ ]\n },\n \"CompsXml\": {\n \"type\": - \"object\",\n \"description\": \"A serializer for comps.xml - Upload API.\",\n \"properties\": {\n \"file\": + [\n \"created_at\",\n \"signatures\",\n + \ \"updated_at\",\n \"version\"\n ]\n + \ },\n \"CollectionVersionSearchList\": {\n \"type\": + \"object\",\n \"description\": \"Cross-repo search results.\",\n + \ \"properties\": {\n \"repository\": {\n + \ \"$ref\": \"#/components/schemas/Repository\"\n },\n + \ \"collection_version\": {\n \"$ref\": + \"#/components/schemas/CollectionSummary\"\n },\n \"namespace_metadata\": + {\n \"allOf\": [\n {\n \"$ref\": + \"#/components/schemas/ansible.AnsibleNamespaceMetadata\"\n }\n + \ ],\n \"nullable\": true\n },\n + \ \"is_highest\": {\n \"type\": \"boolean\"\n + \ },\n \"is_deprecated\": {\n \"type\": + \"boolean\"\n },\n \"is_signed\": {\n + \ \"type\": \"boolean\"\n }\n },\n + \ \"required\": [\n \"collection_version\",\n + \ \"is_deprecated\",\n \"is_highest\",\n + \ \"is_signed\",\n \"namespace_metadata\",\n + \ \"repository\"\n ]\n },\n \"CollectionVersionSearchListResponse\": + {\n \"type\": \"object\",\n \"description\": + \"Cross-repo search results.\",\n \"properties\": {\n \"repository\": + {\n \"$ref\": \"#/components/schemas/RepositoryResponse\"\n + \ },\n \"collection_version\": {\n \"$ref\": + \"#/components/schemas/CollectionSummaryResponse\"\n },\n + \ \"repository_version\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"namespace_metadata\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/ansible.AnsibleNamespaceMetadataResponse\"\n }\n + \ ],\n \"nullable\": true\n },\n + \ \"is_highest\": {\n \"type\": \"boolean\"\n + \ },\n \"is_deprecated\": {\n \"type\": + \"boolean\"\n },\n \"is_signed\": {\n + \ \"type\": \"boolean\"\n }\n },\n + \ \"required\": [\n \"collection_version\",\n + \ \"is_deprecated\",\n \"is_highest\",\n + \ \"is_signed\",\n \"namespace_metadata\",\n + \ \"repository\"\n ]\n },\n \"CollectionVersionSignatureResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for the signatures on a Collection Version.\",\n \"properties\": + {\n \"signature\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"pubkey_fingerprint\": {\n \"type\": + \"string\",\n \"maxLength\": 64\n },\n + \ \"signing_service\": {\n \"type\": + \"string\",\n \"readOnly\": true,\n \"nullable\": + true\n },\n \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true\n }\n },\n \"required\": + [\n \"pubkey_fingerprint\"\n ]\n },\n + \ \"CompositeContentGuard\": {\n \"type\": \"object\",\n + \ \"description\": \"Base serializer for use with :class:`pulpcore.app.models.Model`\\n\\nThis + ensures that all Serializers provide values for the 'pulp_href` field.\\n\\nThe + class provides a default for the ``ref_name`` attribute in the\\nModelSerializers's + ``Meta`` class. This ensures that the OpenAPI definitions\\nof plugins are + namespaced properly.\",\n \"properties\": {\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The unique name.\"\n },\n + \ \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"An optional description.\"\n + \ },\n \"guards\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true\n },\n \"description\": + \"List of ContentGuards to ask for access-permission.\"\n }\n + \ },\n \"required\": [\n \"name\"\n + \ ]\n },\n \"CompositeContentGuardResponse\": + {\n \"type\": \"object\",\n \"description\": + \"Base serializer for use with :class:`pulpcore.app.models.Model`\\n\\nThis + ensures that all Serializers provide values for the 'pulp_href` field.\\n\\nThe + class provides a default for the ``ref_name`` attribute in the\\nModelSerializers's + ``Meta`` class. This ensures that the OpenAPI definitions\\nof plugins are + namespaced properly.\",\n \"properties\": {\n \"pulp_href\": {\n \"type\": \"string\",\n \"format\": - \"binary\",\n \"description\": \"Full path of a comps.xml - file that may be parsed into comps.xml Content units.\"\n },\n - \ \"repository\": {\n \"type\": \"string\",\n - \ \"format\": \"uri\",\n \"writeOnly\": - true,\n \"description\": \"URI of an RPM repository - the comps.xml content units should be associated to.\"\n },\n - \ \"replace\": {\n \"type\": \"boolean\",\n - \ \"writeOnly\": true,\n \"description\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"The unique name.\"\n + \ },\n \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"description\": + \"An optional description.\"\n },\n \"guards\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true\n },\n + \ \"description\": \"List of ContentGuards to ask for + access-permission.\"\n }\n },\n \"required\": + [\n \"name\"\n ]\n },\n \"CompressionTypeEnum\": + {\n \"enum\": [\n \"zstd\",\n \"gz\"\n + \ ],\n \"type\": \"string\",\n \"description\": + \"* `zstd` - zstd\\n* `gz` - gz\"\n },\n \"CompsXml\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for comps.xml Upload API.\",\n \"properties\": + {\n \"file\": {\n \"type\": \"string\",\n + \ \"format\": \"binary\",\n \"description\": + \"Full path of a comps.xml file that may be parsed into comps.xml Content + units.\"\n },\n \"repository\": {\n + \ \"type\": \"string\",\n \"format\": + \"uri\",\n \"writeOnly\": true,\n \"description\": + \"URI of an RPM repository the comps.xml content units should be associated + to.\"\n },\n \"replace\": {\n \"type\": + \"boolean\",\n \"writeOnly\": true,\n \"description\": \"If true, incoming comps.xml replaces existing comps-related ContentUnits in the specified repository.\"\n }\n },\n \ \"required\": [\n \"file\"\n ]\n @@ -23538,15 +39581,19 @@ interactions: \ },\n \"last_heartbeat\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of the last time - the worker talked to the service.\"\n }\n }\n - \ },\n \"ContentGuardResponse\": {\n \"type\": - \"object\",\n \"description\": \"Base serializer for use with - :class:`pulpcore.app.models.Model`\\n\\nThis ensures that all Serializers - provide values for the 'pulp_href` field.\\n\\nThe class provides a default - for the ``ref_name`` attribute in the\\nModelSerializers's ``Meta`` class. - This ensures that the OpenAPI definitions\\nof plugins are namespaced properly.\",\n - \ \"properties\": {\n \"pulp_href\": {\n - \ \"type\": \"string\",\n \"format\": + the worker talked to the service.\"\n },\n \"versions\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n },\n \"readOnly\": true,\n + \ \"description\": \"Versions of the components installed.\"\n + \ }\n }\n },\n \"ContentGuardResponse\": + {\n \"type\": \"object\",\n \"description\": + \"Base serializer for use with :class:`pulpcore.app.models.Model`\\n\\nThis + ensures that all Serializers provide values for the 'pulp_href` field.\\n\\nThe + class provides a default for the ``ref_name`` attribute in the\\nModelSerializers's + ``Meta`` class. This ensures that the OpenAPI definitions\\nof plugins are + namespaced properly.\",\n \"properties\": {\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \ \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": @@ -23580,9 +39627,19 @@ interactions: \"string\",\n \"nullable\": true,\n \"description\": \"An optional description.\"\n }\n },\n \ \"required\": [\n \"name\"\n ]\n - \ },\n \"ContentSummaryResponse\": {\n \"type\": - \"object\",\n \"description\": \"Serializer for the RepositoryVersion - content summary\",\n \"properties\": {\n \"added\": + \ },\n \"ContentSettingsResponse\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for information + about content-app-settings for the pulp instance\",\n \"properties\": + {\n \"content_origin\": {\n \"type\": + \"string\",\n \"description\": \"The CONTENT_ORIGIN + setting for this Pulp instance\"\n },\n \"content_path_prefix\": + {\n \"type\": \"string\",\n \"description\": + \"The CONTENT_PATH_PREFIX setting for this Pulp instance\"\n }\n + \ },\n \"required\": [\n \"content_origin\",\n + \ \"content_path_prefix\"\n ]\n },\n + \ \"ContentSummaryResponse\": {\n \"type\": \"object\",\n + \ \"description\": \"Serializer for the RepositoryVersion content + summary\",\n \"properties\": {\n \"added\": {\n \"type\": \"object\",\n \"additionalProperties\": {\n \"type\": \"object\"\n }\n \ },\n \"removed\": {\n \"type\": @@ -23638,21 +39695,82 @@ interactions: \ },\n \"content_guard\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"An optional content-guard.\"\n - \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": + \ },\n \"hidden\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether this distribution should be shown in the content app.\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": \"string\",\n \"description\": \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"The latest RepositoryVersion for this Repository will be served.\"\n }\n \ },\n \"required\": [\n \"base_path\",\n - \ \"name\"\n ]\n },\n \"EvaluationResponse\": + \ \"name\"\n ]\n },\n \"Domain\": {\n \"type\": \"object\",\n \"description\": - \"Results from evaluating a proposed parameter to a PulpImport call.\",\n - \ \"properties\": {\n \"context\": {\n \"type\": - \"string\",\n \"description\": \"Parameter value being - evaluated.\"\n },\n \"is_valid\": {\n - \ \"type\": \"boolean\",\n \"description\": + \"Serializer for Domain.\",\n \"properties\": {\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A name for this domain.\",\n + \ \"pattern\": \"^[-a-zA-Z0-9_]+$\"\n },\n + \ \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"An optional description.\"\n + \ },\n \"storage_class\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/StorageClassEnum\"\n }\n + \ ],\n \"description\": \"Backend + storage class for domain.\\n\\n* `pulpcore.app.models.storage.FileSystem` + - Use local filesystem as storage\\n* `storages.backends.s3boto3.S3Boto3Storage` + - Use Amazon S3 as storage\\n* `storages.backends.azure_storage.AzureStorage` + - Use Azure Blob as storage\"\n },\n \"storage_settings\": + {\n \"type\": \"object\",\n \"description\": + \"Settings for storage class.\"\n },\n \"redirect_to_object_storage\": + {\n \"type\": \"boolean\",\n \"default\": + true,\n \"description\": \"Boolean to have the content + app redirect to object storage.\"\n },\n \"hide_guarded_distributions\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Boolean to hide distributions + with a content guard in the content app.\"\n }\n },\n + \ \"required\": [\n \"name\",\n \"storage_class\",\n + \ \"storage_settings\"\n ]\n },\n + \ \"DomainResponse\": {\n \"type\": \"object\",\n + \ \"description\": \"Serializer for Domain.\",\n \"properties\": + {\n \"pulp_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A name for this domain.\",\n + \ \"pattern\": \"^[-a-zA-Z0-9_]+$\"\n },\n + \ \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"description\": + \"An optional description.\"\n },\n \"storage_class\": + {\n \"allOf\": [\n {\n \"$ref\": + \"#/components/schemas/StorageClassEnum\"\n }\n + \ ],\n \"description\": \"Backend + storage class for domain.\\n\\n* `pulpcore.app.models.storage.FileSystem` + - Use local filesystem as storage\\n* `storages.backends.s3boto3.S3Boto3Storage` + - Use Amazon S3 as storage\\n* `storages.backends.azure_storage.AzureStorage` + - Use Azure Blob as storage\"\n },\n \"storage_settings\": + {\n \"type\": \"object\",\n \"description\": + \"Settings for storage class.\"\n },\n \"redirect_to_object_storage\": + {\n \"type\": \"boolean\",\n \"default\": + true,\n \"description\": \"Boolean to have the content + app redirect to object storage.\"\n },\n \"hide_guarded_distributions\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Boolean to hide distributions + with a content guard in the content app.\"\n }\n },\n + \ \"required\": [\n \"name\",\n \"storage_class\",\n + \ \"storage_settings\"\n ]\n },\n + \ \"EvaluationResponse\": {\n \"type\": \"object\",\n + \ \"description\": \"Results from evaluating a proposed parameter + to a PulpImport call.\",\n \"properties\": {\n \"context\": + {\n \"type\": \"string\",\n \"description\": + \"Parameter value being evaluated.\"\n },\n \"is_valid\": + {\n \"type\": \"boolean\",\n \"description\": \"True if evaluation passed, false otherwise.\"\n },\n \ \"messages\": {\n \"type\": \"array\",\n \ \"items\": {\n \"type\": @@ -23663,11 +39781,12 @@ interactions: \ ]\n },\n \"ExcludePlatformsEnum\": {\n \ \"enum\": [\n \"windows\",\n \"macos\",\n \ \"freebsd\",\n \"linux\"\n ],\n - \ \"type\": \"string\"\n },\n \"FilesystemExport\": - {\n \"type\": \"object\",\n \"description\": - \"Serializer for FilesystemExports.\",\n \"properties\": {\n - \ \"task\": {\n \"type\": \"string\",\n - \ \"format\": \"uri\",\n \"nullable\": + \ \"type\": \"string\",\n \"description\": \"* + `windows` - windows\\n* `macos` - macos\\n* `freebsd` - freebsd\\n* `linux` + - linux\"\n },\n \"FilesystemExport\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for FilesystemExports.\",\n + \ \"properties\": {\n \"task\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"A URI of the task that ran the Export.\"\n },\n \"publication\": {\n \"type\": \"string\",\n \"format\": @@ -23675,7 +39794,10 @@ interactions: \"A URI of the publication to be exported.\"\n },\n \"repository_version\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"writeOnly\": true,\n \"description\": - \"A URI of the repository version export.\"\n }\n }\n + \"A URI of the repository version export.\"\n },\n \"start_repository_version\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"writeOnly\": true,\n \"description\": + \"The URI of the last-exported-repo-version.\"\n }\n }\n \ },\n \"FilesystemExportResponse\": {\n \"type\": \"object\",\n \"description\": \"Serializer for FilesystemExports.\",\n \ \"properties\": {\n \"pulp_href\": {\n @@ -23706,14 +39828,15 @@ interactions: {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/MethodEnum\"\n }\n ],\n \ \"default\": \"write\",\n \"description\": - \"Method of exporting\"\n }\n },\n \"required\": - [\n \"name\",\n \"path\"\n ]\n - \ },\n \"FilesystemExporterResponse\": {\n \"type\": - \"object\",\n \"description\": \"Serializer for FilesystemExporters.\",\n - \ \"properties\": {\n \"pulp_href\": {\n - \ \"type\": \"string\",\n \"format\": - \"uri\",\n \"readOnly\": true\n },\n - \ \"pulp_created\": {\n \"type\": + \"Method of exporting\\n\\n* `write` - Export by writing\\n* `hardlink` - + Export by hardlinking\\n* `symlink` - Export by symlinking\"\n }\n + \ },\n \"required\": [\n \"name\",\n + \ \"path\"\n ]\n },\n \"FilesystemExporterResponse\": + {\n \"type\": \"object\",\n \"description\": + \"Serializer for FilesystemExporters.\",\n \"properties\": + {\n \"pulp_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"name\": {\n \"type\": @@ -23724,35 +39847,40 @@ interactions: {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/MethodEnum\"\n }\n ],\n \ \"default\": \"write\",\n \"description\": - \"Method of exporting\"\n }\n },\n \"required\": - [\n \"name\",\n \"path\"\n ]\n - \ },\n \"GalaxyCollection\": {\n \"type\": - \"object\",\n \"description\": \"A serializer for a Collection.\",\n - \ \"properties\": {\n \"id\": {\n \"type\": + \"Method of exporting\\n\\n* `write` - Export by writing\\n* `hardlink` - + Export by hardlinking\\n* `symlink` - Export by symlinking\"\n }\n + \ },\n \"required\": [\n \"name\",\n + \ \"path\"\n ]\n },\n \"GalaxyCollection\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for a Collection.\",\n \"properties\": {\n \"id\": + {\n \"type\": \"string\",\n \"minLength\": + 1\n },\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"minLength\": 1\n },\n \"created\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\"\n },\n \"modified\": {\n - \ \"type\": \"string\",\n \"format\": - \"date-time\"\n }\n },\n \"required\": - [\n \"created\",\n \"id\",\n \"modified\",\n - \ \"name\"\n ]\n },\n \"GalaxyCollectionResponse\": + \ \"created\": {\n \"type\": \"string\",\n + \ \"format\": \"date-time\"\n },\n + \ \"modified\": {\n \"type\": \"string\",\n + \ \"format\": \"date-time\"\n }\n + \ },\n \"required\": [\n \"created\",\n + \ \"id\",\n \"modified\",\n \"name\"\n + \ ]\n },\n \"GalaxyCollectionResponse\": {\n \"type\": \"object\",\n \"description\": \"A serializer for a Collection.\",\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n },\n \ \"name\": {\n \"type\": \"string\"\n \ },\n \"namespace\": {\n \"type\": - \"object\",\n \"readOnly\": true\n },\n + \"object\",\n \"description\": \"Create a namespace + dict.\",\n \"readOnly\": true\n },\n \ \"href\": {\n \"type\": \"string\",\n - \ \"readOnly\": true\n },\n \"versions_url\": - {\n \"type\": \"string\",\n \"readOnly\": - true\n },\n \"created\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n - \ \"modified\": {\n \"type\": \"string\",\n - \ \"format\": \"date-time\"\n },\n - \ \"latest_version\": {\n \"type\": - \"object\",\n \"readOnly\": true\n }\n + \ \"description\": \"Get href.\",\n \"readOnly\": + true\n },\n \"versions_url\": {\n \"type\": + \"string\",\n \"description\": \"Get versions_url.\",\n + \ \"readOnly\": true\n },\n \"created\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"modified\": {\n + \ \"type\": \"string\",\n \"format\": + \"date-time\"\n },\n \"latest_version\": + {\n \"type\": \"object\",\n \"description\": + \"Get latest version.\",\n \"readOnly\": true\n }\n \ },\n \"required\": [\n \"created\",\n \ \"id\",\n \"modified\",\n \"name\"\n \ ]\n },\n \"GalaxyCollectionVersionResponse\": @@ -23760,19 +39888,23 @@ interactions: \"A serializer for a CollectionVersion.\",\n \"properties\": {\n \"version\": {\n \"type\": \"string\"\n \ },\n \"href\": {\n \"type\": - \"string\",\n \"readOnly\": true\n },\n - \ \"namespace\": {\n \"type\": \"object\",\n - \ \"readOnly\": true\n },\n \"collection\": - {\n \"type\": \"object\",\n \"readOnly\": - true\n },\n \"artifact\": {\n \"type\": - \"object\",\n \"readOnly\": true\n },\n - \ \"metadata\": {\n \"$ref\": \"#/components/schemas/CollectionMetadataResponse\"\n - \ }\n },\n \"required\": [\n - \ \"metadata\",\n \"version\"\n ]\n - \ },\n \"GalaxyRoleResponse\": {\n \"type\": - \"object\",\n \"description\": \"A serializer for Galaxy's - representation of Roles.\",\n \"properties\": {\n \"id\": - {\n \"type\": \"string\",\n \"readOnly\": + \"string\",\n \"description\": \"Get href.\",\n \"readOnly\": + true\n },\n \"namespace\": {\n \"type\": + \"object\",\n \"description\": \"Create a namespace + dict.\",\n \"readOnly\": true\n },\n + \ \"collection\": {\n \"type\": \"object\",\n + \ \"description\": \"Create a collection dict.\",\n + \ \"readOnly\": true\n },\n \"artifact\": + {\n \"type\": \"object\",\n \"description\": + \"Create an artifact dict.\",\n \"readOnly\": true\n + \ },\n \"metadata\": {\n \"$ref\": + \"#/components/schemas/CollectionMetadataResponse\"\n }\n + \ },\n \"required\": [\n \"metadata\",\n + \ \"version\"\n ]\n },\n \"GalaxyRoleResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for Galaxy's representation of Roles.\",\n \"properties\": + {\n \"id\": {\n \"type\": \"string\",\n + \ \"description\": \"Get id.\",\n \"readOnly\": true\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \ \"type\": \"string\"\n }\n },\n @@ -23782,15 +39914,15 @@ interactions: \"A serializer for Galaxy's representation of Role versions.\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n \ },\n \"source\": {\n \"type\": - \"string\",\n \"readOnly\": true\n }\n - \ },\n \"required\": [\n \"name\"\n - \ ]\n },\n \"Group\": {\n \"type\": - \"object\",\n \"description\": \"Serializer for Group.\",\n - \ \"properties\": {\n \"name\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"Name\",\n \"maxLength\": 150\n }\n - \ },\n \"required\": [\n \"name\"\n - \ ]\n },\n \"GroupProgressReportResponse\": + \"string\",\n \"description\": \"Get source.\",\n \"readOnly\": + true\n }\n },\n \"required\": + [\n \"name\"\n ]\n },\n \"Group\": + {\n \"type\": \"object\",\n \"description\": + \"Serializer for Group.\",\n \"properties\": {\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"Name\",\n \"maxLength\": + 150\n }\n },\n \"required\": + [\n \"name\"\n ]\n },\n \"GroupProgressReportResponse\": {\n \"type\": \"object\",\n \"description\": \"Base serializer for use with :class:`pulpcore.app.models.Model`\\n\\nThis ensures that all Serializers provide values for the 'pulp_href` field.\\n\\nThe @@ -23803,10 +39935,11 @@ interactions: {\n \"type\": \"string\",\n \"readOnly\": true,\n \"description\": \"Identifies the type of group progress report'.\"\n },\n \"total\": - {\n \"type\": \"integer\",\n \"readOnly\": - true,\n \"description\": \"The total count of items.\"\n - \ },\n \"done\": {\n \"type\": - \"integer\",\n \"readOnly\": true,\n \"description\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"readOnly\": true,\n \"description\": + \"The total count of items.\"\n },\n \"done\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"readOnly\": true,\n \"description\": \"The count of items already processed. Defaults to 0.\"\n },\n \ \"suffix\": {\n \"type\": \"string\",\n \ \"readOnly\": true,\n \"nullable\": @@ -23819,21 +39952,26 @@ interactions: 150\n },\n \"pulp_href\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \"id\": {\n \"type\": - \"integer\",\n \"readOnly\": true\n }\n - \ },\n \"required\": [\n \"name\"\n - \ ]\n },\n \"GroupRole\": {\n \"type\": - \"object\",\n \"description\": \"Serializer for GroupRole.\",\n - \ \"properties\": {\n \"role\": {\n \"type\": - \"string\"\n },\n \"content_object\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"pulp_href of the object for which role permissions should be asserted. If - set to 'null', permissions will act on the model-level.\"\n }\n - \ },\n \"required\": [\n \"content_object\",\n - \ \"role\"\n ]\n },\n \"GroupRoleResponse\": + \"integer\",\n \"format\": \"int64\",\n \"readOnly\": + true\n }\n },\n \"required\": + [\n \"name\"\n ]\n },\n \"GroupRole\": {\n \"type\": \"object\",\n \"description\": - \"Serializer for GroupRole.\",\n \"properties\": {\n \"pulp_href\": + \"Serializer for GroupRole.\",\n \"properties\": {\n \"role\": + {\n \"type\": \"string\",\n \"minLength\": + 1\n },\n \"content_object\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"pulp_href of the object for + which role permissions should be asserted. If set to 'null', permissions will + act on the model-level.\"\n },\n \"domain\": {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"Domain this role should be applied on, mutually exclusive with content_object.\"\n + \ }\n },\n \"required\": [\n + \ \"content_object\",\n \"role\"\n ]\n + \ },\n \"GroupRoleResponse\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for GroupRole.\",\n + \ \"properties\": {\n \"pulp_href\": {\n + \ \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \ \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": @@ -23848,25 +39986,72 @@ interactions: true\n },\n \"permissions\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"readOnly\": - true\n }\n },\n \"required\": - [\n \"content_object\",\n \"role\"\n - \ ]\n },\n \"GroupUser\": {\n \"type\": - \"object\",\n \"description\": \"Serializer for Users that - belong to a Group.\",\n \"properties\": {\n \"username\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"Required. 150 characters or - fewer. Letters, digits and @/./+/-/_ only.\",\n \"maxLength\": - 150\n }\n },\n \"required\": - [\n \"username\"\n ]\n },\n \"GroupUserResponse\": + true\n },\n \"domain\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"Domain this role should + be applied on, mutually exclusive with content_object.\"\n }\n + \ },\n \"required\": [\n \"content_object\",\n + \ \"role\"\n ]\n },\n \"GroupUser\": {\n \"type\": \"object\",\n \"description\": \"Serializer for Users that belong to a Group.\",\n \"properties\": {\n \"username\": {\n \"type\": - \"string\",\n \"description\": \"Required. 150 characters - or fewer. Letters, digits and @/./+/-/_ only.\",\n \"maxLength\": - 150\n },\n \"pulp_href\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"readOnly\": - true\n }\n },\n \"required\": - [\n \"username\"\n ]\n },\n \"ImageResponse\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.\",\n + \ \"maxLength\": 150\n }\n },\n + \ \"required\": [\n \"username\"\n ]\n + \ },\n \"GroupUserResponse\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for Users that + belong to a Group.\",\n \"properties\": {\n \"username\": + {\n \"type\": \"string\",\n \"description\": + \"Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.\",\n + \ \"maxLength\": 150\n },\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n }\n + \ },\n \"required\": [\n \"username\"\n + \ ]\n },\n \"HeaderContentGuard\": {\n + \ \"type\": \"object\",\n \"description\": \"A + serializer for HeaderContentGuard.\",\n \"properties\": {\n + \ \"name\": {\n \"type\": \"string\",\n + \ \"minLength\": 1,\n \"description\": + \"The unique name.\"\n },\n \"description\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"An optional description.\"\n },\n \"header_name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The header name the guard will + check on.\"\n },\n \"header_value\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The value that will authorize + the request.\"\n },\n \"jq_filter\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A JQ syntax compatible filter. If jq_filter is not set, then the value willonly + be Base64 decoded and checked as an explicit string match.\"\n }\n + \ },\n \"required\": [\n \"header_name\",\n + \ \"header_value\",\n \"name\"\n ]\n + \ },\n \"HeaderContentGuardResponse\": {\n \"type\": + \"object\",\n \"description\": \"A serializer for HeaderContentGuard.\",\n + \ \"properties\": {\n \"pulp_href\": {\n + \ \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"The unique name.\"\n + \ },\n \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"description\": + \"An optional description.\"\n },\n \"header_name\": + {\n \"type\": \"string\",\n \"description\": + \"The header name the guard will check on.\"\n },\n \"header_value\": + {\n \"type\": \"string\",\n \"description\": + \"The value that will authorize the request.\"\n },\n \"jq_filter\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"A JQ syntax compatible filter. + If jq_filter is not set, then the value willonly be Base64 decoded and checked + as an explicit string match.\"\n }\n },\n + \ \"required\": [\n \"header_name\",\n \"header_value\",\n + \ \"name\"\n ]\n },\n \"ImageResponse\": {\n \"type\": \"object\",\n \"description\": \"Image serializer.\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"description\": @@ -23915,16 +40100,19 @@ interactions: \ \"application/vnd.docker.distribution.manifest.v2+json\",\n \ \"application/vnd.docker.distribution.manifest.list.v2+json\",\n \ \"application/vnd.oci.image.manifest.v1+json\",\n \"application/vnd.oci.image.index.v1+json\"\n - \ ],\n \"type\": \"string\"\n },\n - \ \"MetadataChecksumTypeEnum\": {\n \"enum\": [\n - \ \"unknown\",\n \"md5\",\n \"sha1\",\n - \ \"sha224\",\n \"sha256\",\n \"sha384\",\n - \ \"sha512\"\n ],\n \"type\": - \"string\"\n },\n \"MethodEnum\": {\n \"enum\": - [\n \"write\",\n \"hardlink\",\n \"symlink\"\n - \ ],\n \"type\": \"string\"\n },\n - \ \"MinimalTaskResponse\": {\n \"type\": \"object\",\n - \ \"description\": \"Base serializer for use with :class:`pulpcore.app.models.Model`\\n\\nThis + \ ],\n \"type\": \"string\",\n \"description\": + \"* `application/vnd.docker.distribution.manifest.v1+json` - application/vnd.docker.distribution.manifest.v1+json\\n* + `application/vnd.docker.distribution.manifest.v2+json` - application/vnd.docker.distribution.manifest.v2+json\\n* + `application/vnd.docker.distribution.manifest.list.v2+json` - application/vnd.docker.distribution.manifest.list.v2+json\\n* + `application/vnd.oci.image.manifest.v1+json` - application/vnd.oci.image.manifest.v1+json\\n* + `application/vnd.oci.image.index.v1+json` - application/vnd.oci.image.index.v1+json\"\n + \ },\n \"MethodEnum\": {\n \"enum\": [\n + \ \"write\",\n \"hardlink\",\n \"symlink\"\n + \ ],\n \"type\": \"string\",\n \"description\": + \"* `write` - Export by writing\\n* `hardlink` - Export by hardlinking\\n* + `symlink` - Export by symlinking\"\n },\n \"MinimalTaskResponse\": + {\n \"type\": \"object\",\n \"description\": + \"Base serializer for use with :class:`pulpcore.app.models.Model`\\n\\nThis ensures that all Serializers provide values for the 'pulp_href` field.\\n\\nThe class provides a default for the ``ref_name`` attribute in the\\nModelSerializers's ``Meta`` class. This ensures that the OpenAPI definitions\\nof plugins are @@ -23974,19 +40162,40 @@ interactions: \ \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n \ }\n },\n \"required\": [\n - \ \"permissions\"\n ]\n },\n \"NestedRole\": + \ \"permissions\"\n ]\n },\n \"NamespaceLink\": + {\n \"type\": \"object\",\n \"description\": + \"Provides backwards compatible interface for links with the legacy\\nGalaxyNG + API.\",\n \"properties\": {\n \"url\": {\n + \ \"type\": \"string\",\n \"format\": + \"uri\",\n \"minLength\": 1,\n \"maxLength\": + 256\n },\n \"name\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"maxLength\": + 256\n }\n },\n \"required\": + [\n \"name\",\n \"url\"\n ]\n + \ },\n \"NamespaceLinkResponse\": {\n \"type\": + \"object\",\n \"description\": \"Provides backwards compatible + interface for links with the legacy\\nGalaxyNG API.\",\n \"properties\": + {\n \"url\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"maxLength\": + 256\n },\n \"name\": {\n \"type\": + \"string\",\n \"maxLength\": 256\n }\n + \ },\n \"required\": [\n \"name\",\n + \ \"url\"\n ]\n },\n \"NestedRole\": {\n \"type\": \"object\",\n \"description\": \"Serializer to add/remove object roles to/from users/groups.\\n\\nThis is used in conjunction with ``pulpcore.app.viewsets.base.RolesMixin`` and requires the\\nunderlying object to be passed as ``content_object`` in the context.\",\n \ \"properties\": {\n \"users\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\"\n },\n \"default\": - []\n },\n \"groups\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n },\n \"default\": - []\n },\n \"role\": {\n \"type\": - \"string\"\n }\n },\n \"required\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.\"\n + \ },\n \"default\": []\n },\n + \ \"groups\": {\n \"type\": \"array\",\n + \ \"items\": {\n \"type\": + \"string\",\n \"minLength\": 1\n },\n + \ \"default\": []\n },\n \"role\": + {\n \"type\": \"string\",\n \"minLength\": + 1\n }\n },\n \"required\": [\n \"role\"\n ]\n },\n \"NestedRoleResponse\": {\n \"type\": \"object\",\n \"description\": \"Serializer to add/remove object roles to/from users/groups.\\n\\nThis is @@ -23994,18 +40203,20 @@ interactions: the\\nunderlying object to be passed as ``content_object`` in the context.\",\n \ \"properties\": {\n \"users\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": - \"string\"\n },\n \"default\": - []\n },\n \"groups\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"string\"\n },\n \"default\": - []\n },\n \"role\": {\n \"type\": - \"string\"\n }\n },\n \"required\": - [\n \"role\"\n ]\n },\n \"OCIBuildImage\": - {\n \"type\": \"object\",\n \"description\": - \"Serializer for building an OCI container image from a Containerfile.\\n\\nThe - Containerfile can either be specified via an artifact url, or a new file can - be uploaded.\\nA repository must be specified, to which the container image - content will be added.\",\n \"properties\": {\n \"containerfile_artifact\": + \"string\",\n \"description\": \"Required. 150 + characters or fewer. Letters, digits and @/./+/-/_ only.\"\n },\n + \ \"default\": []\n },\n \"groups\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n },\n + \ \"default\": []\n },\n \"role\": + {\n \"type\": \"string\"\n }\n },\n + \ \"required\": [\n \"role\"\n ]\n + \ },\n \"OCIBuildImage\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for building an + OCI container image from a Containerfile.\\n\\nThe Containerfile can either + be specified via an artifact url, or a new file can be uploaded.\\nA repository + must be specified, to which the container image content will be added.\",\n + \ \"properties\": {\n \"containerfile_artifact\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"description\": \"Artifact representing the Containerfile that should be used to run podman-build.\"\n },\n @@ -24031,27 +40242,56 @@ interactions: {},\n \"description\": \"Will delete specified content and associated Artifacts if they are orphans.\"\n },\n \ \"orphan_protection_time\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"The time in minutes for how long Pulp will hold orphan Content and Artifacts - before they become candidates for deletion by this orphan cleanup task. This - should ideally be longer than your longest running task otherwise any content - created during that task could be cleaned up before the task finishes. If - not specified, a default value is taken from the setting ORPHAN_PROTECTION_TIME.\"\n - \ }\n }\n },\n \"PackageChecksumTypeEnum\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"The time in minutes for + how long Pulp will hold orphan Content and Artifacts before they become candidates + for deletion by this orphan cleanup task. This should ideally be longer than + your longest running task otherwise any content created during that task could + be cleaned up before the task finishes. If not specified, a default value + is taken from the setting ORPHAN_PROTECTION_TIME.\"\n }\n + \ }\n },\n \"OstreeImportAll\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer class for importing + all refs and commits to a repository.\",\n \"properties\": + {\n \"artifact\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"An artifact representing OSTree content compressed as a tarball.\"\n },\n + \ \"repository_name\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"The name of a repository that contains the compressed OSTree content.\"\n + \ }\n },\n \"required\": [\n + \ \"artifact\",\n \"repository_name\"\n + \ ]\n },\n \"OstreeImportCommitsToRef\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer class for appending child commits to a repository.\",\n \"properties\": + {\n \"artifact\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"An artifact representing OSTree content compressed as a tarball.\"\n },\n + \ \"repository_name\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"The name of a repository that contains the compressed OSTree content.\"\n + \ },\n \"ref\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"The name of a ref branch that holds the reference to the last commit.\"\n + \ }\n },\n \"required\": [\n + \ \"artifact\",\n \"ref\",\n \"repository_name\"\n + \ ]\n },\n \"PackageChecksumTypeEnum\": {\n \"enum\": [\n \"unknown\",\n \"md5\",\n \ \"sha1\",\n \"sha224\",\n \"sha256\",\n \ \"sha384\",\n \"sha512\"\n ],\n - \ \"type\": \"string\"\n },\n \"PackageMetadataResponse\": - {\n \"type\": \"object\",\n \"description\": - \"A Serializer for a package's metadata.\",\n \"properties\": - {\n \"last_serial\": {\n \"type\": - \"integer\",\n \"description\": \"Cache value from - last PyPI sync\"\n },\n \"info\": {\n - \ \"type\": \"object\",\n \"description\": - \"Core metadata of the package\"\n },\n \"releases\": - {\n \"type\": \"object\",\n \"description\": - \"List of all the releases of the package\"\n },\n \"urls\": - {\n \"type\": \"object\"\n }\n },\n + \ \"type\": \"string\",\n \"description\": \"* + `unknown` - unknown\\n* `md5` - md5\\n* `sha1` - sha1\\n* `sha224` - sha224\\n* + `sha256` - sha256\\n* `sha384` - sha384\\n* `sha512` - sha512\"\n },\n + \ \"PackageMetadataResponse\": {\n \"type\": \"object\",\n + \ \"description\": \"A Serializer for a package's metadata.\",\n + \ \"properties\": {\n \"last_serial\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"description\": \"Cache value from last + PyPI sync\"\n },\n \"info\": {\n \"type\": + \"object\",\n \"description\": \"Core metadata of the + package\"\n },\n \"releases\": {\n \"type\": + \"object\",\n \"description\": \"List of all the releases + of the package\"\n },\n \"urls\": {\n + \ \"type\": \"object\"\n }\n },\n \ \"required\": [\n \"info\",\n \"last_serial\",\n \ \"releases\",\n \"urls\"\n ]\n \ },\n \"PackageTypesEnum\": {\n \"enum\": @@ -24059,42 +40299,59 @@ interactions: \ \"bdist_egg\",\n \"bdist_msi\",\n \"bdist_rpm\",\n \ \"bdist_wheel\",\n \"bdist_wininst\",\n \ \"sdist\"\n ],\n \"type\": - \"string\"\n },\n \"PackageUpload\": {\n \"type\": - \"object\",\n \"description\": \"A Serializer for Python packages - being uploaded to the index.\",\n \"properties\": {\n \"content\": - {\n \"type\": \"string\",\n \"format\": - \"binary\",\n \"writeOnly\": true,\n \"description\": - \"A Python package release file to upload to the index.\"\n },\n - \ \"action\": {\n \"type\": \"string\",\n - \ \"minLength\": 1,\n \"default\": - \"file_upload\",\n \"description\": \"Defaults to `file_upload`, - don't change it or request will fail!\"\n },\n \"sha256_digest\": + \"string\",\n \"description\": \"* `bdist_dmg` - bdist_dmg\\n* + `bdist_dumb` - bdist_dumb\\n* `bdist_egg` - bdist_egg\\n* `bdist_msi` - bdist_msi\\n* + `bdist_rpm` - bdist_rpm\\n* `bdist_wheel` - bdist_wheel\\n* `bdist_wininst` + - bdist_wininst\\n* `sdist` - sdist\"\n },\n \"PackageUpload\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for Python packages being uploaded to the index.\",\n \"properties\": + {\n \"content\": {\n \"type\": \"string\",\n + \ \"format\": \"binary\",\n \"writeOnly\": + true,\n \"description\": \"A Python package release + file to upload to the index.\"\n },\n \"action\": {\n \"type\": \"string\",\n \"minLength\": - 64,\n \"description\": \"SHA256 of package to validate - upload integrity.\",\n \"maxLength\": 64\n }\n - \ },\n \"required\": [\n \"content\",\n - \ \"sha256_digest\"\n ]\n },\n - \ \"PackageUploadTaskResponse\": {\n \"type\": \"object\",\n - \ \"description\": \"A Serializer for responding to a package - upload task.\",\n \"properties\": {\n \"session\": - {\n \"type\": \"string\"\n },\n - \ \"task\": {\n \"type\": \"string\"\n - \ },\n \"task_start_time\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n }\n - \ },\n \"required\": [\n \"session\",\n - \ \"task\",\n \"task_start_time\"\n ]\n - \ },\n \"PaginatedAccessPolicyResponseList\": {\n \"type\": - \"object\",\n \"properties\": {\n \"count\": - {\n \"type\": \"integer\",\n \"example\": - 123\n },\n \"next\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"format\": - \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=400&limit=100\"\n - \ },\n \"previous\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"format\": + 1,\n \"default\": \"file_upload\",\n \"description\": + \"Defaults to `file_upload`, don't change it or request will fail!\"\n },\n + \ \"sha256_digest\": {\n \"type\": + \"string\",\n \"minLength\": 64,\n \"description\": + \"SHA256 of package to validate upload integrity.\",\n \"maxLength\": + 64\n }\n },\n \"required\": + [\n \"content\",\n \"sha256_digest\"\n + \ ]\n },\n \"PackageUploadTaskResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for responding to a package upload task.\",\n \"properties\": + {\n \"session\": {\n \"type\": \"string\"\n + \ },\n \"task\": {\n \"type\": + \"string\"\n },\n \"task_start_time\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\"\n }\n },\n \"required\": + [\n \"session\",\n \"task\",\n \"task_start_time\"\n + \ ]\n },\n \"PaginatedAccessPolicyResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n \ },\n \"results\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/AccessPolicyResponse\"\n }\n + \ }\n }\n },\n \"PaginatedArtifactDistributionResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/ArtifactDistributionResponse\"\n }\n \ }\n }\n },\n \"PaginatedArtifactResponseList\": {\n \"type\": \"object\",\n \"properties\": {\n \"count\": {\n \"type\": \"integer\",\n @@ -24146,6 +40403,38 @@ interactions: \ \"data\": {\n \"type\": \"array\",\n \ \"items\": {\n \"$ref\": \"#/components/schemas/CollectionVersionListResponse\"\n }\n + \ }\n }\n },\n \"PaginatedCollectionVersionSearchListResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"meta\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"count\": + {\n \"type\": \"integer\",\n \"example\": + 123\n }\n }\n },\n + \ \"links\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"first\": + {\n \"type\": \"string\",\n \"nullable\": + true\n },\n \"previous\": + {\n \"type\": \"string\",\n \"nullable\": + true\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true\n },\n \"last\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n }\n },\n + \ \"data\": {\n \"type\": \"array\",\n + \ \"items\": {\n \"$ref\": + \"#/components/schemas/CollectionVersionSearchListResponse\"\n }\n + \ }\n }\n },\n \"PaginatedCompositeContentGuardResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/CompositeContentGuardResponse\"\n }\n \ }\n }\n },\n \"PaginatedContentGuardResponseList\": {\n \"type\": \"object\",\n \"properties\": {\n \"count\": {\n \"type\": \"integer\",\n @@ -24185,7 +40474,20 @@ interactions: \ },\n \"results\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/DistributionResponse\"\n }\n - \ }\n }\n },\n \"PaginatedFilesystemExportResponseList\": + \ }\n }\n },\n \"PaginatedDomainResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/DomainResponse\"\n }\n }\n + \ }\n },\n \"PaginatedFilesystemExportResponseList\": {\n \"type\": \"object\",\n \"properties\": {\n \"count\": {\n \"type\": \"integer\",\n \ \"example\": 123\n },\n \"next\": @@ -24301,7 +40603,20 @@ interactions: \ },\n \"results\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/GroupUserResponse\"\n }\n }\n - \ }\n },\n \"PaginatedImportResponseList\": + \ }\n },\n \"PaginatedHeaderContentGuardResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/HeaderContentGuardResponse\"\n }\n + \ }\n }\n },\n \"PaginatedImportResponseList\": {\n \"type\": \"object\",\n \"properties\": {\n \"count\": {\n \"type\": \"integer\",\n \ \"example\": 123\n },\n \"next\": @@ -24522,7 +40837,20 @@ interactions: \ },\n \"results\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/UploadResponse\"\n }\n }\n - \ }\n },\n \"PaginatedUserResponseList\": + \ }\n },\n \"PaginatedUpstreamPulpResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/UpstreamPulpResponse\"\n }\n + \ }\n }\n },\n \"PaginatedUserResponseList\": {\n \"type\": \"object\",\n \"properties\": {\n \"count\": {\n \"type\": \"integer\",\n \ \"example\": 123\n },\n \"next\": @@ -24574,6 +40902,19 @@ interactions: \ },\n \"results\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/ansible.AnsibleDistributionResponse\"\n }\n + \ }\n }\n },\n \"Paginatedansible.AnsibleNamespaceMetadataResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/ansible.AnsibleNamespaceMetadataResponse\"\n }\n \ }\n }\n },\n \"Paginatedansible.AnsibleRepositoryResponseList\": {\n \"type\": \"object\",\n \"properties\": {\n \"count\": {\n \"type\": \"integer\",\n @@ -24613,6 +40954,19 @@ interactions: \ },\n \"results\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/ansible.CollectionResponse\"\n }\n + \ }\n }\n },\n \"Paginatedansible.CollectionVersionMarkResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/ansible.CollectionVersionMarkResponse\"\n }\n \ }\n }\n },\n \"Paginatedansible.CollectionVersionResponseList\": {\n \"type\": \"object\",\n \"properties\": {\n \"count\": {\n \"type\": \"integer\",\n @@ -24743,6 +41097,33 @@ interactions: \ },\n \"results\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/container.ContainerNamespaceResponse\"\n }\n + \ }\n }\n },\n \"Paginatedcontainer.ContainerPullThroughDistributionResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/container.ContainerPullThroughDistributionResponse\"\n + \ }\n }\n }\n },\n + \ \"Paginatedcontainer.ContainerPullThroughRemoteResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/container.ContainerPullThroughRemoteResponse\"\n }\n \ }\n }\n },\n \"Paginatedcontainer.ContainerPushRepositoryResponseList\": {\n \"type\": \"object\",\n \"properties\": {\n \"count\": {\n \"type\": \"integer\",\n @@ -24873,7 +41254,7 @@ interactions: \ },\n \"results\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/deb.AptRepositoryResponse\"\n }\n - \ }\n }\n },\n \"Paginateddeb.BasePackageResponseList\": + \ }\n }\n },\n \"Paginateddeb.GenericContentResponseList\": {\n \"type\": \"object\",\n \"properties\": {\n \"count\": {\n \"type\": \"integer\",\n \ \"example\": 123\n },\n \"next\": @@ -24885,8 +41266,8 @@ interactions: \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n \ },\n \"results\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": - \"#/components/schemas/deb.BasePackageResponse\"\n }\n - \ }\n }\n },\n \"Paginateddeb.GenericContentResponseList\": + \"#/components/schemas/deb.GenericContentResponse\"\n }\n + \ }\n }\n },\n \"Paginateddeb.InstallerFileIndexResponseList\": {\n \"type\": \"object\",\n \"properties\": {\n \"count\": {\n \"type\": \"integer\",\n \ \"example\": 123\n },\n \"next\": @@ -24898,8 +41279,8 @@ interactions: \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n \ },\n \"results\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": - \"#/components/schemas/deb.GenericContentResponse\"\n }\n - \ }\n }\n },\n \"Paginateddeb.InstallerFileIndexResponseList\": + \"#/components/schemas/deb.InstallerFileIndexResponse\"\n }\n + \ }\n }\n },\n \"Paginateddeb.InstallerPackageResponseList\": {\n \"type\": \"object\",\n \"properties\": {\n \"count\": {\n \"type\": \"integer\",\n \ \"example\": 123\n },\n \"next\": @@ -24911,7 +41292,7 @@ interactions: \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n \ },\n \"results\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": - \"#/components/schemas/deb.InstallerFileIndexResponse\"\n }\n + \"#/components/schemas/deb.InstallerPackageResponse\"\n }\n \ }\n }\n },\n \"Paginateddeb.PackageIndexResponseList\": {\n \"type\": \"object\",\n \"properties\": {\n \"count\": {\n \"type\": \"integer\",\n @@ -24938,6 +41319,19 @@ interactions: \ },\n \"results\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/deb.PackageReleaseComponentResponse\"\n }\n + \ }\n }\n },\n \"Paginateddeb.PackageResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/deb.PackageResponse\"\n }\n \ }\n }\n },\n \"Paginateddeb.ReleaseArchitectureResponseList\": {\n \"type\": \"object\",\n \"properties\": {\n \"count\": {\n \"type\": \"integer\",\n @@ -24990,6 +41384,45 @@ interactions: \ },\n \"results\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/deb.ReleaseResponse\"\n }\n + \ }\n }\n },\n \"Paginateddeb.SourceIndexResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/deb.SourceIndexResponse\"\n }\n + \ }\n }\n },\n \"Paginateddeb.SourcePackageReleaseComponentResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/deb.SourcePackageReleaseComponentResponse\"\n }\n + \ }\n }\n },\n \"Paginateddeb.SourcePackageResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/deb.SourcePackageResponse\"\n }\n \ }\n }\n },\n \"Paginateddeb.VerbatimPublicationResponseList\": {\n \"type\": \"object\",\n \"properties\": {\n \"count\": {\n \"type\": \"integer\",\n @@ -25081,6 +41514,71 @@ interactions: \ },\n \"results\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/file.FileRepositoryResponse\"\n }\n + \ }\n }\n },\n \"Paginatedgem.GemContentResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/gem.GemContentResponse\"\n }\n + \ }\n }\n },\n \"Paginatedgem.GemDistributionResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/gem.GemDistributionResponse\"\n }\n + \ }\n }\n },\n \"Paginatedgem.GemPublicationResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/gem.GemPublicationResponse\"\n }\n + \ }\n }\n },\n \"Paginatedgem.GemRemoteResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/gem.GemRemoteResponse\"\n }\n + \ }\n }\n },\n \"Paginatedgem.GemRepositoryResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/gem.GemRepositoryResponse\"\n }\n \ }\n }\n },\n \"Paginatedmaven.MavenArtifactResponseList\": {\n \"type\": \"object\",\n \"properties\": {\n \"count\": {\n \"type\": \"integer\",\n @@ -25133,6 +41631,123 @@ interactions: \ },\n \"results\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/maven.MavenRepositoryResponse\"\n }\n + \ }\n }\n },\n \"Paginatedostree.OstreeCommitResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/ostree.OstreeCommitResponse\"\n }\n + \ }\n }\n },\n \"Paginatedostree.OstreeConfigResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/ostree.OstreeConfigResponse\"\n }\n + \ }\n }\n },\n \"Paginatedostree.OstreeContentResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/ostree.OstreeContentResponse\"\n }\n + \ }\n }\n },\n \"Paginatedostree.OstreeDistributionResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/ostree.OstreeDistributionResponse\"\n }\n + \ }\n }\n },\n \"Paginatedostree.OstreeObjectResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/ostree.OstreeObjectResponse\"\n }\n + \ }\n }\n },\n \"Paginatedostree.OstreeRefResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/ostree.OstreeRefResponse\"\n }\n + \ }\n }\n },\n \"Paginatedostree.OstreeRemoteResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/ostree.OstreeRemoteResponse\"\n }\n + \ }\n }\n },\n \"Paginatedostree.OstreeRepositoryResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/ostree.OstreeRepositoryResponse\"\n }\n + \ }\n }\n },\n \"Paginatedostree.OstreeSummaryResponseList\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"count\": {\n \"type\": \"integer\",\n + \ \"example\": 123\n },\n \"next\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"format\": \"uri\",\n \"example\": + \"http://api.example.org/accounts/?offset=400&limit=100\"\n },\n + \ \"previous\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"format\": + \"uri\",\n \"example\": \"http://api.example.org/accounts/?offset=200&limit=100\"\n + \ },\n \"results\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/ostree.OstreeSummaryResponse\"\n }\n \ }\n }\n },\n \"Paginatedpython.PythonDistributionResponseList\": {\n \"type\": \"object\",\n \"properties\": {\n \"count\": {\n \"type\": \"integer\",\n @@ -25440,17 +42055,60 @@ interactions: valid callables. Set to blank to turn off queryset scoping.\"\n }\n \ }\n },\n \"PatchedCollection\": {\n \ \"type\": \"object\",\n \"description\": \"A - serializer for a Collection.\",\n \"properties\": {}\n },\n - \ \"PatchedContentRedirectContentGuard\": {\n \"type\": - \"object\",\n \"description\": \"A serializer for ContentRedirectContentGuard.\",\n - \ \"properties\": {\n \"name\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": + serializer for a Collection.\",\n \"properties\": {\n \"deprecated\": + {\n \"type\": \"boolean\"\n }\n + \ }\n },\n \"PatchedCompositeContentGuard\": + {\n \"type\": \"object\",\n \"description\": + \"Base serializer for use with :class:`pulpcore.app.models.Model`\\n\\nThis + ensures that all Serializers provide values for the 'pulp_href` field.\\n\\nThe + class provides a default for the ``ref_name`` attribute in the\\nModelSerializers's + ``Meta`` class. This ensures that the OpenAPI definitions\\nof plugins are + namespaced properly.\",\n \"properties\": {\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The unique name.\"\n },\n + \ \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"An optional description.\"\n + \ },\n \"guards\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true\n },\n \"description\": + \"List of ContentGuards to ask for access-permission.\"\n }\n + \ }\n },\n \"PatchedContentRedirectContentGuard\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for ContentRedirectContentGuard.\",\n \"properties\": + {\n \"name\": {\n \"type\": \"string\",\n + \ \"minLength\": 1,\n \"description\": \"The unique name.\"\n },\n \"description\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"An optional description.\"\n }\n }\n },\n - \ \"PatchedFilesystemExporter\": {\n \"type\": \"object\",\n - \ \"description\": \"Serializer for FilesystemExporters.\",\n + \ \"PatchedDomain\": {\n \"type\": \"object\",\n + \ \"description\": \"Serializer for Domain.\",\n \"properties\": + {\n \"name\": {\n \"type\": \"string\",\n + \ \"minLength\": 1,\n \"description\": + \"A name for this domain.\",\n \"pattern\": \"^[-a-zA-Z0-9_]+$\"\n + \ },\n \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"An optional description.\"\n + \ },\n \"storage_class\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/StorageClassEnum\"\n }\n + \ ],\n \"description\": \"Backend + storage class for domain.\\n\\n* `pulpcore.app.models.storage.FileSystem` + - Use local filesystem as storage\\n* `storages.backends.s3boto3.S3Boto3Storage` + - Use Amazon S3 as storage\\n* `storages.backends.azure_storage.AzureStorage` + - Use Azure Blob as storage\"\n },\n \"storage_settings\": + {\n \"type\": \"object\",\n \"description\": + \"Settings for storage class.\"\n },\n \"redirect_to_object_storage\": + {\n \"type\": \"boolean\",\n \"default\": + true,\n \"description\": \"Boolean to have the content + app redirect to object storage.\"\n },\n \"hide_guarded_distributions\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Boolean to hide distributions + with a content guard in the content app.\"\n }\n }\n + \ },\n \"PatchedFilesystemExporter\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for FilesystemExporters.\",\n \ \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"Unique name of the file system exporter.\"\n },\n \"path\": @@ -25460,14 +42118,35 @@ interactions: [\n {\n \"$ref\": \"#/components/schemas/MethodEnum\"\n }\n ],\n \ \"default\": \"write\",\n \"description\": - \"Method of exporting\"\n }\n }\n },\n - \ \"PatchedGroup\": {\n \"type\": \"object\",\n \"description\": - \"Serializer for Group.\",\n \"properties\": {\n \"name\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"Name\",\n \"maxLength\": - 150\n }\n }\n },\n \"PatchedPulpExporter\": + \"Method of exporting\\n\\n* `write` - Export by writing\\n* `hardlink` - + Export by hardlinking\\n* `symlink` - Export by symlinking\"\n }\n + \ }\n },\n \"PatchedGroup\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for Group.\",\n + \ \"properties\": {\n \"name\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"Name\",\n \"maxLength\": 150\n }\n + \ }\n },\n \"PatchedHeaderContentGuard\": {\n \"type\": \"object\",\n \"description\": - \"Serializer for pulp exporters.\",\n \"properties\": {\n \"name\": + \"A serializer for HeaderContentGuard.\",\n \"properties\": + {\n \"name\": {\n \"type\": \"string\",\n + \ \"minLength\": 1,\n \"description\": + \"The unique name.\"\n },\n \"description\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"An optional description.\"\n },\n \"header_name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The header name the guard will + check on.\"\n },\n \"header_value\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The value that will authorize + the request.\"\n },\n \"jq_filter\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A JQ syntax compatible filter. If jq_filter is not set, then the value willonly + be Base64 decoded and checked as an explicit string match.\"\n }\n + \ }\n },\n \"PatchedPulpExporter\": {\n + \ \"type\": \"object\",\n \"description\": \"Serializer + for pulp exporters.\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"Unique name of the file system exporter.\"\n },\n \"path\": {\n \"type\": @@ -25524,7 +42203,48 @@ interactions: \ \"properties\": {\n \"state\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"The desired state of the task. Only 'canceled' is accepted.\"\n }\n - \ }\n },\n \"PatchedUser\": {\n \"type\": + \ }\n },\n \"PatchedUpstreamPulp\": {\n + \ \"type\": \"object\",\n \"description\": \"Serializer + for a Server.\",\n \"properties\": {\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name for this Pulp + server.\"\n },\n \"base_url\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"The transport, hostname, and an optional port of the Pulp server. e.g. https://example.com\"\n + \ },\n \"api_root\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"The API root. Defaults to '/pulp/'.\"\n },\n \"domain\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The domain of the Pulp server if enabled.\"\n },\n \"ca_cert\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded CA certificate used to validate the server certificate presented + by the remote server.\"\n },\n \"client_cert\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded client certificate used for authentication.\"\n },\n + \ \"client_key\": {\n \"type\": \"string\",\n + \ \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded private key used for authentication.\"\n },\n + \ \"tls_validation\": {\n \"type\": + \"boolean\",\n \"description\": \"If True, TLS peer + validation must be performed.\"\n },\n \"username\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The username to be used for + authentication when syncing.\"\n },\n \"password\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The password to be used for + authentication when syncing. Extra leading and trailing whitespace characters + are not trimmed.\"\n },\n \"pulp_label_select\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"One or more comma separated + labels that will be used to filter distributions on the upstream Pulp. E.g. + \\\"foo=bar,key=val\\\" or \\\"foo,key\\\"\"\n }\n }\n + \ },\n \"PatchedUser\": {\n \"type\": \"object\",\n \"description\": \"Serializer for User.\",\n \ \"properties\": {\n \"username\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": @@ -25567,31 +42287,61 @@ interactions: \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"RepositoryVersion to be served\"\n },\n \"pulp_labels\": {\n - \ \"type\": \"object\"\n }\n }\n + \ \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n }\n }\n + \ },\n \"Patchedansible.AnsibleNamespaceMetadata\": {\n + \ \"type\": \"object\",\n \"description\": \"A + serializer for Namespaces.\",\n \"properties\": {\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 3,\n \"description\": \"Required named, only accepts + lowercase, numbers and underscores.\",\n \"maxLength\": + 64,\n \"pattern\": \"^(?!.*__)[a-z]+[0-9a-z_]*$\"\n + \ },\n \"company\": {\n \"type\": + \"string\",\n \"description\": \"Optional namespace + company owner.\",\n \"maxLength\": 64\n },\n + \ \"email\": {\n \"type\": \"string\",\n + \ \"description\": \"Optional namespace contact email.\",\n + \ \"maxLength\": 256\n },\n \"description\": + {\n \"type\": \"string\",\n \"description\": + \"Optional short description.\",\n \"maxLength\": 256\n + \ },\n \"resources\": {\n \"type\": + \"string\",\n \"description\": \"Optional resource + page in markdown format.\"\n },\n \"links\": + {\n \"type\": \"array\",\n \"items\": + {\n \"$ref\": \"#/components/schemas/NamespaceLink\"\n + \ },\n \"description\": \"Labeled + related links.\"\n },\n \"avatar\": + {\n \"type\": \"string\",\n \"format\": + \"binary\",\n \"writeOnly\": true,\n \"description\": + \"Optional avatar image for Namespace\"\n }\n }\n \ },\n \"Patchedansible.AnsibleRepository\": {\n \"type\": \"object\",\n \"description\": \"Serializer for Ansible Repositories.\",\n \ \"properties\": {\n \"pulp_labels\": {\n - \ \"type\": \"object\"\n },\n \"name\": + \ \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"A unique name for this repository.\"\n \ },\n \"description\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"An optional description.\"\n \ },\n \"retain_repo_versions\": {\n - \ \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n },\n \"last_synced_metadata_time\": + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"nullable\": true,\n \"description\": - \"Last synced metadata time.\"\n },\n \"gpgkey\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"Gpg public key to verify collection signatures against\"\n }\n + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"last_synced_metadata_time\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"nullable\": + true,\n \"description\": \"Last synced metadata time.\"\n + \ },\n \"gpgkey\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"Gpg public key to verify collection + signatures against\"\n },\n \"private\": + {\n \"type\": \"boolean\"\n }\n \ }\n },\n \"Patchedansible.CollectionRemote\": {\n \"type\": \"object\",\n \"description\": \"A serializer for Collection Remotes.\",\n \"properties\": @@ -25635,31 +42385,35 @@ interactions: \"The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.\"\n },\n \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.\"\n },\n \"policy\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/PolicyDb6Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": - \"The policy to use when downloading content.\"\n },\n - \ \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + \"The policy to use when downloading content.\\n\\n* `immediate` - immediate\\n* + `When syncing, download all metadata and content now.` - When syncing, download + all metadata and content now.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -25673,20 +42427,20 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"requirements_file\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"The string version of Collection - requirements yaml.\"\n },\n \"auth_url\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"requirements_file\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": - \"The URL to receive a session token from, e.g. used with Automation Hub.\",\n - \ \"maxLength\": 255\n },\n \"token\": - {\n \"type\": \"string\",\n \"writeOnly\": - true,\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"The token key to use for authentication. - See https://docs.ansible.com/ansible/latest/user_guide/collections_using.html#configuring-the-ansible-galaxy-clientfor + \"The string version of Collection requirements yaml.\"\n },\n + \ \"auth_url\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The URL to receive a session + token from, e.g. used with Automation Hub.\",\n \"maxLength\": + 255\n },\n \"token\": {\n \"type\": + \"string\",\n \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The token key to use for authentication. See https://docs.ansible.com/ansible/latest/user_guide/collections_using.html#configuring-the-ansible-galaxy-clientfor more details\",\n \"maxLength\": 2000\n },\n \ \"sync_dependencies\": {\n \"type\": \"boolean\",\n \"default\": true,\n \"description\": @@ -25696,82 +42450,86 @@ interactions: \"Sync only collections that have a signature\"\n }\n }\n \ },\n \"Patchedansible.GitRemote\": {\n \"type\": \"object\",\n \"description\": \"A serializer for Git Collection - Remotes.\",\n \"properties\": {\n \"sock_read_timeout\": - {\n \"type\": \"number\",\n \"format\": - \"double\",\n \"minimum\": 0.0,\n \"nullable\": - true,\n \"description\": \"aiohttp.ClientTimeout.sock_read - (q.v.) for download-connections. The default is null, which will cause the - default from the aiohttp library to be used.\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": - true,\n \"description\": \"Maximum number of retry - attempts after a download failure. If not set then the default value (3) will - be used.\"\n },\n \"ca_cert\": {\n \"type\": + Remotes.\",\n \"properties\": {\n \"headers\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\"\n },\n + \ \"description\": \"Headers for aiohttp.Clientsession\"\n + \ },\n \"ca_cert\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"A PEM encoded CA certificate used to validate the server certificate presented by the remote server.\"\n - \ },\n \"headers\": {\n \"type\": - \"array\",\n \"items\": {\n \"type\": - \"object\"\n },\n \"description\": - \"Headers for aiohttp.Clientsession\"\n },\n \"tls_validation\": - {\n \"type\": \"boolean\",\n \"description\": - \"If True, TLS peer validation must be performed.\"\n },\n - \ \"sock_connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The - default is null, which will cause the default from the aiohttp library to - be used.\"\n },\n \"url\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"The URL of an external content source.\"\n },\n \"pulp_labels\": - {\n \"type\": \"object\"\n },\n - \ \"total_timeout\": {\n \"type\": + \ },\n \"password\": {\n \"type\": + \"string\",\n \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The password to be used for authentication when syncing. Extra leading and + trailing whitespace characters are not trimmed.\"\n },\n + \ \"tls_validation\": {\n \"type\": + \"boolean\",\n \"description\": \"If True, TLS peer + validation must be performed.\"\n },\n \"client_key\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"A PEM encoded private key used + for authentication.\"\n },\n \"download_concurrency\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n + \ \"client_cert\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"A PEM encoded client certificate + used for authentication.\"\n },\n \"max_retries\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Maximum number of retry attempts after a download failure. If not set then + the default value (3) will be used.\"\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name for this remote.\"\n + \ },\n \"connect_timeout\": {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default + \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": + \ },\n \"sock_read_timeout\": {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default + \"aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"proxy_username\": {\n \"type\": - \"string\",\n \"writeOnly\": true,\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"The username to authenticte to the proxy.\"\n },\n \"rate_limit\": - {\n \"type\": \"integer\",\n \"nullable\": + \ },\n \"rate_limit\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Limits requests per second - for each concurrent downloader\"\n },\n \"proxy_url\": - {\n \"type\": \"string\",\n \"nullable\": + for each concurrent downloader\"\n },\n \"url\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The URL of an external content + source.\"\n },\n \"username\": {\n \"type\": + \"string\",\n \"writeOnly\": true,\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": - \"The proxy URL. Format: scheme://host:port\"\n },\n \"username\": - {\n \"type\": \"string\",\n \"writeOnly\": - true,\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"The username to be used for - authentication when syncing.\"\n },\n \"client_key\": + \"The username to be used for authentication when syncing.\"\n },\n + \ \"total_timeout\": {\n \"type\": + \"number\",\n \"format\": \"double\",\n \"minimum\": + 0.0,\n \"nullable\": true,\n \"description\": + \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default + is null, which will cause the default from the aiohttp library to be used.\"\n + \ },\n \"sock_connect_timeout\": {\n + \ \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"proxy_username\": {\n \"type\": \"string\",\n \"writeOnly\": true,\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"A PEM encoded private key used - for authentication.\"\n },\n \"proxy_password\": + 1,\n \"description\": \"The username to authenticte + to the proxy.\"\n },\n \"proxy_password\": {\n \"type\": \"string\",\n \"writeOnly\": true,\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed.\"\n - \ },\n \"name\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"A unique name for this remote.\"\n },\n \"client_cert\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"A PEM encoded client certificate used for authentication.\"\n },\n - \ \"password\": {\n \"type\": \"string\",\n - \ \"writeOnly\": true,\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"The password to be used for authentication when syncing. Extra leading and - trailing whitespace characters are not trimmed.\"\n },\n - \ \"metadata_only\": {\n \"type\": + \ },\n \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"proxy_url\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n + \ },\n \"metadata_only\": {\n \"type\": \"boolean\",\n \"description\": \"If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL.\"\n },\n \"git_ref\": @@ -25820,31 +42578,35 @@ interactions: \"The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.\"\n },\n \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.\"\n },\n \"policy\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/PolicyDb6Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": - \"The policy to use when downloading content.\"\n },\n - \ \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + \"The policy to use when downloading content.\\n\\n* `immediate` - immediate\\n* + `When syncing, download all metadata and content now.` - When syncing, download + all metadata and content now.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -25858,22 +42620,11 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n }\n - \ }\n },\n \"Patchedcertguard.RHSMCertGuard\": - {\n \"type\": \"object\",\n \"description\": - \"RHSM Content Guard Serializer.\",\n \"properties\": {\n \"name\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"The unique name.\"\n },\n - \ \"description\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"An optional description.\"\n - \ },\n \"ca_certificate\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"A Certificate Authority (CA) certificate (or a bundle thereof) used to verify - client-certificate authenticity.\"\n }\n }\n - \ },\n \"Patchedcertguard.X509CertGuard\": {\n \"type\": - \"object\",\n \"description\": \"X.509 Content Guard Serializer.\",\n + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n }\n }\n + \ },\n \"Patchedcertguard.RHSMCertGuard\": {\n \"type\": + \"object\",\n \"description\": \"RHSM Content Guard Serializer.\",\n \ \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"The unique name.\"\n },\n \"description\": @@ -25883,25 +42634,41 @@ interactions: {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"A Certificate Authority (CA) certificate (or a bundle thereof) used to verify client-certificate authenticity.\"\n - \ }\n }\n },\n \"Patchedcontainer.ContainerDistribution\": + \ }\n }\n },\n \"Patchedcertguard.X509CertGuard\": {\n \"type\": \"object\",\n \"description\": - \"A serializer for ContainerDistribution.\",\n \"properties\": - {\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"content_guard\": - {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"description\": \"An optional content-guard. - If none is specified, a default one will be used.\"\n },\n - \ \"base_path\": {\n \"type\": \"string\",\n - \ \"minLength\": 1,\n \"description\": - \"The base (relative) path component of the published url. Avoid paths that - \ overlap with other distribution base paths (e.g. \\\"foo\\\" - and \\\"foo/bar\\\")\"\n },\n \"repository\": - {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"nullable\": true,\n \"description\": - \"The latest RepositoryVersion for this Repository will be served.\"\n },\n + \"X.509 Content Guard Serializer.\",\n \"properties\": {\n \ \"name\": {\n \"type\": \"string\",\n \ \"minLength\": 1,\n \"description\": - \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository_version\": + \"The unique name.\"\n },\n \"description\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"An optional description.\"\n },\n \"ca_certificate\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A Certificate Authority (CA) + certificate (or a bundle thereof) used to verify client-certificate authenticity.\"\n + \ }\n }\n },\n \"Patchedcontainer.ContainerDistribution\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for ContainerDistribution.\",\n \"properties\": + {\n \"content_guard\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"An optional content-guard. If none is specified, a default one will be used.\"\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"hidden\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Whether this distribution + should be shown in the content app.\"\n },\n \"base_path\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The base (relative) path component + of the published url. Avoid paths that overlap with other + distribution base paths (e.g. \\\"foo\\\" and \\\"foo/bar\\\")\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"repository\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"The latest RepositoryVersion + for this Repository will be served.\"\n },\n \"repository_version\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"RepositoryVersion to be served\"\n },\n \"private\": @@ -25911,28 +42678,48 @@ interactions: {\n \"type\": \"string\",\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"An optional description.\"\n }\n }\n },\n - \ \"Patchedcontainer.ContainerPushRepository\": {\n \"type\": - \"object\",\n \"description\": \"Serializer for Container Push - Repositories.\",\n \"properties\": {\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"description\": {\n - \ \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"An optional description.\"\n },\n \"manifest_signing_service\": + \ \"Patchedcontainer.ContainerPullThroughDistribution\": {\n \"type\": + \"object\",\n \"description\": \"A serializer for a specialized + pull-through distribution referencing sub-distributions.\",\n \"properties\": + {\n \"content_guard\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"An optional content-guard. If none is specified, a default one will be used.\"\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"hidden\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Whether this distribution + should be shown in the content app.\"\n },\n \"base_path\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The base (relative) path component + of the published url. Avoid paths that overlap with other + distribution base paths (e.g. \\\"foo\\\" and \\\"foo/bar\\\")\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"repository\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"The latest RepositoryVersion + for this Repository will be served.\"\n },\n \"remote\": {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"nullable\": true,\n \"description\": - \"A reference to an associated signing service.\"\n },\n - \ \"name\": {\n \"type\": \"string\",\n + \"uri\",\n \"description\": \"Remote that can be used + to fetch content when using pull-through caching.\"\n },\n + \ \"distributions\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uri\"\n },\n + \ \"description\": \"Distributions created after pulling + content through cache\"\n },\n \"private\": + {\n \"type\": \"boolean\",\n \"description\": + \"Restrict pull access to explicitly authorized users. Related distributions + inherit this value. Defaults to unrestricted pull access.\"\n },\n + \ \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"An optional description.\"\n + \ }\n }\n },\n \"Patchedcontainer.ContainerPullThroughRemote\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for a remote used in the pull-through distribution.\",\n \"properties\": + {\n \"name\": {\n \"type\": \"string\",\n \ \"minLength\": 1,\n \"description\": - \"A unique name for this repository.\"\n }\n }\n - \ },\n \"Patchedcontainer.ContainerRemote\": {\n \"type\": - \"object\",\n \"description\": \"A Serializer for ContainerRemote.\",\n - \ \"properties\": {\n \"name\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": \"A unique name for this remote.\"\n },\n \"url\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"The URL of an external content @@ -25971,23 +42758,21 @@ interactions: \"The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.\"\n },\n \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.\"\n },\n \"policy\": {\n \"allOf\": [\n {\n \"$ref\": - \"#/components/schemas/Policy762Enum\"\n }\n ],\n - \ \"default\": \"immediate\",\n \"description\": - \"\\n immediate - All manifests and blobs are downloaded and saved - during a sync.\\n on_demand - Only tags and manifests are downloaded. - Blobs are not\\n downloaded until they are requested for - the first time by a client.\\n streamed - Blobs are streamed to the - client with every request and never saved.\\n \"\n },\n + \"#/components/schemas/Policy8e2Enum\"\n }\n ],\n + \ \"default\": \"on_demand\"\n },\n \ \"total_timeout\": {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": @@ -26013,52 +42798,380 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"upstream_name\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n }\n }\n + \ },\n \"Patchedcontainer.ContainerPushRepository\": + {\n \"type\": \"object\",\n \"description\": + \"Serializer for Container Push Repositories.\",\n \"properties\": + {\n \"manifest_signing_service\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"A reference to an associated + signing service.\"\n },\n \"description\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"An optional description.\"\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name for this repository.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"pulp_labels\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n }\n }\n + \ },\n \"Patchedcontainer.ContainerRemote\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer for ContainerRemote.\",\n + \ \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": - \"Name of the upstream repository\"\n },\n \"include_tags\": + \"A unique name for this remote.\"\n },\n \"url\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The URL of an external content + source.\"\n },\n \"ca_cert\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"A PEM encoded CA certificate + used to validate the server certificate presented by the remote server.\"\n + \ },\n \"client_cert\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"A PEM encoded client certificate + used for authentication.\"\n },\n \"client_key\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"A PEM encoded private key used + for authentication.\"\n },\n \"tls_validation\": + {\n \"type\": \"boolean\",\n \"description\": + \"If True, TLS peer validation must be performed.\"\n },\n + \ \"proxy_url\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n + \ },\n \"proxy_username\": {\n \"type\": + \"string\",\n \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The username to authenticte to the proxy.\"\n },\n \"proxy_password\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The password to authenticate + to the proxy. Extra leading and trailing whitespace characters are not trimmed.\"\n + \ },\n \"username\": {\n \"type\": + \"string\",\n \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The username to be used for authentication when syncing.\"\n },\n + \ \"password\": {\n \"type\": \"string\",\n + \ \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The password to be used for authentication when syncing. Extra leading and + trailing whitespace characters are not trimmed.\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/Policy762Enum\"\n }\n ],\n + \ \"default\": \"immediate\",\n \"description\": + \"\\n immediate - All manifests and blobs are downloaded and saved + during a sync.\\n on_demand - Only tags and manifests are downloaded. + Blobs are not\\n downloaded until they are requested for + the first time by a client.\\n streamed - Blobs are streamed to the + client with every request and never saved.\\n \\n\\n* `immediate` - + When syncing, download all metadata and content now.\\n* `on_demand` - When + syncing, download metadata, but do not download content now. Instead, download + content as clients request it, and save it in Pulp to be served for future + client requests.\\n* `streamed` - When syncing, download metadata, but do + not download content now. Instead,download content as clients request it, + but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_read_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_read + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"headers\": {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"maxLength\": 255\n },\n - \ \"nullable\": true,\n \"description\": - \"\\n A list of tags to include during sync.\\n Wildcards - *, ? are recognized.\\n 'include_tags' is evaluated before 'exclude_tags'.\\n - \ \"\n },\n \"exclude_tags\": + {\n \"type\": \"object\"\n },\n + \ \"description\": \"Headers for aiohttp.Clientsession\"\n + \ },\n \"rate_limit\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"upstream_name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"Name of the upstream repository\"\n + \ },\n \"include_tags\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"maxLength\": + 255\n },\n \"nullable\": true,\n + \ \"description\": \"\\n A list of tags to + include during sync.\\n Wildcards *, ? are recognized.\\n 'include_tags' + is evaluated before 'exclude_tags'.\\n \"\n },\n + \ \"exclude_tags\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"maxLength\": + 255\n },\n \"nullable\": true,\n + \ \"description\": \"\\n A list of tags to + exclude during sync.\\n Wildcards *, ? are recognized.\\n 'exclude_tags' + is evaluated after 'include_tags'.\\n \"\n },\n + \ \"sigstore\": {\n \"type\": \"string\",\n + \ \"minLength\": 1,\n \"description\": + \"A URL to a sigstore to download image signatures from\",\n \"format\": + \"uri\"\n }\n }\n },\n \"Patchedcontainer.ContainerRepository\": + {\n \"type\": \"object\",\n \"description\": + \"Serializer for Container Repositories.\",\n \"properties\": + {\n \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"A unique name for this repository.\"\n },\n \"description\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"An optional description.\"\n },\n \"retain_repo_versions\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"manifest_signing_service\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"A reference to an associated + signing service.\"\n }\n }\n },\n + \ \"Patcheddeb.AptDistribution\": {\n \"type\": \"object\",\n + \ \"description\": \"Serializer for AptDistributions.\",\n \"properties\": + {\n \"base_path\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"The base (relative) path component of the published url. Avoid paths that + \ overlap with other distribution base paths (e.g. \\\"foo\\\" + and \\\"foo/bar\\\")\"\n },\n \"content_guard\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional content-guard.\"\n },\n \"hidden\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Whether this distribution + should be shown in the content app.\"\n },\n \"pulp_labels\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name. Ex, `rawhide` + and `stable`.\"\n },\n \"repository\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"The latest RepositoryVersion for this Repository will be served.\"\n },\n + \ \"publication\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"Publication to be served\"\n + \ }\n }\n },\n \"Patcheddeb.AptRemote\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for AptRemote.\",\n \"properties\": {\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name for this remote.\"\n + \ },\n \"url\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"The URL of an external content source.\"\n },\n \"ca_cert\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded CA certificate used to validate the server certificate presented + by the remote server.\"\n },\n \"client_cert\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded client certificate used for authentication.\"\n },\n + \ \"client_key\": {\n \"type\": \"string\",\n + \ \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded private key used for authentication.\"\n },\n + \ \"tls_validation\": {\n \"type\": + \"boolean\",\n \"description\": \"If True, TLS peer + validation must be performed.\"\n },\n \"proxy_url\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The proxy URL. Format: scheme://host:port\"\n },\n \"proxy_username\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The username to authenticte + to the proxy.\"\n },\n \"proxy_password\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The password to authenticate + to the proxy. Extra leading and trailing whitespace characters are not trimmed.\"\n + \ },\n \"username\": {\n \"type\": + \"string\",\n \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The username to be used for authentication when syncing.\"\n },\n + \ \"password\": {\n \"type\": \"string\",\n + \ \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The password to be used for authentication when syncing. Extra leading and + trailing whitespace characters are not trimmed.\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/Policy762Enum\"\n }\n ],\n + \ \"default\": \"immediate\",\n \"description\": + \"The policy to use when downloading content. The possible values include: + 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_read_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_read + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"headers\": {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"maxLength\": 255\n },\n - \ \"nullable\": true,\n \"description\": - \"\\n A list of tags to exclude during sync.\\n Wildcards - *, ? are recognized.\\n 'exclude_tags' is evaluated after 'include_tags'.\\n - \ \"\n },\n \"sigstore\": + {\n \"type\": \"object\"\n },\n + \ \"description\": \"Headers for aiohttp.Clientsession\"\n + \ },\n \"rate_limit\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"distributions\": {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"A URL to a sigstore to download - image signatures from\",\n \"format\": \"uri\"\n }\n - \ }\n },\n \"Patchedcontainer.ContainerRepository\": + 1,\n \"description\": \"Whitespace separated list of + distributions to sync.\\nThe distribution is the path from the repository + root to the \\\"Release\\\" file you want to access. This is often, but not + always, equal to either the codename or the suite of the release you want + to sync. If the repository you are trying to sync uses \\\"flat repository + format\\\", the distribution must end with a \\\"/\\\". Based on \\\"/etc/apt/sources.list\\\" + syntax.\"\n },\n \"components\": {\n + \ \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"Whitespace separatet list of components to sync.\\nIf none are supplied, + all that are available will be synchronized. Leave blank for repositores using + \\\"flat repository format\\\".\"\n },\n \"architectures\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"Whitespace separated list of architectures to sync\\nIf none are supplied, + all that are available will be synchronized. A list of valid architecture + specification strings can be found by running \\\"dpkg-architecture -L\\\". + A sync will download the intersection of the list of architectures provided + via this field and those provided by the relevant \\\"Release\\\" file. Architecture=\\\"all\\\" + is always synchronized and does not need to be provided here.\"\n },\n + \ \"sync_sources\": {\n \"type\": + \"boolean\",\n \"description\": \"Sync source packages\"\n + \ },\n \"sync_udebs\": {\n \"type\": + \"boolean\",\n \"description\": \"Sync installer packages\"\n + \ },\n \"sync_installer\": {\n \"type\": + \"boolean\",\n \"description\": \"Sync installer files\"\n + \ },\n \"gpgkey\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"Gpg public key to verify origin + releases against\"\n },\n \"ignore_missing_package_indices\": + {\n \"type\": \"boolean\",\n \"description\": + \"By default, upstream repositories that declare architectures and corresponding + package indices in their Release files without actually publishing them, will + fail to synchronize.\\nSet this flag to True to allow the synchronization + of such \\\"partial mirrors\\\" instead.\\nAlternatively, you could make your + remote filter by architectures for which the upstream repository does have + indices.\"\n }\n }\n },\n \"Patcheddeb.AptRepository\": {\n \"type\": \"object\",\n \"description\": - \"Serializer for Container Repositories.\",\n \"properties\": - {\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": + \"A Serializer for AptRepository.\",\n \"properties\": {\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"A unique name for this repository.\"\n },\n \"description\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n },\n \"manifest_signing_service\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"publish_upstream_release_fields\": {\n \"type\": + \"boolean\",\n \"description\": \"Previously, pulp_deb + only synced the Release file fields codename and suite, now version, origin, + label, and description are also synced. Setting this setting to False will + make Pulp revert to the old behaviour of using it's own internal values for + the new fields during publish. This is primarily intended to avoid a sudden + change in behaviour for existing Pulp repositories, since many Release file + field changes need to be accepted by hosts consuming the published repository. + The default for new repositories is True.\"\n },\n \"signing_service\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": - \"A reference to an associated signing service.\"\n }\n - \ }\n },\n \"Patcheddeb.AptDistribution\": + \"A reference to an associated signing service. Used if AptPublication.signing_service + is not set\"\n },\n \"signing_service_release_overrides\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true\n },\n + \ \"description\": \"A dictionary of Release distributions + and the Signing Service URLs they should use.Example: {\\\"bionic\\\": \\\"/pulp/api/v3/signing-services/433a1f70-c589-4413-a803-c50b842ea9b5/\\\"}\"\n + \ }\n }\n },\n \"Patchedfile.FileAlternateContentSource\": + {\n \"type\": \"object\",\n \"description\": + \"Serializer for File alternate content source.\",\n \"properties\": + {\n \"name\": {\n \"type\": \"string\",\n + \ \"minLength\": 1,\n \"description\": + \"Name of Alternate Content Source.\"\n },\n \"last_refreshed\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\",\n \"nullable\": true,\n \"description\": + \"Date of last refresh of AlternateContentSource.\"\n },\n + \ \"paths\": {\n \"type\": \"array\",\n + \ \"items\": {\n \"type\": + \"string\",\n \"minLength\": 1\n },\n + \ \"description\": \"List of paths that will be appended + to the Remote url when searching for content.\"\n },\n + \ \"remote\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"description\": + \"The remote to provide alternate content source.\"\n }\n + \ }\n },\n \"Patchedfile.FileDistribution\": {\n \"type\": \"object\",\n \"description\": - \"Serializer for AptDistributions.\",\n \"properties\": {\n + \"Serializer for File Distributions.\",\n \"properties\": {\n \ \"base_path\": {\n \"type\": \"string\",\n \ \"minLength\": 1,\n \"description\": \"The base (relative) path component of the published url. Avoid paths that @@ -26066,20 +43179,25 @@ interactions: and \\\"foo/bar\\\")\"\n },\n \"content_guard\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": - \"An optional content-guard.\"\n },\n \"pulp_labels\": - {\n \"type\": \"object\"\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"minLength\": 1,\n \"description\": - \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository\": + \"An optional content-guard.\"\n },\n \"hidden\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Whether this distribution + should be shown in the content app.\"\n },\n \"pulp_labels\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name. Ex, `rawhide` + and `stable`.\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"The latest RepositoryVersion for this Repository will be served.\"\n },\n \ \"publication\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"Publication to be served\"\n - \ }\n }\n },\n \"Patcheddeb.AptRemote\": + \ }\n }\n },\n \"Patchedfile.FileRemote\": {\n \"type\": \"object\",\n \"description\": - \"A Serializer for AptRemote.\",\n \"properties\": {\n \"name\": + \"Serializer for File Remotes.\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"A unique name for this remote.\"\n \ },\n \"url\": {\n \"type\": @@ -26120,12 +43238,15 @@ interactions: \"The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.\"\n },\n \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.\"\n },\n \"policy\": {\n \"allOf\": @@ -26133,19 +43254,25 @@ interactions: \"#/components/schemas/Policy762Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": \"The policy to use when downloading content. The possible values include: - 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\"\n - \ },\n \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -26159,83 +43286,39 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"distributions\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"Whitespace separated list of distributions to sync.\\nThe distribution is - the path from the repository root to the \\\"Release\\\" file you want to - access. This is often, but not always, equal to either the codename or the - suite of the release you want to sync. If the repository you are trying to - sync uses \\\"flat repository format\\\", the distribution must end with a - \\\"/\\\". Based on \\\"/etc/apt/sources.list\\\" syntax.\"\n },\n - \ \"components\": {\n \"type\": \"string\",\n - \ \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"Whitespace separatet list of - components to sync.\\nIf none are supplied, all that are available will be - synchronized. Leave blank for repositores using \\\"flat repository format\\\".\"\n - \ },\n \"architectures\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"Whitespace separated list of - architectures to sync\\nIf none are supplied, all that are available will - be synchronized. A list of valid architecture specification strings can be - found by running \\\"dpkg-architecture -L\\\". A sync will download the intersection - of the list of architectures provided via this field and those provided by - the relevant \\\"Release\\\" file. Architecture=\\\"all\\\" is always synchronized - and does not need to be provided here.\"\n },\n \"sync_sources\": - {\n \"type\": \"boolean\",\n \"description\": - \"Sync source packages\"\n },\n \"sync_udebs\": - {\n \"type\": \"boolean\",\n \"description\": - \"Sync installer packages\"\n },\n \"sync_installer\": - {\n \"type\": \"boolean\",\n \"description\": - \"Sync installer files\"\n },\n \"gpgkey\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"Gpg public key to verify origin releases against\"\n },\n - \ \"ignore_missing_package_indices\": {\n \"type\": - \"boolean\",\n \"description\": \"By default, upstream - repositories that declare architectures and corresponding package indices - in their Release files without actually publishing them, will fail to synchronize.\\nSet - this flag to True to allow the synchronization of such \\\"partial mirrors\\\" - instead.\\nAlternatively, you could make your remote filter by architectures - for which the upstream repository does have indices.\"\n }\n - \ }\n },\n \"Patcheddeb.AptRepository\": - {\n \"type\": \"object\",\n \"description\": - \"A Serializer for AptRepository.\",\n \"properties\": {\n - \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"A unique name for this repository.\"\n },\n \"description\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n }\n }\n },\n - \ \"Patchedfile.FileAlternateContentSource\": {\n \"type\": - \"object\",\n \"description\": \"Serializer for File alternate - content source.\",\n \"properties\": {\n \"name\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n }\n }\n + \ },\n \"Patchedfile.FileRepository\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for File Repositories.\",\n + \ \"properties\": {\n \"pulp_labels\": {\n + \ \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"Name of Alternate Content Source.\"\n - \ },\n \"last_refreshed\": {\n \"type\": - \"string\",\n \"format\": \"date-time\",\n \"nullable\": - true,\n \"description\": \"Date of last refresh of - AlternateContentSource.\"\n },\n \"paths\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"minLength\": - 1\n },\n \"description\": \"List - of paths that will be appended to the Remote url when searching for content.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"description\": - \"The remote to provide alternate content source.\"\n }\n - \ }\n },\n \"Patchedfile.FileDistribution\": + 1,\n \"description\": \"A unique name for this repository.\"\n + \ },\n \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"autopublish\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether to automatically create publications for new repository versions, + and update any distributions pointing to this repository.\"\n },\n + \ \"manifest\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"minLength\": + 1,\n \"default\": \"PULP_MANIFEST\",\n \"description\": + \"Filename to use for manifest file containing metadata for all the files.\"\n + \ }\n }\n },\n \"Patchedgem.GemDistribution\": {\n \"type\": \"object\",\n \"description\": - \"Serializer for File Distributions.\",\n \"properties\": {\n + \"A Serializer for GemDistribution.\",\n \"properties\": {\n \ \"base_path\": {\n \"type\": \"string\",\n \ \"minLength\": 1,\n \"description\": \"The base (relative) path component of the published url. Avoid paths that @@ -26243,20 +43326,29 @@ interactions: and \\\"foo/bar\\\")\"\n },\n \"content_guard\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": - \"An optional content-guard.\"\n },\n \"pulp_labels\": - {\n \"type\": \"object\"\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"minLength\": 1,\n \"description\": - \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository\": + \"An optional content-guard.\"\n },\n \"hidden\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Whether this distribution + should be shown in the content app.\"\n },\n \"pulp_labels\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name. Ex, `rawhide` + and `stable`.\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"The latest RepositoryVersion for this Repository will be served.\"\n },\n \ \"publication\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"Publication to be served\"\n - \ }\n }\n },\n \"Patchedfile.FileRemote\": - {\n \"type\": \"object\",\n \"description\": - \"Serializer for File Remotes.\",\n \"properties\": {\n \"name\": + \ },\n \"remote\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"Remote that can be used + to fetch content when using pull-through caching.\"\n }\n + \ }\n },\n \"Patchedgem.GemRemote\": {\n + \ \"type\": \"object\",\n \"description\": \"A + Serializer for GemRemote.\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"A unique name for this remote.\"\n \ },\n \"url\": {\n \"type\": @@ -26297,12 +43389,15 @@ interactions: \"The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.\"\n },\n \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.\"\n },\n \"policy\": {\n \"allOf\": @@ -26310,19 +43405,25 @@ interactions: \"#/components/schemas/Policy762Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": \"The policy to use when downloading content. The possible values include: - 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\"\n - \ },\n \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -26336,34 +43437,37 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n }\n - \ }\n },\n \"Patchedfile.FileRepository\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"prereleases\": + {\n \"type\": \"boolean\",\n \"default\": + false\n },\n \"includes\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n },\n + \ \"nullable\": true\n },\n \"excludes\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n },\n \"nullable\": true\n + \ }\n }\n },\n \"Patchedgem.GemRepository\": {\n \"type\": \"object\",\n \"description\": - \"Serializer for File Repositories.\",\n \"properties\": {\n + \"A Serializer for GemRepository.\",\n \"properties\": {\n \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"A unique name for this repository.\"\n },\n \"description\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n },\n \"autopublish\": - {\n \"type\": \"boolean\",\n \"default\": - false,\n \"description\": \"Whether to automatically - create publications for new repository versions, and update any distributions - pointing to this repository.\"\n },\n \"manifest\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"default\": \"PULP_MANIFEST\",\n \"description\": - \"Filename to use for manifest file containing metadata for all the files.\"\n - \ }\n }\n },\n \"Patchedmaven.MavenDistribution\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n }\n + \ }\n },\n \"Patchedmaven.MavenDistribution\": {\n \"type\": \"object\",\n \"description\": \"Serializer for Maven Distributions.\",\n \"properties\": {\n \"base_path\": {\n \"type\": @@ -26373,11 +43477,16 @@ interactions: and \\\"foo/bar\\\")\"\n },\n \"content_guard\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": - \"An optional content-guard.\"\n },\n \"pulp_labels\": - {\n \"type\": \"object\"\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"minLength\": 1,\n \"description\": - \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository\": + \"An optional content-guard.\"\n },\n \"hidden\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Whether this distribution + should be shown in the content app.\"\n },\n \"pulp_labels\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name. Ex, `rawhide` + and `stable`.\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"The latest RepositoryVersion for this Repository will be served.\"\n },\n @@ -26432,19 +43541,159 @@ interactions: \"The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.\"\n },\n \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.\"\n },\n \"policy\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/PolicyDb6Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": - \"The policy to use when downloading content.\"\n },\n + \"The policy to use when downloading content.\\n\\n* `immediate` - immediate\\n* + `When syncing, download all metadata and content now.` - When syncing, download + all metadata and content now.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_read_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_read + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"headers\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\"\n },\n + \ \"description\": \"Headers for aiohttp.Clientsession\"\n + \ },\n \"rate_limit\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n }\n }\n + \ },\n \"Patchedmaven.MavenRepository\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for Maven Repositories.\",\n + \ \"properties\": {\n \"pulp_labels\": {\n + \ \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name for this repository.\"\n + \ },\n \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n }\n + \ }\n },\n \"Patchedostree.OstreeDistribution\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer class for an OSTree distribution.\",\n \"properties\": + {\n \"base_path\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"The base (relative) path component of the published url. Avoid paths that + \ overlap with other distribution base paths (e.g. \\\"foo\\\" + and \\\"foo/bar\\\")\"\n },\n \"content_guard\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional content-guard.\"\n },\n \"hidden\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Whether this distribution + should be shown in the content app.\"\n },\n \"pulp_labels\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name. Ex, `rawhide` + and `stable`.\"\n },\n \"repository\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"The latest RepositoryVersion for this Repository will be served.\"\n },\n + \ \"repository_version\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"RepositoryVersion to be + served\"\n }\n }\n },\n \"Patchedostree.OstreeRemote\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer class for a remote OSTree repository.\",\n \"properties\": + {\n \"name\": {\n \"type\": \"string\",\n + \ \"minLength\": 1,\n \"description\": + \"A unique name for this remote.\"\n },\n \"url\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The URL of an external content + source.\"\n },\n \"ca_cert\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"A PEM encoded CA certificate + used to validate the server certificate presented by the remote server.\"\n + \ },\n \"client_cert\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"A PEM encoded client certificate + used for authentication.\"\n },\n \"client_key\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"A PEM encoded private key used + for authentication.\"\n },\n \"tls_validation\": + {\n \"type\": \"boolean\",\n \"description\": + \"If True, TLS peer validation must be performed.\"\n },\n + \ \"proxy_url\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n + \ },\n \"proxy_username\": {\n \"type\": + \"string\",\n \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The username to authenticte to the proxy.\"\n },\n \"proxy_password\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The password to authenticate + to the proxy. Extra leading and trailing whitespace characters are not trimmed.\"\n + \ },\n \"username\": {\n \"type\": + \"string\",\n \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The username to be used for authentication when syncing.\"\n },\n + \ \"password\": {\n \"type\": \"string\",\n + \ \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The password to be used for authentication when syncing. Extra leading and + trailing whitespace characters are not trimmed.\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/Policy462Enum\"\n }\n ],\n + \ \"default\": \"immediate\",\n \"description\": + \"\\n immediate - All OSTree objects are downloaded and saved during + synchronization.\\n on_demand - Only commits, dirtrees, and refs are + downloaded. Other OSTree objects are\\n not downloaded + until they are requested for the first time by a client.\\n \\n\\n* + `immediate` - immediate\\n* `on_demand` - on_demand\"\n },\n \ \"total_timeout\": {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": @@ -26470,40 +43719,67 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n }\n - \ }\n },\n \"Patchedmaven.MavenRepository\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"depth\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"default\": 0,\n \"description\": + \"An option to specify how many commits to traverse.\",\n \"minimum\": + 0\n },\n \"include_refs\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"maxLength\": + 255\n },\n \"nullable\": true,\n + \ \"description\": \"\\n A list of refs to + include during a sync.\\n The wildcards *, ? are recognized.\\n + \ 'include_refs' is evaluated before 'exclude_refs'.\\n \"\n + \ },\n \"exclude_refs\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"maxLength\": + 255\n },\n \"nullable\": true,\n + \ \"description\": \"\\n A list of tags to + exclude during a sync.\\n The wildcards *, ? are recognized.\\n + \ 'exclude_refs' is evaluated after 'include_refs'.\\n \"\n + \ }\n }\n },\n \"Patchedostree.OstreeRepository\": {\n \"type\": \"object\",\n \"description\": - \"Serializer for Maven Repositories.\",\n \"properties\": {\n - \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": + \"A Serializer class for an OSTree repository.\",\n \"properties\": + {\n \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"A unique name for this repository.\"\n },\n \"description\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n }\n }\n },\n - \ \"Patchedpython.PythonDistribution\": {\n \"type\": - \"object\",\n \"description\": \"Serializer for Pulp distributions - for the Python type.\",\n \"properties\": {\n \"base_path\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"The base (relative) path component - of the published url. Avoid paths that overlap with other - distribution base paths (e.g. \\\"foo\\\" and \\\"foo/bar\\\")\"\n },\n - \ \"content_guard\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional content-guard.\"\n - \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"compute_delta\": {\n \"type\": + \"boolean\",\n \"default\": true\n }\n + \ }\n },\n \"Patchedpython.PythonDistribution\": + {\n \"type\": \"object\",\n \"description\": + \"Serializer for Pulp distributions for the Python type.\",\n \"properties\": + {\n \"base_path\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": - \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository\": + \"The base (relative) path component of the published url. Avoid paths that + \ overlap with other distribution base paths (e.g. \\\"foo\\\" + and \\\"foo/bar\\\")\"\n },\n \"content_guard\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional content-guard.\"\n },\n \"hidden\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Whether this distribution + should be shown in the content app.\"\n },\n \"pulp_labels\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name. Ex, `rawhide` + and `stable`.\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"The latest RepositoryVersion for this Repository will be served.\"\n },\n @@ -26560,12 +43836,15 @@ interactions: \"The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.\"\n },\n \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.\"\n },\n \"policy\": {\n \"allOf\": @@ -26573,19 +43852,25 @@ interactions: \"#/components/schemas/Policy762Enum\"\n }\n ],\n \ \"default\": \"on_demand\",\n \"description\": \"The policy to use when downloading content. The possible values include: - 'immediate', 'on_demand', and 'streamed'. 'on_demand' is the default.\"\n - \ },\n \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + 'immediate', 'on_demand', and 'streamed'. 'on_demand' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -26599,25 +43884,29 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"includes\": {\n \"type\": \"object\",\n - \ \"description\": \"A JSON list containing project - specifiers for Python packages to include.\"\n },\n \"excludes\": - {\n \"type\": \"object\",\n \"description\": - \"A JSON list containing project specifiers for Python packages to exclude.\"\n - \ },\n \"prereleases\": {\n \"type\": - \"boolean\",\n \"description\": \"Whether or not to - include pre-release packages in the sync.\"\n },\n \"package_types\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"includes\": {\n \"type\": \"array\",\n \"items\": - {\n \"$ref\": \"#/components/schemas/PackageTypesEnum\"\n - \ },\n \"description\": \"The - package types to sync for Python content. Leave blank to get everypackage + {\n \"type\": \"string\",\n \"minLength\": + 1\n },\n \"description\": \"A + list containing project specifiers for Python packages to include.\"\n },\n + \ \"excludes\": {\n \"type\": \"array\",\n + \ \"items\": {\n \"type\": + \"string\",\n \"minLength\": 1\n },\n + \ \"description\": \"A list containing project specifiers + for Python packages to exclude.\"\n },\n \"prereleases\": + {\n \"type\": \"boolean\",\n \"description\": + \"Whether or not to include pre-release packages in the sync.\"\n },\n + \ \"package_types\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/PackageTypesEnum\"\n },\n \"description\": + \"The package types to sync for Python content. Leave blank to get everypackage type.\"\n },\n \"keep_latest_packages\": - {\n \"type\": \"integer\",\n \"default\": - 0,\n \"description\": \"The amount of latest versions - of a package to keep on sync, includespre-releases if synced. Default 0 keeps - all versions.\"\n },\n \"exclude_platforms\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"default\": 0,\n \"description\": + \"The amount of latest versions of a package to keep on sync, includespre-releases + if synced. Default 0 keeps all versions.\"\n },\n \"exclude_platforms\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/ExcludePlatformsEnum\"\n \ },\n \"description\": \"List @@ -26626,29 +43915,30 @@ interactions: \ },\n \"Patchedpython.PythonRepository\": {\n \"type\": \"object\",\n \"description\": \"Serializer for Python Repositories.\",\n \ \"properties\": {\n \"pulp_labels\": {\n - \ \"type\": \"object\"\n },\n \"name\": + \ \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"A unique name for this repository.\"\n \ },\n \"description\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"An optional description.\"\n \ },\n \"retain_repo_versions\": {\n - \ \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n },\n \"autopublish\": - {\n \"type\": \"boolean\",\n \"default\": - false,\n \"description\": \"Whether to automatically - create publications for new repository versions, and update any distributions - pointing to this repository.\"\n }\n }\n - \ },\n \"Patchedrpm.RpmAlternateContentSource\": {\n - \ \"type\": \"object\",\n \"description\": \"Serializer - for RPM alternate content source.\",\n \"properties\": {\n - \ \"name\": {\n \"type\": \"string\",\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"autopublish\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether to automatically create publications for new repository versions, + and update any distributions pointing to this repository.\"\n }\n + \ }\n },\n \"Patchedrpm.RpmAlternateContentSource\": + {\n \"type\": \"object\",\n \"description\": + \"Serializer for RPM alternate content source.\",\n \"properties\": + {\n \"name\": {\n \"type\": \"string\",\n \ \"minLength\": 1,\n \"description\": \"Name of Alternate Content Source.\"\n },\n \"last_refreshed\": {\n \"type\": \"string\",\n \"format\": @@ -26672,46 +43962,54 @@ interactions: and \\\"foo/bar\\\")\"\n },\n \"content_guard\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": - \"An optional content-guard.\"\n },\n \"pulp_labels\": - {\n \"type\": \"object\"\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"minLength\": 1,\n \"description\": - \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository\": + \"An optional content-guard.\"\n },\n \"hidden\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Whether this distribution + should be shown in the content app.\"\n },\n \"pulp_labels\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name. Ex, `rawhide` + and `stable`.\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"The latest RepositoryVersion for this Repository will be served.\"\n },\n \ \"publication\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"Publication to be served\"\n - \ }\n }\n },\n \"Patchedrpm.RpmRemote\": - {\n \"type\": \"object\",\n \"description\": - \"A Serializer for RpmRemote.\",\n \"properties\": {\n \"name\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"A unique name for this remote.\"\n - \ },\n \"url\": {\n \"type\": + \ },\n \"generate_repo_config\": {\n + \ \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"An option specifying whether + Pulp should generate *.repo files.\"\n }\n }\n + \ },\n \"Patchedrpm.RpmRemote\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer for RpmRemote.\",\n + \ \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": - \"The URL of an external content source.\"\n },\n \"ca_cert\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"A PEM encoded CA certificate used to validate the server certificate presented - by the remote server.\"\n },\n \"client_cert\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"A PEM encoded client certificate used for authentication.\"\n },\n - \ \"client_key\": {\n \"type\": \"string\",\n - \ \"writeOnly\": true,\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"A PEM encoded private key used for authentication.\"\n },\n - \ \"tls_validation\": {\n \"type\": - \"boolean\",\n \"description\": \"If True, TLS peer - validation must be performed.\"\n },\n \"proxy_url\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"The proxy URL. Format: scheme://host:port\"\n },\n \"proxy_username\": + \"A unique name for this remote.\"\n },\n \"url\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The URL of an external content + source.\"\n },\n \"ca_cert\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"A PEM encoded CA certificate + used to validate the server certificate presented by the remote server.\"\n + \ },\n \"client_cert\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"A PEM encoded client certificate + used for authentication.\"\n },\n \"client_key\": {\n \"type\": \"string\",\n \"writeOnly\": true,\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"The username to authenticte - to the proxy.\"\n },\n \"proxy_password\": + 1,\n \"description\": \"A PEM encoded private key used + for authentication.\"\n },\n \"tls_validation\": + {\n \"type\": \"boolean\",\n \"description\": + \"If True, TLS peer validation must be performed.\"\n },\n + \ \"proxy_url\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n + \ },\n \"proxy_username\": {\n \"type\": + \"string\",\n \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The username to authenticte to the proxy.\"\n },\n \"proxy_password\": {\n \"type\": \"string\",\n \"writeOnly\": true,\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"The password to authenticate @@ -26726,12 +44024,15 @@ interactions: \"The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.\"\n },\n \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.\"\n },\n \"policy\": {\n \"allOf\": @@ -26739,19 +44040,25 @@ interactions: \"#/components/schemas/Policy762Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": \"The policy to use when downloading content. The possible values include: - 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\"\n - \ },\n \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -26765,65 +44072,85 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"sles_auth_token\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"Authentication token for SLES - repositories.\"\n }\n }\n },\n - \ \"Patchedrpm.RpmRepository\": {\n \"type\": \"object\",\n - \ \"description\": \"Serializer for Rpm Repositories.\",\n \"properties\": - {\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"A unique name for this repository.\"\n },\n \"description\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"sles_auth_token\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": - \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n },\n \"autopublish\": - {\n \"type\": \"boolean\",\n \"default\": - false,\n \"description\": \"Whether to automatically - create publications for new repository versions, and update any distributions - pointing to this repository.\"\n },\n \"metadata_signing_service\": + \"Authentication token for SLES repositories.\"\n }\n }\n + \ },\n \"Patchedrpm.RpmRepository\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for Rpm Repositories.\",\n + \ \"properties\": {\n \"pulp_labels\": {\n + \ \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name for this repository.\"\n + \ },\n \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": - \"A reference to an associated signing service.\"\n },\n - \ \"retain_package_versions\": {\n \"type\": - \"integer\",\n \"minimum\": 0,\n \"description\": - \"The number of versions of each package to keep in the repository; older - versions will be purged. The default is '0', which will disable this feature - and keep all versions of each package.\"\n },\n \"metadata_checksum_type\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"autopublish\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether to automatically create publications for new repository versions, + and update any distributions pointing to this repository.\"\n },\n + \ \"metadata_signing_service\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"A reference to an associated + signing service.\"\n },\n \"retain_package_versions\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"description\": \"The number of versions + of each package to keep in the repository; older versions will be purged. + The default is '0', which will disable this feature and keep all versions + of each package.\",\n \"minimum\": 0\n },\n + \ \"checksum_type\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/PackageChecksumTypeEnum\"\n }\n + \ ],\n \"nullable\": true,\n + \ \"description\": \"The preferred checksum type during + repo publish.\\n\\n* `unknown` - unknown\\n* `md5` - md5\\n* `sha1` - sha1\\n* + `sha224` - sha224\\n* `sha256` - sha256\\n* `sha384` - sha384\\n* `sha512` + - sha512\"\n },\n \"metadata_checksum_type\": {\n \"allOf\": [\n {\n \"$ref\": - \"#/components/schemas/MetadataChecksumTypeEnum\"\n }\n + \"#/components/schemas/PackageChecksumTypeEnum\"\n }\n \ ],\n \"nullable\": true,\n - \ \"description\": \"The checksum type for metadata.\"\n - \ },\n \"package_checksum_type\": {\n - \ \"allOf\": [\n {\n \"$ref\": + \ \"description\": \"DEPRECATED: use CHECKSUM_TYPE instead.\\n\\n* + `unknown` - unknown\\n* `md5` - md5\\n* `sha1` - sha1\\n* `sha224` - sha224\\n* + `sha256` - sha256\\n* `sha384` - sha384\\n* `sha512` - sha512\"\n },\n + \ \"package_checksum_type\": {\n \"allOf\": + [\n {\n \"$ref\": \"#/components/schemas/PackageChecksumTypeEnum\"\n }\n \ ],\n \"nullable\": true,\n - \ \"description\": \"The checksum type for packages.\"\n - \ },\n \"gpgcheck\": {\n \"type\": - \"integer\",\n \"maximum\": 1,\n \"minimum\": - 0,\n \"default\": 0,\n \"description\": - \"An option specifying whether a client should perform a GPG signature check - on packages.\"\n },\n \"repo_gpgcheck\": - {\n \"type\": \"integer\",\n \"maximum\": - 1,\n \"minimum\": 0,\n \"default\": - 0,\n \"description\": \"An option specifying whether - a client should perform a GPG signature check on the repodata.\"\n },\n - \ \"sqlite_metadata\": {\n \"type\": - \"boolean\",\n \"default\": false,\n \"description\": - \"DEPRECATED: An option specifying whether Pulp should generate SQLite metadata.\"\n - \ }\n }\n },\n \"Patchedrpm.UlnRemote\": - {\n \"type\": \"object\",\n \"description\": - \"A Serializer for UlnRemote.\",\n \"properties\": {\n \"name\": + \ \"description\": \"DEPRECATED: use CHECKSUM_TYPE instead.\\n\\n* + `unknown` - unknown\\n* `md5` - md5\\n* `sha1` - sha1\\n* `sha224` - sha224\\n* + `sha256` - sha256\\n* `sha384` - sha384\\n* `sha512` - sha512\"\n },\n + \ \"gpgcheck\": {\n \"type\": \"integer\",\n + \ \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"DEPRECATED: An option specifying + whether a client should perform a GPG signature check on packages.\",\n \"maximum\": + 1,\n \"minimum\": 0\n },\n \"repo_gpgcheck\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"DEPRECATED: An option specifying whether a client should perform a GPG signature + check on the repodata.\",\n \"maximum\": 1,\n \"minimum\": + 0\n },\n \"repo_config\": {\n \"type\": + \"object\",\n \"description\": \"A JSON document describing + config.repo file\"\n },\n \"compression_type\": + {\n \"allOf\": [\n {\n \"$ref\": + \"#/components/schemas/CompressionTypeEnum\"\n }\n + \ ],\n \"nullable\": true,\n + \ \"description\": \"The compression type to use for + metadata files.\\n\\n* `zstd` - zstd\\n* `gz` - gz\"\n }\n + \ }\n },\n \"Patchedrpm.UlnRemote\": {\n + \ \"type\": \"object\",\n \"description\": \"A + Serializer for UlnRemote.\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"A unique name for this remote.\"\n \ },\n \"url\": {\n \"type\": @@ -26862,12 +44189,15 @@ interactions: \"string\",\n \"writeOnly\": true,\n \"minLength\": 1,\n \"description\": \"Your ULN account password.\"\n \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.\"\n },\n \"policy\": {\n \"allOf\": @@ -26875,19 +44205,25 @@ interactions: \"#/components/schemas/Policy762Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": \"The policy to use when downloading content. The possible values include: - 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\"\n - \ },\n \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -26901,49 +44237,65 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"uln_server_base_url\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"Base URL of the ULN server. - If the uln_server_base_url is not provided pulp_rpm willuse the contents of - the DEFAULT_ULN_SERVER_BASE_URL setting instead.\"\n }\n - \ }\n },\n \"Policy762Enum\": {\n \"enum\": - [\n \"immediate\",\n \"on_demand\",\n - \ \"streamed\"\n ],\n \"type\": - \"string\"\n },\n \"PolicyDb6Enum\": {\n \"enum\": - [\n \"immediate\",\n \"When syncing, - download all metadata and content now.\"\n ],\n \"type\": - \"string\"\n },\n \"ProgressReportResponse\": {\n \"type\": - \"object\",\n \"description\": \"Base serializer for use with - :class:`pulpcore.app.models.Model`\\n\\nThis ensures that all Serializers - provide values for the 'pulp_href` field.\\n\\nThe class provides a default - for the ``ref_name`` attribute in the\\nModelSerializers's ``Meta`` class. - This ensures that the OpenAPI definitions\\nof plugins are namespaced properly.\",\n - \ \"properties\": {\n \"message\": {\n \"type\": - \"string\",\n \"readOnly\": true,\n \"description\": - \"The message shown to the user for the progress report.\"\n },\n - \ \"code\": {\n \"type\": \"string\",\n - \ \"readOnly\": true,\n \"description\": - \"Identifies the type of progress report'.\"\n },\n \"state\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"uln_server_base_url\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"Base URL of the ULN server. If the uln_server_base_url is not provided pulp_rpm + willuse the contents of the DEFAULT_ULN_SERVER_BASE_URL setting instead.\"\n + \ }\n }\n },\n \"Policy462Enum\": + {\n \"enum\": [\n \"immediate\",\n \"on_demand\"\n + \ ],\n \"type\": \"string\",\n \"description\": + \"* `immediate` - immediate\\n* `on_demand` - on_demand\"\n },\n + \ \"Policy762Enum\": {\n \"enum\": [\n \"immediate\",\n + \ \"on_demand\",\n \"streamed\"\n ],\n + \ \"type\": \"string\",\n \"description\": \"* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"Policy8e2Enum\": + {\n \"enum\": [\n \"on_demand\"\n ],\n + \ \"type\": \"string\",\n \"description\": \"* + `on_demand` - on_demand\"\n },\n \"PolicyDb6Enum\": + {\n \"enum\": [\n \"immediate\",\n \"When + syncing, download all metadata and content now.\"\n ],\n \"type\": + \"string\",\n \"description\": \"* `immediate` - immediate\\n* + `When syncing, download all metadata and content now.` - When syncing, download + all metadata and content now.\"\n },\n \"ProgressReportResponse\": + {\n \"type\": \"object\",\n \"description\": + \"Base serializer for use with :class:`pulpcore.app.models.Model`\\n\\nThis + ensures that all Serializers provide values for the 'pulp_href` field.\\n\\nThe + class provides a default for the ``ref_name`` attribute in the\\nModelSerializers's + ``Meta`` class. This ensures that the OpenAPI definitions\\nof plugins are + namespaced properly.\",\n \"properties\": {\n \"message\": {\n \"type\": \"string\",\n \"readOnly\": - true,\n \"description\": \"The current state of the - progress report. The possible values are: 'waiting', 'skipped', 'running', - 'completed', 'failed', 'canceled' and 'canceling'. The default is 'waiting'.\"\n - \ },\n \"total\": {\n \"type\": - \"integer\",\n \"readOnly\": true,\n \"description\": - \"The total count of items.\"\n },\n \"done\": - {\n \"type\": \"integer\",\n \"readOnly\": - true,\n \"description\": \"The count of items already - processed. Defaults to 0.\"\n },\n \"suffix\": + true,\n \"description\": \"The message shown to the + user for the progress report.\"\n },\n \"code\": {\n \"type\": \"string\",\n \"readOnly\": - true,\n \"nullable\": true,\n \"description\": - \"The suffix to be shown with the progress report.\"\n }\n - \ }\n },\n \"PublicationResponse\": {\n - \ \"type\": \"object\",\n \"description\": \"Base - serializer for use with :class:`pulpcore.app.models.Model`\\n\\nThis ensures - that all Serializers provide values for the 'pulp_href` field.\\n\\nThe class - provides a default for the ``ref_name`` attribute in the\\nModelSerializers's + true,\n \"description\": \"Identifies the type of progress + report'.\"\n },\n \"state\": {\n \"type\": + \"string\",\n \"readOnly\": true,\n \"description\": + \"The current state of the progress report. The possible values are: 'waiting', + 'skipped', 'running', 'completed', 'failed', 'canceled' and 'canceling'. The + default is 'waiting'.\"\n },\n \"total\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"readOnly\": true,\n \"description\": + \"The total count of items.\"\n },\n \"done\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"readOnly\": true,\n \"description\": + \"The count of items already processed. Defaults to 0.\"\n },\n + \ \"suffix\": {\n \"type\": \"string\",\n + \ \"readOnly\": true,\n \"nullable\": + true,\n \"description\": \"The suffix to be shown with + the progress report.\"\n }\n }\n },\n + \ \"PublicationResponse\": {\n \"type\": \"object\",\n + \ \"description\": \"Base serializer for use with :class:`pulpcore.app.models.Model`\\n\\nThis + ensures that all Serializers provide values for the 'pulp_href` field.\\n\\nThe + class provides a default for the ``ref_name`` attribute in the\\nModelSerializers's ``Meta`` class. This ensures that the OpenAPI definitions\\nof plugins are namespaced properly.\",\n \"properties\": {\n \"pulp_href\": {\n \"type\": \"string\",\n \"format\": @@ -27121,7 +44473,7 @@ interactions: {\n \"type\": \"object\",\n \"properties\": {\n \"finished_before\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"default\": - \"2022-10-17\",\n \"description\": \"Purge tasks completed + \"2024-01-09\",\n \"description\": \"Purge tasks completed earlier than this timestamp. Format '%Y-%m-%d[T%H:%M:%S]'\"\n },\n \ \"states\": {\n \"type\": \"array\",\n \ \"items\": {\n \"$ref\": @@ -27143,10 +44495,16 @@ interactions: \"#/components/schemas/Policy762Enum\"\n }\n ],\n \ \"default\": \"on_demand\",\n \"description\": \"The policy to use when downloading content. The possible values include: - 'immediate', 'on_demand', and 'streamed'. 'on_demand' is the default.\"\n - \ }\n },\n \"required\": [\n - \ \"config\",\n \"name\"\n ]\n - \ },\n \"RBACContentGuard\": {\n \"type\": + 'immediate', 'on_demand', and 'streamed'. 'on_demand' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n }\n },\n + \ \"required\": [\n \"config\",\n \"name\"\n + \ ]\n },\n \"RBACContentGuard\": {\n \"type\": \"object\",\n \"description\": \"Base serializer for use with :class:`pulpcore.app.models.Model`\\n\\nThis ensures that all Serializers provide values for the 'pulp_href` field.\\n\\nThe class provides a default @@ -27234,34 +44592,38 @@ interactions: {\n \"type\": \"string\",\n \"nullable\": true,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"pulp_last_updated\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"readOnly\": true,\n \"description\": - \"Timestamp of the most recent update of the remote.\"\n },\n - \ \"download_concurrency\": {\n \"type\": - \"integer\",\n \"minimum\": 1,\n \"nullable\": - true,\n \"description\": \"Total number of simultaneous - connections. If not set then the default value will be used.\"\n },\n + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"pulp_last_updated\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of the most recent + update of the remote.\"\n },\n \"download_concurrency\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n \ \"max_retries\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Maximum number of retry attempts after a download failure. If not set then - the default value (3) will be used.\"\n },\n \"policy\": - {\n \"allOf\": [\n {\n \"$ref\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": \"#/components/schemas/PolicyDb6Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": - \"The policy to use when downloading content.\"\n },\n - \ \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + \"The policy to use when downloading content.\\n\\n* `immediate` - immediate\\n* + `When syncing, download all metadata and content now.` - When syncing, download + all metadata and content now.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -27275,14 +44637,23 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n }\n - \ },\n \"required\": [\n \"name\",\n - \ \"url\"\n ]\n },\n \"RemoveImage\": - {\n \"type\": \"object\",\n \"description\": - \"A serializer for parsing and validating data associated with the image removal.\",\n - \ \"properties\": {\n \"digest\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"hidden_fields\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"name\": {\n \"type\": + \"string\"\n },\n \"is_set\": + {\n \"type\": \"boolean\"\n }\n + \ }\n },\n \"readOnly\": + true,\n \"description\": \"List of hidden (write only) + fields\"\n }\n },\n \"required\": + [\n \"name\",\n \"url\"\n ]\n + \ },\n \"RemoveImage\": {\n \"type\": + \"object\",\n \"description\": \"A serializer for parsing and + validating data associated with the image removal.\",\n \"properties\": + {\n \"digest\": {\n \"type\": \"string\",\n + \ \"minLength\": 1,\n \"description\": \"sha256 of the Manifest file\"\n }\n },\n \ \"required\": [\n \"digest\"\n ]\n \ },\n \"RemoveSignatures\": {\n \"type\": @@ -27311,33 +44682,67 @@ interactions: {\n \"published\": {\n \"type\": \"string\",\n \"format\": \"date-time\"\n }\n \ },\n \"required\": [\n \"published\"\n - \ ]\n },\n \"RepositoryAddRemoveContent\": - {\n \"type\": \"object\",\n \"description\": - \"Base serializer for use with :class:`pulpcore.app.models.Model`\\n\\nThis - ensures that all Serializers provide values for the 'pulp_href` field.\\n\\nThe - class provides a default for the ``ref_name`` attribute in the\\nModelSerializers's - ``Meta`` class. This ensures that the OpenAPI definitions\\nof plugins are - namespaced properly.\",\n \"properties\": {\n \"add_content_units\": - {\n \"type\": \"array\",\n \"items\": - {},\n \"description\": \"A list of content units to - add to a new repository version. This content is added after remove_content_units - are removed.\"\n },\n \"remove_content_units\": - {\n \"type\": \"array\",\n \"items\": - {},\n \"description\": \"A list of content units to - remove from the latest repository version. You may also specify '*' as an - entry to remove all content. This content is removed before add_content_units - are added.\"\n },\n \"base_version\": + \ ]\n },\n \"Repository\": {\n \"type\": + \"object\",\n \"description\": \"Base serializer for use with + :class:`pulpcore.app.models.Model`\\n\\nThis ensures that all Serializers + provide values for the 'pulp_href` field.\\n\\nThe class provides a default + for the ``ref_name`` attribute in the\\nModelSerializers's ``Meta`` class. + This ensures that the OpenAPI definitions\\nof plugins are namespaced properly.\",\n + \ \"properties\": {\n \"pulp_labels\": {\n + \ \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name for this repository.\"\n + \ },\n \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"description\": \"A repository version - whose content will be used as the initial set of content for the new repository - version\"\n }\n }\n },\n \"RepositoryResponse\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n }\n + \ },\n \"required\": [\n \"name\"\n + \ ]\n },\n \"RepositoryAddCachedContent\": {\n \"type\": \"object\",\n \"description\": - \"Base serializer for use with :class:`pulpcore.app.models.Model`\\n\\nThis - ensures that all Serializers provide values for the 'pulp_href` field.\\n\\nThe - class provides a default for the ``ref_name`` attribute in the\\nModelSerializers's - ``Meta`` class. This ensures that the OpenAPI definitions\\nof plugins are - namespaced properly.\",\n \"properties\": {\n \"pulp_href\": - {\n \"type\": \"string\",\n \"format\": + \"A mixin for validating unknown serializers' fields.\",\n \"properties\": + {\n \"remote\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"description\": + \"A remote to use to identify content that was cached. This will override + a remote set on repository.\"\n }\n }\n + \ },\n \"RepositoryAddRemoveContent\": {\n \"type\": + \"object\",\n \"description\": \"Base serializer for use with + :class:`pulpcore.app.models.Model`\\n\\nThis ensures that all Serializers + provide values for the 'pulp_href` field.\\n\\nThe class provides a default + for the ``ref_name`` attribute in the\\nModelSerializers's ``Meta`` class. + This ensures that the OpenAPI definitions\\nof plugins are namespaced properly.\",\n + \ \"properties\": {\n \"add_content_units\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"minLength\": + 1\n },\n \"description\": \"A + list of content units to add to a new repository version. This content is + added after remove_content_units are removed.\"\n },\n + \ \"remove_content_units\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"minLength\": 1\n },\n + \ \"description\": \"A list of content units to remove + from the latest repository version. You may also specify '*' as an entry to + remove all content. This content is removed before add_content_units are added.\"\n + \ },\n \"base_version\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"A repository version whose content will be used as the initial set of content + for the new repository version\"\n }\n }\n + \ },\n \"RepositoryResponse\": {\n \"type\": + \"object\",\n \"description\": \"Base serializer for use with + :class:`pulpcore.app.models.Model`\\n\\nThis ensures that all Serializers + provide values for the 'pulp_href` field.\\n\\nThe class provides a default + for the ``ref_name`` attribute in the\\nModelSerializers's ``Meta`` class. + This ensures that the OpenAPI definitions\\nof plugins are namespaced properly.\",\n + \ \"properties\": {\n \"pulp_href\": {\n + \ \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \ \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": @@ -27345,43 +44750,44 @@ interactions: \ },\n \"versions_href\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"latest_version_href\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"latest_version_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name for + this repository.\"\n },\n \"description\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"readOnly\": true\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"description\": \"A unique name for this repository.\"\n - \ },\n \"description\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"description\": - \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n }\n },\n \"required\": - [\n \"name\"\n ]\n },\n \"RepositorySign\": - {\n \"type\": \"object\",\n \"description\": - \"Serializer for container images signing.\",\n \"properties\": - {\n \"manifest_signing_service\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"A signing service to sign - with. This will override a signing service set on the repo.\"\n },\n - \ \"future_base_path\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"Future base path content will be distributed at for sync repos\"\n },\n - \ \"tags_list\": {\n \"type\": \"array\",\n - \ \"items\": {},\n \"description\": - \"A list of tags to sign.\"\n }\n }\n },\n - \ \"RepositorySyncURL\": {\n \"type\": \"object\",\n - \ \"description\": \"A mixin for validating unknown serializers' - fields.\",\n \"properties\": {\n \"remote\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n }\n + \ },\n \"required\": [\n \"name\"\n + \ ]\n },\n \"RepositorySign\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for container images + signing.\",\n \"properties\": {\n \"manifest_signing_service\": {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"description\": \"A remote to sync from. - This will override a remote set on repository.\"\n },\n - \ \"mirror\": {\n \"type\": \"boolean\",\n - \ \"default\": false,\n \"description\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"A signing service to sign with. This will override a signing service set + on the repo.\"\n },\n \"future_base_path\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"Future base path content will + be distributed at for sync repos\"\n },\n \"tags_list\": + {\n \"type\": \"array\",\n \"items\": + {},\n \"description\": \"A list of tags to sign.\"\n + \ }\n }\n },\n \"RepositorySyncURL\": + {\n \"type\": \"object\",\n \"description\": + \"A mixin for validating unknown serializers' fields.\",\n \"properties\": + {\n \"remote\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"description\": + \"A remote to sync from. This will override a remote set on repository.\"\n + \ },\n \"mirror\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": \"If ``True``, synchronization will remove all content that is not present in the remote repository. If ``False``, sync will be additive only.\"\n }\n \ }\n },\n \"RepositoryVersionResponse\": @@ -27397,9 +44803,9 @@ interactions: \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"number\": {\n \"type\": - \"integer\",\n \"readOnly\": true\n },\n - \ \"repository\": {\n \"type\": \"string\",\n - \ \"format\": \"uri\",\n \"readOnly\": + \"integer\",\n \"format\": \"int64\",\n \"readOnly\": + true\n },\n \"repository\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \"base_version\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"description\": \"A repository version whose content was used as the initial set of content @@ -27462,19 +44868,37 @@ interactions: will change the repository contents to match the remote but the metadata will be regenerated and will not be bit-for-bit identical. 'additive' will retain the existing contents of the repository and add the contents of the repository - being synced.\"\n },\n \"skip_types\": + being synced.\\n\\n* `additive` - additive\\n* `mirror_complete` - mirror_complete\\n* + `mirror_content_only` - mirror_content_only\"\n },\n \"skip_types\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/SkipTypesEnum\"\n \ },\n \"default\": [],\n \"description\": \"List of content types to skip during sync.\"\n },\n \"optimize\": {\n \"type\": \"boolean\",\n \"default\": true,\n \"description\": \"Whether or not to optimize - sync.\"\n }\n }\n },\n \"SigningServiceResponse\": + sync.\"\n }\n }\n },\n \"SetLabel\": {\n \"type\": \"object\",\n \"description\": - \"A serializer for the model declaring a signing service.\",\n \"properties\": - {\n \"pulp_href\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"readOnly\": - true\n },\n \"pulp_created\": {\n \"type\": + \"Serializer for synchronously setting a label.\",\n \"properties\": + {\n \"key\": {\n \"type\": \"string\",\n + \ \"minLength\": 1,\n \"pattern\": + \"^[-a-zA-Z0-9_]+$\"\n },\n \"value\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"required\": + [\n \"key\",\n \"value\"\n ]\n + \ },\n \"SetLabelResponse\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for synchronously + setting a label.\",\n \"properties\": {\n \"key\": + {\n \"type\": \"string\",\n \"pattern\": + \"^[-a-zA-Z0-9_]+$\"\n },\n \"value\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"required\": + [\n \"key\",\n \"value\"\n ]\n + \ },\n \"SigningServiceResponse\": {\n \"type\": + \"object\",\n \"description\": \"A serializer for the model + declaring a signing service.\",\n \"properties\": {\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"name\": {\n \"type\": @@ -27491,13 +44915,16 @@ interactions: \ \"name\",\n \"pubkey_fingerprint\",\n \ \"public_key\",\n \"script\"\n ]\n \ },\n \"SkipTypesEnum\": {\n \"enum\": - [\n \"srpm\"\n ],\n \"type\": - \"string\"\n },\n \"StatesEnum\": {\n \"enum\": - [\n \"skipped\",\n \"completed\",\n + [\n \"srpm\",\n \"treeinfo\"\n ],\n + \ \"type\": \"string\",\n \"description\": \"* + `srpm` - srpm\\n* `treeinfo` - treeinfo\"\n },\n \"StatesEnum\": + {\n \"enum\": [\n \"skipped\",\n \"completed\",\n \ \"failed\",\n \"canceled\"\n ],\n - \ \"type\": \"string\"\n },\n \"StatusResponse\": - {\n \"type\": \"object\",\n \"description\": - \"Serializer for the status information of the app\",\n \"properties\": + \ \"type\": \"string\",\n \"description\": \"* + `skipped` - skipped\\n* `completed` - completed\\n* `failed` - failed\\n* + `canceled` - canceled\"\n },\n \"StatusResponse\": {\n + \ \"type\": \"object\",\n \"description\": \"Serializer + for the status information of the app\",\n \"properties\": {\n \"versions\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/VersionResponse\"\n },\n \"description\": @@ -27506,14 +44933,19 @@ interactions: {\n \"$ref\": \"#/components/schemas/WorkerResponse\"\n \ },\n \"description\": \"List of online workers known to the application. An online worker is actively heartbeating - and can respond to new work\"\n },\n \"online_content_apps\": + and can respond to new work.\"\n },\n \"online_api_apps\": {\n \"type\": \"array\",\n \"items\": - {\n \"$ref\": \"#/components/schemas/ContentAppStatusResponse\"\n + {\n \"$ref\": \"#/components/schemas/ApiAppStatusResponse\"\n \ },\n \"description\": \"List - of online content apps known to the application. An online content app is - actively heartbeating and can serve data to clients\"\n },\n - \ \"database_connection\": {\n \"allOf\": - [\n {\n \"$ref\": + of online api apps known to the application. An online api app is actively + heartbeating and can serve the rest api to clients.\"\n },\n + \ \"online_content_apps\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/ContentAppStatusResponse\"\n },\n + \ \"description\": \"List of online content apps known + to the application. An online content app is actively heartbeating and can + serve data to clients.\"\n },\n \"database_connection\": + {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/DatabaseConnectionResponse\"\n }\n \ ],\n \"description\": \"Database connection information\"\n },\n \"redis_connection\": @@ -27524,38 +44956,59 @@ interactions: {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/StorageResponse\"\n }\n \ ],\n \"description\": \"Storage - information\"\n }\n },\n \"required\": - [\n \"database_connection\",\n \"online_content_apps\",\n - \ \"online_workers\",\n \"versions\"\n - \ ]\n },\n \"StorageResponse\": {\n \"type\": + information\"\n },\n \"content_settings\": + {\n \"allOf\": [\n {\n \"$ref\": + \"#/components/schemas/ContentSettingsResponse\"\n }\n + \ ],\n \"description\": \"Content-app + settings\"\n },\n \"domain_enabled\": + {\n \"type\": \"boolean\",\n \"description\": + \"Is Domains enabled\"\n }\n },\n \"required\": + [\n \"content_settings\",\n \"database_connection\",\n + \ \"domain_enabled\",\n \"online_api_apps\",\n + \ \"online_content_apps\",\n \"online_workers\",\n + \ \"versions\"\n ]\n },\n \"StorageClassEnum\": + {\n \"enum\": [\n \"pulpcore.app.models.storage.FileSystem\",\n + \ \"storages.backends.s3boto3.S3Boto3Storage\",\n \"storages.backends.azure_storage.AzureStorage\"\n + \ ],\n \"type\": \"string\",\n \"description\": + \"* `pulpcore.app.models.storage.FileSystem` - Use local filesystem as storage\\n* + `storages.backends.s3boto3.S3Boto3Storage` - Use Amazon S3 as storage\\n* + `storages.backends.azure_storage.AzureStorage` - Use Azure Blob as storage\"\n + \ },\n \"StorageResponse\": {\n \"type\": \"object\",\n \"description\": \"Serializer for information about the storage system\",\n \"properties\": {\n \"total\": - {\n \"type\": \"integer\",\n \"minimum\": - 0,\n \"description\": \"Total number of bytes\"\n },\n + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of bytes\",\n \"minimum\": 0\n },\n \ \"used\": {\n \"type\": \"integer\",\n - \ \"minimum\": 0,\n \"description\": - \"Number of bytes in use\"\n },\n \"free\": - {\n \"type\": \"integer\",\n \"minimum\": - 0,\n \"description\": \"Number of free bytes\"\n }\n + \ \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Number of bytes in use\",\n + \ \"minimum\": 0\n },\n \"free\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Number of free bytes\",\n \"minimum\": 0\n }\n \ },\n \"required\": [\n \"free\",\n \ \"total\",\n \"used\"\n ]\n \ },\n \"SummaryResponse\": {\n \"type\": \"object\",\n \"description\": \"A Serializer for summary information of an index.\",\n \"properties\": {\n \"projects\": - {\n \"type\": \"integer\",\n \"description\": - \"Number of Python projects in index\"\n },\n \"releases\": - {\n \"type\": \"integer\",\n \"description\": - \"Number of Python distribution releases in index\"\n },\n - \ \"files\": {\n \"type\": \"integer\",\n - \ \"description\": \"Number of files for all distributions - in index\"\n }\n },\n \"required\": - [\n \"files\",\n \"projects\",\n \"releases\"\n - \ ]\n },\n \"SyncPolicyEnum\": {\n \"enum\": - [\n \"additive\",\n \"mirror_complete\",\n + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"description\": \"Number of Python projects + in index\"\n },\n \"releases\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"description\": \"Number of Python distribution + releases in index\"\n },\n \"files\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"description\": \"Number of files for + all distributions in index\"\n }\n },\n + \ \"required\": [\n \"files\",\n \"projects\",\n + \ \"releases\"\n ]\n },\n \"SyncPolicyEnum\": + {\n \"enum\": [\n \"additive\",\n \"mirror_complete\",\n \ \"mirror_content_only\"\n ],\n \"type\": - \"string\"\n },\n \"TagCopy\": {\n \"type\": - \"object\",\n \"description\": \"Serializer for copying tags - from a source repository to a destination repository.\",\n \"properties\": + \"string\",\n \"description\": \"* `additive` - additive\\n* + `mirror_complete` - mirror_complete\\n* `mirror_content_only` - mirror_content_only\"\n + \ },\n \"TagCopy\": {\n \"type\": \"object\",\n + \ \"description\": \"Serializer for copying tags from a source + repository to a destination repository.\",\n \"properties\": {\n \"source_repository\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"title\": \"Repository\",\n \"description\": \"A URI of the repository @@ -27579,8 +45032,10 @@ interactions: \ },\n \"TagResponse\": {\n \"type\": \"object\",\n \"description\": \"A serializer for the Tag model.\",\n \ \"properties\": {\n \"name\": {\n \"type\": - \"string\",\n \"readOnly\": true\n }\n - \ }\n },\n \"TaskGroupOperationResponse\": + \"string\",\n \"readOnly\": true\n },\n + \ \"count\": {\n \"type\": \"integer\",\n + \ \"format\": \"int64\",\n \"readOnly\": + true\n }\n }\n },\n \"TaskGroupOperationResponse\": {\n \"type\": \"object\",\n \"description\": \"Serializer for asynchronous operations that return a task group.\",\n \"properties\": {\n \"task_group\": {\n \"type\": @@ -27602,23 +45057,27 @@ interactions: {\n \"type\": \"boolean\",\n \"description\": \"Whether all tasks have been spawned for this task group.\"\n },\n \ \"waiting\": {\n \"type\": \"integer\",\n - \ \"readOnly\": true,\n \"description\": - \"Number of tasks in the 'waiting' state\"\n },\n \"skipped\": - {\n \"type\": \"integer\",\n \"readOnly\": + \ \"format\": \"int64\",\n \"readOnly\": + true,\n \"description\": \"Number of tasks in the 'waiting' + state\"\n },\n \"skipped\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"readOnly\": true,\n \"description\": \"Number of tasks in the 'skipped' state\"\n },\n \"running\": {\n \"type\": - \"integer\",\n \"readOnly\": true,\n \"description\": - \"Number of tasks in the 'running' state\"\n },\n \"completed\": - {\n \"type\": \"integer\",\n \"readOnly\": + \"integer\",\n \"format\": \"int64\",\n \"readOnly\": + true,\n \"description\": \"Number of tasks in the 'running' + state\"\n },\n \"completed\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"readOnly\": true,\n \"description\": \"Number of tasks in the 'completed' state\"\n },\n \"canceled\": {\n \"type\": - \"integer\",\n \"readOnly\": true,\n \"description\": - \"Number of tasks in the 'canceled' state\"\n },\n \"failed\": - {\n \"type\": \"integer\",\n \"readOnly\": + \"integer\",\n \"format\": \"int64\",\n \"readOnly\": + true,\n \"description\": \"Number of tasks in the 'canceled' + state\"\n },\n \"failed\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"readOnly\": true,\n \"description\": \"Number of tasks in the 'failed' state\"\n },\n \"canceling\": {\n \"type\": - \"integer\",\n \"readOnly\": true,\n \"description\": - \"Number of tasks in the 'canceling' state\"\n },\n \"group_progress_reports\": + \"integer\",\n \"format\": \"int64\",\n \"readOnly\": + true,\n \"description\": \"Number of tasks in the 'canceling' + state\"\n },\n \"group_progress_reports\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/GroupProgressReportResponse\"\n \ },\n \"readOnly\": true\n },\n @@ -27647,20 +45106,23 @@ interactions: \ \"description\": \"The name of task.\"\n },\n \ \"logging_cid\": {\n \"type\": \"string\",\n \"description\": \"The logging correlation - id associated with this task\"\n },\n \"started_at\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"readOnly\": true,\n \"description\": - \"Timestamp of the when this task started execution.\"\n },\n - \ \"finished_at\": {\n \"type\": + id associated with this task\"\n },\n \"created_by\": + {\n \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"User who dispatched this + task.\"\n },\n \"started_at\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of the when this - task stopped execution.\"\n },\n \"error\": - {\n \"type\": \"object\",\n \"additionalProperties\": - {\n \"type\": \"object\"\n },\n - \ \"readOnly\": true,\n \"description\": - \"A JSON Object of a fatal error encountered during the execution of this - task.\"\n },\n \"worker\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"readOnly\": + task started execution.\"\n },\n \"finished_at\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\",\n \"readOnly\": true,\n \"description\": + \"Timestamp of the when this task stopped execution.\"\n },\n + \ \"error\": {\n \"type\": \"object\",\n + \ \"additionalProperties\": {\n \"type\": + \"object\"\n },\n \"readOnly\": + true,\n \"description\": \"A JSON Object of a fatal + error encountered during the execution of this task.\"\n },\n + \ \"worker\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"readOnly\": true,\n \"description\": \"The worker associated with this task. This field is empty if a worker is not yet assigned.\"\n },\n \ \"parent_task\": {\n \"type\": @@ -27705,10 +45167,11 @@ interactions: schedule.\"\n },\n \"task_name\": {\n \ \"type\": \"string\",\n \"description\": \"The name of the task to be scheduled.\"\n },\n \"dispatch_interval\": - {\n \"type\": \"string\",\n \"description\": - \"Periodicity of the schedule.\"\n },\n \"next_dispatch\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"readOnly\": true,\n \"description\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"Periodicity of the schedule.\"\n + \ },\n \"next_dispatch\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"nullable\": true,\n \"description\": \"Timestamp of the next time the task will be dispatched.\"\n },\n \ \"last_task\": {\n \"type\": \"string\",\n \ \"format\": \"uri\",\n \"readOnly\": @@ -27727,16 +45190,21 @@ interactions: \ \"type\": \"object\",\n \"description\": \"A serializer for unpaginated CollectionVersion.\",\n \"properties\": {\n \"version\": {\n \"type\": \"string\",\n - \ \"readOnly\": true\n },\n \"href\": - {\n \"type\": \"string\",\n \"readOnly\": - true\n },\n \"created_at\": {\n \"type\": - \"string\",\n \"format\": \"date-time\"\n },\n + \ \"maxLength\": 128\n },\n \"href\": + {\n \"type\": \"string\",\n \"description\": + \"Get href.\",\n \"readOnly\": true\n },\n + \ \"created_at\": {\n \"type\": \"string\",\n + \ \"format\": \"date-time\"\n },\n \ \"updated_at\": {\n \"type\": \"string\",\n \ \"format\": \"date-time\"\n },\n \ \"requires_ansible\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"maxLength\": - 255\n },\n \"artifact\": {\n \"allOf\": - [\n {\n \"$ref\": + 255\n },\n \"marks\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n },\n \"description\": + \"Get a list of mark values filtering only those in the current repo.\",\n + \ \"readOnly\": true\n },\n \"artifact\": + {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/ArtifactRefResponse\"\n }\n \ ],\n \"readOnly\": true\n },\n \ \"collection\": {\n \"allOf\": @@ -27744,44 +45212,65 @@ interactions: \"#/components/schemas/CollectionRefResponse\"\n }\n \ ],\n \"readOnly\": true\n },\n \ \"download_url\": {\n \"type\": - \"string\",\n \"readOnly\": true\n },\n + \"string\",\n \"description\": \"Get artifact download + URL.\",\n \"readOnly\": true\n },\n \ \"name\": {\n \"type\": \"string\",\n \ \"readOnly\": true\n },\n \"namespace\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/CollectionNamespaceResponse\"\n }\n \ ],\n \"readOnly\": true\n },\n - \ \"signatures\": {\n \"type\": \"string\",\n - \ \"readOnly\": true\n },\n \"metadata\": - {\n \"allOf\": [\n {\n \"$ref\": + \ \"signatures\": {\n \"type\": \"array\",\n + \ \"items\": {\n \"$ref\": + \"#/components/schemas/CollectionVersionSignatureResponse\"\n }\n + \ },\n \"metadata\": {\n \"allOf\": + [\n {\n \"$ref\": \"#/components/schemas/CollectionMetadataResponse\"\n }\n \ ],\n \"readOnly\": true\n },\n \ \"git_url\": {\n \"type\": \"string\",\n - \ \"readOnly\": true\n },\n \"git_commit_sha\": - {\n \"type\": \"string\",\n \"readOnly\": - true\n }\n },\n \"required\": - [\n \"created_at\",\n \"updated_at\"\n - \ ]\n },\n \"Upload\": {\n \"type\": - \"object\",\n \"description\": \"Serializer for chunked uploads.\",\n - \ \"properties\": {\n \"size\": {\n \"type\": - \"integer\",\n \"description\": \"The size of the upload - in bytes.\"\n }\n },\n \"required\": - [\n \"size\"\n ]\n },\n \"UploadChunk\": + \ \"description\": \"Get the git URL.\",\n \"readOnly\": + true\n },\n \"git_commit_sha\": {\n + \ \"type\": \"string\",\n \"description\": + \"Get the git commit sha.\",\n \"readOnly\": true\n + \ }\n },\n \"required\": [\n + \ \"created_at\",\n \"signatures\",\n + \ \"updated_at\",\n \"version\"\n ]\n + \ },\n \"UnsetLabel\": {\n \"type\": \"object\",\n + \ \"description\": \"Serializer for synchronously setting a + label.\",\n \"properties\": {\n \"key\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"pattern\": \"^[-a-zA-Z0-9_]+$\"\n }\n + \ },\n \"required\": [\n \"key\"\n + \ ]\n },\n \"UnsetLabelResponse\": {\n + \ \"type\": \"object\",\n \"description\": \"Serializer + for synchronously setting a label.\",\n \"properties\": {\n + \ \"key\": {\n \"type\": \"string\",\n + \ \"pattern\": \"^[-a-zA-Z0-9_]+$\"\n },\n + \ \"value\": {\n \"type\": \"string\",\n + \ \"readOnly\": true\n }\n },\n + \ \"required\": [\n \"key\"\n ]\n + \ },\n \"Upload\": {\n \"type\": \"object\",\n + \ \"description\": \"Serializer for chunked uploads.\",\n \"properties\": + {\n \"size\": {\n \"type\": \"integer\",\n + \ \"format\": \"int64\",\n \"description\": + \"The size of the upload in bytes.\"\n }\n },\n + \ \"required\": [\n \"size\"\n ]\n + \ },\n \"UploadChunk\": {\n \"type\": + \"object\",\n \"description\": \"A mixin for validating unknown + serializers' fields.\",\n \"properties\": {\n \"file\": + {\n \"type\": \"string\",\n \"format\": + \"binary\",\n \"writeOnly\": true,\n \"description\": + \"A chunk of the uploaded file.\"\n },\n \"sha256\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The SHA-256 checksum of the + chunk if available.\"\n }\n },\n \"required\": + [\n \"file\"\n ]\n },\n \"UploadChunkResponse\": {\n \"type\": \"object\",\n \"description\": \"A mixin for validating unknown serializers' fields.\",\n \"properties\": - {\n \"file\": {\n \"type\": \"string\",\n - \ \"format\": \"binary\",\n \"writeOnly\": - true,\n \"description\": \"A chunk of the uploaded - file.\"\n },\n \"sha256\": {\n \"type\": - \"string\",\n \"writeOnly\": true,\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"The SHA-256 checksum of the chunk if available.\"\n }\n - \ },\n \"required\": [\n \"file\"\n - \ ]\n },\n \"UploadChunkResponse\": {\n - \ \"type\": \"object\",\n \"description\": \"A - mixin for validating unknown serializers' fields.\",\n \"properties\": {\n \"offset\": {\n \"type\": \"integer\",\n - \ \"readOnly\": true\n },\n \"size\": - {\n \"type\": \"integer\",\n \"readOnly\": + \ \"format\": \"int64\",\n \"readOnly\": + true\n },\n \"size\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"readOnly\": true\n }\n }\n },\n \"UploadCommit\": {\n \"type\": \"object\",\n \"description\": \"A mixin for validating unknown serializers' fields.\",\n \"properties\": @@ -27798,9 +45287,9 @@ interactions: \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"size\": {\n \"type\": - \"integer\",\n \"description\": \"The size of the upload - in bytes.\"\n },\n \"completed\": {\n - \ \"type\": \"string\",\n \"format\": + \"integer\",\n \"format\": \"int64\",\n \"description\": + \"The size of the upload in bytes.\"\n },\n \"completed\": + {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp when upload is committed.\"\n },\n \"chunks\": {\n \"type\": \"array\",\n \"items\": @@ -27815,16 +45304,103 @@ interactions: \ \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n - \ },\n \"size\": {\n \"type\": - \"integer\",\n \"description\": \"The size of the upload - in bytes.\"\n },\n \"completed\": {\n - \ \"type\": \"string\",\n \"format\": + \ },\n \"size\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"description\": + \"The size of the upload in bytes.\"\n },\n \"completed\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\",\n \"readOnly\": true,\n \"description\": + \"Timestamp when upload is committed.\"\n }\n },\n + \ \"required\": [\n \"size\"\n ]\n + \ },\n \"UpstreamPulp\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for a Server.\",\n + \ \"properties\": {\n \"name\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"A unique name for this Pulp server.\"\n },\n \"base_url\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The transport, hostname, and + an optional port of the Pulp server. e.g. https://example.com\"\n },\n + \ \"api_root\": {\n \"type\": \"string\",\n + \ \"minLength\": 1,\n \"description\": + \"The API root. Defaults to '/pulp/'.\"\n },\n \"domain\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The domain of the Pulp server if enabled.\"\n },\n \"ca_cert\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded CA certificate used to validate the server certificate presented + by the remote server.\"\n },\n \"client_cert\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded client certificate used for authentication.\"\n },\n + \ \"client_key\": {\n \"type\": \"string\",\n + \ \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded private key used for authentication.\"\n },\n + \ \"tls_validation\": {\n \"type\": + \"boolean\",\n \"description\": \"If True, TLS peer + validation must be performed.\"\n },\n \"username\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The username to be used for + authentication when syncing.\"\n },\n \"password\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The password to be used for + authentication when syncing. Extra leading and trailing whitespace characters + are not trimmed.\"\n },\n \"pulp_label_select\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"One or more comma separated + labels that will be used to filter distributions on the upstream Pulp. E.g. + \\\"foo=bar,key=val\\\" or \\\"foo,key\\\"\"\n }\n },\n + \ \"required\": [\n \"api_root\",\n \"base_url\",\n + \ \"name\"\n ]\n },\n \"UpstreamPulpResponse\": + {\n \"type\": \"object\",\n \"description\": + \"Serializer for a Server.\",\n \"properties\": {\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name for + this Pulp server.\"\n },\n \"base_url\": + {\n \"type\": \"string\",\n \"description\": + \"The transport, hostname, and an optional port of the Pulp server. e.g. https://example.com\"\n + \ },\n \"api_root\": {\n \"type\": + \"string\",\n \"description\": \"The API root. Defaults + to '/pulp/'.\"\n },\n \"domain\": {\n + \ \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"The domain of the Pulp server + if enabled.\"\n },\n \"ca_cert\": {\n + \ \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"A PEM encoded CA certificate + used to validate the server certificate presented by the remote server.\"\n + \ },\n \"client_cert\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"description\": + \"A PEM encoded client certificate used for authentication.\"\n },\n + \ \"tls_validation\": {\n \"type\": + \"boolean\",\n \"description\": \"If True, TLS peer + validation must be performed.\"\n },\n \"pulp_last_updated\": + {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": - \"Timestamp when upload is committed.\"\n }\n },\n - \ \"required\": [\n \"size\"\n ]\n - \ },\n \"User\": {\n \"type\": \"object\",\n - \ \"description\": \"Serializer for User.\",\n \"properties\": - {\n \"username\": {\n \"type\": + \"Timestamp of the most recent update of the remote.\"\n },\n + \ \"hidden_fields\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"object\",\n \"properties\": {\n \"name\": + {\n \"type\": \"string\"\n },\n + \ \"is_set\": {\n \"type\": + \"boolean\"\n }\n }\n + \ },\n \"readOnly\": true,\n + \ \"description\": \"List of hidden (write only) fields\"\n + \ },\n \"pulp_label_select\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"description\": + \"One or more comma separated labels that will be used to filter distributions + on the upstream Pulp. E.g. \\\"foo=bar,key=val\\\" or \\\"foo,key\\\"\"\n + \ }\n },\n \"required\": [\n + \ \"api_root\",\n \"base_url\",\n \"name\"\n + \ ]\n },\n \"User\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for User.\",\n + \ \"properties\": {\n \"username\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.\",\n \ \"maxLength\": 150\n },\n \"password\": @@ -27866,14 +45442,14 @@ interactions: {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \ \"id\": {\n \"type\": \"integer\",\n - \ \"readOnly\": true\n },\n \"username\": - {\n \"type\": \"string\",\n \"description\": - \"Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.\",\n - \ \"maxLength\": 150\n },\n \"first_name\": - {\n \"type\": \"string\",\n \"description\": - \"First name\",\n \"maxLength\": 150\n },\n - \ \"last_name\": {\n \"type\": \"string\",\n - \ \"description\": \"Last name\",\n \"maxLength\": + \ \"format\": \"int64\",\n \"readOnly\": + true\n },\n \"username\": {\n \"type\": + \"string\",\n \"description\": \"Required. 150 characters + or fewer. Letters, digits and @/./+/-/_ only.\",\n \"maxLength\": + 150\n },\n \"first_name\": {\n \"type\": + \"string\",\n \"description\": \"First name\",\n \"maxLength\": + 150\n },\n \"last_name\": {\n \"type\": + \"string\",\n \"description\": \"Last name\",\n \"maxLength\": 150\n },\n \"email\": {\n \"type\": \"string\",\n \"format\": \"email\",\n \"description\": \"Email address\"\n },\n \"is_staff\": @@ -27888,21 +45464,34 @@ interactions: \"Date joined\"\n },\n \"groups\": {\n \ \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/UserGroupResponse\"\n - \ },\n \"readOnly\": true\n }\n - \ },\n \"required\": [\n \"username\"\n - \ ]\n },\n \"UserRole\": {\n \"type\": - \"object\",\n \"description\": \"Serializer for UserRole.\",\n - \ \"properties\": {\n \"role\": {\n \"type\": - \"string\"\n },\n \"content_object\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"pulp_href of the object for which role permissions should be asserted. If - set to 'null', permissions will act on the model-level.\"\n }\n - \ },\n \"required\": [\n \"content_object\",\n - \ \"role\"\n ]\n },\n \"UserRoleResponse\": + \ },\n \"readOnly\": true\n },\n + \ \"hidden_fields\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"object\",\n \"properties\": {\n \"name\": + {\n \"type\": \"string\"\n },\n + \ \"is_set\": {\n \"type\": + \"boolean\"\n }\n }\n + \ },\n \"readOnly\": true,\n + \ \"description\": \"List of hidden (write only) fields\"\n + \ }\n },\n \"required\": [\n + \ \"username\"\n ]\n },\n \"UserRole\": {\n \"type\": \"object\",\n \"description\": - \"Serializer for UserRole.\",\n \"properties\": {\n \"pulp_href\": + \"Serializer for UserRole.\",\n \"properties\": {\n \"role\": + {\n \"type\": \"string\",\n \"minLength\": + 1\n },\n \"content_object\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"pulp_href of the object for + which role permissions should be asserted. If set to 'null', permissions will + act on either domain or model-level.\"\n },\n \"domain\": {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"Domain this role should be applied on, mutually exclusive with content_object.\"\n + \ }\n },\n \"required\": [\n + \ \"content_object\",\n \"role\"\n ]\n + \ },\n \"UserRoleResponse\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for UserRole.\",\n + \ \"properties\": {\n \"pulp_href\": {\n + \ \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \ \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": @@ -27912,42 +45501,45 @@ interactions: {\n \"type\": \"string\",\n \"nullable\": true,\n \"description\": \"pulp_href of the object for which role permissions should be asserted. If set to 'null', permissions - will act on the model-level.\"\n },\n \"description\": + will act on either domain or model-level.\"\n },\n \"description\": {\n \"type\": \"string\",\n \"readOnly\": true\n },\n \"permissions\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n },\n \"readOnly\": - true\n }\n },\n \"required\": - [\n \"content_object\",\n \"role\"\n - \ ]\n },\n \"VariantResponse\": {\n \"type\": - \"object\",\n \"description\": \"Variant serializer.\",\n \"properties\": - {\n \"variant_id\": {\n \"type\": - \"string\",\n \"description\": \"Variant id.\"\n },\n - \ \"uid\": {\n \"type\": \"string\",\n - \ \"description\": \"Variant uid.\"\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"description\": \"Variant name.\"\n },\n - \ \"type\": {\n \"type\": \"string\",\n - \ \"description\": \"Variant type.\"\n },\n - \ \"packages\": {\n \"type\": \"string\",\n - \ \"description\": \"Relative path to directory with - binary RPMs.\"\n },\n \"source_packages\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"description\": \"Relative path to directory - with source RPMs.\"\n },\n \"source_repository\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"description\": \"Relative path to YUM repository - with source RPMs.\"\n },\n \"debug_packages\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"description\": \"Relative path to directory - with debug RPMs.\"\n },\n \"debug_repository\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"description\": \"Relative path to YUM repository - with debug RPMs.\"\n },\n \"identity\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"description\": \"Relative path to a pem file - that identifies a product.\"\n }\n },\n - \ \"required\": [\n \"debug_packages\",\n + true\n },\n \"domain\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"Domain this role should + be applied on, mutually exclusive with content_object.\"\n }\n + \ },\n \"required\": [\n \"content_object\",\n + \ \"role\"\n ]\n },\n \"VariantResponse\": + {\n \"type\": \"object\",\n \"description\": + \"Variant serializer.\",\n \"properties\": {\n \"variant_id\": + {\n \"type\": \"string\",\n \"description\": + \"Variant id.\"\n },\n \"uid\": {\n + \ \"type\": \"string\",\n \"description\": + \"Variant uid.\"\n },\n \"name\": {\n + \ \"type\": \"string\",\n \"description\": + \"Variant name.\"\n },\n \"type\": {\n + \ \"type\": \"string\",\n \"description\": + \"Variant type.\"\n },\n \"packages\": + {\n \"type\": \"string\",\n \"description\": + \"Relative path to directory with binary RPMs.\"\n },\n + \ \"source_packages\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"description\": + \"Relative path to directory with source RPMs.\"\n },\n + \ \"source_repository\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"description\": + \"Relative path to YUM repository with source RPMs.\"\n },\n + \ \"debug_packages\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"description\": + \"Relative path to directory with debug RPMs.\"\n },\n + \ \"debug_repository\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"description\": + \"Relative path to YUM repository with debug RPMs.\"\n },\n + \ \"identity\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"description\": + \"Relative path to a pem file that identifies a product.\"\n }\n + \ },\n \"required\": [\n \"debug_packages\",\n \ \"debug_repository\",\n \"identity\",\n \ \"name\",\n \"packages\",\n \"source_packages\",\n \ \"source_repository\",\n \"type\",\n @@ -27960,16 +45552,22 @@ interactions: {\n \"type\": \"string\",\n \"description\": \"Version of the component (e.g. 3.0.0)\"\n },\n \"package\": {\n \"type\": \"string\",\n \"description\": - \"Python package name providing the component\"\n }\n },\n - \ \"required\": [\n \"component\",\n \"package\",\n - \ \"version\"\n ]\n },\n \"WorkerResponse\": - {\n \"type\": \"object\",\n \"description\": - \"Base serializer for use with :class:`pulpcore.app.models.Model`\\n\\nThis - ensures that all Serializers provide values for the 'pulp_href` field.\\n\\nThe - class provides a default for the ``ref_name`` attribute in the\\nModelSerializers's - ``Meta`` class. This ensures that the OpenAPI definitions\\nof plugins are - namespaced properly.\",\n \"properties\": {\n \"pulp_href\": - {\n \"type\": \"string\",\n \"format\": + \"Python package name providing the component\"\n },\n + \ \"module\": {\n \"type\": \"string\",\n + \ \"description\": \"Python module name of the component\"\n + \ },\n \"domain_compatible\": {\n \"type\": + \"boolean\",\n \"description\": \"Domain feature compatibility + of component\"\n }\n },\n \"required\": + [\n \"component\",\n \"domain_compatible\",\n + \ \"module\",\n \"package\",\n \"version\"\n + \ ]\n },\n \"WorkerResponse\": {\n \"type\": + \"object\",\n \"description\": \"Base serializer for use with + :class:`pulpcore.app.models.Model`\\n\\nThis ensures that all Serializers + provide values for the 'pulp_href` field.\\n\\nThe class provides a default + for the ``ref_name`` attribute in the\\nModelSerializers's ``Meta`` class. + This ensures that the OpenAPI definitions\\nof plugins are namespaced properly.\",\n + \ \"properties\": {\n \"pulp_href\": {\n + \ \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \ \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": @@ -27980,24 +45578,28 @@ interactions: {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of the last time the worker talked to the service.\"\n },\n - \ \"current_task\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"readOnly\": - true,\n \"description\": \"The task this worker is - currently executing, or empty if the worker is not currently assigned to a - task.\"\n }\n }\n },\n \"ansible.AnsibleDistribution\": - {\n \"type\": \"object\",\n \"description\": - \"Serializer for Ansible Distributions.\",\n \"properties\": - {\n \"base_path\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"The base (relative) path component of the published url. Avoid paths that - \ overlap with other distribution base paths (e.g. \\\"foo\\\" - and \\\"foo/bar\\\")\"\n },\n \"content_guard\": + \ \"versions\": {\n \"type\": \"object\",\n + \ \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n },\n + \ \"readOnly\": true,\n \"description\": + \"Versions of the components installed.\"\n },\n \"current_task\": {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"nullable\": true,\n \"description\": - \"An optional content-guard.\"\n },\n \"name\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"A unique name. Ex, `rawhide` - and `stable`.\"\n },\n \"repository\": + \"uri\",\n \"readOnly\": true,\n \"description\": + \"The task this worker is currently executing, or empty if the worker is not + currently assigned to a task.\"\n }\n }\n + \ },\n \"ansible.AnsibleDistribution\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for Ansible Distributions.\",\n + \ \"properties\": {\n \"base_path\": {\n + \ \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The base (relative) path component + of the published url. Avoid paths that overlap with other + distribution base paths (e.g. \\\"foo\\\" and \\\"foo/bar\\\")\"\n },\n + \ \"content_guard\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"An optional content-guard.\"\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"The latest RepositoryVersion for this Repository will be served.\"\n },\n @@ -28005,7 +45607,9 @@ interactions: \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"RepositoryVersion to be served\"\n },\n \"pulp_labels\": {\n - \ \"type\": \"object\"\n }\n },\n + \ \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n }\n },\n \ \"required\": [\n \"base_path\",\n \"name\"\n \ ]\n },\n \"ansible.AnsibleDistributionResponse\": {\n \"type\": \"object\",\n \"description\": @@ -28032,35 +45636,97 @@ interactions: \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"RepositoryVersion to be served\"\n },\n \"client_url\": {\n - \ \"type\": \"string\",\n \"readOnly\": - true,\n \"description\": \"The URL of a Collection - content source.\"\n },\n \"pulp_labels\": - {\n \"type\": \"object\"\n }\n },\n - \ \"required\": [\n \"base_path\",\n \"name\"\n - \ ]\n },\n \"ansible.AnsibleRepository\": + \ \"type\": \"string\",\n \"description\": + \"The URL of a Collection content source.\",\n \"readOnly\": + true\n },\n \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ }\n },\n \"required\": [\n + \ \"base_path\",\n \"name\"\n ]\n + \ },\n \"ansible.AnsibleNamespaceMetadata\": {\n \"type\": + \"object\",\n \"description\": \"A serializer for Namespaces.\",\n + \ \"properties\": {\n \"name\": {\n \"type\": + \"string\",\n \"minLength\": 3,\n \"description\": + \"Required named, only accepts lowercase, numbers and underscores.\",\n \"maxLength\": + 64,\n \"pattern\": \"^(?!.*__)[a-z]+[0-9a-z_]*$\"\n + \ },\n \"company\": {\n \"type\": + \"string\",\n \"description\": \"Optional namespace + company owner.\",\n \"maxLength\": 64\n },\n + \ \"email\": {\n \"type\": \"string\",\n + \ \"description\": \"Optional namespace contact email.\",\n + \ \"maxLength\": 256\n },\n \"description\": + {\n \"type\": \"string\",\n \"description\": + \"Optional short description.\",\n \"maxLength\": 256\n + \ },\n \"resources\": {\n \"type\": + \"string\",\n \"description\": \"Optional resource + page in markdown format.\"\n },\n \"links\": + {\n \"type\": \"array\",\n \"items\": + {\n \"$ref\": \"#/components/schemas/NamespaceLink\"\n + \ },\n \"description\": \"Labeled + related links.\"\n },\n \"avatar\": + {\n \"type\": \"string\",\n \"format\": + \"binary\",\n \"writeOnly\": true,\n \"description\": + \"Optional avatar image for Namespace\"\n }\n },\n + \ \"required\": [\n \"name\"\n ]\n + \ },\n \"ansible.AnsibleNamespaceMetadataResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for Namespaces.\",\n \"properties\": {\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"name\": {\n \"type\": \"string\",\n + \ \"description\": \"Required named, only accepts lowercase, + numbers and underscores.\",\n \"maxLength\": 64,\n + \ \"minLength\": 3,\n \"pattern\": + \"^(?!.*__)[a-z]+[0-9a-z_]*$\"\n },\n \"company\": + {\n \"type\": \"string\",\n \"description\": + \"Optional namespace company owner.\",\n \"maxLength\": + 64\n },\n \"email\": {\n \"type\": + \"string\",\n \"description\": \"Optional namespace + contact email.\",\n \"maxLength\": 256\n },\n + \ \"description\": {\n \"type\": + \"string\",\n \"description\": \"Optional short description.\",\n + \ \"maxLength\": 256\n },\n \"resources\": + {\n \"type\": \"string\",\n \"description\": + \"Optional resource page in markdown format.\"\n },\n \"links\": + {\n \"type\": \"array\",\n \"items\": + {\n \"$ref\": \"#/components/schemas/NamespaceLinkResponse\"\n + \ },\n \"description\": \"Labeled + related links.\"\n },\n \"avatar_sha256\": + {\n \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"SHA256 digest of avatar + image if present.\",\n \"maxLength\": 64\n },\n + \ \"avatar_url\": {\n \"type\": \"string\",\n + \ \"readOnly\": true,\n \"description\": + \"Download link for avatar image if present.\"\n },\n \"metadata_sha256\": + {\n \"type\": \"string\",\n \"readOnly\": + true\n }\n },\n \"required\": + [\n \"name\"\n ]\n },\n \"ansible.AnsibleRepository\": {\n \"type\": \"object\",\n \"description\": \"Serializer for Ansible Repositories.\",\n \"properties\": {\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"A unique name for this repository.\"\n },\n \"description\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n },\n \"last_synced_metadata_time\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"nullable\": true,\n \"description\": - \"Last synced metadata time.\"\n },\n \"gpgkey\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"Gpg public key to verify collection signatures against\"\n }\n + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"last_synced_metadata_time\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"nullable\": + true,\n \"description\": \"Last synced metadata time.\"\n + \ },\n \"gpgkey\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"Gpg public key to verify collection + signatures against\"\n },\n \"private\": + {\n \"type\": \"boolean\"\n }\n \ },\n \"required\": [\n \"name\"\n \ ]\n },\n \"ansible.AnsibleRepositoryResponse\": {\n \"type\": \"object\",\n \"description\": @@ -28073,33 +45739,38 @@ interactions: \ },\n \"versions_href\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"latest_version_href\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"latest_version_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name for + this repository.\"\n },\n \"description\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"readOnly\": true\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"description\": \"A unique name for this repository.\"\n - \ },\n \"description\": {\n \"type\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"last_synced_metadata_time\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"nullable\": + true,\n \"description\": \"Last synced metadata time.\"\n + \ },\n \"gpgkey\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"description\": - \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n },\n \"last_synced_metadata_time\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"nullable\": true,\n \"description\": - \"Last synced metadata time.\"\n },\n \"gpgkey\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"description\": \"Gpg public key to verify - collection signatures against\"\n }\n },\n - \ \"required\": [\n \"name\"\n ]\n - \ },\n \"ansible.Collection\": {\n \"type\": - \"object\",\n \"description\": \"A serializer for Ansible Collections.\",\n - \ \"properties\": {\n \"name\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": + \"Gpg public key to verify collection signatures against\"\n },\n + \ \"last_sync_task\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"private\": {\n \"type\": \"boolean\"\n + \ }\n },\n \"required\": [\n + \ \"name\"\n ]\n },\n \"ansible.Collection\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for Ansible Collections.\",\n \"properties\": + {\n \"name\": {\n \"type\": \"string\",\n + \ \"minLength\": 1,\n \"description\": \"The name of the Collection.\"\n },\n \"namespace\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"The namespace of the Collection.\"\n @@ -28148,31 +45819,35 @@ interactions: \"The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.\"\n },\n \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.\"\n },\n \"policy\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/PolicyDb6Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": - \"The policy to use when downloading content.\"\n },\n - \ \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + \"The policy to use when downloading content.\\n\\n* `immediate` - immediate\\n* + `When syncing, download all metadata and content now.` - When syncing, download + all metadata and content now.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -28186,20 +45861,20 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"requirements_file\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"The string version of Collection - requirements yaml.\"\n },\n \"auth_url\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"requirements_file\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": - \"The URL to receive a session token from, e.g. used with Automation Hub.\",\n - \ \"maxLength\": 255\n },\n \"token\": - {\n \"type\": \"string\",\n \"writeOnly\": - true,\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"The token key to use for authentication. - See https://docs.ansible.com/ansible/latest/user_guide/collections_using.html#configuring-the-ansible-galaxy-clientfor + \"The string version of Collection requirements yaml.\"\n },\n + \ \"auth_url\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The URL to receive a session + token from, e.g. used with Automation Hub.\",\n \"maxLength\": + 255\n },\n \"token\": {\n \"type\": + \"string\",\n \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The token key to use for authentication. See https://docs.ansible.com/ansible/latest/user_guide/collections_using.html#configuring-the-ansible-galaxy-clientfor more details\",\n \"maxLength\": 2000\n },\n \ \"sync_dependencies\": {\n \"type\": \"boolean\",\n \"default\": true,\n \"description\": @@ -28233,34 +45908,38 @@ interactions: {\n \"type\": \"string\",\n \"nullable\": true,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"pulp_last_updated\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"readOnly\": true,\n \"description\": - \"Timestamp of the most recent update of the remote.\"\n },\n - \ \"download_concurrency\": {\n \"type\": - \"integer\",\n \"minimum\": 1,\n \"nullable\": - true,\n \"description\": \"Total number of simultaneous - connections. If not set then the default value will be used.\"\n },\n + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"pulp_last_updated\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of the most recent + update of the remote.\"\n },\n \"download_concurrency\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n \ \"max_retries\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Maximum number of retry attempts after a download failure. If not set then - the default value (3) will be used.\"\n },\n \"policy\": - {\n \"allOf\": [\n {\n \"$ref\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": \"#/components/schemas/PolicyDb6Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": - \"The policy to use when downloading content.\"\n },\n - \ \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + \"The policy to use when downloading content.\\n\\n* `immediate` - immediate\\n* + `When syncing, download all metadata and content now.` - When syncing, download + all metadata and content now.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -28274,21 +45953,32 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"requirements_file\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"description\": - \"The string version of Collection requirements yaml.\"\n },\n - \ \"auth_url\": {\n \"type\": \"string\",\n - \ \"nullable\": true,\n \"description\": - \"The URL to receive a session token from, e.g. used with Automation Hub.\",\n - \ \"maxLength\": 255\n },\n \"sync_dependencies\": - {\n \"type\": \"boolean\",\n \"default\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"hidden_fields\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"name\": {\n \"type\": + \"string\"\n },\n \"is_set\": + {\n \"type\": \"boolean\"\n }\n + \ }\n },\n \"readOnly\": + true,\n \"description\": \"List of hidden (write only) + fields\"\n },\n \"requirements_file\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"The string version of Collection + requirements yaml.\"\n },\n \"auth_url\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"The URL to receive a session + token from, e.g. used with Automation Hub.\",\n \"maxLength\": + 255\n },\n \"sync_dependencies\": {\n + \ \"type\": \"boolean\",\n \"default\": true,\n \"description\": \"Sync dependencies for collections specified via requirements file\"\n },\n \"signed_only\": {\n \"type\": \"boolean\",\n \"default\": false,\n \"description\": \"Sync only collections that - have a signature\"\n }\n },\n \"required\": + have a signature\"\n },\n \"last_sync_task\": + {\n \"type\": \"string\",\n \"readOnly\": + true\n }\n },\n \"required\": [\n \"name\",\n \"url\"\n ]\n \ },\n \"ansible.CollectionResponse\": {\n \"type\": \"object\",\n \"description\": \"A serializer for Ansible Collections.\",\n @@ -28303,46 +45993,74 @@ interactions: Content.\",\n \"properties\": {\n \"file\": {\n \"type\": \"string\",\n \"format\": \"binary\",\n \"writeOnly\": true,\n \"description\": - \"An uploaded file that may be turned into the artifact of the content unit.\"\n - \ },\n \"repository\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"writeOnly\": - true,\n \"description\": \"A URI of a repository the - new content unit should be associated with.\"\n },\n \"upload\": + \"An uploaded file that may be turned into the content unit.\"\n },\n + \ \"artifact\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"description\": + \"Artifact file representing the physical content\"\n },\n + \ \"upload\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"writeOnly\": + true,\n \"description\": \"An uncommitted upload that + may be turned into the content unit.\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"writeOnly\": true,\n \"description\": - \"An uncommitted upload that may be turned into the artifact of the content - unit.\"\n },\n \"name\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"The name of the collection.\",\n \"maxLength\": 64\n - \ },\n \"namespace\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": + \"A URI of a repository the new content unit should be associated with.\"\n + \ },\n \"expected_name\": {\n \"type\": + \"string\",\n \"writeOnly\": true,\n \"minLength\": + 1,\n \"description\": \"The name of the collection.\",\n + \ \"maxLength\": 64\n },\n \"expected_namespace\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"minLength\": 1,\n \"description\": \"The namespace of the collection.\",\n \"maxLength\": - 64\n },\n \"version\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": + 64\n },\n \"expected_version\": {\n + \ \"type\": \"string\",\n \"writeOnly\": + true,\n \"minLength\": 1,\n \"description\": \"The version of the collection.\",\n \"maxLength\": - 128\n }\n },\n \"required\": - [\n \"name\",\n \"namespace\",\n \"version\"\n + 128\n }\n }\n },\n \"ansible.CollectionVersionMark\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for mark models.\",\n \"properties\": {\n \"marked_collection\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"description\": \"The content this mark + is pointing to.\"\n },\n \"value\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The string value of this mark.\",\n + \ \"pattern\": \"^[-a-zA-Z0-9_]+$\"\n }\n + \ },\n \"required\": [\n \"marked_collection\",\n + \ \"value\"\n ]\n },\n \"ansible.CollectionVersionMarkResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for mark models.\",\n \"properties\": {\n \"pulp_created\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\",\n \"readOnly\": true,\n \"description\": + \"Timestamp of creation.\"\n },\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"marked_collection\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"The content this mark is pointing to.\"\n },\n \"value\": + {\n \"type\": \"string\",\n \"description\": + \"The string value of this mark.\",\n \"pattern\": + \"^[-a-zA-Z0-9_]+$\"\n }\n },\n \"required\": + [\n \"marked_collection\",\n \"value\"\n \ ]\n },\n \"ansible.CollectionVersionResponse\": {\n \"type\": \"object\",\n \"description\": \"A serializer for CollectionVersion Content.\",\n \"properties\": - {\n \"pulp_href\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"readOnly\": - true\n },\n \"pulp_created\": {\n \"type\": + {\n \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"artifact\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"description\": \"Artifact file representing the physical content\"\n },\n - \ \"md5\": {\n \"type\": \"string\",\n - \ \"readOnly\": true,\n \"description\": - \"The MD5 checksum if available.\"\n },\n \"sha1\": + \ \"pulp_href\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"sha256\": {\n \"type\": + \"string\",\n \"readOnly\": true,\n \"description\": + \"The SHA-256 checksum if available.\"\n },\n \"md5\": {\n \"type\": \"string\",\n \"readOnly\": - true,\n \"description\": \"The SHA-1 checksum if available.\"\n - \ },\n \"sha224\": {\n \"type\": + true,\n \"description\": \"The MD5 checksum if available.\"\n + \ },\n \"sha1\": {\n \"type\": \"string\",\n \"readOnly\": true,\n \"description\": - \"The SHA-224 checksum if available.\"\n },\n \"sha256\": + \"The SHA-1 checksum if available.\"\n },\n \"sha224\": {\n \"type\": \"string\",\n \"readOnly\": - true,\n \"description\": \"The SHA-256 checksum if + true,\n \"description\": \"The SHA-224 checksum if available.\"\n },\n \"sha384\": {\n \ \"type\": \"string\",\n \"readOnly\": true,\n \"description\": \"The SHA-384 checksum if @@ -28350,86 +46068,90 @@ interactions: \ \"type\": \"string\",\n \"readOnly\": true,\n \"description\": \"The SHA-512 checksum if available.\"\n },\n \"id\": {\n \"type\": - \"string\",\n \"format\": \"uuid\",\n \"description\": - \"A collection identifier.\"\n },\n \"authors\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"maxLength\": - 64\n },\n \"description\": \"A - list of the CollectionVersion content's authors.\"\n },\n + \"string\",\n \"format\": \"uuid\",\n \"readOnly\": + true,\n \"description\": \"A collection identifier.\"\n + \ },\n \"authors\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"maxLength\": 64\n },\n + \ \"readOnly\": true,\n \"description\": + \"A list of the CollectionVersion content's authors.\"\n },\n \ \"contents\": {\n \"type\": \"object\",\n - \ \"description\": \"A JSON field with data about the - contents.\"\n },\n \"dependencies\": - {\n \"type\": \"object\",\n \"description\": - \"A dict declaring Collections that this collection requires to be installed - for it to be usable.\"\n },\n \"description\": - {\n \"type\": \"string\",\n \"description\": + \ \"readOnly\": true,\n \"description\": + \"A JSON field with data about the contents.\"\n },\n \"dependencies\": + {\n \"type\": \"object\",\n \"readOnly\": + true,\n \"description\": \"A dict declaring Collections + that this collection requires to be installed for it to be usable.\"\n },\n + \ \"description\": {\n \"type\": + \"string\",\n \"readOnly\": true,\n \"description\": \"A short summary description of the collection.\"\n },\n \ \"docs_blob\": {\n \"type\": \"object\",\n - \ \"description\": \"A JSON field holding the various - documentation blobs in the collection.\"\n },\n \"manifest\": - {\n \"type\": \"object\",\n \"description\": + \ \"readOnly\": true,\n \"description\": + \"A JSON field holding the various documentation blobs in the collection.\"\n + \ },\n \"manifest\": {\n \"type\": + \"object\",\n \"readOnly\": true,\n \"description\": \"A JSON field holding MANIFEST.json data.\"\n },\n \"files\": - {\n \"type\": \"object\",\n \"description\": - \"A JSON field holding FILES.json data.\"\n },\n \"documentation\": - {\n \"type\": \"string\",\n \"description\": - \"The URL to any online docs.\",\n \"maxLength\": 2000\n - \ },\n \"homepage\": {\n \"type\": - \"string\",\n \"description\": \"The URL to the homepage + {\n \"type\": \"object\",\n \"readOnly\": + true,\n \"description\": \"A JSON field holding FILES.json + data.\"\n },\n \"documentation\": {\n + \ \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"The URL to any online docs.\",\n + \ \"maxLength\": 2000\n },\n \"homepage\": + {\n \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"The URL to the homepage of the collection/project.\",\n \"maxLength\": 2000\n \ },\n \"issues\": {\n \"type\": - \"string\",\n \"description\": \"The URL to the collection - issue tracker.\",\n \"maxLength\": 2000\n },\n - \ \"license\": {\n \"type\": \"array\",\n - \ \"items\": {\n \"type\": + \"string\",\n \"readOnly\": true,\n \"description\": + \"The URL to the collection issue tracker.\",\n \"maxLength\": + 2000\n },\n \"license\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"string\",\n \"maxLength\": 32\n },\n - \ \"description\": \"A list of licenses for content - inside of a collection.\"\n },\n \"name\": - {\n \"type\": \"string\",\n \"description\": + \ \"readOnly\": true,\n \"description\": + \"A list of licenses for content inside of a collection.\"\n },\n + \ \"name\": {\n \"type\": \"string\",\n + \ \"readOnly\": true,\n \"description\": \"The name of the collection.\",\n \"maxLength\": 64\n \ },\n \"namespace\": {\n \"type\": - \"string\",\n \"description\": \"The namespace of the - collection.\",\n \"maxLength\": 64\n },\n - \ \"repository\": {\n \"type\": \"string\",\n - \ \"description\": \"The URL of the originating SCM - repository.\",\n \"maxLength\": 2000\n },\n + \"string\",\n \"readOnly\": true,\n \"description\": + \"The namespace of the collection.\",\n \"maxLength\": + 64\n },\n \"origin_repository\": {\n + \ \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"The URL of the originating + SCM repository.\",\n \"maxLength\": 2000\n },\n \ \"tags\": {\n \"type\": \"array\",\n \ \"items\": {\n \"$ref\": \"#/components/schemas/ansible.TagResponse\"\n },\n \ \"readOnly\": true\n },\n \"version\": - {\n \"type\": \"string\",\n \"description\": - \"The version of the collection.\",\n \"maxLength\": - 128\n },\n \"requires_ansible\": {\n - \ \"type\": \"string\",\n \"nullable\": - true,\n \"description\": \"The version of Ansible required - to use the collection. Multiple versions can be separated with a comma.\",\n - \ \"maxLength\": 255\n }\n },\n - \ \"required\": [\n \"authors\",\n \"contents\",\n - \ \"dependencies\",\n \"description\",\n - \ \"docs_blob\",\n \"documentation\",\n - \ \"files\",\n \"homepage\",\n \"id\",\n - \ \"issues\",\n \"license\",\n \"manifest\",\n - \ \"name\",\n \"namespace\",\n \"repository\",\n - \ \"version\"\n ]\n },\n \"ansible.CollectionVersionSignature\": + {\n \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"The version of the collection.\",\n + \ \"maxLength\": 128\n },\n \"requires_ansible\": + {\n \"type\": \"string\",\n \"readOnly\": + true,\n \"nullable\": true,\n \"description\": + \"The version of Ansible required to use the collection. Multiple versions + can be separated with a comma.\",\n \"maxLength\": + 255\n }\n }\n },\n \"ansible.CollectionVersionSignature\": {\n \"type\": \"object\",\n \"description\": \"A serializer for signature models.\",\n \"properties\": {\n - \ \"file\": {\n \"type\": \"string\",\n - \ \"format\": \"binary\",\n \"writeOnly\": - true,\n \"description\": \"An uploaded file that may - be turned into the artifact of the content unit.\"\n },\n \ \"repository\": {\n \"type\": \"string\",\n \ \"format\": \"uri\",\n \"writeOnly\": true,\n \"description\": \"A URI of a repository the - new content unit should be associated with.\"\n },\n \"signed_collection\": + new content unit should be associated with.\"\n },\n \"file\": + {\n \"type\": \"string\",\n \"format\": + \"binary\",\n \"writeOnly\": true,\n \"description\": + \"An uploaded file that may be turned into the content unit.\"\n },\n + \ \"upload\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"writeOnly\": + true,\n \"description\": \"An uncommitted upload that + may be turned into the content unit.\"\n },\n \"signed_collection\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"description\": \"The content this signature is pointing to.\"\n }\n },\n \"required\": - [\n \"file\",\n \"signed_collection\"\n - \ ]\n },\n \"ansible.CollectionVersionSignatureResponse\": - {\n \"type\": \"object\",\n \"description\": - \"A serializer for signature models.\",\n \"properties\": {\n - \ \"pulp_href\": {\n \"type\": \"string\",\n - \ \"format\": \"uri\",\n \"readOnly\": - true\n },\n \"pulp_created\": {\n \"type\": + [\n \"signed_collection\"\n ]\n },\n + \ \"ansible.CollectionVersionSignatureResponse\": {\n \"type\": + \"object\",\n \"description\": \"A serializer for signature + models.\",\n \"properties\": {\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"signed_collection\": {\n \"type\": @@ -28445,82 +46167,85 @@ interactions: [\n \"signed_collection\"\n ]\n },\n \ \"ansible.GitRemote\": {\n \"type\": \"object\",\n \ \"description\": \"A serializer for Git Collection Remotes.\",\n - \ \"properties\": {\n \"sock_read_timeout\": - {\n \"type\": \"number\",\n \"format\": - \"double\",\n \"minimum\": 0.0,\n \"nullable\": - true,\n \"description\": \"aiohttp.ClientTimeout.sock_read - (q.v.) for download-connections. The default is null, which will cause the - default from the aiohttp library to be used.\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": - true,\n \"description\": \"Maximum number of retry - attempts after a download failure. If not set then the default value (3) will - be used.\"\n },\n \"ca_cert\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"A PEM encoded CA certificate - used to validate the server certificate presented by the remote server.\"\n - \ },\n \"headers\": {\n \"type\": + \ \"properties\": {\n \"headers\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\"\n },\n \"description\": - \"Headers for aiohttp.Clientsession\"\n },\n \"tls_validation\": + \"Headers for aiohttp.Clientsession\"\n },\n \"ca_cert\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded CA certificate used to validate the server certificate presented + by the remote server.\"\n },\n \"password\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The password to be used for + authentication when syncing. Extra leading and trailing whitespace characters + are not trimmed.\"\n },\n \"tls_validation\": {\n \"type\": \"boolean\",\n \"description\": \"If True, TLS peer validation must be performed.\"\n },\n - \ \"sock_connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The - default is null, which will cause the default from the aiohttp library to - be used.\"\n },\n \"url\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"The URL of an external content source.\"\n },\n \"pulp_labels\": - {\n \"type\": \"object\"\n },\n - \ \"total_timeout\": {\n \"type\": + \ \"client_key\": {\n \"type\": \"string\",\n + \ \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded private key used for authentication.\"\n },\n + \ \"download_concurrency\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Total number of simultaneous + connections. If not set then the default value will be used.\",\n \"minimum\": + 1\n },\n \"client_cert\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"A PEM encoded client certificate + used for authentication.\"\n },\n \"max_retries\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Maximum number of retry attempts after a download failure. If not set then + the default value (3) will be used.\"\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name for this remote.\"\n + \ },\n \"connect_timeout\": {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default + \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": + \ },\n \"sock_read_timeout\": {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default + \"aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"proxy_username\": {\n \"type\": - \"string\",\n \"writeOnly\": true,\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"The username to authenticte to the proxy.\"\n },\n \"rate_limit\": - {\n \"type\": \"integer\",\n \"nullable\": + \ },\n \"rate_limit\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Limits requests per second - for each concurrent downloader\"\n },\n \"proxy_url\": - {\n \"type\": \"string\",\n \"nullable\": + for each concurrent downloader\"\n },\n \"url\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The URL of an external content + source.\"\n },\n \"username\": {\n \"type\": + \"string\",\n \"writeOnly\": true,\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": - \"The proxy URL. Format: scheme://host:port\"\n },\n \"username\": - {\n \"type\": \"string\",\n \"writeOnly\": - true,\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"The username to be used for - authentication when syncing.\"\n },\n \"client_key\": + \"The username to be used for authentication when syncing.\"\n },\n + \ \"total_timeout\": {\n \"type\": + \"number\",\n \"format\": \"double\",\n \"minimum\": + 0.0,\n \"nullable\": true,\n \"description\": + \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default + is null, which will cause the default from the aiohttp library to be used.\"\n + \ },\n \"sock_connect_timeout\": {\n + \ \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"proxy_username\": {\n \"type\": \"string\",\n \"writeOnly\": true,\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"A PEM encoded private key used - for authentication.\"\n },\n \"proxy_password\": + 1,\n \"description\": \"The username to authenticte + to the proxy.\"\n },\n \"proxy_password\": {\n \"type\": \"string\",\n \"writeOnly\": true,\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed.\"\n - \ },\n \"name\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"A unique name for this remote.\"\n },\n \"client_cert\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"A PEM encoded client certificate used for authentication.\"\n },\n - \ \"password\": {\n \"type\": \"string\",\n - \ \"writeOnly\": true,\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"The password to be used for authentication when syncing. Extra leading and - trailing whitespace characters are not trimmed.\"\n },\n - \ \"metadata_only\": {\n \"type\": + \ },\n \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"proxy_url\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n + \ },\n \"metadata_only\": {\n \"type\": \"boolean\",\n \"description\": \"If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL.\"\n },\n \"git_ref\": @@ -28530,70 +46255,82 @@ interactions: [\n \"name\",\n \"url\"\n ]\n \ },\n \"ansible.GitRemoteResponse\": {\n \"type\": \"object\",\n \"description\": \"A serializer for Git Collection - Remotes.\",\n \"properties\": {\n \"sock_read_timeout\": - {\n \"type\": \"number\",\n \"format\": - \"double\",\n \"minimum\": 0.0,\n \"nullable\": - true,\n \"description\": \"aiohttp.ClientTimeout.sock_read - (q.v.) for download-connections. The default is null, which will cause the - default from the aiohttp library to be used.\"\n },\n \"pulp_created\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"readOnly\": true,\n \"description\": - \"Timestamp of creation.\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": - true,\n \"description\": \"Maximum number of retry - attempts after a download failure. If not set then the default value (3) will - be used.\"\n },\n \"ca_cert\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"description\": - \"A PEM encoded CA certificate used to validate the server certificate presented - by the remote server.\"\n },\n \"headers\": + Remotes.\",\n \"properties\": {\n \"headers\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n - \ },\n \"tls_validation\": {\n \"type\": - \"boolean\",\n \"description\": \"If True, TLS peer - validation must be performed.\"\n },\n \"sock_connect_timeout\": + \ },\n \"ca_cert\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"description\": + \"A PEM encoded CA certificate used to validate the server certificate presented + by the remote server.\"\n },\n \"tls_validation\": + {\n \"type\": \"boolean\",\n \"description\": + \"If True, TLS peer validation must be performed.\"\n },\n + \ \"download_concurrency\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Total number of simultaneous + connections. If not set then the default value will be used.\",\n \"minimum\": + 1\n },\n \"client_cert\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"description\": + \"A PEM encoded client certificate used for authentication.\"\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name for + this remote.\"\n },\n \"connect_timeout\": {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": - true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect + true,\n \"description\": \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the - default from the aiohttp library to be used.\"\n },\n \"url\": - {\n \"type\": \"string\",\n \"description\": - \"The URL of an external content source.\"\n },\n \"pulp_labels\": - {\n \"type\": \"object\"\n },\n - \ \"total_timeout\": {\n \"type\": + default from the aiohttp library to be used.\"\n },\n \"sock_read_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_read + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"rate_limit\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Limits requests per second for each concurrent downloader\"\n },\n + \ \"hidden_fields\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"object\",\n \"properties\": {\n \"name\": + {\n \"type\": \"string\"\n },\n + \ \"is_set\": {\n \"type\": + \"boolean\"\n }\n }\n + \ },\n \"readOnly\": true,\n + \ \"description\": \"List of hidden (write only) fields\"\n + \ },\n \"url\": {\n \"type\": + \"string\",\n \"description\": \"The URL of an external + content source.\"\n },\n \"pulp_last_updated\": + {\n \"type\": \"string\",\n \"format\": + \"date-time\",\n \"readOnly\": true,\n \"description\": + \"Timestamp of the most recent update of the remote.\"\n },\n + \ \"pulp_href\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"total_timeout\": {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"proxy_url\": {\n \"type\": \"string\",\n - \ \"nullable\": true,\n \"description\": - \"The proxy URL. Format: scheme://host:port\"\n },\n \"pulp_href\": - {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"readOnly\": true\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"description\": \"A unique name for this remote.\"\n - \ },\n \"client_cert\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"description\": - \"A PEM encoded client certificate used for authentication.\"\n },\n - \ \"pulp_last_updated\": {\n \"type\": + \ },\n \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": - true,\n \"description\": \"Timestamp of the most recent - update of the remote.\"\n },\n \"metadata_only\": - {\n \"type\": \"boolean\",\n \"description\": - \"If True, only metadata about the content will be stored in Pulp. Clients - will retrieve content from the remote URL.\"\n },\n \"git_ref\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"sock_connect_timeout\": {\n + \ \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"pulp_labels\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"proxy_url\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n + \ },\n \"metadata_only\": {\n \"type\": + \"boolean\",\n \"description\": \"If True, only metadata + about the content will be stored in Pulp. Clients will retrieve content from + the remote URL.\"\n },\n \"git_ref\": {\n \"type\": \"string\",\n \"description\": \"A git ref. e.g.: branch, tag, or commit sha.\"\n }\n \ },\n \"required\": [\n \"name\",\n @@ -28603,42 +46340,45 @@ interactions: \ \"artifact\": {\n \"type\": \"string\",\n \ \"format\": \"uri\",\n \"description\": \"Artifact file representing the physical content\"\n },\n - \ \"version\": {\n \"type\": \"string\",\n - \ \"minLength\": 1\n },\n \"name\": - {\n \"type\": \"string\",\n \"minLength\": - 1\n },\n \"namespace\": {\n \"type\": - \"string\",\n \"minLength\": 1\n }\n - \ },\n \"required\": [\n \"artifact\",\n - \ \"name\",\n \"namespace\",\n \"version\"\n - \ ]\n },\n \"ansible.RoleRemote\": {\n - \ \"type\": \"object\",\n \"description\": \"A - serializer for Ansible Remotes.\",\n \"properties\": {\n \"name\": + \ \"repository\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"writeOnly\": + true,\n \"description\": \"A URI of a repository the + new content unit should be associated with.\"\n },\n \"version\": {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"A unique name for this remote.\"\n - \ },\n \"url\": {\n \"type\": + 1\n },\n \"name\": {\n \"type\": + \"string\",\n \"minLength\": 1\n },\n + \ \"namespace\": {\n \"type\": \"string\",\n + \ \"minLength\": 1\n }\n },\n + \ \"required\": [\n \"artifact\",\n \"name\",\n + \ \"namespace\",\n \"version\"\n ]\n + \ },\n \"ansible.RoleRemote\": {\n \"type\": + \"object\",\n \"description\": \"A serializer for Ansible Remotes.\",\n + \ \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": - \"The URL of an external content source.\"\n },\n \"ca_cert\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"A PEM encoded CA certificate used to validate the server certificate presented - by the remote server.\"\n },\n \"client_cert\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"A PEM encoded client certificate used for authentication.\"\n },\n - \ \"client_key\": {\n \"type\": \"string\",\n - \ \"writeOnly\": true,\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"A PEM encoded private key used for authentication.\"\n },\n - \ \"tls_validation\": {\n \"type\": - \"boolean\",\n \"description\": \"If True, TLS peer - validation must be performed.\"\n },\n \"proxy_url\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"The proxy URL. Format: scheme://host:port\"\n },\n \"proxy_username\": + \"A unique name for this remote.\"\n },\n \"url\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The URL of an external content + source.\"\n },\n \"ca_cert\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"A PEM encoded CA certificate + used to validate the server certificate presented by the remote server.\"\n + \ },\n \"client_cert\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"A PEM encoded client certificate + used for authentication.\"\n },\n \"client_key\": {\n \"type\": \"string\",\n \"writeOnly\": true,\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"The username to authenticte - to the proxy.\"\n },\n \"proxy_password\": + 1,\n \"description\": \"A PEM encoded private key used + for authentication.\"\n },\n \"tls_validation\": + {\n \"type\": \"boolean\",\n \"description\": + \"If True, TLS peer validation must be performed.\"\n },\n + \ \"proxy_url\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n + \ },\n \"proxy_username\": {\n \"type\": + \"string\",\n \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The username to authenticte to the proxy.\"\n },\n \"proxy_password\": {\n \"type\": \"string\",\n \"writeOnly\": true,\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"The password to authenticate @@ -28653,31 +46393,35 @@ interactions: \"The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.\"\n },\n \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.\"\n },\n \"policy\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/PolicyDb6Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": - \"The policy to use when downloading content.\"\n },\n - \ \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + \"The policy to use when downloading content.\\n\\n* `immediate` - immediate\\n* + `When syncing, download all metadata and content now.` - When syncing, download + all metadata and content now.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -28691,10 +46435,11 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n }\n - \ },\n \"required\": [\n \"name\",\n - \ \"url\"\n ]\n },\n \"ansible.RoleRemoteResponse\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n }\n },\n + \ \"required\": [\n \"name\",\n \"url\"\n + \ ]\n },\n \"ansible.RoleRemoteResponse\": {\n \"type\": \"object\",\n \"description\": \"A serializer for Ansible Remotes.\",\n \"properties\": {\n \ \"pulp_href\": {\n \"type\": \"string\",\n @@ -28719,34 +46464,38 @@ interactions: {\n \"type\": \"string\",\n \"nullable\": true,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"pulp_last_updated\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"readOnly\": true,\n \"description\": - \"Timestamp of the most recent update of the remote.\"\n },\n - \ \"download_concurrency\": {\n \"type\": - \"integer\",\n \"minimum\": 1,\n \"nullable\": - true,\n \"description\": \"Total number of simultaneous - connections. If not set then the default value will be used.\"\n },\n + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"pulp_last_updated\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of the most recent + update of the remote.\"\n },\n \"download_concurrency\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n \ \"max_retries\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Maximum number of retry attempts after a download failure. If not set then - the default value (3) will be used.\"\n },\n \"policy\": - {\n \"allOf\": [\n {\n \"$ref\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": \"#/components/schemas/PolicyDb6Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": - \"The policy to use when downloading content.\"\n },\n - \ \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + \"The policy to use when downloading content.\\n\\n* `immediate` - immediate\\n* + `When syncing, download all metadata and content now.` - When syncing, download + all metadata and content now.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -28760,29 +46509,41 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n }\n - \ },\n \"required\": [\n \"name\",\n - \ \"url\"\n ]\n },\n \"ansible.RoleResponse\": - {\n \"type\": \"object\",\n \"description\": - \"A serializer for Role versions.\",\n \"properties\": {\n - \ \"pulp_href\": {\n \"type\": \"string\",\n - \ \"format\": \"uri\",\n \"readOnly\": - true\n },\n \"pulp_created\": {\n \"type\": - \"string\",\n \"format\": \"date-time\",\n \"readOnly\": - true,\n \"description\": \"Timestamp of creation.\"\n - \ },\n \"artifact\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"description\": - \"Artifact file representing the physical content\"\n },\n + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"hidden_fields\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"name\": {\n \"type\": + \"string\"\n },\n \"is_set\": + {\n \"type\": \"boolean\"\n }\n + \ }\n },\n \"readOnly\": + true,\n \"description\": \"List of hidden (write only) + fields\"\n }\n },\n \"required\": + [\n \"name\",\n \"url\"\n ]\n + \ },\n \"ansible.RoleResponse\": {\n \"type\": + \"object\",\n \"description\": \"A serializer for Role versions.\",\n + \ \"properties\": {\n \"pulp_created\": {\n + \ \"type\": \"string\",\n \"format\": + \"date-time\",\n \"readOnly\": true,\n \"description\": + \"Timestamp of creation.\"\n },\n \"artifact\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"description\": \"Artifact file representing + the physical content\"\n },\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n \ \"version\": {\n \"type\": \"string\"\n \ },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \ \"type\": \"string\"\n }\n },\n \ \"required\": [\n \"artifact\",\n \"name\",\n \ \"namespace\",\n \"version\"\n ]\n - \ },\n \"ansible.TagResponse\": {\n \"type\": + \ },\n \"ansible.Tag\": {\n \"type\": \"object\",\n \"description\": \"A serializer for nesting in - the CollectionVersion model.\",\n \"properties\": {\n \"name\": + the CollectionVersion model.\",\n \"properties\": {}\n },\n + \ \"ansible.TagResponse\": {\n \"type\": \"object\",\n + \ \"description\": \"A serializer for nesting in the CollectionVersion + model.\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"readOnly\": true,\n \"description\": \"The name of the Tag.\"\n \ }\n }\n },\n \"certguard.RHSMCertGuard\": @@ -28863,22 +46624,26 @@ interactions: \ \"digest\"\n ]\n },\n \"container.ContainerDistribution\": {\n \"type\": \"object\",\n \"description\": \"A serializer for ContainerDistribution.\",\n \"properties\": - {\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"content_guard\": - {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"description\": \"An optional content-guard. - If none is specified, a default one will be used.\"\n },\n - \ \"base_path\": {\n \"type\": \"string\",\n - \ \"minLength\": 1,\n \"description\": - \"The base (relative) path component of the published url. Avoid paths that - \ overlap with other distribution base paths (e.g. \\\"foo\\\" - and \\\"foo/bar\\\")\"\n },\n \"repository\": - {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"nullable\": true,\n \"description\": - \"The latest RepositoryVersion for this Repository will be served.\"\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"minLength\": 1,\n \"description\": - \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository_version\": + {\n \"content_guard\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"An optional content-guard. If none is specified, a default one will be used.\"\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"hidden\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Whether this distribution + should be shown in the content app.\"\n },\n \"base_path\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The base (relative) path component + of the published url. Avoid paths that overlap with other + distribution base paths (e.g. \\\"foo\\\" and \\\"foo/bar\\\")\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"repository\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"The latest RepositoryVersion + for this Repository will be served.\"\n },\n \"repository_version\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"RepositoryVersion to be served\"\n },\n \"private\": @@ -28892,33 +46657,41 @@ interactions: \ ]\n },\n \"container.ContainerDistributionResponse\": {\n \"type\": \"object\",\n \"description\": \"A serializer for ContainerDistribution.\",\n \"properties\": - {\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"pulp_created\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"readOnly\": true,\n \"description\": - \"Timestamp of creation.\"\n },\n \"content_guard\": + {\n \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"content_guard\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"An optional content-guard. If none is specified, a default one will be used.\"\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name. Ex, + `rawhide` and `stable`.\"\n },\n \"hidden\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Whether this distribution + should be shown in the content app.\"\n },\n \"base_path\": + {\n \"type\": \"string\",\n \"description\": + \"The base (relative) path component of the published url. Avoid paths that + \ overlap with other distribution base paths (e.g. \\\"foo\\\" + and \\\"foo/bar\\\")\"\n },\n \"pulp_labels\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"pulp_href\": {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"description\": \"An optional content-guard. - If none is specified, a default one will be used.\"\n },\n - \ \"base_path\": {\n \"type\": \"string\",\n - \ \"description\": \"The base (relative) path component - of the published url. Avoid paths that overlap with other - distribution base paths (e.g. \\\"foo\\\" and \\\"foo/bar\\\")\"\n },\n + \"uri\",\n \"readOnly\": true\n },\n \ \"repository\": {\n \"type\": \"string\",\n \ \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"The latest RepositoryVersion - for this Repository will be served.\"\n },\n \"pulp_href\": - {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"readOnly\": true\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"description\": \"A unique name. Ex, `rawhide` and - `stable`.\"\n },\n \"repository_version\": + for this Repository will be served.\"\n },\n \"repository_version\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"RepositoryVersion to be served\"\n },\n \"registry_path\": {\n \"type\": \"string\",\n \"readOnly\": true,\n \"description\": \"The Registry hostname/name/ to use with docker pull command defined by this distribution.\"\n },\n + \ \"remote\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"readOnly\": + true,\n \"description\": \"Remote that can be used + to fetch content when using pull-through caching.\"\n },\n \ \"namespace\": {\n \"type\": \"string\",\n \ \"format\": \"uri\",\n \"readOnly\": true,\n \"description\": \"Namespace this distribution @@ -28945,58 +46718,96 @@ interactions: true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": - [\n \"name\"\n ]\n },\n \"container.ContainerPushRepository\": + [\n \"name\"\n ]\n },\n \"container.ContainerPullThroughDistribution\": {\n \"type\": \"object\",\n \"description\": - \"Serializer for Container Push Repositories.\",\n \"properties\": - {\n \"retain_repo_versions\": {\n \"type\": - \"integer\",\n \"minimum\": 1,\n \"nullable\": - true,\n \"description\": \"Retain X versions of the - repository. Default is null which retains all versions. This is provided as - a tech preview in Pulp 3 and may change in the future.\"\n },\n - \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"description\": {\n - \ \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"An optional description.\"\n },\n \"manifest_signing_service\": + \"A serializer for a specialized pull-through distribution referencing sub-distributions.\",\n + \ \"properties\": {\n \"content_guard\": {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"nullable\": true,\n \"description\": - \"A reference to an associated signing service.\"\n },\n + \"uri\",\n \"description\": \"An optional content-guard. + If none is specified, a default one will be used.\"\n },\n \ \"name\": {\n \"type\": \"string\",\n \ \"minLength\": 1,\n \"description\": - \"A unique name for this repository.\"\n }\n },\n - \ \"required\": [\n \"name\"\n ]\n - \ },\n \"container.ContainerPushRepositoryResponse\": - {\n \"type\": \"object\",\n \"description\": - \"Serializer for Container Push Repositories.\",\n \"properties\": - {\n \"retain_repo_versions\": {\n \"type\": - \"integer\",\n \"minimum\": 1,\n \"nullable\": - true,\n \"description\": \"Retain X versions of the - repository. Default is null which retains all versions. This is provided as - a tech preview in Pulp 3 and may change in the future.\"\n },\n + \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"hidden\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Whether this distribution + should be shown in the content app.\"\n },\n \"base_path\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The base (relative) path component + of the published url. Avoid paths that overlap with other + distribution base paths (e.g. \\\"foo\\\" and \\\"foo/bar\\\")\"\n },\n \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"latest_version_href\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"repository\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"The latest RepositoryVersion + for this Repository will be served.\"\n },\n \"remote\": {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"readOnly\": true\n },\n - \ \"versions_href\": {\n \"type\": + \"uri\",\n \"description\": \"Remote that can be used + to fetch content when using pull-through caching.\"\n },\n + \ \"distributions\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uri\"\n },\n + \ \"description\": \"Distributions created after pulling + content through cache\"\n },\n \"private\": + {\n \"type\": \"boolean\",\n \"description\": + \"Restrict pull access to explicitly authorized users. Related distributions + inherit this value. Defaults to unrestricted pull access.\"\n },\n + \ \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"An optional description.\"\n + \ }\n },\n \"required\": [\n + \ \"base_path\",\n \"name\",\n \"remote\"\n + \ ]\n },\n \"container.ContainerPullThroughDistributionResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for a specialized pull-through distribution referencing sub-distributions.\",\n + \ \"properties\": {\n \"pulp_created\": {\n + \ \"type\": \"string\",\n \"format\": + \"date-time\",\n \"readOnly\": true,\n \"description\": + \"Timestamp of creation.\"\n },\n \"content_guard\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"description\": \"An optional content-guard. + If none is specified, a default one will be used.\"\n },\n + \ \"name\": {\n \"type\": \"string\",\n + \ \"description\": \"A unique name. Ex, `rawhide` and + `stable`.\"\n },\n \"hidden\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether this distribution should be shown in the content app.\"\n },\n + \ \"base_path\": {\n \"type\": \"string\",\n + \ \"description\": \"The base (relative) path component + of the published url. Avoid paths that overlap with other + distribution base paths (e.g. \\\"foo\\\" and \\\"foo/bar\\\")\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"pulp_href\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": - true\n },\n \"pulp_created\": {\n \"type\": - \"string\",\n \"format\": \"date-time\",\n \"readOnly\": - true,\n \"description\": \"Timestamp of creation.\"\n - \ },\n \"description\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"description\": - \"An optional description.\"\n },\n \"manifest_signing_service\": + true\n },\n \"repository\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"The latest RepositoryVersion + for this Repository will be served.\"\n },\n \"remote\": {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"nullable\": true,\n \"description\": - \"A reference to an associated signing service.\"\n },\n - \ \"pulp_href\": {\n \"type\": \"string\",\n - \ \"format\": \"uri\",\n \"readOnly\": - true\n },\n \"name\": {\n \"type\": - \"string\",\n \"description\": \"A unique name for - this repository.\"\n }\n },\n \"required\": - [\n \"name\"\n ]\n },\n \"container.ContainerRemote\": + \"uri\",\n \"description\": \"Remote that can be used + to fetch content when using pull-through caching.\"\n },\n + \ \"distributions\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uri\"\n },\n + \ \"description\": \"Distributions created after pulling + content through cache\"\n },\n \"namespace\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true,\n \"description\": + \"Namespace this distribution belongs to.\"\n },\n \"private\": + {\n \"type\": \"boolean\",\n \"description\": + \"Restrict pull access to explicitly authorized users. Related distributions + inherit this value. Defaults to unrestricted pull access.\"\n },\n + \ \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"description\": + \"An optional description.\"\n }\n },\n + \ \"required\": [\n \"base_path\",\n \"name\",\n + \ \"remote\"\n ]\n },\n \"container.ContainerPullThroughRemote\": {\n \"type\": \"object\",\n \"description\": - \"A Serializer for ContainerRemote.\",\n \"properties\": {\n - \ \"name\": {\n \"type\": \"string\",\n + \"A serializer for a remote used in the pull-through distribution.\",\n \"properties\": + {\n \"name\": {\n \"type\": \"string\",\n \ \"minLength\": 1,\n \"description\": \"A unique name for this remote.\"\n },\n \"url\": {\n \"type\": \"string\",\n \"minLength\": @@ -29036,23 +46847,21 @@ interactions: \"The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.\"\n },\n \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.\"\n },\n \"policy\": {\n \"allOf\": [\n {\n \"$ref\": - \"#/components/schemas/Policy762Enum\"\n }\n ],\n - \ \"default\": \"immediate\",\n \"description\": - \"\\n immediate - All manifests and blobs are downloaded and saved - during a sync.\\n on_demand - Only tags and manifests are downloaded. - Blobs are not\\n downloaded until they are requested for - the first time by a client.\\n streamed - Blobs are streamed to the - client with every request and never saved.\\n \"\n },\n + \"#/components/schemas/Policy8e2Enum\"\n }\n ],\n + \ \"default\": \"on_demand\"\n },\n \ \"total_timeout\": {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": @@ -29078,36 +46887,16 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"upstream_name\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"Name of the upstream repository\"\n },\n \"include_tags\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"maxLength\": 255\n },\n - \ \"nullable\": true,\n \"description\": - \"\\n A list of tags to include during sync.\\n Wildcards - *, ? are recognized.\\n 'include_tags' is evaluated before 'exclude_tags'.\\n - \ \"\n },\n \"exclude_tags\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"maxLength\": 255\n },\n - \ \"nullable\": true,\n \"description\": - \"\\n A list of tags to exclude during sync.\\n Wildcards - *, ? are recognized.\\n 'exclude_tags' is evaluated after 'include_tags'.\\n - \ \"\n },\n \"sigstore\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"A URL to a sigstore to download - image signatures from\",\n \"format\": \"uri\"\n }\n - \ },\n \"required\": [\n \"name\",\n - \ \"upstream_name\",\n \"url\"\n ]\n - \ },\n \"container.ContainerRemoteResponse\": {\n \"type\": - \"object\",\n \"description\": \"A Serializer for ContainerRemote.\",\n - \ \"properties\": {\n \"pulp_href\": {\n - \ \"type\": \"string\",\n \"format\": - \"uri\",\n \"readOnly\": true\n },\n - \ \"pulp_created\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n }\n },\n + \ \"required\": [\n \"name\",\n \"url\"\n + \ ]\n },\n \"container.ContainerPullThroughRemoteResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for a remote used in the pull-through distribution.\",\n \"properties\": + {\n \"pulp_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"name\": {\n \"type\": @@ -29127,26 +46916,24 @@ interactions: {\n \"type\": \"string\",\n \"nullable\": true,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"pulp_last_updated\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"readOnly\": true,\n \"description\": - \"Timestamp of the most recent update of the remote.\"\n },\n - \ \"download_concurrency\": {\n \"type\": - \"integer\",\n \"minimum\": 1,\n \"nullable\": - true,\n \"description\": \"Total number of simultaneous - connections. If not set then the default value will be used.\"\n },\n + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"pulp_last_updated\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of the most recent + update of the remote.\"\n },\n \"download_concurrency\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n \ \"max_retries\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Maximum number of retry attempts after a download failure. If not set then - the default value (3) will be used.\"\n },\n \"policy\": - {\n \"allOf\": [\n {\n \"$ref\": - \"#/components/schemas/Policy762Enum\"\n }\n ],\n - \ \"default\": \"immediate\",\n \"description\": - \"\\n immediate - All manifests and blobs are downloaded and saved - during a sync.\\n on_demand - Only tags and manifests are downloaded. - Blobs are not\\n downloaded until they are requested for - the first time by a client.\\n streamed - Blobs are streamed to the - client with every request and never saved.\\n \"\n },\n + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/Policy8e2Enum\"\n }\n ],\n + \ \"default\": \"on_demand\"\n },\n \ \"total_timeout\": {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": @@ -29172,11 +46959,278 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"upstream_name\": {\n \"type\": - \"string\",\n \"description\": \"Name of the upstream - repository\"\n },\n \"include_tags\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"hidden_fields\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"name\": {\n \"type\": + \"string\"\n },\n \"is_set\": + {\n \"type\": \"boolean\"\n }\n + \ }\n },\n \"readOnly\": + true,\n \"description\": \"List of hidden (write only) + fields\"\n }\n },\n \"required\": + [\n \"name\",\n \"url\"\n ]\n + \ },\n \"container.ContainerPushRepository\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for Container Push + Repositories.\",\n \"properties\": {\n \"manifest_signing_service\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"A reference to an associated signing service.\"\n },\n + \ \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"An optional description.\"\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"A unique name for this repository.\"\n },\n \"retain_repo_versions\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"pulp_labels\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n }\n },\n + \ \"required\": [\n \"name\"\n ]\n + \ },\n \"container.ContainerPushRepositoryResponse\": + {\n \"type\": \"object\",\n \"description\": + \"Serializer for Container Push Repositories.\",\n \"properties\": + {\n \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"versions_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"latest_version_href\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"manifest_signing_service\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"A reference to an associated + signing service.\"\n },\n \"description\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"An optional description.\"\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name for + this repository.\"\n },\n \"retain_repo_versions\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"pulp_labels\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n }\n + \ },\n \"required\": [\n \"name\"\n + \ ]\n },\n \"container.ContainerRemote\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for ContainerRemote.\",\n \"properties\": {\n + \ \"name\": {\n \"type\": \"string\",\n + \ \"minLength\": 1,\n \"description\": + \"A unique name for this remote.\"\n },\n \"url\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The URL of an external content + source.\"\n },\n \"ca_cert\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"A PEM encoded CA certificate + used to validate the server certificate presented by the remote server.\"\n + \ },\n \"client_cert\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"A PEM encoded client certificate + used for authentication.\"\n },\n \"client_key\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"A PEM encoded private key used + for authentication.\"\n },\n \"tls_validation\": + {\n \"type\": \"boolean\",\n \"description\": + \"If True, TLS peer validation must be performed.\"\n },\n + \ \"proxy_url\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n + \ },\n \"proxy_username\": {\n \"type\": + \"string\",\n \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The username to authenticte to the proxy.\"\n },\n \"proxy_password\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The password to authenticate + to the proxy. Extra leading and trailing whitespace characters are not trimmed.\"\n + \ },\n \"username\": {\n \"type\": + \"string\",\n \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The username to be used for authentication when syncing.\"\n },\n + \ \"password\": {\n \"type\": \"string\",\n + \ \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The password to be used for authentication when syncing. Extra leading and + trailing whitespace characters are not trimmed.\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/Policy762Enum\"\n }\n ],\n + \ \"default\": \"immediate\",\n \"description\": + \"\\n immediate - All manifests and blobs are downloaded and saved + during a sync.\\n on_demand - Only tags and manifests are downloaded. + Blobs are not\\n downloaded until they are requested for + the first time by a client.\\n streamed - Blobs are streamed to the + client with every request and never saved.\\n \\n\\n* `immediate` - + When syncing, download all metadata and content now.\\n* `on_demand` - When + syncing, download metadata, but do not download content now. Instead, download + content as clients request it, and save it in Pulp to be served for future + client requests.\\n* `streamed` - When syncing, download metadata, but do + not download content now. Instead,download content as clients request it, + but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_read_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_read + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"headers\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\"\n },\n + \ \"description\": \"Headers for aiohttp.Clientsession\"\n + \ },\n \"rate_limit\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"upstream_name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"Name of the upstream repository\"\n + \ },\n \"include_tags\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"maxLength\": + 255\n },\n \"nullable\": true,\n + \ \"description\": \"\\n A list of tags to + include during sync.\\n Wildcards *, ? are recognized.\\n 'include_tags' + is evaluated before 'exclude_tags'.\\n \"\n },\n + \ \"exclude_tags\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"maxLength\": + 255\n },\n \"nullable\": true,\n + \ \"description\": \"\\n A list of tags to + exclude during sync.\\n Wildcards *, ? are recognized.\\n 'exclude_tags' + is evaluated after 'include_tags'.\\n \"\n },\n + \ \"sigstore\": {\n \"type\": \"string\",\n + \ \"minLength\": 1,\n \"description\": + \"A URL to a sigstore to download image signatures from\",\n \"format\": + \"uri\"\n }\n },\n \"required\": + [\n \"name\",\n \"upstream_name\",\n + \ \"url\"\n ]\n },\n \"container.ContainerRemoteResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for ContainerRemote.\",\n \"properties\": {\n + \ \"pulp_href\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name for + this remote.\"\n },\n \"url\": {\n \"type\": + \"string\",\n \"description\": \"The URL of an external + content source.\"\n },\n \"ca_cert\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"A PEM encoded CA certificate + used to validate the server certificate presented by the remote server.\"\n + \ },\n \"client_cert\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"description\": + \"A PEM encoded client certificate used for authentication.\"\n },\n + \ \"tls_validation\": {\n \"type\": + \"boolean\",\n \"description\": \"If True, TLS peer + validation must be performed.\"\n },\n \"proxy_url\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n + \ },\n \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"pulp_last_updated\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of the most recent + update of the remote.\"\n },\n \"download_concurrency\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/Policy762Enum\"\n }\n ],\n + \ \"default\": \"immediate\",\n \"description\": + \"\\n immediate - All manifests and blobs are downloaded and saved + during a sync.\\n on_demand - Only tags and manifests are downloaded. + Blobs are not\\n downloaded until they are requested for + the first time by a client.\\n streamed - Blobs are streamed to the + client with every request and never saved.\\n \\n\\n* `immediate` - + When syncing, download all metadata and content now.\\n* `on_demand` - When + syncing, download metadata, but do not download content now. Instead, download + content as clients request it, and save it in Pulp to be served for future + client requests.\\n* `streamed` - When syncing, download metadata, but do + not download content now. Instead,download content as clients request it, + but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_read_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_read + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"headers\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\"\n },\n + \ \"description\": \"Headers for aiohttp.Clientsession\"\n + \ },\n \"rate_limit\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"hidden_fields\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"name\": {\n \"type\": + \"string\"\n },\n \"is_set\": + {\n \"type\": \"boolean\"\n }\n + \ }\n },\n \"readOnly\": + true,\n \"description\": \"List of hidden (write only) + fields\"\n },\n \"upstream_name\": {\n + \ \"type\": \"string\",\n \"description\": + \"Name of the upstream repository\"\n },\n \"include_tags\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"maxLength\": 255\n },\n \"nullable\": true,\n @@ -29198,25 +47252,26 @@ interactions: {\n \"type\": \"object\",\n \"description\": \"Serializer for Container Repositories.\",\n \"properties\": {\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"A unique name for this repository.\"\n },\n \"description\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n },\n \"manifest_signing_service\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": - \"A reference to an associated signing service.\"\n }\n - \ },\n \"required\": [\n \"name\"\n - \ ]\n },\n \"container.ContainerRepositoryResponse\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"manifest_signing_service\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"A reference to an associated + signing service.\"\n }\n },\n \"required\": + [\n \"name\"\n ]\n },\n \"container.ContainerRepositoryResponse\": {\n \"type\": \"object\",\n \"description\": \"Serializer for Container Repositories.\",\n \"properties\": {\n \"pulp_href\": {\n \"type\": @@ -29224,30 +47279,31 @@ interactions: true\n },\n \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n - \ },\n \"versions_href\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"readOnly\": - true\n },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"latest_version_href\": - {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"readOnly\": true\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"description\": \"A unique name for this repository.\"\n - \ },\n \"description\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"description\": - \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n },\n \"manifest_signing_service\": + \ },\n \"versions_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"latest_version_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name for + this repository.\"\n },\n \"description\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": - \"A reference to an associated signing service.\"\n }\n - \ },\n \"required\": [\n \"name\"\n - \ ]\n },\n \"container.ManifestResponse\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"manifest_signing_service\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"A reference to an associated + signing service.\"\n }\n },\n \"required\": + [\n \"name\"\n ]\n },\n \"container.ManifestResponse\": {\n \"type\": \"object\",\n \"description\": \"Serializer for Manifests.\",\n \"properties\": {\n \"pulp_href\": {\n \"type\": \"string\",\n \"format\": @@ -29261,10 +47317,10 @@ interactions: \ \"digest\": {\n \"type\": \"string\",\n \ \"description\": \"sha256 of the Manifest file\"\n \ },\n \"schema_version\": {\n \"type\": - \"integer\",\n \"description\": \"Manifest schema version\"\n - \ },\n \"media_type\": {\n \"type\": - \"string\",\n \"description\": \"Manifest media type - of the file\"\n },\n \"listed_manifests\": + \"integer\",\n \"format\": \"int64\",\n \"description\": + \"Manifest schema version\"\n },\n \"media_type\": + {\n \"type\": \"string\",\n \"description\": + \"Manifest media type of the file\"\n },\n \"listed_manifests\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"format\": \"uri\"\n },\n \"description\": @@ -29298,14 +47354,14 @@ interactions: type, e.g. 'atomic'\"\n },\n \"key_id\": {\n \"type\": \"string\",\n \"description\": \"Signing key ID\"\n },\n \"timestamp\": - {\n \"type\": \"integer\",\n \"description\": - \"Timestamp of a signature\"\n },\n \"creator\": - {\n \"type\": \"string\",\n \"description\": - \"Signature creator\"\n },\n \"signed_manifest\": - {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"description\": \"Manifest that is signed\"\n - \ }\n },\n \"required\": [\n - \ \"creator\",\n \"digest\",\n \"key_id\",\n + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"description\": \"Timestamp of a signature\"\n + \ },\n \"creator\": {\n \"type\": + \"string\",\n \"description\": \"Signature creator\"\n + \ },\n \"signed_manifest\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"Manifest that is signed\"\n }\n },\n \"required\": + [\n \"creator\",\n \"digest\",\n \"key_id\",\n \ \"name\",\n \"signed_manifest\",\n \ \"timestamp\",\n \"type\"\n ]\n \ },\n \"container.TagResponse\": {\n \"type\": @@ -29332,8 +47388,13 @@ interactions: \ \"content_guard\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"An optional content-guard.\"\n - \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": + \ },\n \"hidden\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether this distribution should be shown in the content app.\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": @@ -29362,8 +47423,13 @@ interactions: \ },\n \"content_guard\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"An optional content-guard.\"\n - \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": + \ },\n \"hidden\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether this distribution should be shown in the content app.\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": \"string\",\n \"description\": \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": @@ -29385,15 +47451,17 @@ interactions: false,\n \"description\": \"Activate simple publishing mode (all packages in one release component).\"\n },\n \ \"structured\": {\n \"type\": \"boolean\",\n - \ \"default\": false,\n \"description\": + \ \"default\": true,\n \"description\": \"Activate structured publishing mode.\"\n },\n \"signing_service\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"description\": \"Sign Release files with - this signing key\"\n }\n }\n },\n - \ \"deb.AptPublicationResponse\": {\n \"type\": \"object\",\n - \ \"description\": \"A Serializer for AptPublication.\",\n \"properties\": - {\n \"pulp_href\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"readOnly\": + this signing key\"\n },\n \"publish_upstream_release_fields\": + {\n \"type\": \"boolean\"\n }\n + \ }\n },\n \"deb.AptPublicationResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for AptPublication.\",\n \"properties\": {\n + \ \"pulp_href\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"readOnly\": true\n },\n \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n @@ -29406,15 +47474,16 @@ interactions: false,\n \"description\": \"Activate simple publishing mode (all packages in one release component).\"\n },\n \ \"structured\": {\n \"type\": \"boolean\",\n - \ \"default\": false,\n \"description\": + \ \"default\": true,\n \"description\": \"Activate structured publishing mode.\"\n },\n \"signing_service\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"description\": \"Sign Release files with - this signing key\"\n }\n }\n },\n - \ \"deb.AptRemote\": {\n \"type\": \"object\",\n - \ \"description\": \"A Serializer for AptRemote.\",\n \"properties\": - {\n \"name\": {\n \"type\": \"string\",\n - \ \"minLength\": 1,\n \"description\": + this signing key\"\n },\n \"publish_upstream_release_fields\": + {\n \"type\": \"boolean\"\n }\n + \ }\n },\n \"deb.AptRemote\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer for AptRemote.\",\n + \ \"properties\": {\n \"name\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": \"A unique name for this remote.\"\n },\n \"url\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"The URL of an external content @@ -29453,12 +47522,15 @@ interactions: \"The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.\"\n },\n \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.\"\n },\n \"policy\": {\n \"allOf\": @@ -29466,19 +47538,25 @@ interactions: \"#/components/schemas/Policy762Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": \"The policy to use when downloading content. The possible values include: - 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\"\n - \ },\n \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -29492,52 +47570,52 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"distributions\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"Whitespace separated list of distributions to sync.\\nThe distribution is - the path from the repository root to the \\\"Release\\\" file you want to - access. This is often, but not always, equal to either the codename or the - suite of the release you want to sync. If the repository you are trying to - sync uses \\\"flat repository format\\\", the distribution must end with a - \\\"/\\\". Based on \\\"/etc/apt/sources.list\\\" syntax.\"\n },\n - \ \"components\": {\n \"type\": \"string\",\n - \ \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"Whitespace separatet list of - components to sync.\\nIf none are supplied, all that are available will be - synchronized. Leave blank for repositores using \\\"flat repository format\\\".\"\n - \ },\n \"architectures\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"minLength\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"distributions\": + {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"Whitespace separated list of - architectures to sync\\nIf none are supplied, all that are available will - be synchronized. A list of valid architecture specification strings can be - found by running \\\"dpkg-architecture -L\\\". A sync will download the intersection - of the list of architectures provided via this field and those provided by - the relevant \\\"Release\\\" file. Architecture=\\\"all\\\" is always synchronized - and does not need to be provided here.\"\n },\n \"sync_sources\": - {\n \"type\": \"boolean\",\n \"description\": - \"Sync source packages\"\n },\n \"sync_udebs\": - {\n \"type\": \"boolean\",\n \"description\": - \"Sync installer packages\"\n },\n \"sync_installer\": - {\n \"type\": \"boolean\",\n \"description\": - \"Sync installer files\"\n },\n \"gpgkey\": + distributions to sync.\\nThe distribution is the path from the repository + root to the \\\"Release\\\" file you want to access. This is often, but not + always, equal to either the codename or the suite of the release you want + to sync. If the repository you are trying to sync uses \\\"flat repository + format\\\", the distribution must end with a \\\"/\\\". Based on \\\"/etc/apt/sources.list\\\" + syntax.\"\n },\n \"components\": {\n + \ \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"Whitespace separatet list of components to sync.\\nIf none are supplied, + all that are available will be synchronized. Leave blank for repositores using + \\\"flat repository format\\\".\"\n },\n \"architectures\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": - \"Gpg public key to verify origin releases against\"\n },\n - \ \"ignore_missing_package_indices\": {\n \"type\": - \"boolean\",\n \"description\": \"By default, upstream - repositories that declare architectures and corresponding package indices - in their Release files without actually publishing them, will fail to synchronize.\\nSet - this flag to True to allow the synchronization of such \\\"partial mirrors\\\" - instead.\\nAlternatively, you could make your remote filter by architectures - for which the upstream repository does have indices.\"\n }\n - \ },\n \"required\": [\n \"distributions\",\n - \ \"name\",\n \"url\"\n ]\n - \ },\n \"deb.AptRemoteResponse\": {\n \"type\": - \"object\",\n \"description\": \"A Serializer for AptRemote.\",\n - \ \"properties\": {\n \"pulp_href\": {\n - \ \"type\": \"string\",\n \"format\": + \"Whitespace separated list of architectures to sync\\nIf none are supplied, + all that are available will be synchronized. A list of valid architecture + specification strings can be found by running \\\"dpkg-architecture -L\\\". + A sync will download the intersection of the list of architectures provided + via this field and those provided by the relevant \\\"Release\\\" file. Architecture=\\\"all\\\" + is always synchronized and does not need to be provided here.\"\n },\n + \ \"sync_sources\": {\n \"type\": + \"boolean\",\n \"description\": \"Sync source packages\"\n + \ },\n \"sync_udebs\": {\n \"type\": + \"boolean\",\n \"description\": \"Sync installer packages\"\n + \ },\n \"sync_installer\": {\n \"type\": + \"boolean\",\n \"description\": \"Sync installer files\"\n + \ },\n \"gpgkey\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"Gpg public key to verify origin + releases against\"\n },\n \"ignore_missing_package_indices\": + {\n \"type\": \"boolean\",\n \"description\": + \"By default, upstream repositories that declare architectures and corresponding + package indices in their Release files without actually publishing them, will + fail to synchronize.\\nSet this flag to True to allow the synchronization + of such \\\"partial mirrors\\\" instead.\\nAlternatively, you could make your + remote filter by architectures for which the upstream repository does have + indices.\"\n }\n },\n \"required\": + [\n \"distributions\",\n \"name\",\n + \ \"url\"\n ]\n },\n \"deb.AptRemoteResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for AptRemote.\",\n \"properties\": {\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \ \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": @@ -29559,35 +47637,44 @@ interactions: {\n \"type\": \"string\",\n \"nullable\": true,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"pulp_last_updated\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"readOnly\": true,\n \"description\": - \"Timestamp of the most recent update of the remote.\"\n },\n - \ \"download_concurrency\": {\n \"type\": - \"integer\",\n \"minimum\": 1,\n \"nullable\": - true,\n \"description\": \"Total number of simultaneous - connections. If not set then the default value will be used.\"\n },\n + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"pulp_last_updated\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of the most recent + update of the remote.\"\n },\n \"download_concurrency\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n \ \"max_retries\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Maximum number of retry attempts after a download failure. If not set then - the default value (3) will be used.\"\n },\n \"policy\": - {\n \"allOf\": [\n {\n \"$ref\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": \"#/components/schemas/Policy762Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": \"The policy to use when downloading content. The possible values include: - 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\"\n - \ },\n \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -29601,65 +47688,93 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"distributions\": {\n \"type\": - \"string\",\n \"description\": \"Whitespace separated - list of distributions to sync.\\nThe distribution is the path from the repository - root to the \\\"Release\\\" file you want to access. This is often, but not - always, equal to either the codename or the suite of the release you want - to sync. If the repository you are trying to sync uses \\\"flat repository - format\\\", the distribution must end with a \\\"/\\\". Based on \\\"/etc/apt/sources.list\\\" - syntax.\"\n },\n \"components\": {\n - \ \"type\": \"string\",\n \"nullable\": - true,\n \"description\": \"Whitespace separatet list - of components to sync.\\nIf none are supplied, all that are available will - be synchronized. Leave blank for repositores using \\\"flat repository format\\\".\"\n - \ },\n \"architectures\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"description\": - \"Whitespace separated list of architectures to sync\\nIf none are supplied, - all that are available will be synchronized. A list of valid architecture - specification strings can be found by running \\\"dpkg-architecture -L\\\". - A sync will download the intersection of the list of architectures provided - via this field and those provided by the relevant \\\"Release\\\" file. Architecture=\\\"all\\\" - is always synchronized and does not need to be provided here.\"\n },\n - \ \"sync_sources\": {\n \"type\": - \"boolean\",\n \"description\": \"Sync source packages\"\n - \ },\n \"sync_udebs\": {\n \"type\": - \"boolean\",\n \"description\": \"Sync installer packages\"\n - \ },\n \"sync_installer\": {\n \"type\": - \"boolean\",\n \"description\": \"Sync installer files\"\n - \ },\n \"gpgkey\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"description\": - \"Gpg public key to verify origin releases against\"\n },\n - \ \"ignore_missing_package_indices\": {\n \"type\": - \"boolean\",\n \"description\": \"By default, upstream - repositories that declare architectures and corresponding package indices - in their Release files without actually publishing them, will fail to synchronize.\\nSet - this flag to True to allow the synchronization of such \\\"partial mirrors\\\" - instead.\\nAlternatively, you could make your remote filter by architectures - for which the upstream repository does have indices.\"\n }\n - \ },\n \"required\": [\n \"distributions\",\n - \ \"name\",\n \"url\"\n ]\n - \ },\n \"deb.AptRepository\": {\n \"type\": - \"object\",\n \"description\": \"A Serializer for AptRepository.\",\n - \ \"properties\": {\n \"pulp_labels\": {\n - \ \"type\": \"object\"\n },\n \"name\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"A unique name for this repository.\"\n - \ },\n \"description\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"An optional description.\"\n - \ },\n \"retain_repo_versions\": {\n - \ \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n }\n },\n \"required\": - [\n \"name\"\n ]\n },\n \"deb.AptRepositoryResponse\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"hidden_fields\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"name\": {\n \"type\": + \"string\"\n },\n \"is_set\": + {\n \"type\": \"boolean\"\n }\n + \ }\n },\n \"readOnly\": + true,\n \"description\": \"List of hidden (write only) + fields\"\n },\n \"distributions\": {\n + \ \"type\": \"string\",\n \"description\": + \"Whitespace separated list of distributions to sync.\\nThe distribution is + the path from the repository root to the \\\"Release\\\" file you want to + access. This is often, but not always, equal to either the codename or the + suite of the release you want to sync. If the repository you are trying to + sync uses \\\"flat repository format\\\", the distribution must end with a + \\\"/\\\". Based on \\\"/etc/apt/sources.list\\\" syntax.\"\n },\n + \ \"components\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"description\": + \"Whitespace separatet list of components to sync.\\nIf none are supplied, + all that are available will be synchronized. Leave blank for repositores using + \\\"flat repository format\\\".\"\n },\n \"architectures\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"Whitespace separated list + of architectures to sync\\nIf none are supplied, all that are available will + be synchronized. A list of valid architecture specification strings can be + found by running \\\"dpkg-architecture -L\\\". A sync will download the intersection + of the list of architectures provided via this field and those provided by + the relevant \\\"Release\\\" file. Architecture=\\\"all\\\" is always synchronized + and does not need to be provided here.\"\n },\n \"sync_sources\": + {\n \"type\": \"boolean\",\n \"description\": + \"Sync source packages\"\n },\n \"sync_udebs\": + {\n \"type\": \"boolean\",\n \"description\": + \"Sync installer packages\"\n },\n \"sync_installer\": + {\n \"type\": \"boolean\",\n \"description\": + \"Sync installer files\"\n },\n \"gpgkey\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"Gpg public key to verify + origin releases against\"\n },\n \"ignore_missing_package_indices\": + {\n \"type\": \"boolean\",\n \"description\": + \"By default, upstream repositories that declare architectures and corresponding + package indices in their Release files without actually publishing them, will + fail to synchronize.\\nSet this flag to True to allow the synchronization + of such \\\"partial mirrors\\\" instead.\\nAlternatively, you could make your + remote filter by architectures for which the upstream repository does have + indices.\"\n }\n },\n \"required\": + [\n \"distributions\",\n \"name\",\n + \ \"url\"\n ]\n },\n \"deb.AptRepository\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for AptRepository.\",\n \"properties\": {\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"A unique name for this repository.\"\n },\n \"description\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"An optional description.\"\n },\n \"retain_repo_versions\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"publish_upstream_release_fields\": {\n \"type\": + \"boolean\",\n \"description\": \"Previously, pulp_deb + only synced the Release file fields codename and suite, now version, origin, + label, and description are also synced. Setting this setting to False will + make Pulp revert to the old behaviour of using it's own internal values for + the new fields during publish. This is primarily intended to avoid a sudden + change in behaviour for existing Pulp repositories, since many Release file + field changes need to be accepted by hosts consuming the published repository. + The default for new repositories is True.\"\n },\n \"signing_service\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"A reference to an associated signing service. Used if AptPublication.signing_service + is not set\"\n },\n \"signing_service_release_overrides\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true\n },\n + \ \"description\": \"A dictionary of Release distributions + and the Signing Service URLs they should use.Example: {\\\"bionic\\\": \\\"/pulp/api/v3/signing-services/433a1f70-c589-4413-a803-c50b842ea9b5/\\\"}\"\n + \ }\n },\n \"required\": [\n + \ \"name\"\n ]\n },\n \"deb.AptRepositoryResponse\": {\n \"type\": \"object\",\n \"description\": \"A Serializer for AptRepository.\",\n \"properties\": {\n \ \"pulp_href\": {\n \"type\": \"string\",\n @@ -29670,50 +47785,164 @@ interactions: \ },\n \"versions_href\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"latest_version_href\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"latest_version_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name for + this repository.\"\n },\n \"description\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"readOnly\": true\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"description\": \"A unique name for this repository.\"\n - \ },\n \"description\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"description\": - \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n }\n },\n \"required\": - [\n \"name\"\n ]\n },\n \"deb.BasePackage\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"publish_upstream_release_fields\": {\n \"type\": + \"boolean\",\n \"description\": \"Previously, pulp_deb + only synced the Release file fields codename and suite, now version, origin, + label, and description are also synced. Setting this setting to False will + make Pulp revert to the old behaviour of using it's own internal values for + the new fields during publish. This is primarily intended to avoid a sudden + change in behaviour for existing Pulp repositories, since many Release file + field changes need to be accepted by hosts consuming the published repository. + The default for new repositories is True.\"\n },\n \"signing_service\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"A reference to an associated signing service. Used if AptPublication.signing_service + is not set\"\n },\n \"signing_service_release_overrides\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true\n },\n + \ \"description\": \"A dictionary of Release distributions + and the Signing Service URLs they should use.Example: {\\\"bionic\\\": \\\"/pulp/api/v3/signing-services/433a1f70-c589-4413-a803-c50b842ea9b5/\\\"}\"\n + \ }\n },\n \"required\": [\n + \ \"name\"\n ]\n },\n \"deb.GenericContent\": {\n \"type\": \"object\",\n \"description\": - \"A Serializer for InstallerPackage.\",\n \"properties\": {\n - \ \"artifact\": {\n \"type\": \"string\",\n - \ \"format\": \"uri\",\n \"description\": - \"Artifact file representing the physical content\"\n },\n - \ \"relative_path\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"Path where the artifact is located relative to distributions base_path\"\n - \ },\n \"file\": {\n \"type\": - \"string\",\n \"format\": \"binary\",\n \"writeOnly\": - true,\n \"description\": \"An uploaded file that may - be turned into the artifact of the content unit.\"\n },\n + \"A serializer for GenericContent.\",\n \"properties\": {\n \ \"repository\": {\n \"type\": \"string\",\n \ \"format\": \"uri\",\n \"writeOnly\": true,\n \"description\": \"A URI of a repository the - new content unit should be associated with.\"\n },\n \"upload\": + new content unit should be associated with.\"\n },\n \"artifact\": {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"description\": \"Artifact file representing + the physical content\"\n },\n \"relative_path\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"Path where the artifact is + located relative to distributions base_path\"\n },\n \"file\": + {\n \"type\": \"string\",\n \"format\": + \"binary\",\n \"writeOnly\": true,\n \"description\": + \"An uploaded file that may be turned into the content unit.\"\n },\n + \ \"upload\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"writeOnly\": + true,\n \"description\": \"An uncommitted upload that + may be turned into the content unit.\"\n }\n },\n + \ \"required\": [\n \"relative_path\"\n ]\n + \ },\n \"deb.GenericContentResponse\": {\n \"type\": + \"object\",\n \"description\": \"A serializer for GenericContent.\",\n + \ \"properties\": {\n \"pulp_href\": {\n + \ \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"artifact\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"Artifact file representing the physical content\"\n },\n + \ \"relative_path\": {\n \"type\": + \"string\",\n \"description\": \"Path where the artifact + is located relative to distributions base_path\"\n },\n + \ \"md5\": {\n \"type\": \"string\",\n + \ \"readOnly\": true,\n \"description\": + \"The MD5 checksum if available.\"\n },\n \"sha1\": + {\n \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"The SHA-1 checksum if available.\"\n + \ },\n \"sha224\": {\n \"type\": + \"string\",\n \"readOnly\": true,\n \"description\": + \"The SHA-224 checksum if available.\"\n },\n \"sha256\": + {\n \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"The SHA-256 checksum if + available.\"\n },\n \"sha384\": {\n + \ \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"The SHA-384 checksum if + available.\"\n },\n \"sha512\": {\n + \ \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"The SHA-512 checksum if + available.\"\n }\n },\n \"required\": + [\n \"relative_path\"\n ]\n },\n + \ \"deb.InstallerFileIndex\": {\n \"type\": \"object\",\n + \ \"description\": \"A serializer for InstallerFileIndex.\",\n + \ \"properties\": {\n \"repository\": {\n + \ \"type\": \"string\",\n \"format\": \"uri\",\n \"writeOnly\": true,\n \"description\": - \"An uncommitted upload that may be turned into the artifact of the content - unit.\"\n }\n }\n },\n \"deb.BasePackageResponse\": + \"A URI of a repository the new content unit should be associated with.\"\n + \ },\n \"artifacts\": {\n \"type\": + \"object\",\n \"description\": \"A dict mapping relative + paths inside the Content to the correspondingArtifact URLs. E.g.: {'relative/path': + '/artifacts/1/'\"\n },\n \"component\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"Component of the component + - architecture combination.\"\n },\n \"architecture\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"Architecture of the component + - architecture combination.\"\n },\n \"relative_path\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"Path of directory containing + MD5SUMS and SHA256SUMS relative to url.\"\n }\n },\n + \ \"required\": [\n \"architecture\",\n \"artifacts\",\n + \ \"component\"\n ]\n },\n \"deb.InstallerFileIndexResponse\": {\n \"type\": \"object\",\n \"description\": - \"A Serializer for InstallerPackage.\",\n \"properties\": {\n - \ \"pulp_href\": {\n \"type\": \"string\",\n - \ \"format\": \"uri\",\n \"readOnly\": + \"A serializer for InstallerFileIndex.\",\n \"properties\": + {\n \"pulp_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"artifacts\": {\n \"type\": + \"object\",\n \"description\": \"A dict mapping relative + paths inside the Content to the correspondingArtifact URLs. E.g.: {'relative/path': + '/artifacts/1/'\"\n },\n \"component\": + {\n \"type\": \"string\",\n \"description\": + \"Component of the component - architecture combination.\"\n },\n + \ \"architecture\": {\n \"type\": + \"string\",\n \"description\": \"Architecture of the + component - architecture combination.\"\n },\n \"relative_path\": + {\n \"type\": \"string\",\n \"description\": + \"Path of directory containing MD5SUMS and SHA256SUMS relative to url.\"\n + \ }\n },\n \"required\": [\n + \ \"architecture\",\n \"artifacts\",\n + \ \"component\"\n ]\n },\n \"deb.InstallerPackage\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for InstallerPackage.\",\n \"properties\": {\n + \ \"repository\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"writeOnly\": + true,\n \"description\": \"A URI of a repository the + new content unit should be associated with.\"\n },\n \"artifact\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"description\": \"Artifact file representing + the physical content\"\n },\n \"relative_path\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"Path where the artifact is + located relative to distributions base_path\"\n },\n \"file\": + {\n \"type\": \"string\",\n \"format\": + \"binary\",\n \"writeOnly\": true,\n \"description\": + \"An uploaded file that may be turned into the content unit.\"\n },\n + \ \"upload\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"writeOnly\": + true,\n \"description\": \"An uncommitted upload that + may be turned into the content unit.\"\n }\n }\n + \ },\n \"deb.InstallerPackageResponse\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer for InstallerPackage.\",\n + \ \"properties\": {\n \"pulp_href\": {\n + \ \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"artifact\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"description\": \"Artifact file representing the physical content\"\n },\n @@ -29787,11 +48016,14 @@ interactions: \ \"provides\": {\n \"type\": \"string\",\n \ \"readOnly\": true\n },\n \"replaces\": {\n \"type\": \"string\",\n \"readOnly\": - true\n }\n }\n },\n \"deb.GenericContent\": + true\n }\n }\n },\n \"deb.Package\": {\n \"type\": \"object\",\n \"description\": - \"A serializer for GenericContent.\",\n \"properties\": {\n - \ \"artifact\": {\n \"type\": \"string\",\n - \ \"format\": \"uri\",\n \"description\": + \"A Serializer for Package.\",\n \"properties\": {\n \"repository\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"writeOnly\": true,\n \"description\": + \"A URI of a repository the new content unit should be associated with.\"\n + \ },\n \"artifact\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": \"Artifact file representing the physical content\"\n },\n \ \"relative_path\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": @@ -29799,56 +48031,25 @@ interactions: \ },\n \"file\": {\n \"type\": \"string\",\n \"format\": \"binary\",\n \"writeOnly\": true,\n \"description\": \"An uploaded file that may - be turned into the artifact of the content unit.\"\n },\n - \ \"repository\": {\n \"type\": \"string\",\n - \ \"format\": \"uri\",\n \"writeOnly\": - true,\n \"description\": \"A URI of a repository the - new content unit should be associated with.\"\n },\n \"upload\": + be turned into the content unit.\"\n },\n \"upload\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"writeOnly\": true,\n \"description\": - \"An uncommitted upload that may be turned into the artifact of the content - unit.\"\n }\n },\n \"required\": - [\n \"relative_path\"\n ]\n },\n - \ \"deb.GenericContentResponse\": {\n \"type\": \"object\",\n - \ \"description\": \"A serializer for GenericContent.\",\n \"properties\": - {\n \"pulp_href\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"readOnly\": - true\n },\n \"pulp_created\": {\n \"type\": - \"string\",\n \"format\": \"date-time\",\n \"readOnly\": - true,\n \"description\": \"Timestamp of creation.\"\n - \ },\n \"artifact\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"description\": - \"Artifact file representing the physical content\"\n },\n - \ \"relative_path\": {\n \"type\": - \"string\",\n \"description\": \"Path where the artifact - is located relative to distributions base_path\"\n },\n - \ \"md5\": {\n \"type\": \"string\",\n - \ \"readOnly\": true,\n \"description\": - \"The MD5 checksum if available.\"\n },\n \"sha1\": - {\n \"type\": \"string\",\n \"readOnly\": - true,\n \"description\": \"The SHA-1 checksum if available.\"\n - \ },\n \"sha224\": {\n \"type\": - \"string\",\n \"readOnly\": true,\n \"description\": - \"The SHA-224 checksum if available.\"\n },\n \"sha256\": - {\n \"type\": \"string\",\n \"readOnly\": - true,\n \"description\": \"The SHA-256 checksum if - available.\"\n },\n \"sha384\": {\n - \ \"type\": \"string\",\n \"readOnly\": - true,\n \"description\": \"The SHA-384 checksum if - available.\"\n },\n \"sha512\": {\n - \ \"type\": \"string\",\n \"readOnly\": - true,\n \"description\": \"The SHA-512 checksum if - available.\"\n }\n },\n \"required\": - [\n \"relative_path\"\n ]\n },\n - \ \"deb.InstallerFileIndex\": {\n \"type\": \"object\",\n - \ \"description\": \"A serializer for InstallerFileIndex.\",\n - \ \"properties\": {\n \"artifacts\": {\n - \ \"type\": \"object\",\n \"description\": - \"A dict mapping relative paths inside the Content to the correspondingArtifact - URLs. E.g.: {'relative/path': '/artifacts/1/'\"\n },\n - \ \"release\": {\n \"type\": \"string\",\n - \ \"format\": \"uri\",\n \"description\": - \"Release this index file belongs to.\"\n },\n \"component\": + \"An uncommitted upload that may be turned into the content unit.\"\n },\n + \ \"distribution\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"Name of the distribution.\"\n },\n \"component\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"Name of the component.\"\n + \ }\n }\n },\n \"deb.PackageIndex\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for PackageIndex.\",\n \"properties\": {\n \"repository\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"writeOnly\": true,\n \"description\": + \"A URI of a repository the new content unit should be associated with.\"\n + \ },\n \"artifacts\": {\n \"type\": + \"object\",\n \"description\": \"A dict mapping relative + paths inside the Content to the correspondingArtifact URLs. E.g.: {'relative/path': + '/artifacts/1/'\"\n },\n \"component\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"Component of the component - architecture combination.\"\n },\n \"architecture\": @@ -29856,14 +48057,12 @@ interactions: 1,\n \"description\": \"Architecture of the component - architecture combination.\"\n },\n \"relative_path\": {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"Path of directory containing - MD5SUMS and SHA256SUMS relative to url.\"\n }\n },\n - \ \"required\": [\n \"architecture\",\n \"artifacts\",\n - \ \"component\",\n \"release\"\n ]\n - \ },\n \"deb.InstallerFileIndexResponse\": {\n \"type\": - \"object\",\n \"description\": \"A serializer for InstallerFileIndex.\",\n - \ \"properties\": {\n \"pulp_href\": {\n - \ \"type\": \"string\",\n \"format\": + 1,\n \"description\": \"Path of file relative to url.\"\n + \ }\n },\n \"required\": [\n + \ \"artifacts\"\n ]\n },\n \"deb.PackageIndexResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for PackageIndex.\",\n \"properties\": {\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \ \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": @@ -29871,107 +48070,163 @@ interactions: \ },\n \"artifacts\": {\n \"type\": \"object\",\n \"description\": \"A dict mapping relative paths inside the Content to the correspondingArtifact URLs. E.g.: {'relative/path': - '/artifacts/1/'\"\n },\n \"release\": - {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"description\": \"Release this index file - belongs to.\"\n },\n \"component\": + '/artifacts/1/'\"\n },\n \"component\": {\n \"type\": \"string\",\n \"description\": \"Component of the component - architecture combination.\"\n },\n \ \"architecture\": {\n \"type\": \"string\",\n \"description\": \"Architecture of the component - architecture combination.\"\n },\n \"relative_path\": {\n \"type\": \"string\",\n \"description\": - \"Path of directory containing MD5SUMS and SHA256SUMS relative to url.\"\n - \ }\n },\n \"required\": [\n - \ \"architecture\",\n \"artifacts\",\n - \ \"component\",\n \"release\"\n ]\n - \ },\n \"deb.PackageIndex\": {\n \"type\": - \"object\",\n \"description\": \"A serializer for PackageIndex.\",\n - \ \"properties\": {\n \"artifacts\": {\n - \ \"type\": \"object\",\n \"description\": - \"A dict mapping relative paths inside the Content to the correspondingArtifact - URLs. E.g.: {'relative/path': '/artifacts/1/'\"\n },\n - \ \"release\": {\n \"type\": \"string\",\n - \ \"format\": \"uri\",\n \"description\": - \"Release this index file belongs to.\"\n },\n \"component\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"Component of the component - - architecture combination.\"\n },\n \"architecture\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"Architecture of the component - - architecture combination.\"\n },\n \"relative_path\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"Path of file relative to url.\"\n - \ }\n },\n \"required\": [\n - \ \"artifacts\",\n \"release\"\n ]\n - \ },\n \"deb.PackageIndexResponse\": {\n \"type\": - \"object\",\n \"description\": \"A serializer for PackageIndex.\",\n + \"Path of file relative to url.\"\n }\n },\n + \ \"required\": [\n \"artifacts\"\n ]\n + \ },\n \"deb.PackageReleaseComponent\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer for PackageReleaseComponent.\",\n + \ \"properties\": {\n \"repository\": {\n + \ \"type\": \"string\",\n \"format\": + \"uri\",\n \"writeOnly\": true,\n \"description\": + \"A URI of a repository the new content unit should be associated with.\"\n + \ },\n \"package\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"Package that is contained in release_comonent.\"\n },\n + \ \"release_component\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"ReleaseComponent this package is contained in.\"\n }\n + \ },\n \"required\": [\n \"package\",\n + \ \"release_component\"\n ]\n },\n + \ \"deb.PackageReleaseComponentResponse\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer for PackageReleaseComponent.\",\n \ \"properties\": {\n \"pulp_href\": {\n \ \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \ \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n - \ },\n \"artifacts\": {\n \"type\": - \"object\",\n \"description\": \"A dict mapping relative - paths inside the Content to the correspondingArtifact URLs. E.g.: {'relative/path': - '/artifacts/1/'\"\n },\n \"release\": + \ },\n \"package\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"Package that is contained in release_comonent.\"\n },\n + \ \"release_component\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"ReleaseComponent this package is contained in.\"\n }\n + \ },\n \"required\": [\n \"package\",\n + \ \"release_component\"\n ]\n },\n + \ \"deb.PackageResponse\": {\n \"type\": \"object\",\n + \ \"description\": \"A Serializer for Package.\",\n \"properties\": + {\n \"pulp_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"artifact\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"Artifact file representing the physical content\"\n },\n + \ \"relative_path\": {\n \"type\": + \"string\",\n \"description\": \"Path where the artifact + is located relative to distributions base_path\"\n },\n + \ \"distribution\": {\n \"type\": + \"string\",\n \"description\": \"Name of the distribution.\"\n + \ },\n \"component\": {\n \"type\": + \"string\",\n \"description\": \"Name of the component.\"\n + \ },\n \"md5\": {\n \"type\": + \"string\",\n \"readOnly\": true,\n \"description\": + \"The MD5 checksum if available.\"\n },\n \"sha1\": + {\n \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"The SHA-1 checksum if available.\"\n + \ },\n \"sha224\": {\n \"type\": + \"string\",\n \"readOnly\": true,\n \"description\": + \"The SHA-224 checksum if available.\"\n },\n \"sha256\": + {\n \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"The SHA-256 checksum if + available.\"\n },\n \"sha384\": {\n + \ \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"The SHA-384 checksum if + available.\"\n },\n \"sha512\": {\n + \ \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"The SHA-512 checksum if + available.\"\n },\n \"package\": {\n + \ \"type\": \"string\",\n \"readOnly\": + true\n },\n \"source\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"version\": {\n \"type\": \"string\",\n + \ \"readOnly\": true\n },\n \"architecture\": + {\n \"type\": \"string\",\n \"readOnly\": + true\n },\n \"section\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"priority\": {\n \"type\": \"string\",\n + \ \"readOnly\": true\n },\n \"origin\": + {\n \"type\": \"string\",\n \"readOnly\": + true\n },\n \"tag\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"bugs\": {\n \"type\": \"string\",\n + \ \"readOnly\": true\n },\n \"essential\": + {\n \"type\": \"string\",\n \"readOnly\": + true\n },\n \"build_essential\": {\n + \ \"type\": \"string\",\n \"readOnly\": + true\n },\n \"installed_size\": {\n + \ \"type\": \"string\",\n \"readOnly\": + true\n },\n \"maintainer\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"original_maintainer\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"description\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"description_md5\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"homepage\": {\n \"type\": \"string\",\n + \ \"readOnly\": true\n },\n \"built_using\": + {\n \"type\": \"string\",\n \"readOnly\": + true\n },\n \"auto_built_package\": + {\n \"type\": \"string\",\n \"readOnly\": + true\n },\n \"multi_arch\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"breaks\": {\n \"type\": \"string\",\n + \ \"readOnly\": true\n },\n \"conflicts\": + {\n \"type\": \"string\",\n \"readOnly\": + true\n },\n \"depends\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"recommends\": {\n \"type\": \"string\",\n + \ \"readOnly\": true\n },\n \"suggests\": + {\n \"type\": \"string\",\n \"readOnly\": + true\n },\n \"enhances\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"pre_depends\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"provides\": {\n \"type\": \"string\",\n + \ \"readOnly\": true\n },\n \"replaces\": + {\n \"type\": \"string\",\n \"readOnly\": + true\n }\n }\n },\n \"deb.Release\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for Release.\",\n \"properties\": {\n \"repository\": {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"description\": \"Release this index file - belongs to.\"\n },\n \"component\": - {\n \"type\": \"string\",\n \"description\": - \"Component of the component - architecture combination.\"\n },\n - \ \"architecture\": {\n \"type\": - \"string\",\n \"description\": \"Architecture of the - component - architecture combination.\"\n },\n \"relative_path\": - {\n \"type\": \"string\",\n \"description\": - \"Path of file relative to url.\"\n }\n },\n - \ \"required\": [\n \"artifacts\",\n \"release\"\n - \ ]\n },\n \"deb.PackageReleaseComponent\": + \"uri\",\n \"writeOnly\": true,\n \"description\": + \"A URI of a repository the new content unit should be associated with.\"\n + \ },\n \"codename\": {\n \"type\": + \"string\",\n \"minLength\": 1\n },\n + \ \"suite\": {\n \"type\": \"string\",\n + \ \"minLength\": 1\n },\n \"distribution\": + {\n \"type\": \"string\",\n \"minLength\": + 1\n },\n \"version\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1\n },\n \"origin\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1\n },\n \"label\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1\n },\n \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1\n }\n },\n \"required\": + [\n \"codename\",\n \"distribution\",\n + \ \"suite\"\n ]\n },\n \"deb.ReleaseArchitecture\": {\n \"type\": \"object\",\n \"description\": - \"A Serializer for PackageReleaseComponent.\",\n \"properties\": - {\n \"package\": {\n \"type\": \"string\",\n - \ \"format\": \"uri\",\n \"description\": - \"Package that is contained in release_comonent.\"\n },\n - \ \"release_component\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"description\": - \"ReleaseComponent this package is contained in.\"\n }\n - \ },\n \"required\": [\n \"package\",\n - \ \"release_component\"\n ]\n },\n - \ \"deb.PackageReleaseComponentResponse\": {\n \"type\": - \"object\",\n \"description\": \"A Serializer for PackageReleaseComponent.\",\n - \ \"properties\": {\n \"pulp_href\": {\n - \ \"type\": \"string\",\n \"format\": - \"uri\",\n \"readOnly\": true\n },\n - \ \"pulp_created\": {\n \"type\": - \"string\",\n \"format\": \"date-time\",\n \"readOnly\": - true,\n \"description\": \"Timestamp of creation.\"\n - \ },\n \"package\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"description\": - \"Package that is contained in release_comonent.\"\n },\n - \ \"release_component\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"description\": - \"ReleaseComponent this package is contained in.\"\n }\n - \ },\n \"required\": [\n \"package\",\n - \ \"release_component\"\n ]\n },\n - \ \"deb.Release\": {\n \"type\": \"object\",\n \"description\": - \"A Serializer for Release.\",\n \"properties\": {\n \"codename\": + \"A Serializer for ReleaseArchitecture.\",\n \"properties\": + {\n \"repository\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"writeOnly\": + true,\n \"description\": \"A URI of a repository the + new content unit should be associated with.\"\n },\n \"architecture\": {\n \"type\": \"string\",\n \"minLength\": - 1\n },\n \"suite\": {\n \"type\": - \"string\",\n \"minLength\": 1\n },\n - \ \"distribution\": {\n \"type\": - \"string\",\n \"minLength\": 1\n }\n - \ },\n \"required\": [\n \"codename\",\n - \ \"distribution\",\n \"suite\"\n ]\n - \ },\n \"deb.ReleaseArchitecture\": {\n \"type\": - \"object\",\n \"description\": \"A Serializer for ReleaseArchitecture.\",\n - \ \"properties\": {\n \"architecture\": {\n - \ \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"Name of the architecture.\"\n - \ },\n \"release\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"description\": - \"Release this architecture is contained in.\"\n }\n },\n - \ \"required\": [\n \"architecture\",\n \"release\"\n + \ },\n \"distribution\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"Name of the distribution.\"\n }\n },\n + \ \"required\": [\n \"architecture\",\n \"distribution\"\n \ ]\n },\n \"deb.ReleaseArchitectureResponse\": {\n \"type\": \"object\",\n \"description\": \"A Serializer for ReleaseArchitecture.\",\n \"properties\": @@ -29982,19 +48237,23 @@ interactions: true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"architecture\": {\n \"type\": \"string\",\n \"description\": \"Name of the architecture.\"\n - \ },\n \"release\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"description\": - \"Release this architecture is contained in.\"\n }\n },\n - \ \"required\": [\n \"architecture\",\n \"release\"\n + \ },\n \"distribution\": {\n \"type\": + \"string\",\n \"description\": \"Name of the distribution.\"\n + \ }\n },\n \"required\": [\n + \ \"architecture\",\n \"distribution\"\n \ ]\n },\n \"deb.ReleaseComponent\": {\n \ \"type\": \"object\",\n \"description\": \"A - Serializer for ReleaseComponent.\",\n \"properties\": {\n \"component\": + Serializer for ReleaseComponent.\",\n \"properties\": {\n \"repository\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"writeOnly\": true,\n \"description\": + \"A URI of a repository the new content unit should be associated with.\"\n + \ },\n \"component\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"Name of the component.\"\n },\n \"distribution\": {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"Name of the component.\"\n - \ },\n \"release\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"description\": - \"Release this component is contained in.\"\n }\n },\n - \ \"required\": [\n \"component\",\n \"release\"\n + 1,\n \"description\": \"Name of the distribution.\"\n + \ }\n },\n \"required\": [\n + \ \"component\",\n \"distribution\"\n \ ]\n },\n \"deb.ReleaseComponentResponse\": {\n \"type\": \"object\",\n \"description\": \"A Serializer for ReleaseComponent.\",\n \"properties\": {\n @@ -30005,25 +48264,29 @@ interactions: true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"component\": {\n \"type\": \"string\",\n \"description\": \"Name of the component.\"\n - \ },\n \"release\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"description\": - \"Release this component is contained in.\"\n }\n },\n - \ \"required\": [\n \"component\",\n \"release\"\n + \ },\n \"distribution\": {\n \"type\": + \"string\",\n \"description\": \"Name of the distribution.\"\n + \ }\n },\n \"required\": [\n + \ \"component\",\n \"distribution\"\n \ ]\n },\n \"deb.ReleaseFile\": {\n \"type\": \"object\",\n \"description\": \"A serializer for ReleaseFile.\",\n - \ \"properties\": {\n \"artifacts\": {\n - \ \"type\": \"object\",\n \"description\": - \"A dict mapping relative paths inside the Content to the correspondingArtifact - URLs. E.g.: {'relative/path': '/artifacts/1/'\"\n },\n - \ \"codename\": {\n \"type\": \"string\",\n - \ \"minLength\": 1,\n \"description\": - \"Codename of the release, i.e. \\\"buster\\\".\"\n },\n - \ \"suite\": {\n \"type\": \"string\",\n - \ \"minLength\": 1,\n \"description\": - \"Suite of the release, i.e. \\\"stable\\\".\"\n },\n \"distribution\": + \ \"properties\": {\n \"repository\": {\n + \ \"type\": \"string\",\n \"format\": + \"uri\",\n \"writeOnly\": true,\n \"description\": + \"A URI of a repository the new content unit should be associated with.\"\n + \ },\n \"artifacts\": {\n \"type\": + \"object\",\n \"description\": \"A dict mapping relative + paths inside the Content to the correspondingArtifact URLs. E.g.: {'relative/path': + '/artifacts/1/'\"\n },\n \"codename\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"Codename of the release, e.g. + \\\"buster\\\".\"\n },\n \"suite\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"Suite of the release, e.g. + \\\"stable\\\".\"\n },\n \"distribution\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"Distribution of the release, - i.e. \\\"stable/updates\\\".\"\n },\n \"relative_path\": + e.g. \\\"stable/updates\\\".\"\n },\n \"relative_path\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"Path of file relative to url.\"\n \ }\n },\n \"required\": [\n @@ -30041,12 +48304,12 @@ interactions: paths inside the Content to the correspondingArtifact URLs. E.g.: {'relative/path': '/artifacts/1/'\"\n },\n \"codename\": {\n \"type\": \"string\",\n \"description\": - \"Codename of the release, i.e. \\\"buster\\\".\"\n },\n + \"Codename of the release, e.g. \\\"buster\\\".\"\n },\n \ \"suite\": {\n \"type\": \"string\",\n - \ \"description\": \"Suite of the release, i.e. \\\"stable\\\".\"\n + \ \"description\": \"Suite of the release, e.g. \\\"stable\\\".\"\n \ },\n \"distribution\": {\n \"type\": \"string\",\n \"description\": \"Distribution of the - release, i.e. \\\"stable/updates\\\".\"\n },\n \"relative_path\": + release, e.g. \\\"stable/updates\\\".\"\n },\n \"relative_path\": {\n \"type\": \"string\",\n \"description\": \"Path of file relative to url.\"\n }\n },\n \ \"required\": [\n \"artifacts\",\n \"distribution\"\n @@ -30061,9 +48324,165 @@ interactions: \ },\n \"codename\": {\n \"type\": \"string\"\n },\n \"suite\": {\n \"type\": \"string\"\n },\n \"distribution\": - {\n \"type\": \"string\"\n }\n },\n - \ \"required\": [\n \"codename\",\n \"distribution\",\n - \ \"suite\"\n ]\n },\n \"deb.VerbatimPublication\": + {\n \"type\": \"string\"\n },\n + \ \"version\": {\n \"type\": \"string\",\n + \ \"nullable\": true\n },\n \"origin\": + {\n \"type\": \"string\",\n \"nullable\": + true\n },\n \"label\": {\n \"type\": + \"string\",\n \"nullable\": true\n },\n + \ \"description\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"required\": [\n \"codename\",\n + \ \"distribution\",\n \"suite\"\n ]\n + \ },\n \"deb.SourceIndex\": {\n \"type\": + \"object\",\n \"description\": \"A serializer for SourceIndex.\",\n + \ \"properties\": {\n \"repository\": {\n + \ \"type\": \"string\",\n \"format\": + \"uri\",\n \"writeOnly\": true,\n \"description\": + \"A URI of a repository the new content unit should be associated with.\"\n + \ },\n \"artifacts\": {\n \"type\": + \"object\",\n \"description\": \"A dict mapping relative + paths inside the Content to the correspondingArtifact URLs. E.g.: {'relative/path': + '/artifacts/1/'\"\n },\n \"release\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"description\": \"Release this index file + belongs to.\"\n },\n \"component\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"Component this index file belongs + to.\"\n },\n \"relative_path\": {\n + \ \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"Path of file relative to url.\"\n + \ }\n },\n \"required\": [\n + \ \"artifacts\",\n \"component\",\n \"release\"\n + \ ]\n },\n \"deb.SourceIndexResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A serializer for SourceIndex.\",\n \"properties\": {\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"artifacts\": {\n \"type\": + \"object\",\n \"description\": \"A dict mapping relative + paths inside the Content to the correspondingArtifact URLs. E.g.: {'relative/path': + '/artifacts/1/'\"\n },\n \"release\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"description\": \"Release this index file + belongs to.\"\n },\n \"component\": + {\n \"type\": \"string\",\n \"description\": + \"Component this index file belongs to.\"\n },\n \"relative_path\": + {\n \"type\": \"string\",\n \"description\": + \"Path of file relative to url.\"\n }\n },\n + \ \"required\": [\n \"artifacts\",\n \"component\",\n + \ \"release\"\n ]\n },\n \"deb.SourcePackage\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for DscFile.\",\n \"properties\": {\n \"repository\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"writeOnly\": true,\n \"description\": + \"A URI of a repository the new content unit should be associated with.\"\n + \ },\n \"artifact\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"writeOnly\": + true,\n \"description\": \"Artifact URL of the Debian + Source Control (dsc) file.\"\n },\n \"relative_path\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"Relative path of the Debian + Source Control (dsc) file.It is normally advised to let Pulp generate this.\"\n + \ }\n },\n \"required\": [\n + \ \"artifact\"\n ]\n },\n \"deb.SourcePackageReleaseComponent\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for SourcePackageReleaseComponent.\",\n \"properties\": + {\n \"repository\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"writeOnly\": + true,\n \"description\": \"A URI of a repository the + new content unit should be associated with.\"\n },\n \"source_package\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"description\": \"Source package that is + contained in release_component.\"\n },\n \"release_component\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"description\": \"ReleaseComponent this + source package is contained in.\"\n }\n },\n + \ \"required\": [\n \"release_component\",\n + \ \"source_package\"\n ]\n },\n + \ \"deb.SourcePackageReleaseComponentResponse\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer for SourcePackageReleaseComponent.\",\n + \ \"properties\": {\n \"pulp_href\": {\n + \ \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"source_package\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"Source package that is contained in release_component.\"\n },\n + \ \"release_component\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"ReleaseComponent this source package is contained in.\"\n }\n + \ },\n \"required\": [\n \"release_component\",\n + \ \"source_package\"\n ]\n },\n + \ \"deb.SourcePackageResponse\": {\n \"type\": \"object\",\n + \ \"description\": \"A Serializer for DscFile.\",\n \"properties\": + {\n \"pulp_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"artifacts\": {\n \"type\": + \"object\",\n \"readOnly\": true,\n \"description\": + \"A dict mapping relative paths inside the Content to the correspondingArtifact + URLs. E.g.: {'relative/path': '/artifacts/1/'\"\n },\n + \ \"relative_path\": {\n \"type\": + \"string\",\n \"description\": \"Relative path of the + Debian Source Control (dsc) file.It is normally advised to let Pulp generate + this.\"\n },\n \"format\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"source\": {\n \"type\": \"string\",\n + \ \"readOnly\": true\n },\n \"binary\": + {\n \"type\": \"string\",\n \"readOnly\": + true\n },\n \"architecture\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"version\": {\n \"type\": \"string\",\n + \ \"readOnly\": true\n },\n \"maintainer\": + {\n \"type\": \"string\",\n \"readOnly\": + true\n },\n \"uploaders\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"homepage\": {\n \"type\": \"string\",\n + \ \"readOnly\": true\n },\n \"vcs_browser\": + {\n \"type\": \"string\",\n \"readOnly\": + true\n },\n \"vcs_arch\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"vcs_bzr\": {\n \"type\": \"string\",\n + \ \"readOnly\": true\n },\n \"vcs_cvs\": + {\n \"type\": \"string\",\n \"readOnly\": + true\n },\n \"vcs_darcs\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"vcs_git\": {\n \"type\": \"string\",\n + \ \"readOnly\": true\n },\n \"vcs_hg\": + {\n \"type\": \"string\",\n \"readOnly\": + true\n },\n \"vcs_mtn\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"vcs_snv\": {\n \"type\": \"string\",\n + \ \"readOnly\": true\n },\n \"testsuite\": + {\n \"type\": \"string\",\n \"readOnly\": + true\n },\n \"dgit\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"standards_version\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"build_depends\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"build_depends_indep\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"build_depends_arch\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"build_conflicts\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"build_conflicts_indep\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"build_conflicts_arch\": {\n \"type\": + \"string\",\n \"readOnly\": true\n },\n + \ \"package_list\": {\n \"type\": + \"string\",\n \"readOnly\": true\n }\n + \ },\n \"required\": [\n \"artifacts\"\n + \ ]\n },\n \"deb.VerbatimPublication\": {\n \"type\": \"object\",\n \"description\": \"A Serializer for VerbatimPublication.\",\n \"properties\": {\n \"repository_version\": {\n \"type\": @@ -30125,30 +48544,30 @@ interactions: \ },\n \"required\": [\n \"name\",\n \ \"remote\"\n ]\n },\n \"file.FileContent\": {\n \"type\": \"object\",\n \"description\": - \"Serializer for File Content.\",\n \"properties\": {\n \"artifact\": - {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"description\": \"Artifact file representing - the physical content\"\n },\n \"relative_path\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"Path where the artifact is - located relative to distributions base_path\"\n },\n \"file\": + \"Serializer for File Content.\",\n \"properties\": {\n \"repository\": {\n \"type\": \"string\",\n \"format\": - \"binary\",\n \"writeOnly\": true,\n \"description\": - \"An uploaded file that may be turned into the artifact of the content unit.\"\n - \ },\n \"repository\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"writeOnly\": - true,\n \"description\": \"A URI of a repository the - new content unit should be associated with.\"\n },\n \"upload\": + \"uri\",\n \"writeOnly\": true,\n \"description\": + \"A URI of a repository the new content unit should be associated with.\"\n + \ },\n \"artifact\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"Artifact file representing the physical content\"\n },\n + \ \"relative_path\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"Path where the artifact is located relative to distributions base_path\"\n + \ },\n \"file\": {\n \"type\": + \"string\",\n \"format\": \"binary\",\n \"writeOnly\": + true,\n \"description\": \"An uploaded file that may + be turned into the content unit.\"\n },\n \"upload\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"writeOnly\": true,\n \"description\": - \"An uncommitted upload that may be turned into the artifact of the content - unit.\"\n }\n },\n \"required\": - [\n \"relative_path\"\n ]\n },\n - \ \"file.FileContentResponse\": {\n \"type\": \"object\",\n - \ \"description\": \"Serializer for File Content.\",\n \"properties\": - {\n \"pulp_href\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"readOnly\": - true\n },\n \"pulp_created\": {\n \"type\": + \"An uncommitted upload that may be turned into the content unit.\"\n }\n + \ },\n \"required\": [\n \"relative_path\"\n + \ ]\n },\n \"file.FileContentResponse\": + {\n \"type\": \"object\",\n \"description\": + \"Serializer for File Content.\",\n \"properties\": {\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"artifact\": {\n \"type\": @@ -30185,8 +48604,404 @@ interactions: \ \"content_guard\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"An optional content-guard.\"\n + \ },\n \"hidden\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether this distribution should be shown in the content app.\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"The latest RepositoryVersion for this Repository will be served.\"\n },\n + \ \"publication\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"Publication to be served\"\n + \ }\n },\n \"required\": [\n + \ \"base_path\",\n \"name\"\n ]\n + \ },\n \"file.FileDistributionResponse\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for File Distributions.\",\n + \ \"properties\": {\n \"pulp_href\": {\n + \ \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"base_path\": {\n \"type\": + \"string\",\n \"description\": \"The base (relative) + path component of the published url. Avoid paths that overlap + with other distribution base paths (e.g. \\\"foo\\\" and \\\"foo/bar\\\")\"\n + \ },\n \"base_url\": {\n \"type\": + \"string\",\n \"readOnly\": true,\n \"description\": + \"The URL for accessing the publication as defined by this distribution.\"\n + \ },\n \"content_guard\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"An optional content-guard.\"\n + \ },\n \"hidden\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether this distribution should be shown in the content app.\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name. Ex, + `rawhide` and `stable`.\"\n },\n \"repository\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"The latest RepositoryVersion for this Repository will be served.\"\n },\n + \ \"publication\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"Publication to be served\"\n + \ }\n },\n \"required\": [\n + \ \"base_path\",\n \"name\"\n ]\n + \ },\n \"file.FilePublication\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for File Publications.\",\n + \ \"properties\": {\n \"repository_version\": + {\n \"type\": \"string\",\n \"format\": + \"uri\"\n },\n \"repository\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"A URI of the repository to be published.\"\n },\n \"manifest\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"default\": + \"PULP_MANIFEST\",\n \"description\": \"Filename to + use for manifest file containing metadata for all the files.\"\n }\n + \ }\n },\n \"file.FilePublicationResponse\": + {\n \"type\": \"object\",\n \"description\": + \"Serializer for File Publications.\",\n \"properties\": {\n + \ \"pulp_href\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"repository_version\": {\n \"type\": + \"string\",\n \"format\": \"uri\"\n },\n + \ \"repository\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"description\": + \"A URI of the repository to be published.\"\n },\n \"distributions\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"format\": + \"uri\"\n },\n \"readOnly\": + true,\n \"description\": \"This publication is currently + hosted as defined by these distributions.\"\n },\n \"manifest\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"default\": \"PULP_MANIFEST\",\n \"description\": + \"Filename to use for manifest file containing metadata for all the files.\"\n + \ }\n }\n },\n \"file.FileRemote\": + {\n \"type\": \"object\",\n \"description\": + \"Serializer for File Remotes.\",\n \"properties\": {\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name for this remote.\"\n + \ },\n \"url\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"The URL of an external content source.\"\n },\n \"ca_cert\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded CA certificate used to validate the server certificate presented + by the remote server.\"\n },\n \"client_cert\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded client certificate used for authentication.\"\n },\n + \ \"client_key\": {\n \"type\": \"string\",\n + \ \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded private key used for authentication.\"\n },\n + \ \"tls_validation\": {\n \"type\": + \"boolean\",\n \"description\": \"If True, TLS peer + validation must be performed.\"\n },\n \"proxy_url\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The proxy URL. Format: scheme://host:port\"\n },\n \"proxy_username\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The username to authenticte + to the proxy.\"\n },\n \"proxy_password\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The password to authenticate + to the proxy. Extra leading and trailing whitespace characters are not trimmed.\"\n + \ },\n \"username\": {\n \"type\": + \"string\",\n \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The username to be used for authentication when syncing.\"\n },\n + \ \"password\": {\n \"type\": \"string\",\n + \ \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The password to be used for authentication when syncing. Extra leading and + trailing whitespace characters are not trimmed.\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/Policy762Enum\"\n }\n ],\n + \ \"default\": \"immediate\",\n \"description\": + \"The policy to use when downloading content. The possible values include: + 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_read_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_read + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"headers\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\"\n },\n + \ \"description\": \"Headers for aiohttp.Clientsession\"\n + \ },\n \"rate_limit\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n }\n },\n + \ \"required\": [\n \"name\",\n \"url\"\n + \ ]\n },\n \"file.FileRemoteResponse\": + {\n \"type\": \"object\",\n \"description\": + \"Serializer for File Remotes.\",\n \"properties\": {\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name for + this remote.\"\n },\n \"url\": {\n \"type\": + \"string\",\n \"description\": \"The URL of an external + content source.\"\n },\n \"ca_cert\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"A PEM encoded CA certificate + used to validate the server certificate presented by the remote server.\"\n + \ },\n \"client_cert\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"description\": + \"A PEM encoded client certificate used for authentication.\"\n },\n + \ \"tls_validation\": {\n \"type\": + \"boolean\",\n \"description\": \"If True, TLS peer + validation must be performed.\"\n },\n \"proxy_url\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"pulp_last_updated\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of the most recent + update of the remote.\"\n },\n \"download_concurrency\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/Policy762Enum\"\n }\n ],\n + \ \"default\": \"immediate\",\n \"description\": + \"The policy to use when downloading content. The possible values include: + 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_read_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_read + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"headers\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\"\n },\n + \ \"description\": \"Headers for aiohttp.Clientsession\"\n + \ },\n \"rate_limit\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"hidden_fields\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"name\": {\n \"type\": + \"string\"\n },\n \"is_set\": + {\n \"type\": \"boolean\"\n }\n + \ }\n },\n \"readOnly\": + true,\n \"description\": \"List of hidden (write only) + fields\"\n }\n },\n \"required\": + [\n \"name\",\n \"url\"\n ]\n + \ },\n \"file.FileRepository\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for File Repositories.\",\n + \ \"properties\": {\n \"pulp_labels\": {\n + \ \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name for this repository.\"\n + \ },\n \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"autopublish\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether to automatically create publications for new repository versions, + and update any distributions pointing to this repository.\"\n },\n + \ \"manifest\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"minLength\": + 1,\n \"default\": \"PULP_MANIFEST\",\n \"description\": + \"Filename to use for manifest file containing metadata for all the files.\"\n + \ }\n },\n \"required\": [\n + \ \"name\"\n ]\n },\n \"file.FileRepositoryResponse\": + {\n \"type\": \"object\",\n \"description\": + \"Serializer for File Repositories.\",\n \"properties\": {\n + \ \"pulp_href\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"versions_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"latest_version_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name for + this repository.\"\n },\n \"description\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"autopublish\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether to automatically create publications for new repository versions, + and update any distributions pointing to this repository.\"\n },\n + \ \"manifest\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"default\": + \"PULP_MANIFEST\",\n \"description\": \"Filename to + use for manifest file containing metadata for all the files.\"\n }\n + \ },\n \"required\": [\n \"name\"\n + \ ]\n },\n \"gem.GemContent\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer for GemContent.\",\n + \ \"properties\": {\n \"repository\": {\n + \ \"type\": \"string\",\n \"format\": + \"uri\",\n \"writeOnly\": true,\n \"description\": + \"A URI of a repository the new content unit should be associated with.\"\n + \ },\n \"artifact\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"writeOnly\": + true,\n \"description\": \"Artifact file representing + the physical content\"\n },\n \"file\": + {\n \"type\": \"string\",\n \"format\": + \"binary\",\n \"writeOnly\": true,\n \"description\": + \"An uploaded file that should be turned into the artifact of the content + unit.\"\n }\n }\n },\n \"gem.GemContentResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for GemContent.\",\n \"properties\": {\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"artifacts\": {\n \"type\": + \"object\",\n \"readOnly\": true,\n \"description\": + \"A dict mapping relative paths inside the Content to the correspondingArtifact + URLs. E.g.: {'relative/path': '/artifacts/1/'\"\n },\n + \ \"checksum\": {\n \"type\": \"string\",\n + \ \"readOnly\": true,\n \"description\": + \"SHA256 checksum of the gem\"\n },\n \"name\": + {\n \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"Name of the gem\"\n },\n + \ \"version\": {\n \"type\": \"string\",\n + \ \"readOnly\": true,\n \"description\": + \"Version of the gem\"\n },\n \"platform\": + {\n \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"Platform of the gem\"\n + \ },\n \"prerelease\": {\n \"type\": + \"boolean\",\n \"readOnly\": true,\n \"description\": + \"Whether the gem is a prerelease\"\n },\n \"dependencies\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n },\n \"readOnly\": true\n + \ },\n \"required_ruby_version\": {\n + \ \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"Required ruby version of + the gem\"\n },\n \"required_rubygems_version\": + {\n \"type\": \"string\",\n \"readOnly\": + true,\n \"description\": \"Required rubygems version + of the gem\"\n }\n },\n \"required\": + [\n \"artifacts\"\n ]\n },\n + \ \"gem.GemDistribution\": {\n \"type\": \"object\",\n + \ \"description\": \"A Serializer for GemDistribution.\",\n + \ \"properties\": {\n \"base_path\": {\n + \ \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The base (relative) path component + of the published url. Avoid paths that overlap with other + distribution base paths (e.g. \\\"foo\\\" and \\\"foo/bar\\\")\"\n },\n + \ \"content_guard\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"An optional content-guard.\"\n + \ },\n \"hidden\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether this distribution should be shown in the content app.\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": @@ -30195,14 +49010,17 @@ interactions: \ \"publication\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"Publication to be served\"\n - \ }\n },\n \"required\": [\n - \ \"base_path\",\n \"name\"\n ]\n - \ },\n \"file.FileDistributionResponse\": {\n \"type\": - \"object\",\n \"description\": \"Serializer for File Distributions.\",\n - \ \"properties\": {\n \"pulp_href\": {\n - \ \"type\": \"string\",\n \"format\": - \"uri\",\n \"readOnly\": true\n },\n - \ \"pulp_created\": {\n \"type\": + \ },\n \"remote\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"Remote that can be used + to fetch content when using pull-through caching.\"\n }\n + \ },\n \"required\": [\n \"base_path\",\n + \ \"name\"\n ]\n },\n \"gem.GemDistributionResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for GemDistribution.\",\n \"properties\": {\n + \ \"pulp_href\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"base_path\": {\n \"type\": @@ -30215,8 +49033,13 @@ interactions: \ },\n \"content_guard\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"An optional content-guard.\"\n - \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": + \ },\n \"hidden\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether this distribution should be shown in the content app.\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": \"string\",\n \"description\": \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": @@ -30225,41 +49048,34 @@ interactions: \ \"publication\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"Publication to be served\"\n - \ }\n },\n \"required\": [\n - \ \"base_path\",\n \"name\"\n ]\n - \ },\n \"file.FilePublication\": {\n \"type\": - \"object\",\n \"description\": \"Serializer for File Publications.\",\n - \ \"properties\": {\n \"repository_version\": - {\n \"type\": \"string\",\n \"format\": - \"uri\"\n },\n \"repository\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"description\": - \"A URI of the repository to be published.\"\n },\n \"manifest\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"default\": \"PULP_MANIFEST\",\n \"description\": - \"Filename to use for manifest file containing metadata for all the files.\"\n - \ }\n }\n },\n \"file.FilePublicationResponse\": + \ },\n \"remote\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"Remote that can be used + to fetch content when using pull-through caching.\"\n }\n + \ },\n \"required\": [\n \"base_path\",\n + \ \"name\"\n ]\n },\n \"gem.GemPublication\": {\n \"type\": \"object\",\n \"description\": - \"Serializer for File Publications.\",\n \"properties\": {\n - \ \"pulp_href\": {\n \"type\": \"string\",\n - \ \"format\": \"uri\",\n \"readOnly\": - true\n },\n \"pulp_created\": {\n \"type\": + \"A Serializer for GemPublication.\",\n \"properties\": {\n + \ \"repository_version\": {\n \"type\": + \"string\",\n \"format\": \"uri\"\n },\n + \ \"repository\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"description\": + \"A URI of the repository to be published.\"\n }\n }\n + \ },\n \"gem.GemPublicationResponse\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer for GemPublication.\",\n + \ \"properties\": {\n \"pulp_href\": {\n + \ \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"repository_version\": {\n \"type\": \"string\",\n \"format\": \"uri\"\n },\n \ \"repository\": {\n \"type\": \"string\",\n \ \"format\": \"uri\",\n \"description\": - \"A URI of the repository to be published.\"\n },\n \"distributions\": - {\n \"type\": \"array\",\n \"items\": - {\n \"type\": \"string\",\n \"format\": - \"uri\"\n },\n \"readOnly\": - true,\n \"description\": \"This publication is currently - hosted as defined by these distributions.\"\n },\n \"manifest\": - {\n \"type\": \"string\",\n \"default\": - \"PULP_MANIFEST\",\n \"description\": \"Filename to - use for manifest file containing metadata for all the files.\"\n }\n - \ }\n },\n \"file.FileRemote\": {\n \"type\": - \"object\",\n \"description\": \"Serializer for File Remotes.\",\n + \"A URI of the repository to be published.\"\n }\n }\n + \ },\n \"gem.GemRemote\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer for GemRemote.\",\n \ \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"A unique name for this remote.\"\n },\n \"url\": @@ -30300,12 +49116,15 @@ interactions: \"The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.\"\n },\n \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.\"\n },\n \"policy\": {\n \"allOf\": @@ -30313,19 +49132,25 @@ interactions: \"#/components/schemas/Policy762Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": \"The policy to use when downloading content. The possible values include: - 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\"\n - \ },\n \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -30339,13 +49164,23 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n }\n - \ },\n \"required\": [\n \"name\",\n - \ \"url\"\n ]\n },\n \"file.FileRemoteResponse\": - {\n \"type\": \"object\",\n \"description\": - \"Serializer for File Remotes.\",\n \"properties\": {\n \"pulp_href\": - {\n \"type\": \"string\",\n \"format\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"prereleases\": + {\n \"type\": \"boolean\",\n \"default\": + false\n },\n \"includes\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n },\n + \ \"nullable\": true\n },\n \"excludes\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n },\n \"nullable\": true\n + \ }\n },\n \"required\": [\n + \ \"name\",\n \"url\"\n ]\n + \ },\n \"gem.GemRemoteResponse\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer for GemRemote.\",\n + \ \"properties\": {\n \"pulp_href\": {\n + \ \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \ \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": @@ -30367,35 +49202,44 @@ interactions: {\n \"type\": \"string\",\n \"nullable\": true,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"pulp_last_updated\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"readOnly\": true,\n \"description\": - \"Timestamp of the most recent update of the remote.\"\n },\n - \ \"download_concurrency\": {\n \"type\": - \"integer\",\n \"minimum\": 1,\n \"nullable\": - true,\n \"description\": \"Total number of simultaneous - connections. If not set then the default value will be used.\"\n },\n + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"pulp_last_updated\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of the most recent + update of the remote.\"\n },\n \"download_concurrency\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n \ \"max_retries\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Maximum number of retry attempts after a download failure. If not set then - the default value (3) will be used.\"\n },\n \"policy\": - {\n \"allOf\": [\n {\n \"$ref\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": \"#/components/schemas/Policy762Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": \"The policy to use when downloading content. The possible values include: - 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\"\n - \ },\n \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -30409,38 +49253,50 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n }\n - \ },\n \"required\": [\n \"name\",\n - \ \"url\"\n ]\n },\n \"file.FileRepository\": - {\n \"type\": \"object\",\n \"description\": - \"Serializer for File Repositories.\",\n \"properties\": {\n - \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"A unique name for this repository.\"\n },\n \"description\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n },\n \"autopublish\": - {\n \"type\": \"boolean\",\n \"default\": - false,\n \"description\": \"Whether to automatically - create publications for new repository versions, and update any distributions - pointing to this repository.\"\n },\n \"manifest\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"default\": \"PULP_MANIFEST\",\n \"description\": - \"Filename to use for manifest file containing metadata for all the files.\"\n + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"hidden_fields\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"name\": {\n \"type\": + \"string\"\n },\n \"is_set\": + {\n \"type\": \"boolean\"\n }\n + \ }\n },\n \"readOnly\": + true,\n \"description\": \"List of hidden (write only) + fields\"\n },\n \"prereleases\": {\n + \ \"type\": \"boolean\",\n \"default\": + false\n },\n \"includes\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n },\n + \ \"nullable\": true\n },\n \"excludes\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n },\n \"nullable\": true\n \ }\n },\n \"required\": [\n - \ \"name\"\n ]\n },\n \"file.FileRepositoryResponse\": + \ \"name\",\n \"url\"\n ]\n + \ },\n \"gem.GemRepository\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer for GemRepository.\",\n + \ \"properties\": {\n \"pulp_labels\": {\n + \ \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name for this repository.\"\n + \ },\n \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n }\n + \ },\n \"required\": [\n \"name\"\n + \ ]\n },\n \"gem.GemRepositoryResponse\": {\n \"type\": \"object\",\n \"description\": - \"Serializer for File Repositories.\",\n \"properties\": {\n + \"A Serializer for GemRepository.\",\n \"properties\": {\n \ \"pulp_href\": {\n \"type\": \"string\",\n \ \"format\": \"uri\",\n \"readOnly\": true\n },\n \"pulp_created\": {\n \"type\": @@ -30449,41 +49305,38 @@ interactions: \ },\n \"versions_href\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"latest_version_href\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"latest_version_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name for + this repository.\"\n },\n \"description\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"readOnly\": true\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"description\": \"A unique name for this repository.\"\n - \ },\n \"description\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"description\": - \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n },\n \"autopublish\": - {\n \"type\": \"boolean\",\n \"default\": - false,\n \"description\": \"Whether to automatically - create publications for new repository versions, and update any distributions - pointing to this repository.\"\n },\n \"manifest\": - {\n \"type\": \"string\",\n \"default\": - \"PULP_MANIFEST\",\n \"description\": \"Filename to - use for manifest file containing metadata for all the files.\"\n }\n + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n }\n \ },\n \"required\": [\n \"name\"\n \ ]\n },\n \"maven.MavenArtifact\": {\n \ \"type\": \"object\",\n \"description\": \"A - Serializer for MavenArtifact.\",\n \"properties\": {\n \"artifact\": + Serializer for MavenArtifact.\",\n \"properties\": {\n \"repository\": {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"description\": \"Artifact file representing - the physical content\"\n },\n \"relative_path\": - {\n \"type\": \"string\",\n \"writeOnly\": - true,\n \"minLength\": 1,\n \"description\": - \"Path where the artifact is located relative to distributions base_path\"\n - \ }\n },\n \"required\": [\n - \ \"artifact\",\n \"relative_path\"\n + \"uri\",\n \"writeOnly\": true,\n \"description\": + \"A URI of a repository the new content unit should be associated with.\"\n + \ },\n \"artifact\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"Artifact file representing the physical content\"\n },\n + \ \"relative_path\": {\n \"type\": + \"string\",\n \"writeOnly\": true,\n \"minLength\": + 1,\n \"description\": \"Path where the artifact is + located relative to distributions base_path\"\n }\n },\n + \ \"required\": [\n \"artifact\",\n \"relative_path\"\n \ ]\n },\n \"maven.MavenArtifactResponse\": {\n \"type\": \"object\",\n \"description\": \"A Serializer for MavenArtifact.\",\n \"properties\": {\n @@ -30516,11 +49369,16 @@ interactions: and \\\"foo/bar\\\")\"\n },\n \"content_guard\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": - \"An optional content-guard.\"\n },\n \"pulp_labels\": - {\n \"type\": \"object\"\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"minLength\": 1,\n \"description\": - \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository\": + \"An optional content-guard.\"\n },\n \"hidden\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Whether this distribution + should be shown in the content app.\"\n },\n \"pulp_labels\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name. Ex, `rawhide` + and `stable`.\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"The latest RepositoryVersion for this Repository will be served.\"\n },\n @@ -30547,8 +49405,13 @@ interactions: \ },\n \"content_guard\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"An optional content-guard.\"\n - \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": + \ },\n \"hidden\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether this distribution should be shown in the content app.\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": \"string\",\n \"description\": \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": @@ -30606,19 +49469,410 @@ interactions: \"The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.\"\n },\n \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/PolicyDb6Enum\"\n }\n ],\n + \ \"default\": \"immediate\",\n \"description\": + \"The policy to use when downloading content.\\n\\n* `immediate` - immediate\\n* + `When syncing, download all metadata and content now.` - When syncing, download + all metadata and content now.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_read_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_read + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"headers\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\"\n },\n + \ \"description\": \"Headers for aiohttp.Clientsession\"\n + \ },\n \"rate_limit\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n }\n },\n + \ \"required\": [\n \"name\",\n \"url\"\n + \ ]\n },\n \"maven.MavenRemoteResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for MavenRemote.\\n\\nAdd any new fields if defined on MavenRemote.\\nSimilar + to the example above, in MavenArtifactSerializer.\\nAdditional validators + can be added to the parent validators list\\n\\nFor example::\\n\\nclass Meta:\\n + \ validators = platform.RemoteSerializer.Meta.validators + [myValidator1, + myValidator2]\",\n \"properties\": {\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name for + this remote.\"\n },\n \"url\": {\n \"type\": + \"string\",\n \"description\": \"The URL of an external + content source.\"\n },\n \"ca_cert\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"A PEM encoded CA certificate + used to validate the server certificate presented by the remote server.\"\n + \ },\n \"client_cert\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"description\": + \"A PEM encoded client certificate used for authentication.\"\n },\n + \ \"tls_validation\": {\n \"type\": + \"boolean\",\n \"description\": \"If True, TLS peer + validation must be performed.\"\n },\n \"proxy_url\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n + \ },\n \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"pulp_last_updated\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of the most recent + update of the remote.\"\n },\n \"download_concurrency\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.\"\n },\n \"policy\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/PolicyDb6Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": - \"The policy to use when downloading content.\"\n },\n + \"The policy to use when downloading content.\\n\\n* `immediate` - immediate\\n* + `When syncing, download all metadata and content now.` - When syncing, download + all metadata and content now.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_read_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.sock_read + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"headers\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\"\n },\n + \ \"description\": \"Headers for aiohttp.Clientsession\"\n + \ },\n \"rate_limit\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"hidden_fields\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"name\": {\n \"type\": + \"string\"\n },\n \"is_set\": + {\n \"type\": \"boolean\"\n }\n + \ }\n },\n \"readOnly\": + true,\n \"description\": \"List of hidden (write only) + fields\"\n }\n },\n \"required\": + [\n \"name\",\n \"url\"\n ]\n + \ },\n \"maven.MavenRepository\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for Maven Repositories.\",\n + \ \"properties\": {\n \"pulp_labels\": {\n + \ \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name for this repository.\"\n + \ },\n \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n }\n + \ },\n \"required\": [\n \"name\"\n + \ ]\n },\n \"maven.MavenRepositoryResponse\": + {\n \"type\": \"object\",\n \"description\": + \"Serializer for Maven Repositories.\",\n \"properties\": {\n + \ \"pulp_href\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"versions_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"latest_version_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name for + this repository.\"\n },\n \"description\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n }\n + \ },\n \"required\": [\n \"name\"\n + \ ]\n },\n \"ostree.OstreeCommitResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer class for OSTree commits.\",\n \"properties\": + {\n \"pulp_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"artifact\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"Artifact file representing the physical content\"\n },\n + \ \"relative_path\": {\n \"type\": + \"string\",\n \"description\": \"Path where the artifact + is located relative to distributions base_path\"\n },\n + \ \"parent_commit\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true\n },\n \"checksum\": {\n \"type\": + \"string\"\n },\n \"objs\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"format\": \"uri\"\n }\n + \ }\n },\n \"required\": [\n + \ \"artifact\",\n \"checksum\",\n \"objs\",\n + \ \"relative_path\"\n ]\n },\n + \ \"ostree.OstreeConfigResponse\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer class for OSTree + repository configuration files.\",\n \"properties\": {\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"artifact\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"Artifact file representing the physical content\"\n },\n + \ \"relative_path\": {\n \"type\": + \"string\",\n \"description\": \"Path where the artifact + is located relative to distributions base_path\"\n }\n + \ },\n \"required\": [\n \"artifact\",\n + \ \"relative_path\"\n ]\n },\n + \ \"ostree.OstreeContentResponse\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer class for uncategorized + content units (e.g., static deltas).\",\n \"properties\": {\n + \ \"pulp_href\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"artifact\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"Artifact file representing the physical content\"\n },\n + \ \"relative_path\": {\n \"type\": + \"string\"\n },\n \"digest\": {\n \"type\": + \"string\"\n }\n },\n \"required\": + [\n \"artifact\",\n \"digest\",\n \"relative_path\"\n + \ ]\n },\n \"ostree.OstreeDistribution\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer class for an OSTree distribution.\",\n \"properties\": + {\n \"base_path\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"The base (relative) path component of the published url. Avoid paths that + \ overlap with other distribution base paths (e.g. \\\"foo\\\" + and \\\"foo/bar\\\")\"\n },\n \"content_guard\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional content-guard.\"\n },\n \"hidden\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Whether this distribution + should be shown in the content app.\"\n },\n \"pulp_labels\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name. Ex, `rawhide` + and `stable`.\"\n },\n \"repository\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"The latest RepositoryVersion for this Repository will be served.\"\n },\n + \ \"repository_version\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"RepositoryVersion to be + served\"\n }\n },\n \"required\": + [\n \"base_path\",\n \"name\"\n ]\n + \ },\n \"ostree.OstreeDistributionResponse\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer class for an + OSTree distribution.\",\n \"properties\": {\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"base_path\": {\n \"type\": + \"string\",\n \"description\": \"The base (relative) + path component of the published url. Avoid paths that overlap + with other distribution base paths (e.g. \\\"foo\\\" and \\\"foo/bar\\\")\"\n + \ },\n \"base_url\": {\n \"type\": + \"string\",\n \"readOnly\": true,\n \"description\": + \"The URL for accessing the publication as defined by this distribution.\"\n + \ },\n \"content_guard\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"An optional content-guard.\"\n + \ },\n \"hidden\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether this distribution should be shown in the content app.\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name. Ex, + `rawhide` and `stable`.\"\n },\n \"repository\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"The latest RepositoryVersion for this Repository will be served.\"\n },\n + \ \"repository_version\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"RepositoryVersion to be + served\"\n }\n },\n \"required\": + [\n \"base_path\",\n \"name\"\n ]\n + \ },\n \"ostree.OstreeObjectResponse\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer class for OSTree + objects (e.g., dirtree, dirmeta, file).\",\n \"properties\": + {\n \"pulp_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"artifact\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"Artifact file representing the physical content\"\n },\n + \ \"relative_path\": {\n \"type\": + \"string\",\n \"description\": \"Path where the artifact + is located relative to distributions base_path\"\n },\n + \ \"checksum\": {\n \"type\": \"string\"\n + \ },\n \"typ\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"description\": + \"\\n The type of an object. All values are described by the mapping + declared at\\n https://lazka.github.io/pgi-docs/OSTree-1.0/enums.html#OSTree.ObjectType\\n + \ \"\n }\n },\n \"required\": + [\n \"artifact\",\n \"checksum\",\n + \ \"relative_path\",\n \"typ\"\n ]\n + \ },\n \"ostree.OstreeRefResponse\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer class for OSTree + head commits.\",\n \"properties\": {\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"readOnly\": true\n },\n + \ \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"artifact\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"Artifact file representing the physical content\"\n },\n + \ \"relative_path\": {\n \"type\": + \"string\",\n \"description\": \"Path where the artifact + is located relative to distributions base_path\"\n },\n + \ \"commit\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\"\n },\n \"checksum\": + {\n \"type\": \"string\",\n \"readOnly\": + true\n },\n \"name\": {\n \"type\": + \"string\"\n }\n },\n \"required\": + [\n \"artifact\",\n \"commit\",\n \"name\",\n + \ \"relative_path\"\n ]\n },\n + \ \"ostree.OstreeRemote\": {\n \"type\": \"object\",\n + \ \"description\": \"A Serializer class for a remote OSTree + repository.\",\n \"properties\": {\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name for this remote.\"\n + \ },\n \"url\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"The URL of an external content source.\"\n },\n \"ca_cert\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded CA certificate used to validate the server certificate presented + by the remote server.\"\n },\n \"client_cert\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded client certificate used for authentication.\"\n },\n + \ \"client_key\": {\n \"type\": \"string\",\n + \ \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded private key used for authentication.\"\n },\n + \ \"tls_validation\": {\n \"type\": + \"boolean\",\n \"description\": \"If True, TLS peer + validation must be performed.\"\n },\n \"proxy_url\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The proxy URL. Format: scheme://host:port\"\n },\n \"proxy_username\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The username to authenticte + to the proxy.\"\n },\n \"proxy_password\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"The password to authenticate + to the proxy. Extra leading and trailing whitespace characters are not trimmed.\"\n + \ },\n \"username\": {\n \"type\": + \"string\",\n \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The username to be used for authentication when syncing.\"\n },\n + \ \"password\": {\n \"type\": \"string\",\n + \ \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The password to be used for authentication when syncing. Extra leading and + trailing whitespace characters are not trimmed.\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/Policy462Enum\"\n }\n ],\n + \ \"default\": \"immediate\",\n \"description\": + \"\\n immediate - All OSTree objects are downloaded and saved during + synchronization.\\n on_demand - Only commits, dirtrees, and refs are + downloaded. Other OSTree objects are\\n not downloaded + until they are requested for the first time by a client.\\n \\n\\n* + `immediate` - immediate\\n* `on_demand` - on_demand\"\n },\n \ \"total_timeout\": {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": @@ -30644,16 +49898,31 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n }\n - \ },\n \"required\": [\n \"name\",\n - \ \"url\"\n ]\n },\n \"maven.MavenRemoteResponse\": - {\n \"type\": \"object\",\n \"description\": - \"A Serializer for MavenRemote.\\n\\nAdd any new fields if defined on MavenRemote.\\nSimilar - to the example above, in MavenArtifactSerializer.\\nAdditional validators - can be added to the parent validators list\\n\\nFor example::\\n\\nclass Meta:\\n - \ validators = platform.RemoteSerializer.Meta.validators + [myValidator1, - myValidator2]\",\n \"properties\": {\n \"pulp_href\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"depth\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"default\": 0,\n \"description\": + \"An option to specify how many commits to traverse.\",\n \"minimum\": + 0\n },\n \"include_refs\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"maxLength\": + 255\n },\n \"nullable\": true,\n + \ \"description\": \"\\n A list of refs to + include during a sync.\\n The wildcards *, ? are recognized.\\n + \ 'include_refs' is evaluated before 'exclude_refs'.\\n \"\n + \ },\n \"exclude_refs\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"maxLength\": + 255\n },\n \"nullable\": true,\n + \ \"description\": \"\\n A list of tags to + exclude during a sync.\\n The wildcards *, ? are recognized.\\n + \ 'exclude_refs' is evaluated after 'include_refs'.\\n \"\n + \ }\n },\n \"required\": [\n + \ \"name\",\n \"url\"\n ]\n + \ },\n \"ostree.OstreeRemoteResponse\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer class for a remote + OSTree repository.\",\n \"properties\": {\n \"pulp_href\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \ \"pulp_created\": {\n \"type\": @@ -30676,22 +49945,29 @@ interactions: {\n \"type\": \"string\",\n \"nullable\": true,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"pulp_last_updated\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"readOnly\": true,\n \"description\": - \"Timestamp of the most recent update of the remote.\"\n },\n - \ \"download_concurrency\": {\n \"type\": - \"integer\",\n \"minimum\": 1,\n \"nullable\": - true,\n \"description\": \"Total number of simultaneous - connections. If not set then the default value will be used.\"\n },\n + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"pulp_last_updated\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of the most recent + update of the remote.\"\n },\n \"download_concurrency\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n \ \"max_retries\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Maximum number of retry attempts after a download failure. If not set then - the default value (3) will be used.\"\n },\n \"policy\": - {\n \"allOf\": [\n {\n \"$ref\": - \"#/components/schemas/PolicyDb6Enum\"\n }\n ],\n + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/Policy462Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": - \"The policy to use when downloading content.\"\n },\n + \"\\n immediate - All OSTree objects are downloaded and saved during + synchronization.\\n on_demand - Only commits, dirtrees, and refs are + downloaded. Other OSTree objects are\\n not downloaded + until they are requested for the first time by a client.\\n \\n\\n* + `immediate` - immediate\\n* `on_demand` - on_demand\"\n },\n \ \"total_timeout\": {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": @@ -30717,68 +49993,122 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n }\n - \ },\n \"required\": [\n \"name\",\n - \ \"url\"\n ]\n },\n \"maven.MavenRepository\": - {\n \"type\": \"object\",\n \"description\": - \"Serializer for Maven Repositories.\",\n \"properties\": {\n - \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"A unique name for this repository.\"\n },\n \"description\": - {\n \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n }\n },\n \"required\": - [\n \"name\"\n ]\n },\n \"maven.MavenRepositoryResponse\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"hidden_fields\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"name\": {\n \"type\": + \"string\"\n },\n \"is_set\": + {\n \"type\": \"boolean\"\n }\n + \ }\n },\n \"readOnly\": + true,\n \"description\": \"List of hidden (write only) + fields\"\n },\n \"depth\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"default\": + 0,\n \"description\": \"An option to specify how many + commits to traverse.\",\n \"minimum\": 0\n },\n + \ \"include_refs\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"maxLength\": 255\n },\n + \ \"nullable\": true,\n \"description\": + \"\\n A list of refs to include during a sync.\\n The + wildcards *, ? are recognized.\\n 'include_refs' is evaluated before + 'exclude_refs'.\\n \"\n },\n \"exclude_refs\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\",\n \"maxLength\": + 255\n },\n \"nullable\": true,\n + \ \"description\": \"\\n A list of tags to + exclude during a sync.\\n The wildcards *, ? are recognized.\\n + \ 'exclude_refs' is evaluated after 'include_refs'.\\n \"\n + \ }\n },\n \"required\": [\n + \ \"name\",\n \"url\"\n ]\n + \ },\n \"ostree.OstreeRepository\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer class for an + OSTree repository.\",\n \"properties\": {\n \"pulp_labels\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name for this repository.\"\n + \ },\n \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"compute_delta\": {\n \"type\": + \"boolean\",\n \"default\": true\n }\n + \ },\n \"required\": [\n \"name\"\n + \ ]\n },\n \"ostree.OstreeRepositoryResponse\": {\n \"type\": \"object\",\n \"description\": - \"Serializer for Maven Repositories.\",\n \"properties\": {\n - \ \"pulp_href\": {\n \"type\": \"string\",\n - \ \"format\": \"uri\",\n \"readOnly\": + \"A Serializer class for an OSTree repository.\",\n \"properties\": + {\n \"pulp_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"versions_href\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"latest_version_href\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"latest_version_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name for + this repository.\"\n },\n \"description\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"readOnly\": true\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"description\": \"A unique name for this repository.\"\n - \ },\n \"description\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"description\": - \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n }\n },\n \"required\": - [\n \"name\"\n ]\n },\n \"python.PythonDistribution\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"compute_delta\": {\n \"type\": + \"boolean\",\n \"default\": true\n }\n + \ },\n \"required\": [\n \"name\"\n + \ ]\n },\n \"ostree.OstreeSummaryResponse\": {\n \"type\": \"object\",\n \"description\": - \"Serializer for Pulp distributions for the Python type.\",\n \"properties\": - {\n \"base_path\": {\n \"type\": + \"A Serializer class for an OSTree summary file.\",\n \"properties\": + {\n \"pulp_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_created\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of creation.\"\n + \ },\n \"artifact\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"description\": + \"Artifact file representing the physical content\"\n },\n + \ \"relative_path\": {\n \"type\": + \"string\",\n \"description\": \"Path where the artifact + is located relative to distributions base_path\"\n }\n + \ },\n \"required\": [\n \"artifact\",\n + \ \"relative_path\"\n ]\n },\n + \ \"python.PythonDistribution\": {\n \"type\": \"object\",\n + \ \"description\": \"Serializer for Pulp distributions for the + Python type.\",\n \"properties\": {\n \"base_path\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The base (relative) path component + of the published url. Avoid paths that overlap with other + distribution base paths (e.g. \\\"foo\\\" and \\\"foo/bar\\\")\"\n },\n + \ \"content_guard\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"An optional content-guard.\"\n + \ },\n \"hidden\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether this distribution should be shown in the content app.\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": - \"The base (relative) path component of the published url. Avoid paths that - \ overlap with other distribution base paths (e.g. \\\"foo\\\" - and \\\"foo/bar\\\")\"\n },\n \"content_guard\": - {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"nullable\": true,\n \"description\": - \"An optional content-guard.\"\n },\n \"pulp_labels\": - {\n \"type\": \"object\"\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"minLength\": 1,\n \"description\": \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": @@ -30811,8 +50141,13 @@ interactions: \ \"content_guard\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"An optional content-guard.\"\n - \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": + \ },\n \"hidden\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether this distribution should be shown in the content app.\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": \"string\",\n \"description\": \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": @@ -30832,25 +50167,25 @@ interactions: \ \"name\"\n ]\n },\n \"python.PythonPackageContent\": {\n \"type\": \"object\",\n \"description\": \"A Serializer for PythonPackageContent.\",\n \"properties\": - {\n \"artifact\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"description\": - \"Artifact file representing the physical content\"\n },\n - \ \"relative_path\": {\n \"type\": - \"string\",\n \"writeOnly\": true,\n \"minLength\": - 1,\n \"description\": \"Path where the artifact is - located relative to distributions base_path\"\n },\n \"file\": - {\n \"type\": \"string\",\n \"format\": - \"binary\",\n \"writeOnly\": true,\n \"description\": - \"An uploaded file that may be turned into the artifact of the content unit.\"\n - \ },\n \"repository\": {\n \"type\": + {\n \"repository\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"writeOnly\": true,\n \"description\": \"A URI of a repository the - new content unit should be associated with.\"\n },\n \"upload\": + new content unit should be associated with.\"\n },\n \"artifact\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"description\": \"Artifact file representing + the physical content\"\n },\n \"relative_path\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"minLength\": 1,\n \"description\": + \"Path where the artifact is located relative to distributions base_path\"\n + \ },\n \"file\": {\n \"type\": + \"string\",\n \"format\": \"binary\",\n \"writeOnly\": + true,\n \"description\": \"An uploaded file that may + be turned into the content unit.\"\n },\n \"upload\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"writeOnly\": true,\n \"description\": - \"An uncommitted upload that may be turned into the artifact of the content - unit.\"\n },\n \"sha256\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"default\": + \"An uncommitted upload that may be turned into the content unit.\"\n },\n + \ \"sha256\": {\n \"type\": \"string\",\n + \ \"minLength\": 1,\n \"default\": \"\",\n \"description\": \"The SHA256 digest of this package.\"\n },\n \"summary\": {\n \"type\": \"string\",\n \"description\": \"A one-line summary @@ -31070,12 +50405,15 @@ interactions: \"The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.\"\n },\n \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.\"\n },\n \"policy\": {\n \"allOf\": @@ -31083,19 +50421,25 @@ interactions: \"#/components/schemas/Policy762Enum\"\n }\n ],\n \ \"default\": \"on_demand\",\n \"description\": \"The policy to use when downloading content. The possible values include: - 'immediate', 'on_demand', and 'streamed'. 'on_demand' is the default.\"\n - \ },\n \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + 'immediate', 'on_demand', and 'streamed'. 'on_demand' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -31109,25 +50453,29 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"includes\": {\n \"type\": \"object\",\n - \ \"description\": \"A JSON list containing project - specifiers for Python packages to include.\"\n },\n \"excludes\": - {\n \"type\": \"object\",\n \"description\": - \"A JSON list containing project specifiers for Python packages to exclude.\"\n - \ },\n \"prereleases\": {\n \"type\": - \"boolean\",\n \"description\": \"Whether or not to - include pre-release packages in the sync.\"\n },\n \"package_types\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"includes\": {\n \"type\": \"array\",\n \"items\": - {\n \"$ref\": \"#/components/schemas/PackageTypesEnum\"\n - \ },\n \"description\": \"The - package types to sync for Python content. Leave blank to get everypackage + {\n \"type\": \"string\",\n \"minLength\": + 1\n },\n \"description\": \"A + list containing project specifiers for Python packages to include.\"\n },\n + \ \"excludes\": {\n \"type\": \"array\",\n + \ \"items\": {\n \"type\": + \"string\",\n \"minLength\": 1\n },\n + \ \"description\": \"A list containing project specifiers + for Python packages to exclude.\"\n },\n \"prereleases\": + {\n \"type\": \"boolean\",\n \"description\": + \"Whether or not to include pre-release packages in the sync.\"\n },\n + \ \"package_types\": {\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": + \"#/components/schemas/PackageTypesEnum\"\n },\n \"description\": + \"The package types to sync for Python content. Leave blank to get everypackage type.\"\n },\n \"keep_latest_packages\": - {\n \"type\": \"integer\",\n \"default\": - 0,\n \"description\": \"The amount of latest versions - of a package to keep on sync, includespre-releases if synced. Default 0 keeps - all versions.\"\n },\n \"exclude_platforms\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"default\": 0,\n \"description\": + \"The amount of latest versions of a package to keep on sync, includespre-releases + if synced. Default 0 keeps all versions.\"\n },\n \"exclude_platforms\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/ExcludePlatformsEnum\"\n \ },\n \"description\": \"List @@ -31159,35 +50507,44 @@ interactions: {\n \"type\": \"string\",\n \"nullable\": true,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"pulp_last_updated\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"readOnly\": true,\n \"description\": - \"Timestamp of the most recent update of the remote.\"\n },\n - \ \"download_concurrency\": {\n \"type\": - \"integer\",\n \"minimum\": 1,\n \"nullable\": - true,\n \"description\": \"Total number of simultaneous - connections. If not set then the default value will be used.\"\n },\n + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"pulp_last_updated\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of the most recent + update of the remote.\"\n },\n \"download_concurrency\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n \ \"max_retries\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Maximum number of retry attempts after a download failure. If not set then - the default value (3) will be used.\"\n },\n \"policy\": - {\n \"allOf\": [\n {\n \"$ref\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": \"#/components/schemas/Policy762Enum\"\n }\n ],\n \ \"default\": \"on_demand\",\n \"description\": \"The policy to use when downloading content. The possible values include: - 'immediate', 'on_demand', and 'streamed'. 'on_demand' is the default.\"\n - \ },\n \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + 'immediate', 'on_demand', and 'streamed'. 'on_demand' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -31201,13 +50558,24 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"includes\": {\n \"type\": \"object\",\n - \ \"description\": \"A JSON list containing project - specifiers for Python packages to include.\"\n },\n \"excludes\": - {\n \"type\": \"object\",\n \"description\": - \"A JSON list containing project specifiers for Python packages to exclude.\"\n + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"hidden_fields\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"name\": {\n \"type\": + \"string\"\n },\n \"is_set\": + {\n \"type\": \"boolean\"\n }\n + \ }\n },\n \"readOnly\": + true,\n \"description\": \"List of hidden (write only) + fields\"\n },\n \"includes\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n },\n \"description\": + \"A list containing project specifiers for Python packages to include.\"\n + \ },\n \"excludes\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": + \"string\"\n },\n \"description\": + \"A list containing project specifiers for Python packages to exclude.\"\n \ },\n \"prereleases\": {\n \"type\": \"boolean\",\n \"description\": \"Whether or not to include pre-release packages in the sync.\"\n },\n \"package_types\": @@ -31216,10 +50584,10 @@ interactions: \ },\n \"description\": \"The package types to sync for Python content. Leave blank to get everypackage type.\"\n },\n \"keep_latest_packages\": - {\n \"type\": \"integer\",\n \"default\": - 0,\n \"description\": \"The amount of latest versions - of a package to keep on sync, includespre-releases if synced. Default 0 keeps - all versions.\"\n },\n \"exclude_platforms\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"default\": 0,\n \"description\": + \"The amount of latest versions of a package to keep on sync, includespre-releases + if synced. Default 0 keeps all versions.\"\n },\n \"exclude_platforms\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/ExcludePlatformsEnum\"\n \ },\n \"description\": \"List @@ -31230,61 +50598,63 @@ interactions: {\n \"type\": \"object\",\n \"description\": \"Serializer for Python Repositories.\",\n \"properties\": {\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"A unique name for this repository.\"\n },\n \"description\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n },\n \"autopublish\": - {\n \"type\": \"boolean\",\n \"default\": - false,\n \"description\": \"Whether to automatically - create publications for new repository versions, and update any distributions - pointing to this repository.\"\n }\n },\n - \ \"required\": [\n \"name\"\n ]\n - \ },\n \"python.PythonRepositoryResponse\": {\n \"type\": - \"object\",\n \"description\": \"Serializer for Python Repositories.\",\n - \ \"properties\": {\n \"pulp_href\": {\n - \ \"type\": \"string\",\n \"format\": - \"uri\",\n \"readOnly\": true\n },\n - \ \"pulp_created\": {\n \"type\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"autopublish\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether to automatically create publications for new repository versions, + and update any distributions pointing to this repository.\"\n }\n + \ },\n \"required\": [\n \"name\"\n + \ ]\n },\n \"python.PythonRepositoryResponse\": + {\n \"type\": \"object\",\n \"description\": + \"Serializer for Python Repositories.\",\n \"properties\": + {\n \"pulp_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"versions_href\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"latest_version_href\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"latest_version_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name for + this repository.\"\n },\n \"description\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"nullable\": true,\n \"description\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"autopublish\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether to automatically create publications for new repository versions, + and update any distributions pointing to this repository.\"\n }\n + \ },\n \"required\": [\n \"name\"\n + \ ]\n },\n \"rpm.DistributionTreeResponse\": + {\n \"type\": \"object\",\n \"description\": + \"DistributionTree serializer.\",\n \"properties\": {\n \"pulp_href\": {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"readOnly\": true\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"description\": \"A unique name for this repository.\"\n - \ },\n \"description\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"description\": - \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n },\n \"autopublish\": - {\n \"type\": \"boolean\",\n \"default\": - false,\n \"description\": \"Whether to automatically - create publications for new repository versions, and update any distributions - pointing to this repository.\"\n }\n },\n - \ \"required\": [\n \"name\"\n ]\n - \ },\n \"rpm.DistributionTreeResponse\": {\n \"type\": - \"object\",\n \"description\": \"DistributionTree serializer.\",\n - \ \"properties\": {\n \"pulp_href\": {\n - \ \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \ \"header_version\": {\n \"type\": \"string\",\n \"description\": \"Header Version.\"\n @@ -31315,10 +50685,11 @@ interactions: \ \"type\": \"string\",\n \"nullable\": true,\n \"description\": \"Relative path to Anaconda stage2 image.\"\n },\n \"discnum\": - {\n \"type\": \"integer\",\n \"nullable\": - true,\n \"description\": \"Disc number.\"\n },\n - \ \"totaldiscs\": {\n \"type\": \"integer\",\n - \ \"nullable\": true,\n \"description\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Disc number.\"\n },\n \"totaldiscs\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Number of discs in media set.\"\n },\n \"addons\": {\n \"type\": \"array\",\n \"items\": {\n \"$ref\": \"#/components/schemas/AddonResponse\"\n @@ -31342,7 +50713,11 @@ interactions: \ \"totaldiscs\",\n \"variants\"\n ]\n \ },\n \"rpm.Modulemd\": {\n \"type\": \"object\",\n \"description\": \"Modulemd serializer.\",\n - \ \"properties\": {\n \"name\": {\n \"type\": + \ \"properties\": {\n \"repository\": {\n + \ \"type\": \"string\",\n \"format\": + \"uri\",\n \"writeOnly\": true,\n \"description\": + \"A URI of a repository the new content unit should be associated with.\"\n + \ },\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"Modulemd name.\"\n },\n \"stream\": {\n \"type\": \"string\",\n \"minLength\": @@ -31381,7 +50756,11 @@ interactions: \ \"stream\",\n \"version\"\n ]\n \ },\n \"rpm.ModulemdDefaults\": {\n \"type\": \"object\",\n \"description\": \"ModulemdDefaults serializer.\",\n - \ \"properties\": {\n \"module\": {\n \"type\": + \ \"properties\": {\n \"repository\": {\n + \ \"type\": \"string\",\n \"format\": + \"uri\",\n \"writeOnly\": true,\n \"description\": + \"A URI of a repository the new content unit should be associated with.\"\n + \ },\n \"module\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"Modulemd name.\"\n },\n \"stream\": {\n \"type\": \"string\",\n \"minLength\": @@ -31412,11 +50791,14 @@ interactions: [\n \"module\",\n \"profiles\",\n \"stream\"\n \ ]\n },\n \"rpm.ModulemdObsolete\": {\n \ \"type\": \"object\",\n \"description\": \"ModulemdObsolete - serializer.\",\n \"properties\": {\n \"modified\": + serializer.\",\n \"properties\": {\n \"repository\": {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"description\": \"Obsolete modified - time.\"\n },\n \"module_name\": {\n - \ \"type\": \"string\",\n \"minLength\": + \"uri\",\n \"writeOnly\": true,\n \"description\": + \"A URI of a repository the new content unit should be associated with.\"\n + \ },\n \"modified\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"Obsolete modified time.\"\n },\n \"module_name\": + {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": \"Modulemd name.\"\n },\n \ \"module_stream\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": @@ -31430,8 +50812,8 @@ interactions: \"string\",\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"Modulemd's context.\"\n },\n \ \"eol_date\": {\n \"type\": \"string\",\n - \ \"format\": \"date-time\",\n \"nullable\": - true,\n \"description\": \"End of Life date.\"\n },\n + \ \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"End of Life date.\"\n },\n \ \"obsoleted_by_module_name\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"Obsolete by module name.\"\n @@ -31456,9 +50838,9 @@ interactions: \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"modified\": {\n \"type\": - \"string\",\n \"format\": \"date-time\",\n \"description\": - \"Obsolete modified time.\"\n },\n \"module_name\": - {\n \"type\": \"string\",\n \"description\": + \"string\",\n \"description\": \"Obsolete modified + time.\"\n },\n \"module_name\": {\n + \ \"type\": \"string\",\n \"description\": \"Modulemd name.\"\n },\n \"module_stream\": {\n \"type\": \"string\",\n \"description\": \"Modulemd's stream.\"\n },\n \"message\": @@ -31469,12 +50851,11 @@ interactions: \ },\n \"module_context\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"description\": \"Modulemd's context.\"\n },\n \"eol_date\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"nullable\": true,\n \"description\": - \"End of Life date.\"\n },\n \"obsoleted_by_module_name\": {\n \"type\": \"string\",\n \"nullable\": - true,\n \"description\": \"Obsolete by module name.\"\n - \ },\n \"obsoleted_by_module_stream\": + true,\n \"description\": \"End of Life date.\"\n },\n + \ \"obsoleted_by_module_name\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"description\": + \"Obsolete by module name.\"\n },\n \"obsoleted_by_module_stream\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"description\": \"Obsolete by module stream.\"\n \ }\n },\n \"required\": [\n @@ -31525,24 +50906,24 @@ interactions: \"A Serializer for Package.\\n\\nAdd serializers for the new fields defined in Package and add those fields to the Meta class\\nkeeping fields from the parent class as well. Provide help_text.\",\n \"properties\": - {\n \"artifact\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"description\": - \"Artifact file representing the physical content\"\n },\n - \ \"relative_path\": {\n \"type\": - \"string\",\n \"writeOnly\": true,\n \"minLength\": - 1,\n \"description\": \"Path where the artifact is - located relative to distributions base_path\"\n },\n \"file\": - {\n \"type\": \"string\",\n \"format\": - \"binary\",\n \"writeOnly\": true,\n \"description\": - \"An uploaded file that may be turned into the artifact of the content unit.\"\n - \ },\n \"repository\": {\n \"type\": + {\n \"repository\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"writeOnly\": true,\n \"description\": \"A URI of a repository the - new content unit should be associated with.\"\n },\n \"upload\": + new content unit should be associated with.\"\n },\n \"artifact\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"description\": \"Artifact file representing + the physical content\"\n },\n \"relative_path\": + {\n \"type\": \"string\",\n \"writeOnly\": + true,\n \"minLength\": 1,\n \"description\": + \"Path where the artifact is located relative to distributions base_path\"\n + \ },\n \"file\": {\n \"type\": + \"string\",\n \"format\": \"binary\",\n \"writeOnly\": + true,\n \"description\": \"An uploaded file that may + be turned into the content unit.\"\n },\n \"upload\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"writeOnly\": true,\n \"description\": - \"An uncommitted upload that may be turned into the artifact of the content - unit.\"\n }\n }\n },\n \"rpm.PackageCategoryResponse\": + \"An uncommitted upload that may be turned into the content unit.\"\n }\n + \ }\n },\n \"rpm.PackageCategoryResponse\": {\n \"type\": \"object\",\n \"description\": \"PackageCategory serializer.\",\n \"properties\": {\n \"pulp_href\": {\n \"type\": \"string\",\n \"format\": @@ -31557,13 +50938,14 @@ interactions: \ \"description\": {\n \"type\": \"string\",\n \"description\": \"Category description.\"\n \ },\n \"display_order\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Category display order.\"\n },\n \"group_ids\": - {\n \"type\": \"object\",\n \"nullable\": - true,\n \"description\": \"Category group list.\"\n - \ },\n \"desc_by_lang\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Category display order.\"\n + \ },\n \"group_ids\": {\n \"type\": \"object\",\n \"nullable\": true,\n \"description\": - \"Category description by language.\"\n },\n \"name_by_lang\": + \"Category group list.\"\n },\n \"desc_by_lang\": + {\n \"type\": \"object\",\n \"nullable\": + true,\n \"description\": \"Category description by + language.\"\n },\n \"name_by_lang\": {\n \"type\": \"object\",\n \"nullable\": true,\n \"description\": \"Category name by language.\"\n \ },\n \"digest\": {\n \"type\": @@ -31588,16 +50970,16 @@ interactions: \ },\n \"description\": {\n \"type\": \"string\",\n \"description\": \"Environment description.\"\n \ },\n \"display_order\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Environment display order.\"\n },\n \"group_ids\": - {\n \"type\": \"object\",\n \"nullable\": - true,\n \"description\": \"Environment group list.\"\n - \ },\n \"option_ids\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Environment display order.\"\n + \ },\n \"group_ids\": {\n \"type\": \"object\",\n \"nullable\": true,\n \"description\": - \"Environment option ids\"\n },\n \"desc_by_lang\": + \"Environment group list.\"\n },\n \"option_ids\": {\n \"type\": \"object\",\n \"nullable\": - true,\n \"description\": \"Environment description - by language.\"\n },\n \"name_by_lang\": + true,\n \"description\": \"Environment option ids\"\n + \ },\n \"desc_by_lang\": {\n \"type\": + \"object\",\n \"nullable\": true,\n \"description\": + \"Environment description by language.\"\n },\n \"name_by_lang\": {\n \"type\": \"object\",\n \"nullable\": true,\n \"description\": \"Environment name by language.\"\n \ },\n \"digest\": {\n \"type\": @@ -31622,18 +51004,19 @@ interactions: \ },\n \"user_visible\": {\n \"type\": \"boolean\",\n \"description\": \"PackageGroup user visibility.\"\n },\n \"display_order\": - {\n \"type\": \"integer\",\n \"nullable\": - true,\n \"description\": \"PackageGroup display order.\"\n - \ },\n \"name\": {\n \"type\": - \"string\",\n \"description\": \"PackageGroup name.\"\n - \ },\n \"description\": {\n \"type\": - \"string\",\n \"description\": \"PackageGroup description.\"\n - \ },\n \"packages\": {\n \"type\": - \"object\",\n \"nullable\": true,\n \"description\": - \"PackageGroup package list.\"\n },\n \"biarch_only\": - {\n \"type\": \"boolean\",\n \"description\": - \"PackageGroup biarch only.\"\n },\n \"desc_by_lang\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"PackageGroup display order.\"\n },\n \"name\": + {\n \"type\": \"string\",\n \"description\": + \"PackageGroup name.\"\n },\n \"description\": + {\n \"type\": \"string\",\n \"description\": + \"PackageGroup description.\"\n },\n \"packages\": {\n \"type\": \"object\",\n \"nullable\": + true,\n \"description\": \"PackageGroup package list.\"\n + \ },\n \"biarch_only\": {\n \"type\": + \"boolean\",\n \"description\": \"PackageGroup biarch + only.\"\n },\n \"desc_by_lang\": {\n + \ \"type\": \"object\",\n \"nullable\": true,\n \"description\": \"PackageGroup description by language.\"\n },\n \"name_by_lang\": {\n \"type\": \"object\",\n \"nullable\": @@ -31770,28 +51153,32 @@ interactions: \ \"readOnly\": true,\n \"description\": \"Name of the organization that produced the package\"\n },\n \ \"rpm_header_start\": {\n \"type\": - \"integer\",\n \"readOnly\": true,\n \"description\": - \"First byte of the header\"\n },\n \"rpm_header_end\": - {\n \"type\": \"integer\",\n \"readOnly\": + \"integer\",\n \"format\": \"int64\",\n \"readOnly\": + true,\n \"description\": \"First byte of the header\"\n + \ },\n \"rpm_header_end\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"readOnly\": true,\n \"description\": \"Last byte of the header\"\n \ },\n \"is_modular\": {\n \"type\": \"boolean\",\n \"readOnly\": true,\n \"description\": \"Flag to identify if the package is modular\"\n },\n \"size_archive\": - {\n \"type\": \"integer\",\n \"readOnly\": - true,\n \"description\": \"Size, in bytes, of the archive - portion of the original package file\"\n },\n \"size_installed\": - {\n \"type\": \"integer\",\n \"readOnly\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"readOnly\": true,\n \"description\": + \"Size, in bytes, of the archive portion of the original package file\"\n + \ },\n \"size_installed\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"readOnly\": true,\n \"description\": \"Total size, in bytes, of every file installed by this package\"\n },\n \"size_package\": - {\n \"type\": \"integer\",\n \"readOnly\": - true,\n \"description\": \"Size, in bytes, of the package\"\n - \ },\n \"time_build\": {\n \"type\": - \"integer\",\n \"readOnly\": true,\n \"description\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"readOnly\": true,\n \"description\": + \"Size, in bytes, of the package\"\n },\n \"time_build\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"readOnly\": true,\n \"description\": \"Time the package was built in seconds since the epoch\"\n },\n \ \"time_file\": {\n \"type\": \"integer\",\n - \ \"readOnly\": true,\n \"description\": - \"The 'file' time attribute in the primary XML - file mtime in seconds since - the epoch.\"\n }\n }\n },\n \"rpm.RepoMetadataFileResponse\": + \ \"format\": \"int64\",\n \"readOnly\": + true,\n \"description\": \"The 'file' time attribute + in the primary XML - file mtime in seconds since the epoch.\"\n }\n + \ }\n },\n \"rpm.RepoMetadataFileResponse\": {\n \"type\": \"object\",\n \"description\": \"RepoMetadataFile serializer.\",\n \"properties\": {\n \"pulp_href\": {\n \"type\": \"string\",\n \"format\": @@ -31879,25 +51266,33 @@ interactions: and \\\"foo/bar\\\")\"\n },\n \"content_guard\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": - \"An optional content-guard.\"\n },\n \"pulp_labels\": - {\n \"type\": \"object\"\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"minLength\": 1,\n \"description\": - \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository\": + \"An optional content-guard.\"\n },\n \"hidden\": + {\n \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"Whether this distribution + should be shown in the content app.\"\n },\n \"pulp_labels\": + {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name. Ex, `rawhide` + and `stable`.\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"The latest RepositoryVersion for this Repository will be served.\"\n },\n \ \"publication\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"Publication to be served\"\n - \ }\n },\n \"required\": [\n - \ \"base_path\",\n \"name\"\n ]\n - \ },\n \"rpm.RpmDistributionResponse\": {\n \"type\": - \"object\",\n \"description\": \"Serializer for RPM Distributions.\",\n - \ \"properties\": {\n \"pulp_href\": {\n - \ \"type\": \"string\",\n \"format\": - \"uri\",\n \"readOnly\": true\n },\n - \ \"pulp_created\": {\n \"type\": + \ },\n \"generate_repo_config\": {\n + \ \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"An option specifying whether + Pulp should generate *.repo files.\"\n }\n },\n + \ \"required\": [\n \"base_path\",\n \"name\"\n + \ ]\n },\n \"rpm.RpmDistributionResponse\": + {\n \"type\": \"object\",\n \"description\": + \"Serializer for RPM Distributions.\",\n \"properties\": {\n + \ \"pulp_href\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"base_path\": {\n \"type\": @@ -31910,8 +51305,13 @@ interactions: \ },\n \"content_guard\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"An optional content-guard.\"\n - \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"name\": {\n \"type\": + \ },\n \"hidden\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether this distribution should be shown in the content app.\"\n },\n + \ \"pulp_labels\": {\n \"type\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"name\": {\n \"type\": \"string\",\n \"description\": \"A unique name. Ex, `rawhide` and `stable`.\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": @@ -31920,94 +51320,133 @@ interactions: \ \"publication\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": \"Publication to be served\"\n - \ }\n },\n \"required\": [\n - \ \"base_path\",\n \"name\"\n ]\n - \ },\n \"rpm.RpmPublication\": {\n \"type\": - \"object\",\n \"description\": \"A Serializer for RpmPublication.\",\n - \ \"properties\": {\n \"repository_version\": + \ },\n \"generate_repo_config\": {\n + \ \"type\": \"boolean\",\n \"default\": + false,\n \"description\": \"An option specifying whether + Pulp should generate *.repo files.\"\n }\n },\n + \ \"required\": [\n \"base_path\",\n \"name\"\n + \ ]\n },\n \"rpm.RpmPublication\": {\n + \ \"type\": \"object\",\n \"description\": \"A + Serializer for RpmPublication.\",\n \"properties\": {\n \"repository_version\": {\n \"type\": \"string\",\n \"format\": \"uri\"\n },\n \"repository\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"description\": - \"A URI of the repository to be published.\"\n },\n \"metadata_checksum_type\": + \"A URI of the repository to be published.\"\n },\n \"checksum_type\": {\n \"allOf\": [\n {\n \"$ref\": - \"#/components/schemas/MetadataChecksumTypeEnum\"\n }\n + \"#/components/schemas/PackageChecksumTypeEnum\"\n }\n \ ],\n \"description\": \"The - checksum type for metadata.\"\n },\n \"package_checksum_type\": + preferred checksum type used during repo publishes.\\n\\n* `unknown` - unknown\\n* + `md5` - md5\\n* `sha1` - sha1\\n* `sha224` - sha224\\n* `sha256` - sha256\\n* + `sha384` - sha384\\n* `sha512` - sha512\"\n },\n \"metadata_checksum_type\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/PackageChecksumTypeEnum\"\n }\n + \ ],\n \"description\": \"DEPRECATED: + The checksum type for metadata.\\n\\n* `unknown` - unknown\\n* `md5` - md5\\n* + `sha1` - sha1\\n* `sha224` - sha224\\n* `sha256` - sha256\\n* `sha384` - sha384\\n* + `sha512` - sha512\"\n },\n \"package_checksum_type\": + {\n \"allOf\": [\n {\n \"$ref\": + \"#/components/schemas/PackageChecksumTypeEnum\"\n }\n + \ ],\n \"description\": \"DEPRECATED: + The checksum type for packages.\\n\\n* `unknown` - unknown\\n* `md5` - md5\\n* + `sha1` - sha1\\n* `sha224` - sha224\\n* `sha256` - sha256\\n* `sha384` - sha384\\n* + `sha512` - sha512\"\n },\n \"gpgcheck\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"DEPRECATED: An option specifying whether a client should perform a GPG signature + check on packages.\",\n \"maximum\": 1,\n \"minimum\": + 0\n },\n \"repo_gpgcheck\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"DEPRECATED: An option specifying + whether a client should perform a GPG signature check on the repodata.\",\n + \ \"maximum\": 1,\n \"minimum\": + 0\n },\n \"repo_config\": {\n \"type\": + \"object\",\n \"description\": \"A JSON document describing + config.repo file\"\n },\n \"compression_type\": + {\n \"allOf\": [\n {\n \"$ref\": + \"#/components/schemas/CompressionTypeEnum\"\n }\n \ ],\n \"description\": \"The - checksum type for packages.\"\n },\n \"gpgcheck\": - {\n \"type\": \"integer\",\n \"maximum\": - 1,\n \"minimum\": 0,\n \"description\": - \"An option specifying whether a client should perform a GPG signature check - on packages.\"\n },\n \"repo_gpgcheck\": - {\n \"type\": \"integer\",\n \"maximum\": - 1,\n \"minimum\": 0,\n \"description\": - \"An option specifying whether a client should perform a GPG signature check - on the repodata.\"\n },\n \"sqlite_metadata\": - {\n \"type\": \"boolean\",\n \"default\": - false,\n \"description\": \"DEPRECATED: An option specifying - whether Pulp should generate SQLite metadata.\"\n }\n }\n - \ },\n \"rpm.RpmPublicationResponse\": {\n \"type\": - \"object\",\n \"description\": \"A Serializer for RpmPublication.\",\n - \ \"properties\": {\n \"pulp_href\": {\n - \ \"type\": \"string\",\n \"format\": - \"uri\",\n \"readOnly\": true\n },\n - \ \"pulp_created\": {\n \"type\": + compression type to use for metadata files.\\n\\n* `zstd` - zstd\\n* `gz` + - gz\"\n }\n }\n },\n \"rpm.RpmPublicationResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for RpmPublication.\",\n \"properties\": {\n + \ \"pulp_href\": {\n \"type\": \"string\",\n + \ \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"description\": \"Timestamp of creation.\"\n \ },\n \"repository_version\": {\n \"type\": \"string\",\n \"format\": \"uri\"\n },\n \ \"repository\": {\n \"type\": \"string\",\n \ \"format\": \"uri\",\n \"description\": - \"A URI of the repository to be published.\"\n },\n \"metadata_checksum_type\": + \"A URI of the repository to be published.\"\n },\n \"checksum_type\": {\n \"allOf\": [\n {\n \"$ref\": - \"#/components/schemas/MetadataChecksumTypeEnum\"\n }\n + \"#/components/schemas/PackageChecksumTypeEnum\"\n }\n \ ],\n \"description\": \"The - checksum type for metadata.\"\n },\n \"package_checksum_type\": + preferred checksum type used during repo publishes.\\n\\n* `unknown` - unknown\\n* + `md5` - md5\\n* `sha1` - sha1\\n* `sha224` - sha224\\n* `sha256` - sha256\\n* + `sha384` - sha384\\n* `sha512` - sha512\"\n },\n \"metadata_checksum_type\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/PackageChecksumTypeEnum\"\n }\n + \ ],\n \"description\": \"DEPRECATED: + The checksum type for metadata.\\n\\n* `unknown` - unknown\\n* `md5` - md5\\n* + `sha1` - sha1\\n* `sha224` - sha224\\n* `sha256` - sha256\\n* `sha384` - sha384\\n* + `sha512` - sha512\"\n },\n \"package_checksum_type\": + {\n \"allOf\": [\n {\n \"$ref\": + \"#/components/schemas/PackageChecksumTypeEnum\"\n }\n + \ ],\n \"description\": \"DEPRECATED: + The checksum type for packages.\\n\\n* `unknown` - unknown\\n* `md5` - md5\\n* + `sha1` - sha1\\n* `sha224` - sha224\\n* `sha256` - sha256\\n* `sha384` - sha384\\n* + `sha512` - sha512\"\n },\n \"gpgcheck\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"DEPRECATED: An option specifying whether a client should perform a GPG signature + check on packages.\",\n \"maximum\": 1,\n \"minimum\": + 0\n },\n \"repo_gpgcheck\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"DEPRECATED: An option specifying + whether a client should perform a GPG signature check on the repodata.\",\n + \ \"maximum\": 1,\n \"minimum\": + 0\n },\n \"sqlite_metadata\": {\n \"type\": + \"boolean\",\n \"readOnly\": true,\n \"default\": + false,\n \"description\": \"REMOVED: An option specifying + whether Pulp should generate SQLite metadata. Not operation since pulp_rpm + 3.25.0 release\"\n },\n \"repo_config\": + {\n \"type\": \"object\",\n \"description\": + \"A JSON document describing config.repo file\"\n },\n + \ \"compression_type\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/CompressionTypeEnum\"\n }\n \ ],\n \"description\": \"The - checksum type for packages.\"\n },\n \"gpgcheck\": - {\n \"type\": \"integer\",\n \"maximum\": - 1,\n \"minimum\": 0,\n \"description\": - \"An option specifying whether a client should perform a GPG signature check - on packages.\"\n },\n \"repo_gpgcheck\": - {\n \"type\": \"integer\",\n \"maximum\": - 1,\n \"minimum\": 0,\n \"description\": - \"An option specifying whether a client should perform a GPG signature check - on the repodata.\"\n },\n \"sqlite_metadata\": - {\n \"type\": \"boolean\",\n \"default\": - false,\n \"description\": \"DEPRECATED: An option specifying - whether Pulp should generate SQLite metadata.\"\n }\n }\n - \ },\n \"rpm.RpmRemote\": {\n \"type\": - \"object\",\n \"description\": \"A Serializer for RpmRemote.\",\n - \ \"properties\": {\n \"name\": {\n \"type\": - \"string\",\n \"minLength\": 1,\n \"description\": - \"A unique name for this remote.\"\n },\n \"url\": + compression type to use for metadata files.\\n\\n* `zstd` - zstd\\n* `gz` + - gz\"\n }\n }\n },\n \"rpm.RpmRemote\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for RpmRemote.\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"The URL of an external content - source.\"\n },\n \"ca_cert\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"A PEM encoded CA certificate - used to validate the server certificate presented by the remote server.\"\n - \ },\n \"client_cert\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"A PEM encoded client certificate - used for authentication.\"\n },\n \"client_key\": + 1,\n \"description\": \"A unique name for this remote.\"\n + \ },\n \"url\": {\n \"type\": + \"string\",\n \"minLength\": 1,\n \"description\": + \"The URL of an external content source.\"\n },\n \"ca_cert\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded CA certificate used to validate the server certificate presented + by the remote server.\"\n },\n \"client_cert\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded client certificate used for authentication.\"\n },\n + \ \"client_key\": {\n \"type\": \"string\",\n + \ \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded private key used for authentication.\"\n },\n + \ \"tls_validation\": {\n \"type\": + \"boolean\",\n \"description\": \"If True, TLS peer + validation must be performed.\"\n },\n \"proxy_url\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The proxy URL. Format: scheme://host:port\"\n },\n \"proxy_username\": {\n \"type\": \"string\",\n \"writeOnly\": true,\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"A PEM encoded private key used - for authentication.\"\n },\n \"tls_validation\": - {\n \"type\": \"boolean\",\n \"description\": - \"If True, TLS peer validation must be performed.\"\n },\n - \ \"proxy_url\": {\n \"type\": \"string\",\n - \ \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n - \ },\n \"proxy_username\": {\n \"type\": - \"string\",\n \"writeOnly\": true,\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"The username to authenticte to the proxy.\"\n },\n \"proxy_password\": + 1,\n \"description\": \"The username to authenticte + to the proxy.\"\n },\n \"proxy_password\": {\n \"type\": \"string\",\n \"writeOnly\": true,\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"The password to authenticate @@ -32022,12 +51461,15 @@ interactions: \"The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.\"\n },\n \ \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.\"\n },\n \"policy\": {\n \"allOf\": @@ -32035,19 +51477,25 @@ interactions: \"#/components/schemas/Policy762Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": \"The policy to use when downloading content. The possible values include: - 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\"\n - \ },\n \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -32061,17 +51509,17 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"sles_auth_token\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"Authentication token for SLES - repositories.\"\n }\n },\n \"required\": - [\n \"name\",\n \"url\"\n ]\n - \ },\n \"rpm.RpmRemoteResponse\": {\n \"type\": - \"object\",\n \"description\": \"A Serializer for RpmRemote.\",\n - \ \"properties\": {\n \"pulp_href\": {\n - \ \"type\": \"string\",\n \"format\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"sles_auth_token\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"Authentication token for SLES repositories.\"\n }\n },\n + \ \"required\": [\n \"name\",\n \"url\"\n + \ ]\n },\n \"rpm.RpmRemoteResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for RpmRemote.\",\n \"properties\": {\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \ \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": @@ -32093,35 +51541,44 @@ interactions: {\n \"type\": \"string\",\n \"nullable\": true,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"pulp_last_updated\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"readOnly\": true,\n \"description\": - \"Timestamp of the most recent update of the remote.\"\n },\n - \ \"download_concurrency\": {\n \"type\": - \"integer\",\n \"minimum\": 1,\n \"nullable\": - true,\n \"description\": \"Total number of simultaneous - connections. If not set then the default value will be used.\"\n },\n + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"pulp_last_updated\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of the most recent + update of the remote.\"\n },\n \"download_concurrency\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n \ \"max_retries\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Maximum number of retry attempts after a download failure. If not set then - the default value (3) will be used.\"\n },\n \"policy\": - {\n \"allOf\": [\n {\n \"$ref\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": \"#/components/schemas/Policy762Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": \"The policy to use when downloading content. The possible values include: - 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\"\n - \ },\n \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -32135,65 +51592,93 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"sles_auth_token\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"description\": - \"Authentication token for SLES repositories.\"\n }\n },\n - \ \"required\": [\n \"name\",\n \"url\"\n - \ ]\n },\n \"rpm.RpmRepository\": {\n - \ \"type\": \"object\",\n \"description\": \"Serializer - for Rpm Repositories.\",\n \"properties\": {\n \"pulp_labels\": - {\n \"type\": \"object\"\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"minLength\": 1,\n \"description\": - \"A unique name for this repository.\"\n },\n \"description\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"hidden_fields\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"name\": {\n \"type\": + \"string\"\n },\n \"is_set\": + {\n \"type\": \"boolean\"\n }\n + \ }\n },\n \"readOnly\": + true,\n \"description\": \"List of hidden (write only) + fields\"\n },\n \"sles_auth_token\": {\n \"type\": \"string\",\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n },\n \"autopublish\": - {\n \"type\": \"boolean\",\n \"default\": - false,\n \"description\": \"Whether to automatically - create publications for new repository versions, and update any distributions - pointing to this repository.\"\n },\n \"metadata_signing_service\": + true,\n \"description\": \"Authentication token for + SLES repositories.\"\n }\n },\n \"required\": + [\n \"name\",\n \"url\"\n ]\n + \ },\n \"rpm.RpmRepository\": {\n \"type\": + \"object\",\n \"description\": \"Serializer for Rpm Repositories.\",\n + \ \"properties\": {\n \"pulp_labels\": {\n + \ \"type\": \"object\",\n \"additionalProperties\": + {\n \"type\": \"string\",\n \"nullable\": + true\n }\n },\n \"name\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"A unique name for this repository.\"\n + \ },\n \"description\": {\n \"type\": + \"string\",\n \"nullable\": true,\n \"minLength\": + 1,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": - \"A reference to an associated signing service.\"\n },\n - \ \"retain_package_versions\": {\n \"type\": - \"integer\",\n \"minimum\": 0,\n \"description\": - \"The number of versions of each package to keep in the repository; older - versions will be purged. The default is '0', which will disable this feature - and keep all versions of each package.\"\n },\n \"metadata_checksum_type\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"autopublish\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether to automatically create publications for new repository versions, + and update any distributions pointing to this repository.\"\n },\n + \ \"metadata_signing_service\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"A reference to an associated + signing service.\"\n },\n \"retain_package_versions\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"description\": \"The number of versions + of each package to keep in the repository; older versions will be purged. + The default is '0', which will disable this feature and keep all versions + of each package.\",\n \"minimum\": 0\n },\n + \ \"checksum_type\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/PackageChecksumTypeEnum\"\n }\n + \ ],\n \"nullable\": true,\n + \ \"description\": \"The preferred checksum type during + repo publish.\\n\\n* `unknown` - unknown\\n* `md5` - md5\\n* `sha1` - sha1\\n* + `sha224` - sha224\\n* `sha256` - sha256\\n* `sha384` - sha384\\n* `sha512` + - sha512\"\n },\n \"metadata_checksum_type\": {\n \"allOf\": [\n {\n \"$ref\": - \"#/components/schemas/MetadataChecksumTypeEnum\"\n }\n + \"#/components/schemas/PackageChecksumTypeEnum\"\n }\n \ ],\n \"nullable\": true,\n - \ \"description\": \"The checksum type for metadata.\"\n - \ },\n \"package_checksum_type\": {\n - \ \"allOf\": [\n {\n \"$ref\": + \ \"description\": \"DEPRECATED: use CHECKSUM_TYPE instead.\\n\\n* + `unknown` - unknown\\n* `md5` - md5\\n* `sha1` - sha1\\n* `sha224` - sha224\\n* + `sha256` - sha256\\n* `sha384` - sha384\\n* `sha512` - sha512\"\n },\n + \ \"package_checksum_type\": {\n \"allOf\": + [\n {\n \"$ref\": \"#/components/schemas/PackageChecksumTypeEnum\"\n }\n \ ],\n \"nullable\": true,\n - \ \"description\": \"The checksum type for packages.\"\n - \ },\n \"gpgcheck\": {\n \"type\": - \"integer\",\n \"maximum\": 1,\n \"minimum\": - 0,\n \"default\": 0,\n \"description\": - \"An option specifying whether a client should perform a GPG signature check - on packages.\"\n },\n \"repo_gpgcheck\": - {\n \"type\": \"integer\",\n \"maximum\": - 1,\n \"minimum\": 0,\n \"default\": - 0,\n \"description\": \"An option specifying whether - a client should perform a GPG signature check on the repodata.\"\n },\n - \ \"sqlite_metadata\": {\n \"type\": - \"boolean\",\n \"default\": false,\n \"description\": - \"DEPRECATED: An option specifying whether Pulp should generate SQLite metadata.\"\n - \ }\n },\n \"required\": [\n - \ \"name\"\n ]\n },\n \"rpm.RpmRepositoryResponse\": + \ \"description\": \"DEPRECATED: use CHECKSUM_TYPE instead.\\n\\n* + `unknown` - unknown\\n* `md5` - md5\\n* `sha1` - sha1\\n* `sha224` - sha224\\n* + `sha256` - sha256\\n* `sha384` - sha384\\n* `sha512` - sha512\"\n },\n + \ \"gpgcheck\": {\n \"type\": \"integer\",\n + \ \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"DEPRECATED: An option specifying + whether a client should perform a GPG signature check on packages.\",\n \"maximum\": + 1,\n \"minimum\": 0\n },\n \"repo_gpgcheck\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"DEPRECATED: An option specifying whether a client should perform a GPG signature + check on the repodata.\",\n \"maximum\": 1,\n \"minimum\": + 0\n },\n \"repo_config\": {\n \"type\": + \"object\",\n \"description\": \"A JSON document describing + config.repo file\"\n },\n \"compression_type\": + {\n \"allOf\": [\n {\n \"$ref\": + \"#/components/schemas/CompressionTypeEnum\"\n }\n + \ ],\n \"nullable\": true,\n + \ \"description\": \"The compression type to use for + metadata files.\\n\\n* `zstd` - zstd\\n* `gz` - gz\"\n }\n + \ },\n \"required\": [\n \"name\"\n + \ ]\n },\n \"rpm.RpmRepositoryResponse\": {\n \"type\": \"object\",\n \"description\": \"Serializer for Rpm Repositories.\",\n \"properties\": {\n \ \"pulp_href\": {\n \"type\": \"string\",\n @@ -32204,86 +51689,110 @@ interactions: \ },\n \"versions_href\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"latest_version_href\": - {\n \"type\": \"string\",\n \"format\": - \"uri\",\n \"readOnly\": true\n },\n - \ \"name\": {\n \"type\": \"string\",\n - \ \"description\": \"A unique name for this repository.\"\n - \ },\n \"description\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"description\": - \"An optional description.\"\n },\n \"retain_repo_versions\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": - \"Retain X versions of the repository. Default is null which retains all versions. - This is provided as a tech preview in Pulp 3 and may change in the future.\"\n - \ },\n \"remote\": {\n \"type\": - \"string\",\n \"format\": \"uri\",\n \"nullable\": - true,\n \"description\": \"An optional remote to use - by default when syncing.\"\n },\n \"autopublish\": - {\n \"type\": \"boolean\",\n \"default\": - false,\n \"description\": \"Whether to automatically - create publications for new repository versions, and update any distributions - pointing to this repository.\"\n },\n \"metadata_signing_service\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"latest_version_href\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"readOnly\": + true\n },\n \"name\": {\n \"type\": + \"string\",\n \"description\": \"A unique name for + this repository.\"\n },\n \"description\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"An optional description.\"\n + \ },\n \"retain_repo_versions\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Retain X versions of the repository. Default is null which retains all versions.\",\n + \ \"minimum\": 1\n },\n \"remote\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"description\": - \"A reference to an associated signing service.\"\n },\n - \ \"retain_package_versions\": {\n \"type\": - \"integer\",\n \"minimum\": 0,\n \"description\": - \"The number of versions of each package to keep in the repository; older - versions will be purged. The default is '0', which will disable this feature - and keep all versions of each package.\"\n },\n \"metadata_checksum_type\": + \"An optional remote to use by default when syncing.\"\n },\n + \ \"autopublish\": {\n \"type\": + \"boolean\",\n \"default\": false,\n \"description\": + \"Whether to automatically create publications for new repository versions, + and update any distributions pointing to this repository.\"\n },\n + \ \"metadata_signing_service\": {\n \"type\": + \"string\",\n \"format\": \"uri\",\n \"nullable\": + true,\n \"description\": \"A reference to an associated + signing service.\"\n },\n \"retain_package_versions\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"description\": \"The number of versions + of each package to keep in the repository; older versions will be purged. + The default is '0', which will disable this feature and keep all versions + of each package.\",\n \"minimum\": 0\n },\n + \ \"checksum_type\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/PackageChecksumTypeEnum\"\n }\n + \ ],\n \"nullable\": true,\n + \ \"description\": \"The preferred checksum type during + repo publish.\\n\\n* `unknown` - unknown\\n* `md5` - md5\\n* `sha1` - sha1\\n* + `sha224` - sha224\\n* `sha256` - sha256\\n* `sha384` - sha384\\n* `sha512` + - sha512\"\n },\n \"metadata_checksum_type\": {\n \"allOf\": [\n {\n \"$ref\": - \"#/components/schemas/MetadataChecksumTypeEnum\"\n }\n + \"#/components/schemas/PackageChecksumTypeEnum\"\n }\n \ ],\n \"nullable\": true,\n - \ \"description\": \"The checksum type for metadata.\"\n - \ },\n \"package_checksum_type\": {\n - \ \"allOf\": [\n {\n \"$ref\": + \ \"description\": \"DEPRECATED: use CHECKSUM_TYPE instead.\\n\\n* + `unknown` - unknown\\n* `md5` - md5\\n* `sha1` - sha1\\n* `sha224` - sha224\\n* + `sha256` - sha256\\n* `sha384` - sha384\\n* `sha512` - sha512\"\n },\n + \ \"package_checksum_type\": {\n \"allOf\": + [\n {\n \"$ref\": \"#/components/schemas/PackageChecksumTypeEnum\"\n }\n \ ],\n \"nullable\": true,\n - \ \"description\": \"The checksum type for packages.\"\n - \ },\n \"gpgcheck\": {\n \"type\": - \"integer\",\n \"maximum\": 1,\n \"minimum\": - 0,\n \"default\": 0,\n \"description\": - \"An option specifying whether a client should perform a GPG signature check - on packages.\"\n },\n \"repo_gpgcheck\": - {\n \"type\": \"integer\",\n \"maximum\": - 1,\n \"minimum\": 0,\n \"default\": - 0,\n \"description\": \"An option specifying whether - a client should perform a GPG signature check on the repodata.\"\n },\n - \ \"sqlite_metadata\": {\n \"type\": - \"boolean\",\n \"default\": false,\n \"description\": - \"DEPRECATED: An option specifying whether Pulp should generate SQLite metadata.\"\n - \ }\n },\n \"required\": [\n - \ \"name\"\n ]\n },\n \"rpm.UlnRemote\": - {\n \"type\": \"object\",\n \"description\": - \"A Serializer for UlnRemote.\",\n \"properties\": {\n \"name\": - {\n \"type\": \"string\",\n \"minLength\": - 1,\n \"description\": \"A unique name for this remote.\"\n - \ },\n \"url\": {\n \"type\": + \ \"description\": \"DEPRECATED: use CHECKSUM_TYPE instead.\\n\\n* + `unknown` - unknown\\n* `md5` - md5\\n* `sha1` - sha1\\n* `sha224` - sha224\\n* + `sha256` - sha256\\n* `sha384` - sha384\\n* `sha512` - sha512\"\n },\n + \ \"gpgcheck\": {\n \"type\": \"integer\",\n + \ \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"DEPRECATED: An option specifying + whether a client should perform a GPG signature check on packages.\",\n \"maximum\": + 1,\n \"minimum\": 0\n },\n \"repo_gpgcheck\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"DEPRECATED: An option specifying whether a client should perform a GPG signature + check on the repodata.\",\n \"maximum\": 1,\n \"minimum\": + 0\n },\n \"sqlite_metadata\": {\n \"type\": + \"boolean\",\n \"readOnly\": true,\n \"default\": + false,\n \"description\": \"REMOVED: An option specifying + whether Pulp should generate SQLite metadata. Not operation since pulp_rpm + 3.25.0 release\"\n },\n \"repo_config\": + {\n \"type\": \"object\",\n \"description\": + \"A JSON document describing config.repo file\"\n },\n + \ \"compression_type\": {\n \"allOf\": + [\n {\n \"$ref\": + \"#/components/schemas/CompressionTypeEnum\"\n }\n + \ ],\n \"nullable\": true,\n + \ \"description\": \"The compression type to use for + metadata files.\\n\\n* `zstd` - zstd\\n* `gz` - gz\"\n }\n + \ },\n \"required\": [\n \"name\"\n + \ ]\n },\n \"rpm.UlnRemote\": {\n \"type\": + \"object\",\n \"description\": \"A Serializer for UlnRemote.\",\n + \ \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"minLength\": 1,\n \"description\": - \"The ULN repo URL of the remote content source.\\\"This is \\\"uln://\\\" - followed by the channel name. E.g.: \\\"uln://ol7_x86_64_oracle\\\"\"\n },\n - \ \"ca_cert\": {\n \"type\": \"string\",\n - \ \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"A PEM encoded CA certificate - used to validate the server certificate presented by the remote server.\"\n - \ },\n \"client_cert\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"A PEM encoded client certificate - used for authentication.\"\n },\n \"client_key\": + \"A unique name for this remote.\"\n },\n \"url\": + {\n \"type\": \"string\",\n \"minLength\": + 1,\n \"description\": \"The ULN repo URL of the remote + content source.\\\"This is \\\"uln://\\\" followed by the channel name. E.g.: + \\\"uln://ol7_x86_64_oracle\\\"\"\n },\n \"ca_cert\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded CA certificate used to validate the server certificate presented + by the remote server.\"\n },\n \"client_cert\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded client certificate used for authentication.\"\n },\n + \ \"client_key\": {\n \"type\": \"string\",\n + \ \"writeOnly\": true,\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"A PEM encoded private key used for authentication.\"\n },\n + \ \"tls_validation\": {\n \"type\": + \"boolean\",\n \"description\": \"If True, TLS peer + validation must be performed.\"\n },\n \"proxy_url\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"The proxy URL. Format: scheme://host:port\"\n },\n \"proxy_username\": {\n \"type\": \"string\",\n \"writeOnly\": true,\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"A PEM encoded private key used - for authentication.\"\n },\n \"tls_validation\": - {\n \"type\": \"boolean\",\n \"description\": - \"If True, TLS peer validation must be performed.\"\n },\n - \ \"proxy_url\": {\n \"type\": \"string\",\n - \ \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n - \ },\n \"proxy_username\": {\n \"type\": - \"string\",\n \"writeOnly\": true,\n \"nullable\": - true,\n \"minLength\": 1,\n \"description\": - \"The username to authenticte to the proxy.\"\n },\n \"proxy_password\": + 1,\n \"description\": \"The username to authenticte + to the proxy.\"\n },\n \"proxy_password\": {\n \"type\": \"string\",\n \"writeOnly\": true,\n \"nullable\": true,\n \"minLength\": 1,\n \"description\": \"The password to authenticate @@ -32295,12 +51804,15 @@ interactions: \"string\",\n \"writeOnly\": true,\n \"minLength\": 1,\n \"description\": \"Your ULN account password.\"\n \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"download_concurrency\": - {\n \"type\": \"integer\",\n \"minimum\": - 1,\n \"nullable\": true,\n \"description\": + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"download_concurrency\": {\n + \ \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": \"Total number of simultaneous connections. If not set then the default value - will be used.\"\n },\n \"max_retries\": - {\n \"type\": \"integer\",\n \"nullable\": + will be used.\",\n \"minimum\": 1\n },\n + \ \"max_retries\": {\n \"type\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": true,\n \"description\": \"Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.\"\n },\n \"policy\": {\n \"allOf\": @@ -32308,19 +51820,25 @@ interactions: \"#/components/schemas/Policy762Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": \"The policy to use when downloading content. The possible values include: - 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\"\n - \ },\n \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -32334,16 +51852,16 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"uln_server_base_url\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"minLength\": - 1,\n \"description\": \"Base URL of the ULN server. - If the uln_server_base_url is not provided pulp_rpm willuse the contents of - the DEFAULT_ULN_SERVER_BASE_URL setting instead.\"\n }\n - \ },\n \"required\": [\n \"name\",\n - \ \"password\",\n \"url\",\n \"username\"\n - \ ]\n },\n \"rpm.UlnRemoteResponse\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"uln_server_base_url\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"minLength\": 1,\n \"description\": + \"Base URL of the ULN server. If the uln_server_base_url is not provided pulp_rpm + willuse the contents of the DEFAULT_ULN_SERVER_BASE_URL setting instead.\"\n + \ }\n },\n \"required\": [\n + \ \"name\",\n \"password\",\n \"url\",\n + \ \"username\"\n ]\n },\n \"rpm.UlnRemoteResponse\": {\n \"type\": \"object\",\n \"description\": \"A Serializer for UlnRemote.\",\n \"properties\": {\n \"pulp_href\": {\n \"type\": \"string\",\n \"format\": @@ -32369,35 +51887,44 @@ interactions: {\n \"type\": \"string\",\n \"nullable\": true,\n \"description\": \"The proxy URL. Format: scheme://host:port\"\n \ },\n \"pulp_labels\": {\n \"type\": - \"object\"\n },\n \"pulp_last_updated\": - {\n \"type\": \"string\",\n \"format\": - \"date-time\",\n \"readOnly\": true,\n \"description\": - \"Timestamp of the most recent update of the remote.\"\n },\n - \ \"download_concurrency\": {\n \"type\": - \"integer\",\n \"minimum\": 1,\n \"nullable\": - true,\n \"description\": \"Total number of simultaneous - connections. If not set then the default value will be used.\"\n },\n + \"object\",\n \"additionalProperties\": {\n \"type\": + \"string\",\n \"nullable\": true\n }\n + \ },\n \"pulp_last_updated\": {\n \"type\": + \"string\",\n \"format\": \"date-time\",\n \"readOnly\": + true,\n \"description\": \"Timestamp of the most recent + update of the remote.\"\n },\n \"download_concurrency\": + {\n \"type\": \"integer\",\n \"format\": + \"int64\",\n \"nullable\": true,\n \"description\": + \"Total number of simultaneous connections. If not set then the default value + will be used.\",\n \"minimum\": 1\n },\n \ \"max_retries\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Maximum number of retry attempts after a download failure. If not set then - the default value (3) will be used.\"\n },\n \"policy\": - {\n \"allOf\": [\n {\n \"$ref\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Maximum number of retry + attempts after a download failure. If not set then the default value (3) will + be used.\"\n },\n \"policy\": {\n \"allOf\": + [\n {\n \"$ref\": \"#/components/schemas/Policy762Enum\"\n }\n ],\n \ \"default\": \"immediate\",\n \"description\": \"The policy to use when downloading content. The possible values include: - 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\"\n - \ },\n \"total_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.total (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"connect_timeout\": {\n \"type\": - \"number\",\n \"format\": \"double\",\n \"minimum\": - 0.0,\n \"nullable\": true,\n \"description\": - \"aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default - is null, which will cause the default from the aiohttp library to be used.\"\n - \ },\n \"sock_connect_timeout\": {\n - \ \"type\": \"number\",\n \"format\": + 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default.\\n\\n* + `immediate` - When syncing, download all metadata and content now.\\n* `on_demand` + - When syncing, download metadata, but do not download content now. Instead, + download content as clients request it, and save it in Pulp to be served for + future client requests.\\n* `streamed` - When syncing, download metadata, + but do not download content now. Instead,download content as clients request + it, but never save it in Pulp. This causes future requests for that same content + to have to be downloaded again.\"\n },\n \"total_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.total + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"connect_timeout\": + {\n \"type\": \"number\",\n \"format\": + \"double\",\n \"minimum\": 0.0,\n \"nullable\": + true,\n \"description\": \"aiohttp.ClientTimeout.connect + (q.v.) for download-connections. The default is null, which will cause the + default from the aiohttp library to be used.\"\n },\n \"sock_connect_timeout\": + {\n \"type\": \"number\",\n \"format\": \"double\",\n \"minimum\": 0.0,\n \"nullable\": true,\n \"description\": \"aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the @@ -32411,18 +51938,27 @@ interactions: {\n \"type\": \"object\"\n },\n \ \"description\": \"Headers for aiohttp.Clientsession\"\n \ },\n \"rate_limit\": {\n \"type\": - \"integer\",\n \"nullable\": true,\n \"description\": - \"Limits requests per second for each concurrent downloader\"\n },\n - \ \"uln_server_base_url\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"description\": - \"Base URL of the ULN server. If the uln_server_base_url is not provided pulp_rpm - willuse the contents of the DEFAULT_ULN_SERVER_BASE_URL setting instead.\"\n - \ }\n },\n \"required\": [\n - \ \"name\",\n \"url\"\n ]\n - \ },\n \"rpm.UpdateCollection\": {\n \"type\": - \"object\",\n \"description\": \"A Serializer for UpdateCollection.\",\n - \ \"properties\": {\n \"name\": {\n \"type\": - \"string\",\n \"nullable\": true,\n \"description\": + \"integer\",\n \"format\": \"int64\",\n \"nullable\": + true,\n \"description\": \"Limits requests per second + for each concurrent downloader\"\n },\n \"hidden_fields\": + {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\",\n \"properties\": + {\n \"name\": {\n \"type\": + \"string\"\n },\n \"is_set\": + {\n \"type\": \"boolean\"\n }\n + \ }\n },\n \"readOnly\": + true,\n \"description\": \"List of hidden (write only) + fields\"\n },\n \"uln_server_base_url\": + {\n \"type\": \"string\",\n \"nullable\": + true,\n \"description\": \"Base URL of the ULN server. + If the uln_server_base_url is not provided pulp_rpm willuse the contents of + the DEFAULT_ULN_SERVER_BASE_URL setting instead.\"\n }\n + \ },\n \"required\": [\n \"name\",\n + \ \"url\"\n ]\n },\n \"rpm.UpdateCollection\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for UpdateCollection.\",\n \"properties\": {\n + \ \"name\": {\n \"type\": \"string\",\n + \ \"nullable\": true,\n \"description\": \"Collection name.\"\n },\n \"shortname\": {\n \"type\": \"string\",\n \"nullable\": true,\n \"description\": \"Collection short name.\"\n @@ -32448,18 +51984,21 @@ interactions: [\n \"module\",\n \"name\",\n \"shortname\"\n \ ]\n },\n \"rpm.UpdateRecord\": {\n \"type\": \"object\",\n \"description\": \"A Serializer for UpdateRecord.\",\n - \ \"properties\": {\n \"file\": {\n \"type\": + \ \"properties\": {\n \"repository\": {\n + \ \"type\": \"string\",\n \"format\": + \"uri\",\n \"writeOnly\": true,\n \"description\": + \"A URI of a repository the new content unit should be associated with.\"\n + \ },\n \"file\": {\n \"type\": \"string\",\n \"format\": \"binary\",\n \"writeOnly\": true,\n \"description\": \"An uploaded file that may - be turned into the artifact of the content unit.\"\n },\n - \ \"repository\": {\n \"type\": \"string\",\n - \ \"format\": \"uri\",\n \"writeOnly\": - true,\n \"description\": \"A URI of a repository the - new content unit should be associated with.\"\n }\n }\n - \ },\n \"rpm.UpdateRecordResponse\": {\n \"type\": - \"object\",\n \"description\": \"A Serializer for UpdateRecord.\",\n - \ \"properties\": {\n \"pulp_href\": {\n - \ \"type\": \"string\",\n \"format\": + be turned into the content unit.\"\n },\n \"upload\": + {\n \"type\": \"string\",\n \"format\": + \"uri\",\n \"writeOnly\": true,\n \"description\": + \"An uncommitted upload that may be turned into the content unit.\"\n }\n + \ }\n },\n \"rpm.UpdateRecordResponse\": + {\n \"type\": \"object\",\n \"description\": + \"A Serializer for UpdateRecord.\",\n \"properties\": {\n \"pulp_href\": + {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"readOnly\": true\n },\n \ \"pulp_created\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"readOnly\": @@ -32520,7 +52059,7 @@ interactions: \"basic\"\n },\n \"cookieAuth\": {\n \"type\": \"apiKey\",\n \"in\": \"cookie\",\n \"name\": \"sessionid\"\n }\n }\n },\n \"servers\": [\n {\n - \ \"url\": \"http://localhost:80/\"\n }\n ]\n}" + \ \"url\": \"http://localhost:8080/\"\n }\n ]\n}" headers: Access-Control-Expose-Headers: - Correlation-ID @@ -32531,17 +52070,19 @@ interactions: Content-Disposition: - inline; filename="Pulp 3 API.json" Content-Length: - - '2714511' + - '4315977' Content-Type: - application/json Correlation-ID: - - 1d5a489edc0d43edbf10beb6c0794fea + - 2cbfff4a6b854ad1b89a221a8fc23749 + Cross-Origin-Opener-Policy: + - same-origin Date: - - Mon, 21 Nov 2022 13:13:03 GMT + - Thu, 08 Feb 2024 13:36:00 GMT Referrer-Policy: - same-origin Server: - - nginx/1.14.1 + - nginx/1.22.1 Vary: - Accept X-Content-Type-Options: @@ -32561,14 +52102,14 @@ interactions: Content-Type: - application/json Host: - - localhost:80 + - localhost:8080 User-Agent: - - Python-urllib/3.9 + - Python-urllib/3.10 method: GET uri: http://pulp.example.org/pulp/api/v3/repositories/rpm/rpm/?limit=1&name=test_rpm_repository response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"pulp_href":"/pulp/api/v3/repositories/rpm/rpm/7b8a217c-b9b3-404f-bfa4-05386d6db66f/","pulp_created":"2022-11-21T13:12:44.816249Z","versions_href":"/pulp/api/v3/repositories/rpm/rpm/7b8a217c-b9b3-404f-bfa4-05386d6db66f/versions/","pulp_labels":{},"latest_version_href":"/pulp/api/v3/repositories/rpm/rpm/7b8a217c-b9b3-404f-bfa4-05386d6db66f/versions/1/","name":"test_rpm_repository","description":null,"retain_repo_versions":null,"remote":null,"autopublish":false,"metadata_signing_service":null,"retain_package_versions":0,"metadata_checksum_type":null,"package_checksum_type":null,"gpgcheck":0,"repo_gpgcheck":0,"sqlite_metadata":false}]}' + string: '{"count":1,"next":null,"previous":null,"results":[{"pulp_href":"/pulp/api/v3/repositories/rpm/rpm/018d88ee-7aa1-77c3-b702-2dfdca32de34/","pulp_created":"2024-02-08T13:35:46.850237Z","versions_href":"/pulp/api/v3/repositories/rpm/rpm/018d88ee-7aa1-77c3-b702-2dfdca32de34/versions/","pulp_labels":{},"latest_version_href":"/pulp/api/v3/repositories/rpm/rpm/018d88ee-7aa1-77c3-b702-2dfdca32de34/versions/1/","name":"test_rpm_repository","description":null,"retain_repo_versions":null,"remote":null,"autopublish":false,"metadata_signing_service":null,"retain_package_versions":0,"checksum_type":null,"metadata_checksum_type":null,"package_checksum_type":null,"gpgcheck":null,"repo_gpgcheck":null,"sqlite_metadata":false,"repo_config":{},"compression_type":null}]}' headers: Access-Control-Expose-Headers: - Correlation-ID @@ -32577,65 +52118,21 @@ interactions: Connection: - close Content-Length: - - '691' + - '759' Content-Type: - application/json Correlation-ID: - - 0ceb367f4ac34525935a6079c38b5428 - Date: - - Mon, 21 Nov 2022 13:13:03 GMT - Referrer-Policy: + - d4c30ff39bf945f0b4af88175b5fe610 + Cross-Origin-Opener-Policy: - same-origin - Server: - - nginx/1.14.1 - Vary: - - Accept, Cookie - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Connection: - - close - Content-Type: - - application/json - Host: - - localhost:80 - User-Agent: - - Python-urllib/3.9 - method: GET - uri: http://pulp.example.org/pulp/api/v3/publications/rpm/rpm/?limit=1&repository_version=%2Fpulp%2Fapi%2Fv3%2Frepositories%2Frpm%2Frpm%2F7b8a217c-b9b3-404f-bfa4-05386d6db66f%2Fversions%2F1%2F - response: - body: - string: '{"count":1,"next":null,"previous":null,"results":[{"pulp_href":"/pulp/api/v3/publications/rpm/rpm/ec325bbb-3384-478e-a796-7f37468431d5/","pulp_created":"2022-11-21T13:12:57.546379Z","repository_version":"/pulp/api/v3/repositories/rpm/rpm/7b8a217c-b9b3-404f-bfa4-05386d6db66f/versions/1/","repository":"/pulp/api/v3/repositories/rpm/rpm/7b8a217c-b9b3-404f-bfa4-05386d6db66f/","metadata_checksum_type":"sha256","package_checksum_type":"sha256","gpgcheck":0,"repo_gpgcheck":0,"sqlite_metadata":false}]}' - headers: - Access-Control-Expose-Headers: - - Correlation-ID - Allow: - - GET, POST, HEAD, OPTIONS - Connection: - - close - Content-Length: - - '499' - Content-Type: - - application/json - Correlation-ID: - - 5e3b57942c4a438e9f52bfd4ea010d7f Date: - - Mon, 21 Nov 2022 13:13:03 GMT + - Thu, 08 Feb 2024 13:36:00 GMT Referrer-Policy: - same-origin Server: - - nginx/1.14.1 + - nginx/1.22.1 Vary: - - Accept, Cookie + - Accept X-Content-Type-Options: - nosniff X-Frame-Options: diff --git a/tests/fixtures/rpm_distribution-1.yml b/tests/fixtures/rpm_distribution-1.yml index 17e53fba..99a8d2b9 100644 --- a/tests/fixtures/rpm_distribution-1.yml +++ b/tests/fixtures/rpm_distribution-1.yml @@ -9,60 +9,14 @@ interactions: Content-Type: - application/json Host: - - localhost:80 + - localhost:8080 User-Agent: - - Python-urllib/3.9 + - Python-urllib/3.10 method: GET - uri: http://pulp.example.org/pulp/api/v3/contentguards/?limit=1&name=test_content_guard + uri: http://pulp.example.org/pulp/api/v3/repositories/rpm/rpm/?limit=1&name=test_rpm_repository response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"pulp_href":"/pulp/api/v3/contentguards/certguard/x509/0ac1d333-9391-4eb0-b55a-489ace40b9db/","pulp_created":"2022-11-21T13:12:59.589357Z","name":"test_content_guard","description":null}]}' - headers: - Access-Control-Expose-Headers: - - Correlation-ID - Allow: - - GET, HEAD, OPTIONS - Connection: - - close - Content-Length: - - '239' - Content-Type: - - application/json - Correlation-ID: - - 17353e772b194aae986a45cd777c7001 - Date: - - Mon, 21 Nov 2022 13:13:04 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.14.1 - Vary: - - Accept, Cookie - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Connection: - - close - Content-Type: - - application/json - Host: - - localhost:80 - User-Agent: - - Python-urllib/3.9 - method: GET - uri: http://pulp.example.org/pulp/api/v3/distributions/rpm/rpm/?limit=1&name=test_rpm_distribution - response: - body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' + string: '{"count":1,"next":null,"previous":null,"results":[{"pulp_href":"/pulp/api/v3/repositories/rpm/rpm/018d88ee-7aa1-77c3-b702-2dfdca32de34/","pulp_created":"2024-02-08T13:35:46.850237Z","versions_href":"/pulp/api/v3/repositories/rpm/rpm/018d88ee-7aa1-77c3-b702-2dfdca32de34/versions/","pulp_labels":{},"latest_version_href":"/pulp/api/v3/repositories/rpm/rpm/018d88ee-7aa1-77c3-b702-2dfdca32de34/versions/1/","name":"test_rpm_repository","description":null,"retain_repo_versions":null,"remote":null,"autopublish":false,"metadata_signing_service":null,"retain_package_versions":0,"checksum_type":null,"metadata_checksum_type":null,"package_checksum_type":null,"gpgcheck":null,"repo_gpgcheck":null,"sqlite_metadata":false,"repo_config":{},"compression_type":null}]}' headers: Access-Control-Expose-Headers: - Correlation-ID @@ -71,115 +25,21 @@ interactions: Connection: - close Content-Length: - - '52' + - '759' Content-Type: - application/json Correlation-ID: - - f660d0c5edac4215ac2d8cd69dd3c8ac - Date: - - Mon, 21 Nov 2022 13:13:05 GMT - Referrer-Policy: + - 3507f98328004ef39841e7fc5a310899 + Cross-Origin-Opener-Policy: - same-origin - Server: - - nginx/1.14.1 - Vary: - - Accept, Cookie - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: '{"name": "test_rpm_distribution", "base_path": "test_rpm_base_path", "publication": - "/pulp/api/v3/publications/rpm/rpm/ec325bbb-3384-478e-a796-7f37468431d5/", "content_guard": - "/pulp/api/v3/contentguards/certguard/x509/0ac1d333-9391-4eb0-b55a-489ace40b9db/"}' - headers: - Accept: - - application/json - Connection: - - close - Content-Length: - - 258 - Content-Type: - - application/json - Host: - - localhost:80 - User-Agent: - - Python-urllib/3.9 - method: POST - uri: http://pulp.example.org/pulp/api/v3/distributions/rpm/rpm/ - response: - body: - string: '{"task":"/pulp/api/v3/tasks/6707e244-4390-4bc7-b3a0-e37418bf267f/"}' - headers: - Access-Control-Expose-Headers: - - Correlation-ID - Allow: - - GET, POST, HEAD, OPTIONS - Connection: - - close - Content-Length: - - '67' - Content-Type: - - application/json - Correlation-ID: - - 488fb6b4978d4ae68a2c9939dc8a7f6f Date: - - Mon, 21 Nov 2022 13:13:05 GMT + - Thu, 08 Feb 2024 13:36:00 GMT Referrer-Policy: - same-origin Server: - - nginx/1.14.1 + - nginx/1.22.1 Vary: - - Accept, Cookie - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Connection: - - close - Content-Type: - - application/json - Host: - - localhost:80 - User-Agent: - - Python-urllib/3.9 - method: GET - uri: http://pulp.example.org/pulp/api/v3/tasks/6707e244-4390-4bc7-b3a0-e37418bf267f/ - response: - body: - string: '{"pulp_href":"/pulp/api/v3/tasks/6707e244-4390-4bc7-b3a0-e37418bf267f/","pulp_created":"2022-11-21T13:13:05.646670Z","state":"running","name":"pulpcore.app.tasks.base.general_create","logging_cid":"488fb6b4978d4ae68a2c9939dc8a7f6f","started_at":"2022-11-21T13:13:05.713240Z","finished_at":null,"error":null,"worker":"/pulp/api/v3/workers/518aed5f-e7e1-4a03-9338-9d9da378164e/","parent_task":null,"child_tasks":[],"task_group":null,"progress_reports":[],"created_resources":[],"reserved_resources_record":["/api/v3/distributions/"]}' - headers: - Access-Control-Expose-Headers: - - Correlation-ID - Allow: - - GET, PATCH, DELETE, HEAD, OPTIONS - Connection: - - close - Content-Length: - - '531' - Content-Type: - - application/json - Correlation-ID: - - 8e88895220a14580a36c1b03713fab3d - Date: - - Mon, 21 Nov 2022 13:13:06 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.14.1 - Vary: - - Accept, Cookie + - Accept X-Content-Type-Options: - nosniff X-Frame-Options: @@ -197,81 +57,37 @@ interactions: Content-Type: - application/json Host: - - localhost:80 + - localhost:8080 User-Agent: - - Python-urllib/3.9 + - Python-urllib/3.10 method: GET - uri: http://pulp.example.org/pulp/api/v3/tasks/6707e244-4390-4bc7-b3a0-e37418bf267f/ + uri: http://pulp.example.org/pulp/api/v3/publications/rpm/rpm/?limit=1&repository_version=%2Fpulp%2Fapi%2Fv3%2Frepositories%2Frpm%2Frpm%2F018d88ee-7aa1-77c3-b702-2dfdca32de34%2Fversions%2F1%2F response: body: - string: '{"pulp_href":"/pulp/api/v3/tasks/6707e244-4390-4bc7-b3a0-e37418bf267f/","pulp_created":"2022-11-21T13:13:05.646670Z","state":"completed","name":"pulpcore.app.tasks.base.general_create","logging_cid":"488fb6b4978d4ae68a2c9939dc8a7f6f","started_at":"2022-11-21T13:13:05.713240Z","finished_at":"2022-11-21T13:13:06.295990Z","error":null,"worker":"/pulp/api/v3/workers/518aed5f-e7e1-4a03-9338-9d9da378164e/","parent_task":null,"child_tasks":[],"task_group":null,"progress_reports":[],"created_resources":["/pulp/api/v3/distributions/rpm/rpm/8e287d91-be22-4638-819e-446eb8b12bb4/"],"reserved_resources_record":["/api/v3/distributions/"]}' + string: '{"count":1,"next":null,"previous":null,"results":[{"pulp_href":"/pulp/api/v3/publications/rpm/rpm/018d88ee-9499-7bc2-b326-ed28df2bbef8/","pulp_created":"2024-02-08T13:35:53.498423Z","repository_version":"/pulp/api/v3/repositories/rpm/rpm/018d88ee-7aa1-77c3-b702-2dfdca32de34/versions/1/","repository":"/pulp/api/v3/repositories/rpm/rpm/018d88ee-7aa1-77c3-b702-2dfdca32de34/","checksum_type":"sha256","metadata_checksum_type":"sha256","package_checksum_type":"sha256","gpgcheck":null,"repo_gpgcheck":null,"sqlite_metadata":false,"repo_config":{},"compression_type":null}]}' headers: Access-Control-Expose-Headers: - Correlation-ID Allow: - - GET, PATCH, DELETE, HEAD, OPTIONS + - GET, POST, HEAD, OPTIONS Connection: - close Content-Length: - - '632' + - '571' Content-Type: - application/json Correlation-ID: - - 47e4df0b62b34edeb03fc89a465ce769 - Date: - - Mon, 21 Nov 2022 13:13:08 GMT - Referrer-Policy: + - b3a9f20014e040bc923e9e879ab38db5 + Cross-Origin-Opener-Policy: - same-origin - Server: - - nginx/1.14.1 - Vary: - - Accept, Cookie - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Connection: - - close - Content-Type: - - application/json - Host: - - localhost:80 - User-Agent: - - Python-urllib/3.9 - method: GET - uri: http://pulp.example.org/pulp/api/v3/distributions/rpm/rpm/8e287d91-be22-4638-819e-446eb8b12bb4/ - response: - body: - string: '{"pulp_href":"/pulp/api/v3/distributions/rpm/rpm/8e287d91-be22-4638-819e-446eb8b12bb4/","pulp_created":"2022-11-21T13:13:06.282273Z","base_path":"test_rpm_base_path","base_url":"http://alex-rocky-pulp.novalocal:8080/pulp/content/test_rpm_base_path/","content_guard":"/pulp/api/v3/contentguards/certguard/x509/0ac1d333-9391-4eb0-b55a-489ace40b9db/","pulp_labels":{},"name":"test_rpm_distribution","repository":null,"publication":"/pulp/api/v3/publications/rpm/rpm/ec325bbb-3384-478e-a796-7f37468431d5/"}' - headers: - Access-Control-Expose-Headers: - - Correlation-ID - Allow: - - GET, PUT, PATCH, DELETE, HEAD, OPTIONS - Connection: - - close - Content-Length: - - '502' - Content-Type: - - application/json - Correlation-ID: - - a2e672347cbc4690b3580b2437274c41 Date: - - Mon, 21 Nov 2022 13:13:08 GMT + - Thu, 08 Feb 2024 13:36:01 GMT Referrer-Policy: - same-origin Server: - - nginx/1.14.1 + - nginx/1.22.1 Vary: - - Accept, Cookie + - Accept X-Content-Type-Options: - nosniff X-Frame-Options: diff --git a/tests/fixtures/rpm_distribution-2.yml b/tests/fixtures/rpm_distribution-2.yml index a5ed77d0..1ff749c1 100644 --- a/tests/fixtures/rpm_distribution-2.yml +++ b/tests/fixtures/rpm_distribution-2.yml @@ -9,14 +9,114 @@ interactions: Content-Type: - application/json Host: - - localhost:80 + - localhost:8080 User-Agent: - - Python-urllib/3.9 + - Python-urllib/3.10 + method: GET + uri: http://pulp.example.org/pulp/api/v3/contentguards/?limit=1&name=test_content_guard + response: + body: + string: '{"count":1,"next":null,"previous":null,"results":[{"pulp_href":"/pulp/api/v3/contentguards/certguard/x509/018d88ee-a222-7790-b625-4a9b8a7ec8d4/","pulp_created":"2024-02-08T13:35:56.962644Z","name":"test_content_guard","description":null}]}' + headers: + Access-Control-Expose-Headers: + - Correlation-ID + Allow: + - GET, HEAD, OPTIONS + Connection: + - close + Content-Length: + - '239' + Content-Type: + - application/json + Correlation-ID: + - 7ef1c5b2aafd40c7835d60c1c32bdeb3 + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Thu, 08 Feb 2024 13:36:01 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.22.1 + Vary: + - Accept + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Connection: + - close + Content-Type: + - application/json + Host: + - localhost:8080 + User-Agent: + - Python-urllib/3.10 method: GET uri: http://pulp.example.org/pulp/api/v3/distributions/rpm/rpm/?limit=1&name=test_rpm_distribution response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"pulp_href":"/pulp/api/v3/distributions/rpm/rpm/8e287d91-be22-4638-819e-446eb8b12bb4/","pulp_created":"2022-11-21T13:13:06.282273Z","base_path":"test_rpm_base_path","base_url":"http://alex-rocky-pulp.novalocal:8080/pulp/content/test_rpm_base_path/","content_guard":"/pulp/api/v3/contentguards/certguard/x509/0ac1d333-9391-4eb0-b55a-489ace40b9db/","pulp_labels":{},"name":"test_rpm_distribution","repository":null,"publication":"/pulp/api/v3/publications/rpm/rpm/ec325bbb-3384-478e-a796-7f37468431d5/"}]}' + string: '{"count":0,"next":null,"previous":null,"results":[]}' + headers: + Access-Control-Expose-Headers: + - Correlation-ID + Allow: + - GET, POST, HEAD, OPTIONS + Connection: + - close + Content-Length: + - '52' + Content-Type: + - application/json + Correlation-ID: + - 3217f4187b5e4bd8b63fd1d5dbaa8b4b + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Thu, 08 Feb 2024 13:36:01 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.22.1 + Vary: + - Accept + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: '{"name": "test_rpm_distribution", "base_path": "test_rpm_base_path", "publication": + "/pulp/api/v3/publications/rpm/rpm/018d88ee-9499-7bc2-b326-ed28df2bbef8/", "repository": + null, "content_guard": "/pulp/api/v3/contentguards/certguard/x509/018d88ee-a222-7790-b625-4a9b8a7ec8d4/"}' + headers: + Accept: + - application/json + Connection: + - close + Content-Length: + - 278 + Content-Type: + - application/json + Host: + - localhost:8080 + User-Agent: + - Python-urllib/3.10 + method: POST + uri: http://pulp.example.org/pulp/api/v3/distributions/rpm/rpm/ + response: + body: + string: '{"task":"/pulp/api/v3/tasks/018d88ee-b518-75f2-9798-50ec270f9e16/"}' headers: Access-Control-Expose-Headers: - Correlation-ID @@ -25,19 +125,165 @@ interactions: Connection: - close Content-Length: - - '554' + - '67' + Content-Type: + - application/json + Correlation-ID: + - 2f6b1929c5694d9581752e2125ffeb55 + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Thu, 08 Feb 2024 13:36:01 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.22.1 + Vary: + - Accept + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Connection: + - close + Content-Type: + - application/json + Host: + - localhost:8080 + User-Agent: + - Python-urllib/3.10 + method: GET + uri: http://pulp.example.org/pulp/api/v3/tasks/018d88ee-b518-75f2-9798-50ec270f9e16/ + response: + body: + string: '{"pulp_href":"/pulp/api/v3/tasks/018d88ee-b518-75f2-9798-50ec270f9e16/","pulp_created":"2024-02-08T13:36:01.816899Z","state":"running","name":"pulpcore.app.tasks.base.general_create","logging_cid":"2f6b1929c5694d9581752e2125ffeb55","created_by":"/pulp/api/v3/users/1/","started_at":"2024-02-08T13:36:01.856736Z","finished_at":null,"error":null,"worker":"/pulp/api/v3/workers/018d88ee-5b62-72c8-abe9-0ca12beaa93c/","parent_task":null,"child_tasks":[],"task_group":null,"progress_reports":[],"created_resources":[],"reserved_resources_record":["/api/v3/distributions/","shared:/pulp/api/v3/domains/018d88ed-bdc7-7d89-a16b-3f07f9e37e1a/"]}' + headers: + Access-Control-Expose-Headers: + - Correlation-ID + Allow: + - GET, PATCH, DELETE, HEAD, OPTIONS + Connection: + - close + Content-Length: + - '636' + Content-Type: + - application/json + Correlation-ID: + - eb4f9b7219e24e46841c31bcc8f8368c + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Thu, 08 Feb 2024 13:36:01 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.22.1 + Vary: + - Accept + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Connection: + - close + Content-Type: + - application/json + Host: + - localhost:8080 + User-Agent: + - Python-urllib/3.10 + method: GET + uri: http://pulp.example.org/pulp/api/v3/tasks/018d88ee-b518-75f2-9798-50ec270f9e16/ + response: + body: + string: '{"pulp_href":"/pulp/api/v3/tasks/018d88ee-b518-75f2-9798-50ec270f9e16/","pulp_created":"2024-02-08T13:36:01.816899Z","state":"completed","name":"pulpcore.app.tasks.base.general_create","logging_cid":"2f6b1929c5694d9581752e2125ffeb55","created_by":"/pulp/api/v3/users/1/","started_at":"2024-02-08T13:36:01.856736Z","finished_at":"2024-02-08T13:36:02.008110Z","error":null,"worker":"/pulp/api/v3/workers/018d88ee-5b62-72c8-abe9-0ca12beaa93c/","parent_task":null,"child_tasks":[],"task_group":null,"progress_reports":[],"created_resources":["/pulp/api/v3/distributions/rpm/rpm/018d88ee-b5ce-73e5-b033-a5ff267fb3a5/"],"reserved_resources_record":["/api/v3/distributions/","shared:/pulp/api/v3/domains/018d88ed-bdc7-7d89-a16b-3f07f9e37e1a/"]}' + headers: + Access-Control-Expose-Headers: + - Correlation-ID + Allow: + - GET, PATCH, DELETE, HEAD, OPTIONS + Connection: + - close + Content-Length: + - '737' + Content-Type: + - application/json + Correlation-ID: + - c632d5bc419a4f2493d3bdc4e86be429 + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Thu, 08 Feb 2024 13:36:04 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.22.1 + Vary: + - Accept + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Connection: + - close + Content-Type: + - application/json + Host: + - localhost:8080 + User-Agent: + - Python-urllib/3.10 + method: GET + uri: http://pulp.example.org/pulp/api/v3/distributions/rpm/rpm/018d88ee-b5ce-73e5-b033-a5ff267fb3a5/ + response: + body: + string: '{"pulp_href":"/pulp/api/v3/distributions/rpm/rpm/018d88ee-b5ce-73e5-b033-a5ff267fb3a5/","pulp_created":"2024-02-08T13:36:01.999188Z","base_path":"test_rpm_base_path","base_url":"http://localhost:8080/pulp/content/test_rpm_base_path/","content_guard":"/pulp/api/v3/contentguards/certguard/x509/018d88ee-a222-7790-b625-4a9b8a7ec8d4/","hidden":false,"pulp_labels":{},"name":"test_rpm_distribution","repository":null,"publication":"/pulp/api/v3/publications/rpm/rpm/018d88ee-9499-7bc2-b326-ed28df2bbef8/","generate_repo_config":false}' + headers: + Access-Control-Expose-Headers: + - Correlation-ID + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Connection: + - close + Content-Length: + - '530' Content-Type: - application/json Correlation-ID: - - cd85b09466f84b299da67e5600174f2c + - bca1f22fd8104638ad90fafd809af162 + Cross-Origin-Opener-Policy: + - same-origin Date: - - Mon, 21 Nov 2022 13:13:09 GMT + - Thu, 08 Feb 2024 13:36:04 GMT Referrer-Policy: - same-origin Server: - - nginx/1.14.1 + - nginx/1.22.1 Vary: - - Accept, Cookie + - Accept X-Content-Type-Options: - nosniff X-Frame-Options: diff --git a/tests/fixtures/rpm_distribution-3.yml b/tests/fixtures/rpm_distribution-3.yml index 5fd9a8cb..baf6e5f2 100644 --- a/tests/fixtures/rpm_distribution-3.yml +++ b/tests/fixtures/rpm_distribution-3.yml @@ -9,14 +9,14 @@ interactions: Content-Type: - application/json Host: - - localhost:80 + - localhost:8080 User-Agent: - - Python-urllib/3.9 + - Python-urllib/3.10 method: GET uri: http://pulp.example.org/pulp/api/v3/distributions/rpm/rpm/?limit=1&name=test_rpm_distribution response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"pulp_href":"/pulp/api/v3/distributions/rpm/rpm/8e287d91-be22-4638-819e-446eb8b12bb4/","pulp_created":"2022-11-21T13:13:06.282273Z","base_path":"test_rpm_base_path","base_url":"http://alex-rocky-pulp.novalocal:8080/pulp/content/test_rpm_base_path/","content_guard":"/pulp/api/v3/contentguards/certguard/x509/0ac1d333-9391-4eb0-b55a-489ace40b9db/","pulp_labels":{},"name":"test_rpm_distribution","repository":null,"publication":"/pulp/api/v3/publications/rpm/rpm/ec325bbb-3384-478e-a796-7f37468431d5/"}]}' + string: '{"count":1,"next":null,"previous":null,"results":[{"pulp_href":"/pulp/api/v3/distributions/rpm/rpm/018d88ee-b5ce-73e5-b033-a5ff267fb3a5/","pulp_created":"2024-02-08T13:36:01.999188Z","base_path":"test_rpm_base_path","base_url":"http://localhost:8080/pulp/content/test_rpm_base_path/","content_guard":"/pulp/api/v3/contentguards/certguard/x509/018d88ee-a222-7790-b625-4a9b8a7ec8d4/","hidden":false,"pulp_labels":{},"name":"test_rpm_distribution","repository":null,"publication":"/pulp/api/v3/publications/rpm/rpm/018d88ee-9499-7bc2-b326-ed28df2bbef8/","generate_repo_config":false}]}' headers: Access-Control-Expose-Headers: - Correlation-ID @@ -25,19 +25,21 @@ interactions: Connection: - close Content-Length: - - '554' + - '582' Content-Type: - application/json Correlation-ID: - - fda26bcba3fd46368e5b6bd924d06dab + - 64de80174132423fa8149a434589135b + Cross-Origin-Opener-Policy: + - same-origin Date: - - Mon, 21 Nov 2022 13:13:11 GMT + - Thu, 08 Feb 2024 13:36:04 GMT Referrer-Policy: - same-origin Server: - - nginx/1.14.1 + - nginx/1.22.1 Vary: - - Accept, Cookie + - Accept X-Content-Type-Options: - nosniff X-Frame-Options: diff --git a/tests/fixtures/rpm_distribution-4.yml b/tests/fixtures/rpm_distribution-4.yml index c4f17845..2ae777d2 100644 --- a/tests/fixtures/rpm_distribution-4.yml +++ b/tests/fixtures/rpm_distribution-4.yml @@ -9,14 +9,14 @@ interactions: Content-Type: - application/json Host: - - localhost:80 + - localhost:8080 User-Agent: - - Python-urllib/3.9 + - Python-urllib/3.10 method: GET uri: http://pulp.example.org/pulp/api/v3/distributions/rpm/rpm/?limit=1&name=test_rpm_distribution response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"pulp_href":"/pulp/api/v3/distributions/rpm/rpm/8e287d91-be22-4638-819e-446eb8b12bb4/","pulp_created":"2022-11-21T13:13:06.282273Z","base_path":"test_rpm_base_path","base_url":"http://alex-rocky-pulp.novalocal:8080/pulp/content/test_rpm_base_path/","content_guard":"/pulp/api/v3/contentguards/certguard/x509/0ac1d333-9391-4eb0-b55a-489ace40b9db/","pulp_labels":{},"name":"test_rpm_distribution","repository":null,"publication":"/pulp/api/v3/publications/rpm/rpm/ec325bbb-3384-478e-a796-7f37468431d5/"}]}' + string: '{"count":1,"next":null,"previous":null,"results":[{"pulp_href":"/pulp/api/v3/distributions/rpm/rpm/018d88ee-b5ce-73e5-b033-a5ff267fb3a5/","pulp_created":"2024-02-08T13:36:01.999188Z","base_path":"test_rpm_base_path","base_url":"http://localhost:8080/pulp/content/test_rpm_base_path/","content_guard":"/pulp/api/v3/contentguards/certguard/x509/018d88ee-a222-7790-b625-4a9b8a7ec8d4/","hidden":false,"pulp_labels":{},"name":"test_rpm_distribution","repository":null,"publication":"/pulp/api/v3/publications/rpm/rpm/018d88ee-9499-7bc2-b326-ed28df2bbef8/","generate_repo_config":false}]}' headers: Access-Control-Expose-Headers: - Correlation-ID @@ -25,111 +25,21 @@ interactions: Connection: - close Content-Length: - - '554' + - '582' Content-Type: - application/json Correlation-ID: - - 9db094581360467ab8e650521fdde66d - Date: - - Mon, 21 Nov 2022 13:13:12 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.14.1 - Vary: - - Accept, Cookie - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Connection: - - close - Content-Type: - - application/json - Host: - - localhost:80 - User-Agent: - - Python-urllib/3.9 - method: DELETE - uri: http://pulp.example.org/pulp/api/v3/distributions/rpm/rpm/8e287d91-be22-4638-819e-446eb8b12bb4/ - response: - body: - string: '{"task":"/pulp/api/v3/tasks/090022b7-d543-483a-9daa-aeefe560a5ff/"}' - headers: - Access-Control-Expose-Headers: - - Correlation-ID - Allow: - - GET, PUT, PATCH, DELETE, HEAD, OPTIONS - Connection: - - close - Content-Length: - - '67' - Content-Type: - - application/json - Correlation-ID: - - ee719a0b449d48f290555a59972a4796 - Date: - - Mon, 21 Nov 2022 13:13:12 GMT - Referrer-Policy: + - 1260d5ebd630475e86da0b1dcaade881 + Cross-Origin-Opener-Policy: - same-origin - Server: - - nginx/1.14.1 - Vary: - - Accept, Cookie - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Connection: - - close - Content-Type: - - application/json - Host: - - localhost:80 - User-Agent: - - Python-urllib/3.9 - method: GET - uri: http://pulp.example.org/pulp/api/v3/tasks/090022b7-d543-483a-9daa-aeefe560a5ff/ - response: - body: - string: '{"pulp_href":"/pulp/api/v3/tasks/090022b7-d543-483a-9daa-aeefe560a5ff/","pulp_created":"2022-11-21T13:13:12.398589Z","state":"completed","name":"pulpcore.app.tasks.base.general_delete","logging_cid":"ee719a0b449d48f290555a59972a4796","started_at":"2022-11-21T13:13:12.440588Z","finished_at":"2022-11-21T13:13:12.487138Z","error":null,"worker":"/pulp/api/v3/workers/cf065072-a318-4959-a75a-fa305dba9cd6/","parent_task":null,"child_tasks":[],"task_group":null,"progress_reports":[],"created_resources":[],"reserved_resources_record":["/api/v3/distributions/"]}' - headers: - Access-Control-Expose-Headers: - - Correlation-ID - Allow: - - GET, PATCH, DELETE, HEAD, OPTIONS - Connection: - - close - Content-Length: - - '558' - Content-Type: - - application/json - Correlation-ID: - - 40625d292ed443e3b6ea4d71b38fb46a Date: - - Mon, 21 Nov 2022 13:13:12 GMT + - Thu, 08 Feb 2024 13:36:05 GMT Referrer-Policy: - same-origin Server: - - nginx/1.14.1 + - nginx/1.22.1 Vary: - - Accept, Cookie + - Accept X-Content-Type-Options: - nosniff X-Frame-Options: diff --git a/tests/fixtures/rpm_distribution-5.yml b/tests/fixtures/rpm_distribution-5.yml index 4f720838..81c5bd73 100644 --- a/tests/fixtures/rpm_distribution-5.yml +++ b/tests/fixtures/rpm_distribution-5.yml @@ -9,14 +9,62 @@ interactions: Content-Type: - application/json Host: - - localhost:80 + - localhost:8080 User-Agent: - - Python-urllib/3.9 + - Python-urllib/3.10 + method: GET + uri: http://pulp.example.org/pulp/api/v3/repositories/rpm/rpm/?limit=1&name=test_rpm_repository + response: + body: + string: '{"count":1,"next":null,"previous":null,"results":[{"pulp_href":"/pulp/api/v3/repositories/rpm/rpm/018d88ee-7aa1-77c3-b702-2dfdca32de34/","pulp_created":"2024-02-08T13:35:46.850237Z","versions_href":"/pulp/api/v3/repositories/rpm/rpm/018d88ee-7aa1-77c3-b702-2dfdca32de34/versions/","pulp_labels":{},"latest_version_href":"/pulp/api/v3/repositories/rpm/rpm/018d88ee-7aa1-77c3-b702-2dfdca32de34/versions/1/","name":"test_rpm_repository","description":null,"retain_repo_versions":null,"remote":null,"autopublish":false,"metadata_signing_service":null,"retain_package_versions":0,"checksum_type":null,"metadata_checksum_type":null,"package_checksum_type":null,"gpgcheck":null,"repo_gpgcheck":null,"sqlite_metadata":false,"repo_config":{},"compression_type":null}]}' + headers: + Access-Control-Expose-Headers: + - Correlation-ID + Allow: + - GET, POST, HEAD, OPTIONS + Connection: + - close + Content-Length: + - '759' + Content-Type: + - application/json + Correlation-ID: + - 7073f7603dc241128f43c523db96341a + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Thu, 08 Feb 2024 13:36:05 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.22.1 + Vary: + - Accept + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Connection: + - close + Content-Type: + - application/json + Host: + - localhost:8080 + User-Agent: + - Python-urllib/3.10 method: GET uri: http://pulp.example.org/pulp/api/v3/distributions/rpm/rpm/?limit=1&name=test_rpm_distribution response: body: - string: '{"count":0,"next":null,"previous":null,"results":[]}' + string: '{"count":1,"next":null,"previous":null,"results":[{"pulp_href":"/pulp/api/v3/distributions/rpm/rpm/018d88ee-b5ce-73e5-b033-a5ff267fb3a5/","pulp_created":"2024-02-08T13:36:01.999188Z","base_path":"test_rpm_base_path","base_url":"http://localhost:8080/pulp/content/test_rpm_base_path/","content_guard":"/pulp/api/v3/contentguards/certguard/x509/018d88ee-a222-7790-b625-4a9b8a7ec8d4/","hidden":false,"pulp_labels":{},"name":"test_rpm_distribution","repository":null,"publication":"/pulp/api/v3/publications/rpm/rpm/018d88ee-9499-7bc2-b326-ed28df2bbef8/","generate_repo_config":false}]}' headers: Access-Control-Expose-Headers: - Correlation-ID @@ -25,19 +73,168 @@ interactions: Connection: - close Content-Length: - - '52' + - '582' + Content-Type: + - application/json + Correlation-ID: + - 031debec8eac4dc1a8fd58dfa40886be + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Thu, 08 Feb 2024 13:36:05 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.22.1 + Vary: + - Accept + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: '{"repository": "/pulp/api/v3/repositories/rpm/rpm/018d88ee-7aa1-77c3-b702-2dfdca32de34/", + "publication": null}' + headers: + Accept: + - application/json + Connection: + - close + Content-Length: + - 110 + Content-Type: + - application/json + Host: + - localhost:8080 + User-Agent: + - Python-urllib/3.10 + method: PATCH + uri: http://pulp.example.org/pulp/api/v3/distributions/rpm/rpm/018d88ee-b5ce-73e5-b033-a5ff267fb3a5/ + response: + body: + string: '{"task":"/pulp/api/v3/tasks/018d88ee-c4e8-7cc1-ad57-0df9d68be947/"}' + headers: + Access-Control-Expose-Headers: + - Correlation-ID + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Connection: + - close + Content-Length: + - '67' Content-Type: - application/json Correlation-ID: - - 0c820fcd782940ae906741d24aa82bba + - e134970fef5849f48884703aeffde320 + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Thu, 08 Feb 2024 13:36:05 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.22.1 + Vary: + - Accept + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Connection: + - close + Content-Type: + - application/json + Host: + - localhost:8080 + User-Agent: + - Python-urllib/3.10 + method: GET + uri: http://pulp.example.org/pulp/api/v3/tasks/018d88ee-c4e8-7cc1-ad57-0df9d68be947/ + response: + body: + string: '{"pulp_href":"/pulp/api/v3/tasks/018d88ee-c4e8-7cc1-ad57-0df9d68be947/","pulp_created":"2024-02-08T13:36:05.864610Z","state":"completed","name":"pulpcore.app.tasks.base.general_update","logging_cid":"e134970fef5849f48884703aeffde320","created_by":"/pulp/api/v3/users/1/","started_at":"2024-02-08T13:36:05.871279Z","finished_at":"2024-02-08T13:36:05.878603Z","error":null,"worker":null,"parent_task":null,"child_tasks":[],"task_group":null,"progress_reports":[],"created_resources":[],"reserved_resources_record":["/api/v3/distributions/","shared:/pulp/api/v3/domains/018d88ed-bdc7-7d89-a16b-3f07f9e37e1a/"]}' + headers: + Access-Control-Expose-Headers: + - Correlation-ID + Allow: + - GET, PATCH, DELETE, HEAD, OPTIONS + Connection: + - close + Content-Length: + - '607' + Content-Type: + - application/json + Correlation-ID: + - c49cc19a9f9c4d5887c7d9fe71c91960 + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Thu, 08 Feb 2024 13:36:06 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.22.1 + Vary: + - Accept + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Connection: + - close + Content-Type: + - application/json + Host: + - localhost:8080 + User-Agent: + - Python-urllib/3.10 + method: GET + uri: http://pulp.example.org/pulp/api/v3/distributions/rpm/rpm/018d88ee-b5ce-73e5-b033-a5ff267fb3a5/ + response: + body: + string: '{"pulp_href":"/pulp/api/v3/distributions/rpm/rpm/018d88ee-b5ce-73e5-b033-a5ff267fb3a5/","pulp_created":"2024-02-08T13:36:01.999188Z","base_path":"test_rpm_base_path","base_url":"http://localhost:8080/pulp/content/test_rpm_base_path/","content_guard":"/pulp/api/v3/contentguards/certguard/x509/018d88ee-a222-7790-b625-4a9b8a7ec8d4/","hidden":false,"pulp_labels":{},"name":"test_rpm_distribution","repository":"/pulp/api/v3/repositories/rpm/rpm/018d88ee-7aa1-77c3-b702-2dfdca32de34/","publication":null,"generate_repo_config":false}' + headers: + Access-Control-Expose-Headers: + - Correlation-ID + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Connection: + - close + Content-Length: + - '530' + Content-Type: + - application/json + Correlation-ID: + - dc750fc429d74118be00cc79ff0d246d + Cross-Origin-Opener-Policy: + - same-origin Date: - - Mon, 21 Nov 2022 13:13:13 GMT + - Thu, 08 Feb 2024 13:36:06 GMT Referrer-Policy: - same-origin Server: - - nginx/1.14.1 + - nginx/1.22.1 Vary: - - Accept, Cookie + - Accept X-Content-Type-Options: - nosniff X-Frame-Options: diff --git a/tests/fixtures/rpm_distribution-6.yml b/tests/fixtures/rpm_distribution-6.yml new file mode 100644 index 00000000..e8c3baa5 --- /dev/null +++ b/tests/fixtures/rpm_distribution-6.yml @@ -0,0 +1,98 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Connection: + - close + Content-Type: + - application/json + Host: + - localhost:8080 + User-Agent: + - Python-urllib/3.10 + method: GET + uri: http://pulp.example.org/pulp/api/v3/repositories/rpm/rpm/?limit=1&name=test_rpm_repository + response: + body: + string: '{"count":1,"next":null,"previous":null,"results":[{"pulp_href":"/pulp/api/v3/repositories/rpm/rpm/018d88ee-7aa1-77c3-b702-2dfdca32de34/","pulp_created":"2024-02-08T13:35:46.850237Z","versions_href":"/pulp/api/v3/repositories/rpm/rpm/018d88ee-7aa1-77c3-b702-2dfdca32de34/versions/","pulp_labels":{},"latest_version_href":"/pulp/api/v3/repositories/rpm/rpm/018d88ee-7aa1-77c3-b702-2dfdca32de34/versions/1/","name":"test_rpm_repository","description":null,"retain_repo_versions":null,"remote":null,"autopublish":false,"metadata_signing_service":null,"retain_package_versions":0,"checksum_type":null,"metadata_checksum_type":null,"package_checksum_type":null,"gpgcheck":null,"repo_gpgcheck":null,"sqlite_metadata":false,"repo_config":{},"compression_type":null}]}' + headers: + Access-Control-Expose-Headers: + - Correlation-ID + Allow: + - GET, POST, HEAD, OPTIONS + Connection: + - close + Content-Length: + - '759' + Content-Type: + - application/json + Correlation-ID: + - 8585b8e9c7464d8ebe086580797aad70 + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Thu, 08 Feb 2024 13:36:06 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.22.1 + Vary: + - Accept + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Connection: + - close + Content-Type: + - application/json + Host: + - localhost:8080 + User-Agent: + - Python-urllib/3.10 + method: GET + uri: http://pulp.example.org/pulp/api/v3/distributions/rpm/rpm/?limit=1&name=test_rpm_distribution + response: + body: + string: '{"count":1,"next":null,"previous":null,"results":[{"pulp_href":"/pulp/api/v3/distributions/rpm/rpm/018d88ee-b5ce-73e5-b033-a5ff267fb3a5/","pulp_created":"2024-02-08T13:36:01.999188Z","base_path":"test_rpm_base_path","base_url":"http://localhost:8080/pulp/content/test_rpm_base_path/","content_guard":"/pulp/api/v3/contentguards/certguard/x509/018d88ee-a222-7790-b625-4a9b8a7ec8d4/","hidden":false,"pulp_labels":{},"name":"test_rpm_distribution","repository":"/pulp/api/v3/repositories/rpm/rpm/018d88ee-7aa1-77c3-b702-2dfdca32de34/","publication":null,"generate_repo_config":false}]}' + headers: + Access-Control-Expose-Headers: + - Correlation-ID + Allow: + - GET, POST, HEAD, OPTIONS + Connection: + - close + Content-Length: + - '582' + Content-Type: + - application/json + Correlation-ID: + - bb6a1c32f4be4b40ba70304fb2efda38 + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Thu, 08 Feb 2024 13:36:06 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.22.1 + Vary: + - Accept + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +version: 1 diff --git a/tests/fixtures/rpm_distribution-7.yml b/tests/fixtures/rpm_distribution-7.yml new file mode 100644 index 00000000..b1393f7e --- /dev/null +++ b/tests/fixtures/rpm_distribution-7.yml @@ -0,0 +1,146 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Connection: + - close + Content-Type: + - application/json + Host: + - localhost:8080 + User-Agent: + - Python-urllib/3.10 + method: GET + uri: http://pulp.example.org/pulp/api/v3/distributions/rpm/rpm/?limit=1&name=test_rpm_distribution + response: + body: + string: '{"count":1,"next":null,"previous":null,"results":[{"pulp_href":"/pulp/api/v3/distributions/rpm/rpm/018d88ee-b5ce-73e5-b033-a5ff267fb3a5/","pulp_created":"2024-02-08T13:36:01.999188Z","base_path":"test_rpm_base_path","base_url":"http://localhost:8080/pulp/content/test_rpm_base_path/","content_guard":"/pulp/api/v3/contentguards/certguard/x509/018d88ee-a222-7790-b625-4a9b8a7ec8d4/","hidden":false,"pulp_labels":{},"name":"test_rpm_distribution","repository":"/pulp/api/v3/repositories/rpm/rpm/018d88ee-7aa1-77c3-b702-2dfdca32de34/","publication":null,"generate_repo_config":false}]}' + headers: + Access-Control-Expose-Headers: + - Correlation-ID + Allow: + - GET, POST, HEAD, OPTIONS + Connection: + - close + Content-Length: + - '582' + Content-Type: + - application/json + Correlation-ID: + - c4e3f98723124e16b424232420745f1d + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Thu, 08 Feb 2024 13:36:07 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.22.1 + Vary: + - Accept + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Connection: + - close + Content-Type: + - application/json + Host: + - localhost:8080 + User-Agent: + - Python-urllib/3.10 + method: DELETE + uri: http://pulp.example.org/pulp/api/v3/distributions/rpm/rpm/018d88ee-b5ce-73e5-b033-a5ff267fb3a5/ + response: + body: + string: '{"task":"/pulp/api/v3/tasks/018d88ee-ca88-7de9-906c-349e8676ad04/"}' + headers: + Access-Control-Expose-Headers: + - Correlation-ID + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Connection: + - close + Content-Length: + - '67' + Content-Type: + - application/json + Correlation-ID: + - 084196661ef04794a34226c0dbe6df72 + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Thu, 08 Feb 2024 13:36:07 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.22.1 + Vary: + - Accept + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Connection: + - close + Content-Type: + - application/json + Host: + - localhost:8080 + User-Agent: + - Python-urllib/3.10 + method: GET + uri: http://pulp.example.org/pulp/api/v3/tasks/018d88ee-ca88-7de9-906c-349e8676ad04/ + response: + body: + string: '{"pulp_href":"/pulp/api/v3/tasks/018d88ee-ca88-7de9-906c-349e8676ad04/","pulp_created":"2024-02-08T13:36:07.305648Z","state":"completed","name":"pulpcore.app.tasks.base.general_delete","logging_cid":"084196661ef04794a34226c0dbe6df72","created_by":"/pulp/api/v3/users/1/","started_at":"2024-02-08T13:36:07.322280Z","finished_at":"2024-02-08T13:36:07.331612Z","error":null,"worker":null,"parent_task":null,"child_tasks":[],"task_group":null,"progress_reports":[],"created_resources":[],"reserved_resources_record":["/api/v3/distributions/","shared:/pulp/api/v3/domains/018d88ed-bdc7-7d89-a16b-3f07f9e37e1a/"]}' + headers: + Access-Control-Expose-Headers: + - Correlation-ID + Allow: + - GET, PATCH, DELETE, HEAD, OPTIONS + Connection: + - close + Content-Length: + - '607' + Content-Type: + - application/json + Correlation-ID: + - 0f04bd3cd2cb4dc79a46420a9604fc7f + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Thu, 08 Feb 2024 13:36:07 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.22.1 + Vary: + - Accept + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +version: 1 diff --git a/tests/fixtures/rpm_distribution-8.yml b/tests/fixtures/rpm_distribution-8.yml new file mode 100644 index 00000000..d9f812ba --- /dev/null +++ b/tests/fixtures/rpm_distribution-8.yml @@ -0,0 +1,50 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Connection: + - close + Content-Type: + - application/json + Host: + - localhost:8080 + User-Agent: + - Python-urllib/3.10 + method: GET + uri: http://pulp.example.org/pulp/api/v3/distributions/rpm/rpm/?limit=1&name=test_rpm_distribution + response: + body: + string: '{"count":0,"next":null,"previous":null,"results":[]}' + headers: + Access-Control-Expose-Headers: + - Correlation-ID + Allow: + - GET, POST, HEAD, OPTIONS + Connection: + - close + Content-Length: + - '52' + Content-Type: + - application/json + Correlation-ID: + - ab8a055a793b42e2a1ac518da14b4042 + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Thu, 08 Feb 2024 13:36:07 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.22.1 + Vary: + - Accept + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +version: 1 diff --git a/tests/playbooks/rpm_distribution.yaml b/tests/playbooks/rpm_distribution.yaml index ba8e83aa..148f9710 100644 --- a/tests/playbooks/rpm_distribution.yaml +++ b/tests/playbooks/rpm_distribution.yaml @@ -62,6 +62,11 @@ module_defaults: <<: *pulp_module_defaults tasks: + - name: Retrieve repository + pulp.squeezer.rpm_repository: + name: test_rpm_repository + register: repository_result + - name: Retrieve publication of repository pulp.squeezer.rpm_publication: repository: test_rpm_repository @@ -111,6 +116,31 @@ - result.distribution.publication == publication_result.publication.pulp_href - result.distribution.content_guard is regex("/pulp/api/v3/contentguards/*") + - name: Distribute repository + pulp.squeezer.rpm_distribution: + name: test_rpm_distribution + base_path: test_rpm_base_path + repository: test_rpm_repository + state: present + register: result + - name: Verify distribute repository + assert: + that: + - result.changed == true + - result.distribution.repository == repository_result.repository.pulp_href + + - name: Distribute repository (2nd try) + pulp.squeezer.rpm_distribution: + name: test_rpm_distribution + base_path: test_rpm_base_path + repository: test_rpm_repository + state: present + register: result + - name: Verify distribute repository (2nd try) + assert: + that: + - result.changed == false + - name: Delete distribution pulp.squeezer.rpm_distribution: name: test_rpm_distribution