The API to the Cloudsmith Service
This Python package is automatically generated by the Swagger Codegen project:
- API version: v1
- Package version: 2.0.28
- Build package: io.swagger.codegen.languages.PythonClientCodegen For more information, please visit https://help.cloudsmith.io
Python 2.7 and 3.4+
If the python package is hosted on Github, you can install directly from Github
pip install git+https://github.com/cloudsmith-io/cloudsmith-api.git(you may need to run pip with root permission: sudo pip install git+https://github.com/cloudsmith-io/cloudsmith-api.git)
Then import the package:
import cloudsmith_api Install via Setuptools.
python setup.py install --user(or sudo python setup.py install to install the package for all users)
Then import the package:
import cloudsmith_apiPlease follow the installation procedure and then run the following:
from __future__ import print_function
import time
import cloudsmith_api
from cloudsmith_api.rest import ApiException
from pprint import pprint
# Configure API key authorization: apikey
configuration = cloudsmith_api.Configuration()
configuration.api_key['X-Api-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-Api-Key'] = 'Bearer'
# Configure HTTP basic authorization: basic
configuration = cloudsmith_api.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = cloudsmith_api.AuditLogApi(cloudsmith_api.ApiClient(configuration))
owner = 'owner_example' # str |
page = 56 # int | A page number within the paginated result set. (optional)
page_size = 56 # int | Number of results to return per page. (optional)
query = 'query_example' # str | A search term for querying events, actors, or timestamps of log records. (optional)
try:
# Lists audit log entries for a specific namespace.
api_response = api_instance.audit_log_namespace_list(owner, page=page, page_size=page_size, query=query)
pprint(api_response)
except ApiException as e:
print("Exception when calling AuditLogApi->audit_log_namespace_list: %s\n" % e)All URIs are relative to https://api.cloudsmith.io
| Class | Method | HTTP request | Description |
|---|---|---|---|
| AuditLogApi | audit_log_namespace_list | GET /audit-log/{owner}/ | Lists audit log entries for a specific namespace. |
| AuditLogApi | audit_log_repo_list | GET /audit-log/{owner}/{repo}/ | Lists audit log entries for a specific repository. |
| BadgesApi | badges_version_list | GET /badges/version/{owner}/{repo}/{package_format}/{package_name}/{package_version}/{package_identifiers}/ | Get latest package version for a package or package group. |
| BroadcastsApi | broadcasts_create_broadcast_token | POST /broadcasts/{org}/broadcast-token/ | Create a broadcast token. |
| BulkActionApi | bulk_action | POST /bulk-action/{owner}/ | |
| DistrosApi | distros_list | GET /distros/ | Get a list of all supported distributions. |
| DistrosApi | distros_read | GET /distros/{slug}/ | View for viewing/listing distributions. |
| EntitlementsApi | entitlements_create | POST /entitlements/{owner}/{repo}/ | Create a specific entitlement in a repository. |
| EntitlementsApi | entitlements_delete | DELETE /entitlements/{owner}/{repo}/{identifier}/ | Delete a specific entitlement in a repository. |
| EntitlementsApi | entitlements_disable | POST /entitlements/{owner}/{repo}/{identifier}/disable/ | Disable an entitlement token in a repository. |
| EntitlementsApi | entitlements_enable | POST /entitlements/{owner}/{repo}/{identifier}/enable/ | Enable an entitlement token in a repository. |
| EntitlementsApi | entitlements_list | GET /entitlements/{owner}/{repo}/ | Get a list of all entitlements in a repository. |
| EntitlementsApi | entitlements_partial_update | PATCH /entitlements/{owner}/{repo}/{identifier}/ | Update a specific entitlement in a repository. |
| EntitlementsApi | entitlements_read | GET /entitlements/{owner}/{repo}/{identifier}/ | Get a specific entitlement in a repository. |
| EntitlementsApi | entitlements_refresh | POST /entitlements/{owner}/{repo}/{identifier}/refresh/ | Refresh an entitlement token in a repository. |
| EntitlementsApi | entitlements_reset | POST /entitlements/{owner}/{repo}/{identifier}/reset/ | Reset the statistics for an entitlement token in a repository. |
| EntitlementsApi | entitlements_sync | POST /entitlements/{owner}/{repo}/sync/ | Synchronise tokens from a source repository. |
| EntitlementsApi | entitlements_toggle_private_broadcasts | POST /entitlements/{owner}/{repo}/{identifier}/toggle-private-broadcasts/ | Set private broadcast access for an entitlement token in a repository. |
| FilesApi | files_abort | POST /files/{owner}/{repo}/{identifier}/abort/ | Abort a multipart file upload. |
| FilesApi | files_complete | POST /files/{owner}/{repo}/{identifier}/complete/ | Complete a multipart file upload. |
| FilesApi | files_create | POST /files/{owner}/{repo}/ | Request URL(s) to upload new package file upload(s) to. |
| FilesApi | files_info | GET /files/{owner}/{repo}/{identifier}/info/ | Get upload information to perform a multipart file upload. |
| FilesApi | files_validate | POST /files/{owner}/{repo}/validate/ | Validate parameters used for create. |
| FormatsApi | formats_list | GET /formats/ | Get a list of all supported package formats. |
| FormatsApi | formats_read | GET /formats/{slug}/ | Get a specific supported package format. |
| MetricsApi | metrics_entitlements_account_list | GET /metrics/entitlements/{owner}/ | View for listing entitlement token metrics, across an account. |
| MetricsApi | metrics_entitlements_repo_list | GET /metrics/entitlements/{owner}/{repo}/ | View for listing entitlement token metrics, for a repository. |
| MetricsApi | metrics_packages_list | GET /metrics/packages/{owner}/{repo}/ | View for listing package usage metrics, for a repository. |
| NamespacesApi | namespaces_list | GET /namespaces/ | Get a list of all namespaces the user belongs to. |
| NamespacesApi | namespaces_read | GET /namespaces/{slug}/ | Get a specific namespace that the user belongs to. |
| OrgsApi | orgs_custom_domains_list | GET /orgs/{org}/custom-domains/ | Get the details for all custom domains. |
| OrgsApi | orgs_delete | DELETE /orgs/{org}/ | Delete the specified organization. |
| OrgsApi | orgs_deny_policy_create | POST /orgs/{org}/deny-policy/ | Create a package deny policy. |
| OrgsApi | orgs_deny_policy_delete | DELETE /orgs/{org}/deny-policy/{slug_perm}/ | Delete a package deny policy. |
| OrgsApi | orgs_deny_policy_list | GET /orgs/{org}/deny-policy/ | Get a list of all package deny policies. |
| OrgsApi | orgs_deny_policy_partial_update | PATCH /orgs/{org}/deny-policy/{slug_perm}/ | Partially update a package deny policy. |
| OrgsApi | orgs_deny_policy_read | GET /orgs/{org}/deny-policy/{slug_perm}/ | Get a package deny policy. |
| OrgsApi | orgs_deny_policy_update | PUT /orgs/{org}/deny-policy/{slug_perm}/ | Update a package deny policy. |
| OrgsApi | orgs_invites_create | POST /orgs/{org}/invites/ | Create an organization invite for a specific user |
| OrgsApi | orgs_invites_delete | DELETE /orgs/{org}/invites/{slug_perm}/ | Delete a specific organization invite |
| OrgsApi | orgs_invites_extend | POST /orgs/{org}/invites/{slug_perm}/extend/ | Extend an organization invite. |
| OrgsApi | orgs_invites_list | GET /orgs/{org}/invites/ | Get a list of all invites for an organization. |
| OrgsApi | orgs_invites_partial_update | PATCH /orgs/{org}/invites/{slug_perm}/ | Update a specific organization invite. |
| OrgsApi | orgs_invites_resend | POST /orgs/{org}/invites/{slug_perm}/resend/ | Resend an organization invite. |
| OrgsApi | orgs_license_policy_create | POST /orgs/{org}/license-policy/ | Create a package license policy. |
| OrgsApi | orgs_license_policy_delete | DELETE /orgs/{org}/license-policy/{slug_perm}/ | Delete a package license policy. |
| OrgsApi | orgs_license_policy_evaluation_create | POST /orgs/{org}/license-policy/{policy_slug_perm}/evaluation/ | Create an evaluation request for this policy. |
| OrgsApi | orgs_license_policy_evaluation_list | GET /orgs/{org}/license-policy/{policy_slug_perm}/evaluation/ | List evaluation requests for this policy. |
| OrgsApi | orgs_license_policy_evaluation_read | GET /orgs/{org}/license-policy/{policy_slug_perm}/evaluation/{slug_perm}/ | Retrieve an evaluation request for this policy. |
| OrgsApi | orgs_license_policy_list | GET /orgs/{org}/license-policy/ | Get a list of all package license policies. |
| OrgsApi | orgs_license_policy_partial_update | PATCH /orgs/{org}/license-policy/{slug_perm}/ | Partially update a package license policy. |
| OrgsApi | orgs_license_policy_read | GET /orgs/{org}/license-policy/{slug_perm}/ | Get a package license policy. |
| OrgsApi | orgs_license_policy_update | PUT /orgs/{org}/license-policy/{slug_perm}/ | Update a package license policy. |
| OrgsApi | orgs_license_policy_violation_list | GET /orgs/{org}/license-policy-violation/ | List all current license policy violations for this Organization. |
| OrgsApi | orgs_list | GET /orgs/ | Get a list of all the organizations you are associated with. |
| OrgsApi | orgs_members_delete | DELETE /orgs/{org}/members/{member}/ | Removes a member from the organization. |
| OrgsApi | orgs_members_list | GET /orgs/{org}/members/ | Get the details for all organization members. |
| OrgsApi | orgs_members_partial_update | PATCH /orgs/{org}/members/{member}/ | Views for working with organization members. |
| OrgsApi | orgs_members_read | GET /orgs/{org}/members/{member}/ | Get the details for a specific organization member. |
| OrgsApi | orgs_members_refresh | POST /orgs/{org}/members/{member}/refresh/ | Refresh a member of the organization's API key. |
| OrgsApi | orgs_members_remove | GET /orgs/{org}/members/{member}/remove/ | Removes a member from the organization (deprecated, use DELETE instead). |
| OrgsApi | orgs_members_update_role | PATCH /orgs/{org}/members/{member}/update-role/ | Update a member's role in the organization. |
| OrgsApi | orgs_members_update_visibility | PATCH /orgs/{org}/members/{member}/update-visibility/ | Update a member's visibility in the organization. |
| OrgsApi | orgs_openid_connect_create | POST /orgs/{org}/openid-connect/ | Create the OpenID Connect provider settings for the org. |
| OrgsApi | orgs_openid_connect_delete | DELETE /orgs/{org}/openid-connect/{slug_perm}/ | Delete a specific OpenID Connect provider setting for the org. |
| OrgsApi | orgs_openid_connect_dynamic_mappings_list | GET /orgs/{org}/openid-connect/{provider_setting}/dynamic-mappings/ | Retrieve the list of OpenID Connect dynamic mappings for the provider setting. |
| OrgsApi | orgs_openid_connect_dynamic_mappings_read | GET /orgs/{org}/openid-connect/{provider_setting}/dynamic-mappings/{claim_value}/ | Retrieve a specific OpenID Connect dynamic mapping for the provider setting. |
| OrgsApi | orgs_openid_connect_list | GET /orgs/{org}/openid-connect/ | Retrieve the list of OpenID Connect provider settings for the org. |
| OrgsApi | orgs_openid_connect_partial_update | PATCH /orgs/{org}/openid-connect/{slug_perm}/ | Update a specific OpenID Connect provider setting for the org. |
| OrgsApi | orgs_openid_connect_read | GET /orgs/{org}/openid-connect/{slug_perm}/ | Retrieve a specific OpenID Connect provider setting for the org. |
| OrgsApi | orgs_openid_connect_update | PUT /orgs/{org}/openid-connect/{slug_perm}/ | Update a specific OpenID Connect provider setting for the org. |
| OrgsApi | orgs_read | GET /orgs/{org}/ | Get the details for the specific organization. |
| OrgsApi | orgs_saml_authentication_partial_update | PATCH /orgs/{org}/saml-authentication | Update the SAML Authentication settings for this Organization. |
| OrgsApi | orgs_saml_authentication_read | GET /orgs/{org}/saml-authentication | Retrieve the SAML Authentication settings for this Organization. |
| OrgsApi | orgs_saml_group_sync_create | POST /orgs/{org}/saml-group-sync/ | Create a new SAML Group Sync mapping within an organization. |
| OrgsApi | orgs_saml_group_sync_delete | DELETE /orgs/{org}/saml-group-sync/{slug_perm}/ | Delete a SAML Group Sync mapping from an organization. |
| OrgsApi | orgs_saml_group_sync_disable | POST /orgs/{org}/saml-group-sync/disable/ | Disable SAML Group Sync for this organization. |
| OrgsApi | orgs_saml_group_sync_enable | POST /orgs/{org}/saml-group-sync/enable/ | Enable SAML Group Sync for this organization. |
| OrgsApi | orgs_saml_group_sync_list | GET /orgs/{org}/saml-group-sync/ | Get the details of all SAML Group Sync mapping within an organization. |
| OrgsApi | orgs_saml_group_sync_status | GET /orgs/{org}/saml-group-sync/status/ | Retrieve the SAML Group Sync status for this organization. |
| OrgsApi | orgs_services_create | POST /orgs/{org}/services/ | Create a service within an organization. |
| OrgsApi | orgs_services_delete | DELETE /orgs/{org}/services/{service}/ | Delete a specific service |
| OrgsApi | orgs_services_list | GET /orgs/{org}/services/ | Get a list of all services within an organization. |
| OrgsApi | orgs_services_partial_update | PATCH /orgs/{org}/services/{service}/ | Update a service within an organization. |
| OrgsApi | orgs_services_read | GET /orgs/{org}/services/{service}/ | Retrieve details of a single service within an organization. |
| OrgsApi | orgs_services_refresh | POST /orgs/{org}/services/{service}/refresh/ | Refresh service API token. |
| OrgsApi | orgs_teams_create | POST /orgs/{org}/teams/ | Create a team for this organization. |
| OrgsApi | orgs_teams_delete | DELETE /orgs/{org}/teams/{team}/ | Delete a specific team in a organization. |
| OrgsApi | orgs_teams_list | GET /orgs/{org}/teams/ | Get the details of all teams within an organization. |
| OrgsApi | orgs_teams_members_create | POST /orgs/{org}/teams/{team}/members | Add users to a team. |
| OrgsApi | orgs_teams_members_list | GET /orgs/{org}/teams/{team}/members | List all members for the team. |
| OrgsApi | orgs_teams_members_update | PUT /orgs/{org}/teams/{team}/members | Replace all team members. |
| OrgsApi | orgs_teams_partial_update | PATCH /orgs/{org}/teams/{team}/ | Update a specific team in a organization. |
| OrgsApi | orgs_teams_read | GET /orgs/{org}/teams/{team}/ | Get the details of a specific team within an organization. |
| OrgsApi | orgs_vulnerability_policy_create | POST /orgs/{org}/vulnerability-policy/ | Create a package vulnerability policy. |
| OrgsApi | orgs_vulnerability_policy_delete | DELETE /orgs/{org}/vulnerability-policy/{slug_perm}/ | Delete a package vulnerability policy. |
| OrgsApi | orgs_vulnerability_policy_evaluation_create | POST /orgs/{org}/vulnerability-policy/{policy_slug_perm}/evaluation/ | Create an evaluation request for this policy. |
| OrgsApi | orgs_vulnerability_policy_evaluation_list | GET /orgs/{org}/vulnerability-policy/{policy_slug_perm}/evaluation/ | List evaluation requests for this policy. |
| OrgsApi | orgs_vulnerability_policy_evaluation_read | GET /orgs/{org}/vulnerability-policy/{policy_slug_perm}/evaluation/{slug_perm}/ | Retrieve an evaluation request for this policy. |
| OrgsApi | orgs_vulnerability_policy_list | GET /orgs/{org}/vulnerability-policy/ | Get a list of all package vulnerability policies. |
| OrgsApi | orgs_vulnerability_policy_partial_update | PATCH /orgs/{org}/vulnerability-policy/{slug_perm}/ | Partially update a package vulnerability policy. |
| OrgsApi | orgs_vulnerability_policy_read | GET /orgs/{org}/vulnerability-policy/{slug_perm}/ | Get a package vulnerability policy. |
| OrgsApi | orgs_vulnerability_policy_update | PUT /orgs/{org}/vulnerability-policy/{slug_perm}/ | Update a package vulnerability policy. |
| OrgsApi | orgs_vulnerability_policy_violation_list | GET /orgs/{org}/vulnerability-policy-violation/ | List all current vulnerability policy violations for this Organization. |
| PackagesApi | packages_copy | POST /packages/{owner}/{repo}/{identifier}/copy/ | Copy a package to another repository. |
| PackagesApi | packages_delete | DELETE /packages/{owner}/{repo}/{identifier}/ | Delete a specific package in a repository. |
| PackagesApi | packages_dependencies | GET /packages/{owner}/{repo}/{identifier}/dependencies/ | Get the list of dependencies for a package. Transitive dependencies are included where supported. |
| PackagesApi | packages_groups_list | GET /packages/{owner}/{repo}/groups/ | Return a list of Package Groups in a repository. |
| PackagesApi | packages_list | GET /packages/{owner}/{repo}/ | Get a list of all packages associated with repository. |
| PackagesApi | packages_move | POST /packages/{owner}/{repo}/{identifier}/move/ | Move a package to another repository. |
| PackagesApi | packages_quarantine | POST /packages/{owner}/{repo}/{identifier}/quarantine/ | Quarantine or release a package. |
| PackagesApi | packages_read | GET /packages/{owner}/{repo}/{identifier}/ | Get a specific package in a repository. |
| PackagesApi | packages_resync | POST /packages/{owner}/{repo}/{identifier}/resync/ | Schedule a package for resynchronisation. |
| PackagesApi | packages_scan | POST /packages/{owner}/{repo}/{identifier}/scan/ | Schedule a package for scanning. |
| PackagesApi | packages_status | GET /packages/{owner}/{repo}/{identifier}/status/ | Get the synchronization status for a package. |
| PackagesApi | packages_tag | POST /packages/{owner}/{repo}/{identifier}/tag/ | Add/Replace/Remove tags for a package. |
| PackagesApi | packages_update_license | PATCH /packages/{owner}/{repo}/{identifier}/update-license/ | Update the license for a package. |
| PackagesApi | packages_upload_alpine | POST /packages/{owner}/{repo}/upload/alpine/ | Create a new Alpine package |
| PackagesApi | packages_upload_cargo | POST /packages/{owner}/{repo}/upload/cargo/ | Create a new Cargo package |
| PackagesApi | packages_upload_cocoapods | POST /packages/{owner}/{repo}/upload/cocoapods/ | Create a new CocoaPods package |
| PackagesApi | packages_upload_composer | POST /packages/{owner}/{repo}/upload/composer/ | Create a new Composer package |
| PackagesApi | packages_upload_conan | POST /packages/{owner}/{repo}/upload/conan/ | Create a new Conan package |
| PackagesApi | packages_upload_conda | POST /packages/{owner}/{repo}/upload/conda/ | Create a new Conda package |
| PackagesApi | packages_upload_cran | POST /packages/{owner}/{repo}/upload/cran/ | Create a new CRAN package |
| PackagesApi | packages_upload_dart | POST /packages/{owner}/{repo}/upload/dart/ | Create a new Dart package |
| PackagesApi | packages_upload_deb | POST /packages/{owner}/{repo}/upload/deb/ | Create a new Debian package |
| PackagesApi | packages_upload_docker | POST /packages/{owner}/{repo}/upload/docker/ | Create a new Docker package |
| PackagesApi | packages_upload_generic | POST /packages/{owner}/{repo}/upload/generic/ | Create a new Generic package |
| PackagesApi | packages_upload_go | POST /packages/{owner}/{repo}/upload/go/ | Create a new Go package |
| PackagesApi | packages_upload_helm | POST /packages/{owner}/{repo}/upload/helm/ | Create a new Helm package |
| PackagesApi | packages_upload_hex | POST /packages/{owner}/{repo}/upload/hex/ | Create a new Hex package |
| PackagesApi | packages_upload_huggingface | POST /packages/{owner}/{repo}/upload/huggingface/ | Create a new HuggingFace package |
| PackagesApi | packages_upload_luarocks | POST /packages/{owner}/{repo}/upload/luarocks/ | Create a new LuaRocks package |
| PackagesApi | packages_upload_maven | POST /packages/{owner}/{repo}/upload/maven/ | Create a new Maven package |
| PackagesApi | packages_upload_mcp | POST /packages/{owner}/{repo}/upload/mcp/ | Create a new MCP package |
| PackagesApi | packages_upload_npm | POST /packages/{owner}/{repo}/upload/npm/ | Create a new npm package |
| PackagesApi | packages_upload_nuget | POST /packages/{owner}/{repo}/upload/nuget/ | Create a new NuGet package |
| PackagesApi | packages_upload_p2 | POST /packages/{owner}/{repo}/upload/p2/ | Create a new P2 package |
| PackagesApi | packages_upload_python | POST /packages/{owner}/{repo}/upload/python/ | Create a new Python package |
| PackagesApi | packages_upload_raw | POST /packages/{owner}/{repo}/upload/raw/ | Create a new Raw package |
| PackagesApi | packages_upload_rpm | POST /packages/{owner}/{repo}/upload/rpm/ | Create a new RedHat package |
| PackagesApi | packages_upload_ruby | POST /packages/{owner}/{repo}/upload/ruby/ | Create a new Ruby package |
| PackagesApi | packages_upload_swift | POST /packages/{owner}/{repo}/upload/swift/ | Create a new Swift package |
| PackagesApi | packages_upload_terraform | POST /packages/{owner}/{repo}/upload/terraform/ | Create a new Terraform package |
| PackagesApi | packages_upload_vagrant | POST /packages/{owner}/{repo}/upload/vagrant/ | Create a new Vagrant package |
| PackagesApi | packages_upload_vsx | POST /packages/{owner}/{repo}/upload/vsx/ | Create a new VSX package |
| PackagesApi | packages_validate_upload_alpine | POST /packages/{owner}/{repo}/validate-upload/alpine/ | Validate parameters for create Alpine package |
| PackagesApi | packages_validate_upload_cargo | POST /packages/{owner}/{repo}/validate-upload/cargo/ | Validate parameters for create Cargo package |
| PackagesApi | packages_validate_upload_cocoapods | POST /packages/{owner}/{repo}/validate-upload/cocoapods/ | Validate parameters for create CocoaPods package |
| PackagesApi | packages_validate_upload_composer | POST /packages/{owner}/{repo}/validate-upload/composer/ | Validate parameters for create Composer package |
| PackagesApi | packages_validate_upload_conan | POST /packages/{owner}/{repo}/validate-upload/conan/ | Validate parameters for create Conan package |
| PackagesApi | packages_validate_upload_conda | POST /packages/{owner}/{repo}/validate-upload/conda/ | Validate parameters for create Conda package |
| PackagesApi | packages_validate_upload_cran | POST /packages/{owner}/{repo}/validate-upload/cran/ | Validate parameters for create CRAN package |
| PackagesApi | packages_validate_upload_dart | POST /packages/{owner}/{repo}/validate-upload/dart/ | Validate parameters for create Dart package |
| PackagesApi | packages_validate_upload_deb | POST /packages/{owner}/{repo}/validate-upload/deb/ | Validate parameters for create Debian package |
| PackagesApi | packages_validate_upload_docker | POST /packages/{owner}/{repo}/validate-upload/docker/ | Validate parameters for create Docker package |
| PackagesApi | packages_validate_upload_generic | POST /packages/{owner}/{repo}/validate-upload/generic/ | Validate parameters for create Generic package |
| PackagesApi | packages_validate_upload_go | POST /packages/{owner}/{repo}/validate-upload/go/ | Validate parameters for create Go package |
| PackagesApi | packages_validate_upload_helm | POST /packages/{owner}/{repo}/validate-upload/helm/ | Validate parameters for create Helm package |
| PackagesApi | packages_validate_upload_hex | POST /packages/{owner}/{repo}/validate-upload/hex/ | Validate parameters for create Hex package |
| PackagesApi | packages_validate_upload_huggingface | POST /packages/{owner}/{repo}/validate-upload/huggingface/ | Validate parameters for create HuggingFace package |
| PackagesApi | packages_validate_upload_luarocks | POST /packages/{owner}/{repo}/validate-upload/luarocks/ | Validate parameters for create LuaRocks package |
| PackagesApi | packages_validate_upload_maven | POST /packages/{owner}/{repo}/validate-upload/maven/ | Validate parameters for create Maven package |
| PackagesApi | packages_validate_upload_mcp | POST /packages/{owner}/{repo}/validate-upload/mcp/ | Validate parameters for create MCP package |
| PackagesApi | packages_validate_upload_npm | POST /packages/{owner}/{repo}/validate-upload/npm/ | Validate parameters for create npm package |
| PackagesApi | packages_validate_upload_nuget | POST /packages/{owner}/{repo}/validate-upload/nuget/ | Validate parameters for create NuGet package |
| PackagesApi | packages_validate_upload_p2 | POST /packages/{owner}/{repo}/validate-upload/p2/ | Validate parameters for create P2 package |
| PackagesApi | packages_validate_upload_python | POST /packages/{owner}/{repo}/validate-upload/python/ | Validate parameters for create Python package |
| PackagesApi | packages_validate_upload_raw | POST /packages/{owner}/{repo}/validate-upload/raw/ | Validate parameters for create Raw package |
| PackagesApi | packages_validate_upload_rpm | POST /packages/{owner}/{repo}/validate-upload/rpm/ | Validate parameters for create RedHat package |
| PackagesApi | packages_validate_upload_ruby | POST /packages/{owner}/{repo}/validate-upload/ruby/ | Validate parameters for create Ruby package |
| PackagesApi | packages_validate_upload_swift | POST /packages/{owner}/{repo}/validate-upload/swift/ | Validate parameters for create Swift package |
| PackagesApi | packages_validate_upload_terraform | POST /packages/{owner}/{repo}/validate-upload/terraform/ | Validate parameters for create Terraform package |
| PackagesApi | packages_validate_upload_vagrant | POST /packages/{owner}/{repo}/validate-upload/vagrant/ | Validate parameters for create Vagrant package |
| PackagesApi | packages_validate_upload_vsx | POST /packages/{owner}/{repo}/validate-upload/vsx/ | Validate parameters for create VSX package |
| QuotaApi | quota_history_read | GET /quota/history/{owner}/ | Quota history for a given namespace. |
| QuotaApi | quota_oss_history_read | GET /quota/oss/history/{owner}/ | Open-source Quota history for a given namespace. |
| QuotaApi | quota_oss_read | GET /quota/oss/{owner}/ | Open-source Quota usage for a given namespace. |
| QuotaApi | quota_read | GET /quota/{owner}/ | Quota usage for a given namespace. |
| RatesApi | rates_limits_list | GET /rates/limits/ | Endpoint to check rate limits for current user. |
| RecycleBinApi | recycle_bin_action | POST /recycle-bin/{owner}/action/ | |
| RecycleBinApi | recycle_bin_list | GET /recycle-bin/{owner}/ | List soft-deleted packages in recycle bin |
| ReposApi | api_repos_geoip_status | GET /repos/{owner}/{identifier}/geoip/status/ | Retrieve the GeoIP status for this repository. |
| ReposApi | repo_retention_partial_update | PATCH /repos/{owner}/{repo}/retention/ | Update the retention rules for the repository. |
| ReposApi | repo_retention_read | GET /repos/{owner}/{repo}/retention/ | Retrieve the retention rules for the repository. |
| ReposApi | repos_connected_create | POST /repos/{owner}/{identifier}/connected/ | Create a connected repository for this repository. |
| ReposApi | repos_connected_delete | DELETE /repos/{owner}/{identifier}/connected/{slug_perm}/ | Delete a connected repository for this repository. |
| ReposApi | repos_connected_list | GET /repos/{owner}/{identifier}/connected/ | List connected repositories for this repository. |
| ReposApi | repos_connected_partial_update | PATCH /repos/{owner}/{identifier}/connected/{slug_perm}/ | Partially update a connected repository for this repository. |
| ReposApi | repos_connected_read | GET /repos/{owner}/{identifier}/connected/{slug_perm}/ | Retrieve a connected repository for this repository. |
| ReposApi | repos_connected_update | PUT /repos/{owner}/{identifier}/connected/{slug_perm}/ | Update a connected repository for this repository. |
| ReposApi | repos_create | POST /repos/{owner}/ | Create a new repository in a given namespace. |
| ReposApi | repos_delete | DELETE /repos/{owner}/{identifier}/ | |
| ReposApi | repos_ecdsa_create | POST /repos/{owner}/{identifier}/ecdsa/ | Set the active ECDSA key for the Repository. |
| ReposApi | repos_ecdsa_list | GET /repos/{owner}/{identifier}/ecdsa/ | Retrieve the active ECDSA key for the Repository. |
| ReposApi | repos_ecdsa_regenerate | POST /repos/{owner}/{identifier}/ecdsa/regenerate/ | Regenerate ECDSA Key for the Repository. |
| ReposApi | repos_ed25519_create | POST /repos/{owner}/{identifier}/ed25519/ | Set the active Ed25519 key for the Repository. |
| ReposApi | repos_ed25519_list | GET /repos/{owner}/{identifier}/ed25519/ | Retrieve the active Ed25519 key for the Repository. |
| ReposApi | repos_ed25519_regenerate | POST /repos/{owner}/{identifier}/ed25519/regenerate/ | Regenerate Ed25519 Key for the Repository. |
| ReposApi | repos_geoip_disable | POST /repos/{owner}/{identifier}/geoip/disable/ | Disable GeoIP for this repository. |
| ReposApi | repos_geoip_enable | POST /repos/{owner}/{identifier}/geoip/enable/ | Enable GeoIP for this repository. |
| ReposApi | repos_geoip_partial_update | PATCH /repos/{owner}/{identifier}/geoip | Partially update repository geoip rules. |
| ReposApi | repos_geoip_read | GET /repos/{owner}/{identifier}/geoip | List all repository geoip rules. |
| ReposApi | repos_geoip_test | POST /repos/{owner}/{identifier}/geoip/test/ | Test a list of IP addresses against the repository's current GeoIP rules. |
| ReposApi | repos_geoip_update | PUT /repos/{owner}/{identifier}/geoip | Replace repository geoip rules. |
| ReposApi | repos_gpg_create | POST /repos/{owner}/{identifier}/gpg/ | Set the active GPG key for the Repository. |
| ReposApi | repos_gpg_list | GET /repos/{owner}/{identifier}/gpg/ | Retrieve the active GPG key for the Repository. |
| ReposApi | repos_gpg_regenerate | POST /repos/{owner}/{identifier}/gpg/regenerate/ | Regenerate GPG Key for the Repository. |
| ReposApi | repos_namespace_list | GET /repos/{owner}/ | Get a list of all repositories within a namespace. |
| ReposApi | repos_partial_update | PATCH /repos/{owner}/{identifier}/ | Update details about a repository in a given namespace. |
| ReposApi | repos_privileges_list | GET /repos/{owner}/{identifier}/privileges | List all explicity created privileges for the repository. |
| ReposApi | repos_privileges_partial_update | PATCH /repos/{owner}/{identifier}/privileges | Modify privileges for the repository. |
| ReposApi | repos_privileges_update | PUT /repos/{owner}/{identifier}/privileges | Replace all existing repository privileges with those specified. |
| ReposApi | repos_read | GET /repos/{owner}/{identifier}/ | Get a specific repository. |
| ReposApi | repos_rsa_create | POST /repos/{owner}/{identifier}/rsa/ | Set the active RSA key for the Repository. |
| ReposApi | repos_rsa_list | GET /repos/{owner}/{identifier}/rsa/ | Retrieve the active RSA key for the Repository. |
| ReposApi | repos_rsa_regenerate | POST /repos/{owner}/{identifier}/rsa/regenerate/ | Regenerate RSA Key for the Repository. |
| ReposApi | repos_transfer_region | POST /repos/{owner}/{repo}/transfer-region/ | Transfer a repository to a different region. |
| ReposApi | repos_upstream_alpine_create | POST /repos/{owner}/{identifier}/upstream/alpine/ | Create an Alpine upstream config for this repository. |
| ReposApi | repos_upstream_alpine_delete | DELETE /repos/{owner}/{identifier}/upstream/alpine/{slug_perm}/ | Delete an Alpine upstream config for this repository. |
| ReposApi | repos_upstream_alpine_list | GET /repos/{owner}/{identifier}/upstream/alpine/ | List Alpine upstream configs for this repository. |
| ReposApi | repos_upstream_alpine_partial_update | PATCH /repos/{owner}/{identifier}/upstream/alpine/{slug_perm}/ | Partially update an Alpine upstream config for this repository. |
| ReposApi | repos_upstream_alpine_read | GET /repos/{owner}/{identifier}/upstream/alpine/{slug_perm}/ | Retrieve an Alpine upstream config for this repository. |
| ReposApi | repos_upstream_alpine_update | PUT /repos/{owner}/{identifier}/upstream/alpine/{slug_perm}/ | Update an Alpine upstream config for this repository. |
| ReposApi | repos_upstream_cargo_create | POST /repos/{owner}/{identifier}/upstream/cargo/ | Create a Cargo upstream config for this repository. |
| ReposApi | repos_upstream_cargo_delete | DELETE /repos/{owner}/{identifier}/upstream/cargo/{slug_perm}/ | Delete a Cargo upstream config for this repository. |
| ReposApi | repos_upstream_cargo_list | GET /repos/{owner}/{identifier}/upstream/cargo/ | List Cargo upstream configs for this repository. |
| ReposApi | repos_upstream_cargo_partial_update | PATCH /repos/{owner}/{identifier}/upstream/cargo/{slug_perm}/ | Partially update a Cargo upstream config for this repository. |
| ReposApi | repos_upstream_cargo_read | GET /repos/{owner}/{identifier}/upstream/cargo/{slug_perm}/ | Retrieve a Cargo upstream config for this repository. |
| ReposApi | repos_upstream_cargo_update | PUT /repos/{owner}/{identifier}/upstream/cargo/{slug_perm}/ | Update a Cargo upstream config for this repository. |
| ReposApi | repos_upstream_composer_create | POST /repos/{owner}/{identifier}/upstream/composer/ | Create a Composer upstream config for this repository. |
| ReposApi | repos_upstream_composer_delete | DELETE /repos/{owner}/{identifier}/upstream/composer/{slug_perm}/ | Delete a Composer upstream config for this repository. |
| ReposApi | repos_upstream_composer_list | GET /repos/{owner}/{identifier}/upstream/composer/ | List Composer upstream configs for this repository. |
| ReposApi | repos_upstream_composer_partial_update | PATCH /repos/{owner}/{identifier}/upstream/composer/{slug_perm}/ | Partially update a Composer upstream config for this repository. |
| ReposApi | repos_upstream_composer_read | GET /repos/{owner}/{identifier}/upstream/composer/{slug_perm}/ | Retrieve a Composer upstream config for this repository. |
| ReposApi | repos_upstream_composer_update | PUT /repos/{owner}/{identifier}/upstream/composer/{slug_perm}/ | Update a Composer upstream config for this repository. |
| ReposApi | repos_upstream_conda_create | POST /repos/{owner}/{identifier}/upstream/conda/ | Create a Conda upstream config for this repository. |
| ReposApi | repos_upstream_conda_delete | DELETE /repos/{owner}/{identifier}/upstream/conda/{slug_perm}/ | Delete a Conda upstream config for this repository. |
| ReposApi | repos_upstream_conda_list | GET /repos/{owner}/{identifier}/upstream/conda/ | List Conda upstream configs for this repository. |
| ReposApi | repos_upstream_conda_partial_update | PATCH /repos/{owner}/{identifier}/upstream/conda/{slug_perm}/ | Partially update a Conda upstream config for this repository. |
| ReposApi | repos_upstream_conda_read | GET /repos/{owner}/{identifier}/upstream/conda/{slug_perm}/ | Retrieve a Conda upstream config for this repository. |
| ReposApi | repos_upstream_conda_update | PUT /repos/{owner}/{identifier}/upstream/conda/{slug_perm}/ | Update a Conda upstream config for this repository. |
| ReposApi | repos_upstream_cran_create | POST /repos/{owner}/{identifier}/upstream/cran/ | Create a CRAN upstream config for this repository. |
| ReposApi | repos_upstream_cran_delete | DELETE /repos/{owner}/{identifier}/upstream/cran/{slug_perm}/ | Delete a CRAN upstream config for this repository. |
| ReposApi | repos_upstream_cran_list | GET /repos/{owner}/{identifier}/upstream/cran/ | List CRAN upstream configs for this repository. |
| ReposApi | repos_upstream_cran_partial_update | PATCH /repos/{owner}/{identifier}/upstream/cran/{slug_perm}/ | Partially update a CRAN upstream config for this repository. |
| ReposApi | repos_upstream_cran_read | GET /repos/{owner}/{identifier}/upstream/cran/{slug_perm}/ | Retrieve a CRAN upstream config for this repository. |
| ReposApi | repos_upstream_cran_update | PUT /repos/{owner}/{identifier}/upstream/cran/{slug_perm}/ | Update a CRAN upstream config for this repository. |
| ReposApi | repos_upstream_dart_create | POST /repos/{owner}/{identifier}/upstream/dart/ | Create a Dart upstream config for this repository. |
| ReposApi | repos_upstream_dart_delete | DELETE /repos/{owner}/{identifier}/upstream/dart/{slug_perm}/ | Delete a Dart upstream config for this repository. |
| ReposApi | repos_upstream_dart_list | GET /repos/{owner}/{identifier}/upstream/dart/ | List Dart upstream configs for this repository. |
| ReposApi | repos_upstream_dart_partial_update | PATCH /repos/{owner}/{identifier}/upstream/dart/{slug_perm}/ | Partially update a Dart upstream config for this repository. |
| ReposApi | repos_upstream_dart_read | GET /repos/{owner}/{identifier}/upstream/dart/{slug_perm}/ | Retrieve a Dart upstream config for this repository. |
| ReposApi | repos_upstream_dart_update | PUT /repos/{owner}/{identifier}/upstream/dart/{slug_perm}/ | Update a Dart upstream config for this repository. |
| ReposApi | repos_upstream_deb_create | POST /repos/{owner}/{identifier}/upstream/deb/ | Create a Debian upstream config for this repository. |
| ReposApi | repos_upstream_deb_delete | DELETE /repos/{owner}/{identifier}/upstream/deb/{slug_perm}/ | Delete a Debian upstream config for this repository. |
| ReposApi | repos_upstream_deb_list | GET /repos/{owner}/{identifier}/upstream/deb/ | List Debian upstream configs for this repository. |
| ReposApi | repos_upstream_deb_partial_update | PATCH /repos/{owner}/{identifier}/upstream/deb/{slug_perm}/ | Partially update a Debian upstream config for this repository. |
| ReposApi | repos_upstream_deb_read | GET /repos/{owner}/{identifier}/upstream/deb/{slug_perm}/ | Retrieve a Debian upstream config for this repository. |
| ReposApi | repos_upstream_deb_update | PUT /repos/{owner}/{identifier}/upstream/deb/{slug_perm}/ | Update a Debian upstream config for this repository. |
| ReposApi | repos_upstream_docker_create | POST /repos/{owner}/{identifier}/upstream/docker/ | Create a Docker upstream config for this repository. |
| ReposApi | repos_upstream_docker_delete | DELETE /repos/{owner}/{identifier}/upstream/docker/{slug_perm}/ | Delete a Docker upstream config for this repository. |
| ReposApi | repos_upstream_docker_list | GET /repos/{owner}/{identifier}/upstream/docker/ | List Docker upstream configs for this repository. |
| ReposApi | repos_upstream_docker_partial_update | PATCH /repos/{owner}/{identifier}/upstream/docker/{slug_perm}/ | Partially update a Docker upstream config for this repository. |
| ReposApi | repos_upstream_docker_read | GET /repos/{owner}/{identifier}/upstream/docker/{slug_perm}/ | Retrieve a Docker upstream config for this repository. |
| ReposApi | repos_upstream_docker_update | PUT /repos/{owner}/{identifier}/upstream/docker/{slug_perm}/ | Update a Docker upstream config for this repository. |
| ReposApi | repos_upstream_generic_create | POST /repos/{owner}/{identifier}/upstream/generic/ | Create a Generic upstream config for this repository. |
| ReposApi | repos_upstream_generic_delete | DELETE /repos/{owner}/{identifier}/upstream/generic/{slug_perm}/ | Delete a Generic upstream config for this repository. |
| ReposApi | repos_upstream_generic_list | GET /repos/{owner}/{identifier}/upstream/generic/ | List Generic upstream configs for this repository. |
| ReposApi | repos_upstream_generic_partial_update | PATCH /repos/{owner}/{identifier}/upstream/generic/{slug_perm}/ | Partially update a Generic upstream config for this repository. |
| ReposApi | repos_upstream_generic_read | GET /repos/{owner}/{identifier}/upstream/generic/{slug_perm}/ | Retrieve a Generic upstream config for this repository. |
| ReposApi | repos_upstream_generic_update | PUT /repos/{owner}/{identifier}/upstream/generic/{slug_perm}/ | Update a Generic upstream config for this repository. |
| ReposApi | repos_upstream_go_create | POST /repos/{owner}/{identifier}/upstream/go/ | Create a Go upstream config for this repository. |
| ReposApi | repos_upstream_go_delete | DELETE /repos/{owner}/{identifier}/upstream/go/{slug_perm}/ | Delete a Go upstream config for this repository. |
| ReposApi | repos_upstream_go_list | GET /repos/{owner}/{identifier}/upstream/go/ | List Go upstream configs for this repository. |
| ReposApi | repos_upstream_go_partial_update | PATCH /repos/{owner}/{identifier}/upstream/go/{slug_perm}/ | Partially update a Go upstream config for this repository. |
| ReposApi | repos_upstream_go_read | GET /repos/{owner}/{identifier}/upstream/go/{slug_perm}/ | Retrieve a Go upstream config for this repository. |
| ReposApi | repos_upstream_go_update | PUT /repos/{owner}/{identifier}/upstream/go/{slug_perm}/ | Update a Go upstream config for this repository. |
| ReposApi | repos_upstream_helm_create | POST /repos/{owner}/{identifier}/upstream/helm/ | Create a Helm upstream config for this repository. |
| ReposApi | repos_upstream_helm_delete | DELETE /repos/{owner}/{identifier}/upstream/helm/{slug_perm}/ | Delete a Helm upstream config for this repository. |
| ReposApi | repos_upstream_helm_list | GET /repos/{owner}/{identifier}/upstream/helm/ | List Helm upstream configs for this repository. |
| ReposApi | repos_upstream_helm_partial_update | PATCH /repos/{owner}/{identifier}/upstream/helm/{slug_perm}/ | Partially update a Helm upstream config for this repository. |
| ReposApi | repos_upstream_helm_read | GET /repos/{owner}/{identifier}/upstream/helm/{slug_perm}/ | Retrieve a Helm upstream config for this repository. |
| ReposApi | repos_upstream_helm_update | PUT /repos/{owner}/{identifier}/upstream/helm/{slug_perm}/ | Update a Helm upstream config for this repository. |
| ReposApi | repos_upstream_hex_create | POST /repos/{owner}/{identifier}/upstream/hex/ | Create a Hex upstream config for this repository. |
| ReposApi | repos_upstream_hex_delete | DELETE /repos/{owner}/{identifier}/upstream/hex/{slug_perm}/ | Delete a Hex upstream config for this repository. |
| ReposApi | repos_upstream_hex_list | GET /repos/{owner}/{identifier}/upstream/hex/ | List Hex upstream configs for this repository. |
| ReposApi | repos_upstream_hex_partial_update | PATCH /repos/{owner}/{identifier}/upstream/hex/{slug_perm}/ | Partially update a Hex upstream config for this repository. |
| ReposApi | repos_upstream_hex_read | GET /repos/{owner}/{identifier}/upstream/hex/{slug_perm}/ | Retrieve a Hex upstream config for this repository. |
| ReposApi | repos_upstream_hex_update | PUT /repos/{owner}/{identifier}/upstream/hex/{slug_perm}/ | Update a Hex upstream config for this repository. |
| ReposApi | repos_upstream_huggingface_create | POST /repos/{owner}/{identifier}/upstream/huggingface/ | Create a HuggingFace upstream config for this repository. |
| ReposApi | repos_upstream_huggingface_delete | DELETE /repos/{owner}/{identifier}/upstream/huggingface/{slug_perm}/ | Delete a HuggingFace upstream config for this repository. |
| ReposApi | repos_upstream_huggingface_list | GET /repos/{owner}/{identifier}/upstream/huggingface/ | List HuggingFace upstream configs for this repository. |
| ReposApi | repos_upstream_huggingface_partial_update | PATCH /repos/{owner}/{identifier}/upstream/huggingface/{slug_perm}/ | Partially update a HuggingFace upstream config for this repository. |
| ReposApi | repos_upstream_huggingface_read | GET /repos/{owner}/{identifier}/upstream/huggingface/{slug_perm}/ | Retrieve a HuggingFace upstream config for this repository. |
| ReposApi | repos_upstream_huggingface_update | PUT /repos/{owner}/{identifier}/upstream/huggingface/{slug_perm}/ | Update a HuggingFace upstream config for this repository. |
| ReposApi | repos_upstream_maven_create | POST /repos/{owner}/{identifier}/upstream/maven/ | Create a Maven upstream config for this repository. |
| ReposApi | repos_upstream_maven_delete | DELETE /repos/{owner}/{identifier}/upstream/maven/{slug_perm}/ | Delete a Maven upstream config for this repository. |
| ReposApi | repos_upstream_maven_list | GET /repos/{owner}/{identifier}/upstream/maven/ | List Maven upstream configs for this repository. |
| ReposApi | repos_upstream_maven_partial_update | PATCH /repos/{owner}/{identifier}/upstream/maven/{slug_perm}/ | Partially update a Maven upstream config for this repository. |
| ReposApi | repos_upstream_maven_read | GET /repos/{owner}/{identifier}/upstream/maven/{slug_perm}/ | Retrieve a Maven upstream config for this repository. |
| ReposApi | repos_upstream_maven_update | PUT /repos/{owner}/{identifier}/upstream/maven/{slug_perm}/ | Update a Maven upstream config for this repository. |
| ReposApi | repos_upstream_npm_create | POST /repos/{owner}/{identifier}/upstream/npm/ | Create a npm upstream config for this repository. |
| ReposApi | repos_upstream_npm_delete | DELETE /repos/{owner}/{identifier}/upstream/npm/{slug_perm}/ | Delete a npm upstream config for this repository. |
| ReposApi | repos_upstream_npm_list | GET /repos/{owner}/{identifier}/upstream/npm/ | List npm upstream configs for this repository. |
| ReposApi | repos_upstream_npm_partial_update | PATCH /repos/{owner}/{identifier}/upstream/npm/{slug_perm}/ | Partially update a npm upstream config for this repository. |
| ReposApi | repos_upstream_npm_read | GET /repos/{owner}/{identifier}/upstream/npm/{slug_perm}/ | Retrieve a npm upstream config for this repository. |
| ReposApi | repos_upstream_npm_update | PUT /repos/{owner}/{identifier}/upstream/npm/{slug_perm}/ | Update a npm upstream config for this repository. |
| ReposApi | repos_upstream_nuget_create | POST /repos/{owner}/{identifier}/upstream/nuget/ | Create a NuGet upstream config for this repository. |
| ReposApi | repos_upstream_nuget_delete | DELETE /repos/{owner}/{identifier}/upstream/nuget/{slug_perm}/ | Delete a NuGet upstream config for this repository. |
| ReposApi | repos_upstream_nuget_list | GET /repos/{owner}/{identifier}/upstream/nuget/ | List NuGet upstream configs for this repository. |
| ReposApi | repos_upstream_nuget_partial_update | PATCH /repos/{owner}/{identifier}/upstream/nuget/{slug_perm}/ | Partially update a NuGet upstream config for this repository. |
| ReposApi | repos_upstream_nuget_read | GET /repos/{owner}/{identifier}/upstream/nuget/{slug_perm}/ | Retrieve a NuGet upstream config for this repository. |
| ReposApi | repos_upstream_nuget_update | PUT /repos/{owner}/{identifier}/upstream/nuget/{slug_perm}/ | Update a NuGet upstream config for this repository. |
| ReposApi | repos_upstream_python_create | POST /repos/{owner}/{identifier}/upstream/python/ | Create a Python upstream config for this repository. |
| ReposApi | repos_upstream_python_delete | DELETE /repos/{owner}/{identifier}/upstream/python/{slug_perm}/ | Delete a Python upstream config for this repository. |
| ReposApi | repos_upstream_python_list | GET /repos/{owner}/{identifier}/upstream/python/ | List Python upstream configs for this repository. |
| ReposApi | repos_upstream_python_partial_update | PATCH /repos/{owner}/{identifier}/upstream/python/{slug_perm}/ | Partially update a Python upstream config for this repository. |
| ReposApi | repos_upstream_python_read | GET /repos/{owner}/{identifier}/upstream/python/{slug_perm}/ | Retrieve a Python upstream config for this repository. |
| ReposApi | repos_upstream_python_update | PUT /repos/{owner}/{identifier}/upstream/python/{slug_perm}/ | Update a Python upstream config for this repository. |
| ReposApi | repos_upstream_rpm_create | POST /repos/{owner}/{identifier}/upstream/rpm/ | Create a RedHat upstream config for this repository. |
| ReposApi | repos_upstream_rpm_delete | DELETE /repos/{owner}/{identifier}/upstream/rpm/{slug_perm}/ | Delete a RedHat upstream config for this repository. |
| ReposApi | repos_upstream_rpm_list | GET /repos/{owner}/{identifier}/upstream/rpm/ | List RedHat upstream configs for this repository. |
| ReposApi | repos_upstream_rpm_partial_update | PATCH /repos/{owner}/{identifier}/upstream/rpm/{slug_perm}/ | Partially update a RedHat upstream config for this repository. |
| ReposApi | repos_upstream_rpm_read | GET /repos/{owner}/{identifier}/upstream/rpm/{slug_perm}/ | Retrieve a RedHat upstream config for this repository. |
| ReposApi | repos_upstream_rpm_update | PUT /repos/{owner}/{identifier}/upstream/rpm/{slug_perm}/ | Update a RedHat upstream config for this repository. |
| ReposApi | repos_upstream_ruby_create | POST /repos/{owner}/{identifier}/upstream/ruby/ | Create a Ruby upstream config for this repository. |
| ReposApi | repos_upstream_ruby_delete | DELETE /repos/{owner}/{identifier}/upstream/ruby/{slug_perm}/ | Delete a Ruby upstream config for this repository. |
| ReposApi | repos_upstream_ruby_list | GET /repos/{owner}/{identifier}/upstream/ruby/ | List Ruby upstream configs for this repository. |
| ReposApi | repos_upstream_ruby_partial_update | PATCH /repos/{owner}/{identifier}/upstream/ruby/{slug_perm}/ | Partially update a Ruby upstream config for this repository. |
| ReposApi | repos_upstream_ruby_read | GET /repos/{owner}/{identifier}/upstream/ruby/{slug_perm}/ | Retrieve a Ruby upstream config for this repository. |
| ReposApi | repos_upstream_ruby_update | PUT /repos/{owner}/{identifier}/upstream/ruby/{slug_perm}/ | Update a Ruby upstream config for this repository. |
| ReposApi | repos_upstream_swift_create | POST /repos/{owner}/{identifier}/upstream/swift/ | Create a Swift upstream config for this repository. |
| ReposApi | repos_upstream_swift_delete | DELETE /repos/{owner}/{identifier}/upstream/swift/{slug_perm}/ | Delete a Swift upstream config for this repository. |
| ReposApi | repos_upstream_swift_list | GET /repos/{owner}/{identifier}/upstream/swift/ | List Swift upstream configs for this repository. |
| ReposApi | repos_upstream_swift_partial_update | PATCH /repos/{owner}/{identifier}/upstream/swift/{slug_perm}/ | Partially update a Swift upstream config for this repository. |
| ReposApi | repos_upstream_swift_read | GET /repos/{owner}/{identifier}/upstream/swift/{slug_perm}/ | Retrieve a Swift upstream config for this repository. |
| ReposApi | repos_upstream_swift_update | PUT /repos/{owner}/{identifier}/upstream/swift/{slug_perm}/ | Update a Swift upstream config for this repository. |
| ReposApi | repos_user_list | GET /repos/ | Get a list of all repositories associated with current user. |
| ReposApi | repos_x509_ecdsa_list | GET /repos/{owner}/{identifier}/x509-ecdsa/ | Retrieve the active X.509 ECDSA certificate for the Repository. |
| ReposApi | repos_x509_rsa_list | GET /repos/{owner}/{identifier}/x509-rsa/ | Retrieve the active X.509 RSA certificate for the Repository. |
| StatusApi | status_check_basic | GET /status/check/basic/ | Endpoint to check basic API connectivity. |
| StorageRegionsApi | storage_regions_list | GET /storage-regions/ | Get a list of all available storage regions. |
| StorageRegionsApi | storage_regions_read | GET /storage-regions/{slug}/ | Get a specific storage region. |
| UserApi | user_self | GET /user/self/ | Provide a brief for the current user (if any). |
| UserApi | user_token_create | POST /user/token/ | Create or retrieve API token for a user. |
| UserApi | user_tokens_create | POST /user/tokens/ | Create an API key for the user that is currently authenticated. |
| UserApi | user_tokens_list | GET /user/tokens/ | Retrieve the API key assigned to the user that is currently authenticated. |
| UserApi | user_tokens_refresh | PUT /user/tokens/{slug_perm}/refresh/ | Refresh the specified API key for the user that is currently authenticated. |
| UsersApi | users_profile_read | GET /users/profile/{slug}/ | Provide a brief for the specified user (if any). |
| VulnerabilitiesApi | vulnerabilities_namespace_list | GET /vulnerabilities/{owner}/ | Lists scan results for a specific namespace. |
| VulnerabilitiesApi | vulnerabilities_package_list | GET /vulnerabilities/{owner}/{repo}/{package}/ | Lists scan results for a specific package. |
| VulnerabilitiesApi | vulnerabilities_read | GET /vulnerabilities/{owner}/{repo}/{package}/{identifier}/ | Get a scan result. |
| VulnerabilitiesApi | vulnerabilities_repo_list | GET /vulnerabilities/{owner}/{repo}/ | Lists scan results for a specific repository. |
| WebhooksApi | webhooks_create | POST /webhooks/{owner}/{repo}/ | Create a specific webhook in a repository. |
| WebhooksApi | webhooks_delete | DELETE /webhooks/{owner}/{repo}/{identifier}/ | Delete a specific webhook in a repository. |
| WebhooksApi | webhooks_list | GET /webhooks/{owner}/{repo}/ | Get a list of all webhooks in a repository. |
| WebhooksApi | webhooks_partial_update | PATCH /webhooks/{owner}/{repo}/{identifier}/ | Update a specific webhook in a repository. |
| WebhooksApi | webhooks_read | GET /webhooks/{owner}/{repo}/{identifier}/ | Views for working with repository webhooks. |
- AllocatedLimit
- AllocatedLimitRaw
- AlpinePackageUpload
- AlpinePackageUploadRequest
- AlpineUpstream
- AlpineUpstreamRequest
- AlpineUpstreamRequestPatch
- Architecture
- BroadcastToken
- BroadcastTokenInput
- CargoPackageUpload
- CargoPackageUploadRequest
- CargoUpstream
- CargoUpstreamRequest
- CargoUpstreamRequestPatch
- CocoapodsPackageUpload
- CocoapodsPackageUploadRequest
- CommonBandwidthMetrics
- CommonBandwidthMetricsValue
- CommonDownloadsMetrics
- CommonDownloadsMetricsValue
- CommonMetrics
- ComposerPackageUpload
- ComposerPackageUploadRequest
- ComposerUpstream
- ComposerUpstreamRequest
- ComposerUpstreamRequestPatch
- ConanPackageUpload
- ConanPackageUploadRequest
- CondaPackageUpload
- CondaPackageUploadRequest
- CondaUpstream
- CondaUpstreamRequest
- CondaUpstreamRequestPatch
- ConnectedRepository
- ConnectedRepositoryRequest
- ConnectedRepositoryRequestPatch
- CranPackageUpload
- CranPackageUploadRequest
- CranUpstream
- CranUpstreamRequest
- CranUpstreamRequestPatch
- DartPackageUpload
- DartPackageUploadRequest
- DartUpstream
- DartUpstreamRequest
- DartUpstreamRequestPatch
- DebPackageUpload
- DebPackageUploadRequest
- DebUpstream
- DebUpstreamRequest
- DebUpstreamRequestPatch
- Distribution
- DistributionFull
- DistributionVersion
- DockerPackageUpload
- DockerPackageUploadRequest
- DockerUpstream
- DockerUpstreamRequest
- DockerUpstreamRequestPatch
- DynamicMapping
- EntitlementUsageMetrics
- ErrorDetail
- Eula
- Format
- FormatSupport
- FormatSupportUpstream
- GenericPackageUpload
- GenericPackageUploadRequest
- GenericUpstream
- GenericUpstreamRequest
- GenericUpstreamRequestPatch
- GeoIpLocation
- GoPackageUpload
- GoPackageUploadRequest
- GoUpstream
- GoUpstreamRequest
- GoUpstreamRequestPatch
- HelmPackageUpload
- HelmPackageUploadRequest
- HelmUpstream
- HelmUpstreamRequest
- HelmUpstreamRequestPatch
- HexPackageUpload
- HexPackageUploadRequest
- HexUpstream
- HexUpstreamRequest
- HexUpstreamRequestPatch
- History
- HistoryFieldset
- HistoryFieldsetRaw
- HuggingfacePackageUpload
- HuggingfacePackageUploadRequest
- HuggingfaceUpstream
- HuggingfaceUpstreamRequest
- HuggingfaceUpstreamRequestPatch
- InlineResponse200
- InlineResponse2001
- InlineResponse2002
- LuarocksPackageUpload
- LuarocksPackageUploadRequest
- MavenPackageUpload
- MavenPackageUploadRequest
- MavenUpstream
- MavenUpstreamRequest
- MavenUpstreamRequestPatch
- McpPackageUpload
- McpPackageUploadRequest
- MemberTeams
- Namespace
- NamespaceAuditLog
- NestedLicensePolicy
- NestedVulnerabilityPolicy
- NestedVulnerabilityScanResults
- NpmPackageUpload
- NpmPackageUploadRequest
- NpmUpstream
- NpmUpstreamRequest
- NpmUpstreamRequestPatch
- NugetPackageUpload
- NugetPackageUploadRequest
- NugetUpstream
- NugetUpstreamRequest
- NugetUpstreamRequestPatch
- Organization
- OrganizationCustomDomainNestedRepo
- OrganizationCustomDomains
- OrganizationGroupSync
- OrganizationGroupSyncRequest
- OrganizationGroupSyncStatus
- OrganizationInvite
- OrganizationInviteExtend
- OrganizationInviteRequest
- OrganizationInviteUpdate
- OrganizationInviteUpdateRequestPatch
- OrganizationMembership
- OrganizationMembershipRequestPatch
- OrganizationMembershipRoleUpdate
- OrganizationMembershipRoleUpdateRequestPatch
- OrganizationMembershipVisibilityUpdate
- OrganizationMembershipVisibilityUpdateRequestPatch
- OrganizationPackageLicensePolicy
- OrganizationPackageLicensePolicyRequest
- OrganizationPackageLicensePolicyRequestPatch
- OrganizationPackageVulnerabilityPolicy
- OrganizationPackageVulnerabilityPolicyRequest
- OrganizationPackageVulnerabilityPolicyRequestPatch
- OrganizationSAMLAuth
- OrganizationSAMLAuthRequestPatch
- OrganizationTeam
- OrganizationTeamInvite
- OrganizationTeamMembers
- OrganizationTeamRequest
- OrganizationTeamRequestPatch
- OrganizationTeamServiceMember
- P2PackageUpload
- P2PackageUploadRequest
- Package
- PackageBulkAction
- PackageBulkActionResponse
- PackageCopy
- PackageCopyRequest
- PackageDenyPolicy
- PackageDenyPolicyRequest
- PackageDenyPolicyRequestPatch
- PackageDependencies
- PackageDependency
- PackageFile
- PackageFilePartsUpload
- PackageFileUpload
- PackageFileUploadRequest
- PackageGroup
- PackageLicense
- PackageLicensePolicyEvaluationRequest
- PackageLicensePolicyEvaluationRequestRequest
- PackageLicensePolicyViolationLog
- PackageLicensePolicyViolationLogCursorPage
- PackageLicenseRequestPatch
- PackageMove
- PackageMoveRequest
- PackageQuarantine
- PackageQuarantineRequest
- PackageRecycleBin
- PackageResync
- PackageStatus
- PackageTag
- PackageTagRequest
- PackageUsageMetrics
- PackageVersionBadge
- PackageVulnerability
- PackageVulnerabilityPolicyEvaluationRequest
- PackageVulnerabilityPolicyEvaluationRequestRequest
- PackageVulnerabilityPolicyViolationLog
- PackageVulnerabilityPolicyViolationLogCursorPage
- ProviderSettings
- ProviderSettingsWrite
- ProviderSettingsWriteRequest
- ProviderSettingsWriteRequestPatch
- PythonPackageUpload
- PythonPackageUploadRequest
- PythonUpstream
- PythonUpstreamRequest
- PythonUpstreamRequestPatch
- Quota
- QuotaHistory
- RateCheck
- RawPackageUpload
- RawPackageUploadRequest
- RecycleBinPackage
- Repository
- RepositoryAuditLog
- RepositoryCreate
- RepositoryCreateRequest
- RepositoryEcdsaKey
- RepositoryEcdsaKeyCreate
- RepositoryEd25519Key
- RepositoryEd25519KeyCreate
- RepositoryGeoIpCidr
- RepositoryGeoIpCountryCode
- RepositoryGeoIpRules
- RepositoryGeoIpRulesRequest
- RepositoryGeoIpRulesRequestPatch
- RepositoryGeoIpStatus
- RepositoryGeoIpTestAddress
- RepositoryGeoIpTestAddressResponse
- RepositoryGeoIpTestAddressResponseDict
- RepositoryGpgKey
- RepositoryGpgKeyCreate
- RepositoryPrivilegeDict
- RepositoryPrivilegeInput
- RepositoryPrivilegeInputRequest
- RepositoryPrivilegeInputRequestPatch
- RepositoryRequestPatch
- RepositoryRetentionRules
- RepositoryRetentionRulesRequestPatch
- RepositoryRsaKey
- RepositoryRsaKeyCreate
- RepositoryToken
- RepositoryTokenAction
- RepositoryTokenPrivateBroadcasts
- RepositoryTokenPrivateBroadcastsRequest
- RepositoryTokenRefresh
- RepositoryTokenRefreshRequest
- RepositoryTokenRequest
- RepositoryTokenRequestPatch
- RepositoryTokenSync
- RepositoryTokenSyncRequest
- RepositoryTransferRegion
- RepositoryTransferRegionRequest
- RepositoryWebhook
- RepositoryWebhookRequest
- RepositoryWebhookRequestPatch
- RepositoryX509EcdsaCertificate
- RepositoryX509RsaCertificate
- ResourcesRateCheck
- RespositoryGeoIpEnableDisable
- RespositoryGeoIpEnableDisableRequest
- RpmPackageUpload
- RpmPackageUploadRequest
- RpmUpstream
- RpmUpstreamRequest
- RpmUpstreamRequestPatch
- RubyPackageUpload
- RubyPackageUploadRequest
- RubyUpstream
- RubyUpstreamRequest
- RubyUpstreamRequestPatch
- Service
- ServiceRequest
- ServiceRequestPatch
- ServiceTeams
- StatusBasic
- StorageAllocatedLimit
- StorageAllocatedLimitRaw
- StorageRegion
- StorageUsage
- StorageUsageRaw
- SwiftPackageUpload
- SwiftPackageUploadRequest
- SwiftUpstream
- SwiftUpstreamRequest
- SwiftUpstreamRequestPatch
- Tags
- TerraformPackageUpload
- TerraformPackageUploadRequest
- Usage
- UsageFieldset
- UsageLimits
- UsageLimitsRaw
- UsageRaw
- UserAuthToken
- UserAuthTokenRequest
- UserAuthenticationToken
- UserBrief
- UserProfile
- VagrantPackageUpload
- VagrantPackageUploadRequest
- VsxPackageUpload
- VsxPackageUploadRequest
- Vulnerability
- VulnerabilityScan
- VulnerabilityScanResults
- VulnerabilityScanResultsList
- VulnerabilityScanVersion
- WebhookTemplate
- Type: API key
- API key parameter name: X-Api-Key
- Location: HTTP header
- Type: HTTP basic authentication