Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pulpcore_client

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pulpcore_client

  • 3.68.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

pulpcore_client

PulpcoreClient - the Ruby gem for the Pulp 3 API

Fetch, Upload, Organize, and Distribute Software Packages

This SDK is automatically generated by the OpenAPI Generator project:

  • API version: v3
  • Package version: 3.68.0
  • Build package: org.openapitools.codegen.languages.RubyClientCodegen For more information, please visit https://pulpproject.org

Installation

Build a gem

To build the Ruby code into a gem:

gem build pulpcore_client.gemspec

Then either install the gem locally:

gem install ./pulpcore_client-3.68.0.gem

(for development, run gem install --dev ./pulpcore_client-3.68.0.gem to install the development dependencies)

or publish the gem to a gem hosting service, e.g. RubyGems.

Finally add this to the Gemfile:

gem 'pulpcore_client', '~> 3.68.0'

Install from Git

If the Ruby gem is hosted at a git repository: https://github.com/GIT_USER_ID/GIT_REPO_ID, then add the following in the Gemfile:

gem 'pulpcore_client', :git => 'https://github.com/GIT_USER_ID/GIT_REPO_ID.git'

Include the Ruby code directly

Include the Ruby code directly using -I as follows:

ruby -Ilib script.rb

Getting Started

Please follow the installation procedure and then run the following code:

# Load the gem
require 'pulpcore_client'

# Setup authorization
PulpcoreClient.configure do |config|
  # Configure HTTP basic authorization: basicAuth
  config.username = 'YOUR_USERNAME'
  config.password = 'YOUR_PASSWORD'
end

api_instance = PulpcoreClient::AccessPoliciesApi.new
opts = {
  customized: true, # Boolean | Filter results where customized matches value
  limit: 56, # Integer | Number of results to return per page.
  offset: 56, # Integer | The initial index from which to return the results.
  ordering: ['ordering_example'], # Array<String> | Ordering  * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `creation_hooks` - Creation hooks * `-creation_hooks` - Creation hooks (descending) * `statements` - Statements * `-statements` - Statements (descending) * `viewset_name` - Viewset name * `-viewset_name` - Viewset name (descending) * `customized` - Customized * `-customized` - Customized (descending) * `queryset_scoping` - Queryset scoping * `-queryset_scoping` - Queryset scoping (descending) * `pk` - Pk * `-pk` - Pk (descending)
  prn__in: ['prn__in_example'], # Array<String> | Multiple values may be separated by commas.
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
  q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
  viewset_name: 'viewset_name_example', # String | Filter results where viewset_name matches value
  viewset_name__contains: 'viewset_name__contains_example', # String | Filter results where viewset_name contains value
  viewset_name__icontains: 'viewset_name__icontains_example', # String | Filter results where viewset_name contains value
  viewset_name__iexact: 'viewset_name__iexact_example', # String | Filter results where viewset_name matches value
  viewset_name__in: ['viewset_name__in_example'], # Array<String> | Filter results where viewset_name is in a comma-separated list of values
  viewset_name__iregex: 'viewset_name__iregex_example', # String | Filter results where viewset_name matches regex value
  viewset_name__istartswith: 'viewset_name__istartswith_example', # String | Filter results where viewset_name starts with value
  viewset_name__regex: 'viewset_name__regex_example', # String | Filter results where viewset_name matches regex value
  viewset_name__startswith: 'viewset_name__startswith_example', # String | Filter results where viewset_name starts with value
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
}

begin
  #List access policys
  result = api_instance.list(opts)
  p result
rescue PulpcoreClient::ApiError => e
  puts "Exception when calling AccessPoliciesApi->list: #{e}"
end

Documentation for API Endpoints

All URIs are relative to http://localhost:24817

ClassMethodHTTP requestDescription
PulpcoreClient::AccessPoliciesApilistGET /pulp/api/v3/access_policies/List access policys
PulpcoreClient::AccessPoliciesApipartial_updatePATCH {access_policy_href}Update an access policy
PulpcoreClient::AccessPoliciesApireadGET {access_policy_href}Inspect an access policy
PulpcoreClient::AccessPoliciesApiresetPOST {access_policy_href}reset/
PulpcoreClient::AccessPoliciesApiupdatePUT {access_policy_href}Update an access policy
PulpcoreClient::ArtifactsApicreatePOST /pulp/api/v3/artifacts/Create an artifact
PulpcoreClient::ArtifactsApideleteDELETE {artifact_href}Delete an artifact
PulpcoreClient::ArtifactsApilistGET /pulp/api/v3/artifacts/List artifacts
PulpcoreClient::ArtifactsApireadGET {artifact_href}Inspect an artifact
PulpcoreClient::ContentApilistGET /pulp/api/v3/content/List content
PulpcoreClient::ContentOpenpgpPublickeyApicreatePOST /pulp/api/v3/content/core/openpgp_publickey/Create an open pgp public key
PulpcoreClient::ContentOpenpgpPublickeyApilistGET /pulp/api/v3/content/core/openpgp_publickey/List open pgp public keys
PulpcoreClient::ContentOpenpgpPublickeyApireadGET {open_p_g_p_public_key_href}Inspect an open pgp public key
PulpcoreClient::ContentOpenpgpPublicsubkeyApilistGET /pulp/api/v3/content/core/openpgp_publicsubkey/List open pgp public subkeys
PulpcoreClient::ContentOpenpgpPublicsubkeyApireadGET {open_p_g_p_public_subkey_href}Inspect an open pgp public subkey
PulpcoreClient::ContentOpenpgpSignatureApilistGET /pulp/api/v3/content/core/openpgp_signature/List open pgp signatures
PulpcoreClient::ContentOpenpgpSignatureApireadGET {open_p_g_p_signature_href}Inspect an open pgp signature
PulpcoreClient::ContentOpenpgpUserattributeApilistGET /pulp/api/v3/content/core/openpgp_userattribute/List open pgp user attributes
PulpcoreClient::ContentOpenpgpUserattributeApireadGET {open_p_g_p_user_attribute_href}Inspect an open pgp user attribute
PulpcoreClient::ContentOpenpgpUseridApilistGET /pulp/api/v3/content/core/openpgp_userid/List open pgp user ids
PulpcoreClient::ContentOpenpgpUseridApireadGET {open_p_g_p_user_i_d_href}Inspect an open pgp user id
PulpcoreClient::ContentguardsApilistGET /pulp/api/v3/contentguards/List content guards
PulpcoreClient::ContentguardsCompositeApiadd_rolePOST {composite_content_guard_href}add_role/Add a role
PulpcoreClient::ContentguardsCompositeApicreatePOST /pulp/api/v3/contentguards/core/composite/Create a composite content guard
PulpcoreClient::ContentguardsCompositeApideleteDELETE {composite_content_guard_href}Delete a composite content guard
PulpcoreClient::ContentguardsCompositeApilistGET /pulp/api/v3/contentguards/core/composite/List composite content guards
PulpcoreClient::ContentguardsCompositeApilist_rolesGET {composite_content_guard_href}list_roles/List roles
PulpcoreClient::ContentguardsCompositeApimy_permissionsGET {composite_content_guard_href}my_permissions/List user permissions
PulpcoreClient::ContentguardsCompositeApipartial_updatePATCH {composite_content_guard_href}Update a composite content guard
PulpcoreClient::ContentguardsCompositeApireadGET {composite_content_guard_href}Inspect a composite content guard
PulpcoreClient::ContentguardsCompositeApiremove_rolePOST {composite_content_guard_href}remove_role/Remove a role
PulpcoreClient::ContentguardsCompositeApiupdatePUT {composite_content_guard_href}Update a composite content guard
PulpcoreClient::ContentguardsContentRedirectApiadd_rolePOST {content_redirect_content_guard_href}add_role/Add a role
PulpcoreClient::ContentguardsContentRedirectApicreatePOST /pulp/api/v3/contentguards/core/content_redirect/Create a content redirect content guard
PulpcoreClient::ContentguardsContentRedirectApideleteDELETE {content_redirect_content_guard_href}Delete a content redirect content guard
PulpcoreClient::ContentguardsContentRedirectApilistGET /pulp/api/v3/contentguards/core/content_redirect/List content redirect content guards
PulpcoreClient::ContentguardsContentRedirectApilist_rolesGET {content_redirect_content_guard_href}list_roles/List roles
PulpcoreClient::ContentguardsContentRedirectApimy_permissionsGET {content_redirect_content_guard_href}my_permissions/List user permissions
PulpcoreClient::ContentguardsContentRedirectApipartial_updatePATCH {content_redirect_content_guard_href}Update a content redirect content guard
PulpcoreClient::ContentguardsContentRedirectApireadGET {content_redirect_content_guard_href}Inspect a content redirect content guard
PulpcoreClient::ContentguardsContentRedirectApiremove_rolePOST {content_redirect_content_guard_href}remove_role/Remove a role
PulpcoreClient::ContentguardsContentRedirectApiupdatePUT {content_redirect_content_guard_href}Update a content redirect content guard
PulpcoreClient::ContentguardsHeaderApiadd_rolePOST {header_content_guard_href}add_role/Add a role
PulpcoreClient::ContentguardsHeaderApicreatePOST /pulp/api/v3/contentguards/core/header/Create a header content guard
PulpcoreClient::ContentguardsHeaderApideleteDELETE {header_content_guard_href}Delete a header content guard
PulpcoreClient::ContentguardsHeaderApilistGET /pulp/api/v3/contentguards/core/header/List header content guards
PulpcoreClient::ContentguardsHeaderApilist_rolesGET {header_content_guard_href}list_roles/List roles
PulpcoreClient::ContentguardsHeaderApimy_permissionsGET {header_content_guard_href}my_permissions/List user permissions
PulpcoreClient::ContentguardsHeaderApipartial_updatePATCH {header_content_guard_href}Update a header content guard
PulpcoreClient::ContentguardsHeaderApireadGET {header_content_guard_href}Inspect a header content guard
PulpcoreClient::ContentguardsHeaderApiremove_rolePOST {header_content_guard_href}remove_role/Remove a role
PulpcoreClient::ContentguardsHeaderApiupdatePUT {header_content_guard_href}Update a header content guard
PulpcoreClient::ContentguardsRbacApiadd_rolePOST {r_b_a_c_content_guard_href}add_role/Add a role
PulpcoreClient::ContentguardsRbacApicreatePOST /pulp/api/v3/contentguards/core/rbac/Create a rbac content guard
PulpcoreClient::ContentguardsRbacApideleteDELETE {r_b_a_c_content_guard_href}Delete a rbac content guard
PulpcoreClient::ContentguardsRbacApilistGET /pulp/api/v3/contentguards/core/rbac/List rbac content guards
PulpcoreClient::ContentguardsRbacApilist_rolesGET {r_b_a_c_content_guard_href}list_roles/List roles
PulpcoreClient::ContentguardsRbacApimy_permissionsGET {r_b_a_c_content_guard_href}my_permissions/List user permissions
PulpcoreClient::ContentguardsRbacApipartial_updatePATCH {r_b_a_c_content_guard_href}Update a rbac content guard
PulpcoreClient::ContentguardsRbacApireadGET {r_b_a_c_content_guard_href}Inspect a rbac content guard
PulpcoreClient::ContentguardsRbacApiremove_rolePOST {r_b_a_c_content_guard_href}remove_role/Remove a role
PulpcoreClient::ContentguardsRbacApiupdatePUT {r_b_a_c_content_guard_href}Update a rbac content guard
PulpcoreClient::DistributionsApilistGET /pulp/api/v3/distributions/List distributions
PulpcoreClient::DistributionsArtifactsApilistGET /pulp/api/v3/distributions/core/artifacts/List artifact distributions
PulpcoreClient::DistributionsArtifactsApireadGET {artifact_distribution_href}Inspect an artifact distribution
PulpcoreClient::DistributionsOpenpgpApicreatePOST /pulp/api/v3/distributions/core/openpgp/Create an open pgp distribution
PulpcoreClient::DistributionsOpenpgpApideleteDELETE {open_p_g_p_distribution_href}Delete an open pgp distribution
PulpcoreClient::DistributionsOpenpgpApilistGET /pulp/api/v3/distributions/core/openpgp/List open pgp distributions
PulpcoreClient::DistributionsOpenpgpApipartial_updatePATCH {open_p_g_p_distribution_href}Update an open pgp distribution
PulpcoreClient::DistributionsOpenpgpApireadGET {open_p_g_p_distribution_href}Inspect an open pgp distribution
PulpcoreClient::DistributionsOpenpgpApiset_labelPOST {open_p_g_p_distribution_href}set_label/Set a label
PulpcoreClient::DistributionsOpenpgpApiunset_labelPOST {open_p_g_p_distribution_href}unset_label/Unset a label
PulpcoreClient::DistributionsOpenpgpApiupdatePUT {open_p_g_p_distribution_href}Update an open pgp distribution
PulpcoreClient::DomainsApicreatePOST /pulp/api/v3/domains/Create a domain
PulpcoreClient::DomainsApideleteDELETE {domain_href}Delete a domain
PulpcoreClient::DomainsApilistGET /pulp/api/v3/domains/List domains
PulpcoreClient::DomainsApimigratePOST /pulp/api/v3/domains/migrate/Migrate storage backend
PulpcoreClient::DomainsApipartial_updatePATCH {domain_href}Update a domain
PulpcoreClient::DomainsApireadGET {domain_href}Inspect a domain
PulpcoreClient::DomainsApiupdatePUT {domain_href}Update a domain
PulpcoreClient::ExportersFilesystemApicreatePOST /pulp/api/v3/exporters/core/filesystem/Create a filesystem exporter
PulpcoreClient::ExportersFilesystemApideleteDELETE {filesystem_exporter_href}Delete a filesystem exporter
PulpcoreClient::ExportersFilesystemApilistGET /pulp/api/v3/exporters/core/filesystem/List filesystem exporters
PulpcoreClient::ExportersFilesystemApipartial_updatePATCH {filesystem_exporter_href}Update a filesystem exporter
PulpcoreClient::ExportersFilesystemApireadGET {filesystem_exporter_href}Inspect a filesystem exporter
PulpcoreClient::ExportersFilesystemApiupdatePUT {filesystem_exporter_href}Update a filesystem exporter
PulpcoreClient::ExportersFilesystemExportsApicreatePOST {filesystem_exporter_href}exports/Create a filesystem export
PulpcoreClient::ExportersFilesystemExportsApideleteDELETE {filesystem_filesystem_export_href}Delete a filesystem export
PulpcoreClient::ExportersFilesystemExportsApilistGET {filesystem_exporter_href}exports/List filesystem exports
PulpcoreClient::ExportersFilesystemExportsApireadGET {filesystem_filesystem_export_href}Inspect a filesystem export
PulpcoreClient::ExportersPulpApicreatePOST /pulp/api/v3/exporters/core/pulp/Create a pulp exporter
PulpcoreClient::ExportersPulpApideleteDELETE {pulp_exporter_href}Delete a pulp exporter
PulpcoreClient::ExportersPulpApilistGET /pulp/api/v3/exporters/core/pulp/List pulp exporters
PulpcoreClient::ExportersPulpApipartial_updatePATCH {pulp_exporter_href}Update a pulp exporter
PulpcoreClient::ExportersPulpApireadGET {pulp_exporter_href}Inspect a pulp exporter
PulpcoreClient::ExportersPulpApiupdatePUT {pulp_exporter_href}Update a pulp exporter
PulpcoreClient::ExportersPulpExportsApicreatePOST {pulp_exporter_href}exports/Create a pulp export
PulpcoreClient::ExportersPulpExportsApideleteDELETE {pulp_pulp_export_href}Delete a pulp export
PulpcoreClient::ExportersPulpExportsApilistGET {pulp_exporter_href}exports/List pulp exports
PulpcoreClient::ExportersPulpExportsApireadGET {pulp_pulp_export_href}Inspect a pulp export
PulpcoreClient::GroupsApiadd_rolePOST {group_href}add_role/Add a role
PulpcoreClient::GroupsApicreatePOST /pulp/api/v3/groups/Create a group
PulpcoreClient::GroupsApideleteDELETE {group_href}Delete a group
PulpcoreClient::GroupsApilistGET /pulp/api/v3/groups/List groups
PulpcoreClient::GroupsApilist_rolesGET {group_href}list_roles/List roles
PulpcoreClient::GroupsApimy_permissionsGET {group_href}my_permissions/List user permissions
PulpcoreClient::GroupsApipartial_updatePATCH {group_href}Update a group
PulpcoreClient::GroupsApireadGET {group_href}Inspect a group
PulpcoreClient::GroupsApiremove_rolePOST {group_href}remove_role/Remove a role
PulpcoreClient::GroupsApiupdatePUT {group_href}Update a group
PulpcoreClient::GroupsRolesApicreatePOST {group_href}roles/Create a group role
PulpcoreClient::GroupsRolesApideleteDELETE {groups_group_role_href}Delete a group role
PulpcoreClient::GroupsRolesApilistGET {group_href}roles/List group roles
PulpcoreClient::GroupsRolesApireadGET {groups_group_role_href}Inspect a group role
PulpcoreClient::GroupsUsersApicreatePOST {group_href}users/Create an user
PulpcoreClient::GroupsUsersApideleteDELETE {groups_user_href}Delete an user
PulpcoreClient::GroupsUsersApilistGET {group_href}users/List users
PulpcoreClient::ImportersPulpApicreatePOST /pulp/api/v3/importers/core/pulp/Create a pulp importer
PulpcoreClient::ImportersPulpApideleteDELETE {pulp_importer_href}Delete a pulp importer
PulpcoreClient::ImportersPulpApilistGET /pulp/api/v3/importers/core/pulp/List pulp importers
PulpcoreClient::ImportersPulpApipartial_updatePATCH {pulp_importer_href}Update a pulp importer
PulpcoreClient::ImportersPulpApireadGET {pulp_importer_href}Inspect a pulp importer
PulpcoreClient::ImportersPulpApiupdatePUT {pulp_importer_href}Update a pulp importer
PulpcoreClient::ImportersPulpImportCheckApipulp_import_check_postPOST /pulp/api/v3/importers/core/pulp/import-check/Validate the parameters to be used for a PulpImport call
PulpcoreClient::ImportersPulpImportsApicreatePOST {pulp_importer_href}imports/Create a pulp import
PulpcoreClient::ImportersPulpImportsApideleteDELETE {pulp_pulp_import_href}Delete a pulp import
PulpcoreClient::ImportersPulpImportsApilistGET {pulp_importer_href}imports/List pulp imports
PulpcoreClient::ImportersPulpImportsApireadGET {pulp_pulp_import_href}Inspect a pulp import
PulpcoreClient::LivezApilivez_readGET /pulp/api/v3/livez/Inspect liveness of Pulp's REST API.
PulpcoreClient::OrphansApideleteDELETE /pulp/api/v3/orphans/Delete orphans
PulpcoreClient::OrphansCleanupApicleanupPOST /pulp/api/v3/orphans/cleanup/
PulpcoreClient::PublicationsApilistGET /pulp/api/v3/publications/List publications
PulpcoreClient::RemotesApilistGET /pulp/api/v3/remotes/List remotes
PulpcoreClient::RepairApipostPOST /pulp/api/v3/repair/Repair Artifact Storage
PulpcoreClient::RepositoriesApilistGET /pulp/api/v3/repositories/List repositories
PulpcoreClient::RepositoriesOpenpgpKeyringApiadd_rolePOST {open_p_g_p_keyring_href}add_role/Add a role
PulpcoreClient::RepositoriesOpenpgpKeyringApicreatePOST /pulp/api/v3/repositories/core/openpgp_keyring/Create an open pgp keyring
PulpcoreClient::RepositoriesOpenpgpKeyringApideleteDELETE {open_p_g_p_keyring_href}Delete an open pgp keyring
PulpcoreClient::RepositoriesOpenpgpKeyringApilistGET /pulp/api/v3/repositories/core/openpgp_keyring/List open pgp keyrings
PulpcoreClient::RepositoriesOpenpgpKeyringApilist_rolesGET {open_p_g_p_keyring_href}list_roles/List roles
PulpcoreClient::RepositoriesOpenpgpKeyringApimodifyPOST {open_p_g_p_keyring_href}modify/Modify Repository Content
PulpcoreClient::RepositoriesOpenpgpKeyringApimy_permissionsGET {open_p_g_p_keyring_href}my_permissions/List user permissions
PulpcoreClient::RepositoriesOpenpgpKeyringApipartial_updatePATCH {open_p_g_p_keyring_href}Update an open pgp keyring
PulpcoreClient::RepositoriesOpenpgpKeyringApireadGET {open_p_g_p_keyring_href}Inspect an open pgp keyring
PulpcoreClient::RepositoriesOpenpgpKeyringApiremove_rolePOST {open_p_g_p_keyring_href}remove_role/Remove a role
PulpcoreClient::RepositoriesOpenpgpKeyringApiset_labelPOST {open_p_g_p_keyring_href}set_label/Set a label
PulpcoreClient::RepositoriesOpenpgpKeyringApiunset_labelPOST {open_p_g_p_keyring_href}unset_label/Unset a label
PulpcoreClient::RepositoriesOpenpgpKeyringApiupdatePUT {open_p_g_p_keyring_href}Update an open pgp keyring
PulpcoreClient::RepositoriesReclaimSpaceApireclaimPOST /pulp/api/v3/repositories/reclaim_space/
PulpcoreClient::RepositoryVersionsApilistGET /pulp/api/v3/repository_versions/List repository versions
PulpcoreClient::RolesApicreatePOST /pulp/api/v3/roles/Create a role
PulpcoreClient::RolesApideleteDELETE {role_href}Delete a role
PulpcoreClient::RolesApilistGET /pulp/api/v3/roles/List roles
PulpcoreClient::RolesApipartial_updatePATCH {role_href}Update a role
PulpcoreClient::RolesApireadGET {role_href}Inspect a role
PulpcoreClient::RolesApiupdatePUT {role_href}Update a role
PulpcoreClient::SigningServicesApilistGET /pulp/api/v3/signing-services/List signing services
PulpcoreClient::SigningServicesApireadGET {signing_service_href}Inspect a signing service
PulpcoreClient::StatusApistatus_readGET /pulp/api/v3/status/Inspect status of Pulp
PulpcoreClient::TaskGroupsApilistGET /pulp/api/v3/task-groups/List task groups
PulpcoreClient::TaskGroupsApireadGET {task_group_href}Inspect a task group
PulpcoreClient::TaskGroupsApitask_groups_cancelPATCH {task_group_href}Cancel a task group
PulpcoreClient::TaskSchedulesApiadd_rolePOST {task_schedule_href}add_role/Add a role
PulpcoreClient::TaskSchedulesApilistGET /pulp/api/v3/task-schedules/List task schedules
PulpcoreClient::TaskSchedulesApilist_rolesGET {task_schedule_href}list_roles/List roles
PulpcoreClient::TaskSchedulesApimy_permissionsGET {task_schedule_href}my_permissions/List user permissions
PulpcoreClient::TaskSchedulesApireadGET {task_schedule_href}Inspect a task schedule
PulpcoreClient::TaskSchedulesApiremove_rolePOST {task_schedule_href}remove_role/Remove a role
PulpcoreClient::TasksApiadd_rolePOST {task_href}add_role/Add a role
PulpcoreClient::TasksApideleteDELETE {task_href}Delete a task
PulpcoreClient::TasksApilistGET /pulp/api/v3/tasks/List tasks
PulpcoreClient::TasksApilist_rolesGET {task_href}list_roles/List roles
PulpcoreClient::TasksApimy_permissionsGET {task_href}my_permissions/List user permissions
PulpcoreClient::TasksApiprofile_artifactsGET {task_href}profile_artifacts/Fetch downloadable links for profile artifacts
PulpcoreClient::TasksApipurgePOST /pulp/api/v3/tasks/purge/Purge Completed Tasks
PulpcoreClient::TasksApireadGET {task_href}Inspect a task
PulpcoreClient::TasksApiremove_rolePOST {task_href}remove_role/Remove a role
PulpcoreClient::TasksApitasks_cancelPATCH {task_href}Cancel a task
PulpcoreClient::UploadsApiadd_rolePOST {upload_href}add_role/Add a role
PulpcoreClient::UploadsApicommitPOST {upload_href}commit/Finish an Upload
PulpcoreClient::UploadsApicreatePOST /pulp/api/v3/uploads/Create an upload
PulpcoreClient::UploadsApideleteDELETE {upload_href}Delete an upload
PulpcoreClient::UploadsApilistGET /pulp/api/v3/uploads/List uploads
PulpcoreClient::UploadsApilist_rolesGET {upload_href}list_roles/List roles
PulpcoreClient::UploadsApimy_permissionsGET {upload_href}my_permissions/List user permissions
PulpcoreClient::UploadsApireadGET {upload_href}Inspect an upload
PulpcoreClient::UploadsApiremove_rolePOST {upload_href}remove_role/Remove a role
PulpcoreClient::UploadsApiupdatePUT {upload_href}Upload a file chunk
PulpcoreClient::UpstreamPulpsApiadd_rolePOST {upstream_pulp_href}add_role/Add a role
PulpcoreClient::UpstreamPulpsApicreatePOST /pulp/api/v3/upstream-pulps/Create an upstream pulp
PulpcoreClient::UpstreamPulpsApideleteDELETE {upstream_pulp_href}Delete an upstream pulp
PulpcoreClient::UpstreamPulpsApilistGET /pulp/api/v3/upstream-pulps/List upstream pulps
PulpcoreClient::UpstreamPulpsApilist_rolesGET {upstream_pulp_href}list_roles/List roles
PulpcoreClient::UpstreamPulpsApimy_permissionsGET {upstream_pulp_href}my_permissions/List user permissions
PulpcoreClient::UpstreamPulpsApipartial_updatePATCH {upstream_pulp_href}Update an upstream pulp
PulpcoreClient::UpstreamPulpsApireadGET {upstream_pulp_href}Inspect an upstream pulp
PulpcoreClient::UpstreamPulpsApiremove_rolePOST {upstream_pulp_href}remove_role/Remove a role
PulpcoreClient::UpstreamPulpsApireplicatePOST {upstream_pulp_href}replicate/Replicate
PulpcoreClient::UpstreamPulpsApiupdatePUT {upstream_pulp_href}Update an upstream pulp
PulpcoreClient::UsersApicreatePOST /pulp/api/v3/users/Create an user
PulpcoreClient::UsersApideleteDELETE {auth_user_href}Delete an user
PulpcoreClient::UsersApilistGET /pulp/api/v3/users/List users
PulpcoreClient::UsersApipartial_updatePATCH {auth_user_href}Update an user
PulpcoreClient::UsersApireadGET {auth_user_href}Inspect an user
PulpcoreClient::UsersApiupdatePUT {auth_user_href}Update an user
PulpcoreClient::UsersRolesApicreatePOST {auth_user_href}roles/Create an user role
PulpcoreClient::UsersRolesApideleteDELETE {auth_users_user_role_href}Delete an user role
PulpcoreClient::UsersRolesApilistGET {auth_user_href}roles/List user roles
PulpcoreClient::UsersRolesApireadGET {auth_users_user_role_href}Inspect an user role
PulpcoreClient::WorkersApilistGET /pulp/api/v3/workers/List workers
PulpcoreClient::WorkersApireadGET {worker_href}Inspect a worker

Documentation for Models

Documentation for Authorization

basicAuth

  • Type: HTTP basic authentication

FAQs

Package last updated on 12 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc