You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

ionoscloud-container-registry

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ionoscloud-container-registry

Python SDK for the ionoscloud-container-registry API

1.1.0
pipPyPI
Maintainers
1

Gitter Quality Gate Status Bugs Maintainability Rating Reliability Rating Security Rating Vulnerabilities Release Release Date PyPI version

Alt text

Python API client for ionoscloud_container_registry

Overview

Container Registry service enables IONOS clients to manage docker and OCI compliant registries for use by their managed Kubernetes clusters. Use a Container Registry to ensure you have a privately accessed registry to efficiently support image pulls.

Changelog

1.1.0

  • Added new endpoints for Repositories
  • Added new endpoints for Artifacts
  • Added new endpoints for Vulnerabilities
  • Added registry vulnerabilityScanning feature

Overview

The IONOS Cloud SDK for Python provides you with access to the IONOS Cloud API. The client library supports both simple and complex requests. It is designed for developers who are building applications in Python. All API operations are performed over SSL and authenticated using your IONOS Cloud portal credentials. The API can be accessed within an instance running in IONOS Cloud or directly over the Internet from any application that can send an HTTPS request and receive an HTTPS response.

Installation & Usage

Requirements:

  • Python >= 3.5

pip install

Since this package is hosted on Pypi you can install it by using:

pip install ionoscloud-container-registry

If the python package is hosted on a repository, you can install directly using:

pip install git+https://github.com/ionos-cloud/sdk-python-container-registry.git

Note: you may need to run pip with root permission: sudo pip install git+https://github.com/ionos-cloud/sdk-python-container-registry.git

Then import the package:

import ionoscloud_container_registry

Setuptools

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 ionoscloud_container_registry

NOTE: The Python SDK does not support Python 2. It only supports Python >= 3.5.

Authentication

The username and password or the authentication token can be manually specified when initializing the SDK client:

configuration = ionoscloud_container_registry.Configuration(
                username='YOUR_USERNAME',
                password='YOUR_PASSWORD',
                token='YOUR_TOKEN'
                )
client = ionoscloud_container_registry.ApiClient(configuration)

Environment variables can also be used. This is an example of how one would do that:

import os

configuration = ionoscloud_container_registry.Configuration(
                username=os.environ.get('IONOS_USERNAME'),
                password=os.environ.get('IONOS_PASSWORD'),
                token=os.environ.get('IONOS_TOKEN')
                )
client = ionoscloud_container_registry.ApiClient(configuration)

Warning: Make sure to follow the Information Security Best Practices when using credentials within your code or storing them in a file.

HTTP proxies

You can use http proxies by setting the following environment variables:

  • IONOS_HTTP_PROXY - proxy URL
  • IONOS_HTTP_PROXY_HEADERS - proxy headers

Each line in IONOS_HTTP_PROXY_HEADERS represents one header, where the header name and value is separated by a colon. Newline characters within a value need to be escaped. See this example:

Connection: Keep-Alive
User-Info: MyID
User-Group: my long\nheader value

Changing the base URL

Base URL for the HTTP operation can be changed in the following way:

import os

configuration = ionoscloud_container_registry.Configuration(
                username=os.environ.get('IONOS_USERNAME'),
                password=os.environ.get('IONOS_PASSWORD'),
                host=os.environ.get('IONOS_API_URL'),
                server_index=None,
                )
client = ionoscloud_container_registry.ApiClient(configuration)

Certificate pinning:

You can enable certificate pinning if you want to bypass the normal certificate checking procedure, by doing the following:

Set env variable IONOS_PINNED_CERT=<insert_sha256_public_fingerprint_here>

You can get the sha256 fingerprint most easily from the browser by inspecting the certificate.

Documentation for API Endpoints

All URIs are relative to https://api.ionos.com/containerregistries

API Endpoints table
ClassMethodHTTP requestDescription
ArtifactsApiregistries_artifacts_getGET /registries/{registryId}/artifactsRetrieve all Artifacts by Registry
ArtifactsApiregistries_repositories_artifacts_find_by_digestGET /registries/{registryId}/repositories/{repositoryName}/artifacts/{digest}Retrieve Artifact
ArtifactsApiregistries_repositories_artifacts_getGET /registries/{registryId}/repositories/{repositoryName}/artifactsRetrieve all Artifacts by Repository
ArtifactsApiregistries_repositories_artifacts_vulnerabilities_getGET /registries/{registryId}/repositories/{repositoryName}/artifacts/{digest}/vulnerabilitiesRetrieve all Vulnerabilities
LocationsApilocations_getGET /locationsGet container registry locations
NamesApinames_check_usageHEAD /names/{name}Get container registry name availability
RegistriesApiregistries_deleteDELETE /registries/{registryId}Delete registry
RegistriesApiregistries_find_by_idGET /registries/{registryId}Get a registry
RegistriesApiregistries_getGET /registriesList all container registries
RegistriesApiregistries_patchPATCH /registries/{registryId}Update the properties of a registry
RegistriesApiregistries_postPOST /registriesCreate container registry
RegistriesApiregistries_putPUT /registries/{registryId}Create or replace a container registry
RepositoriesApiregistries_repositories_deleteDELETE /registries/{registryId}/repositories/{repositoryName}Delete repository
RepositoriesApiregistries_repositories_find_by_nameGET /registries/{registryId}/repositories/{repositoryName}Retrieve Repository
RepositoriesApiregistries_repositories_getGET /registries/{registryId}/repositoriesRetrieve all Repositories
TokensApiregistries_tokens_deleteDELETE /registries/{registryId}/tokens/{tokenId}Delete token
TokensApiregistries_tokens_find_by_idGET /registries/{registryId}/tokens/{tokenId}Get token information
TokensApiregistries_tokens_getGET /registries/{registryId}/tokensList all tokens for the container registry
TokensApiregistries_tokens_patchPATCH /registries/{registryId}/tokens/{tokenId}Update token
TokensApiregistries_tokens_postPOST /registries/{registryId}/tokensCreate token
TokensApiregistries_tokens_putPUT /registries/{registryId}/tokens/{tokenId}Create or replace token
VulnerabilitiesApivulnerabilities_find_by_idGET /vulnerabilities/{vulnerabilityId}Retrieve Vulnerability

Documentation For Models

All URIs are relative to https://api.ionos.com/containerregistries

API models list

[Back to API list] [Back to Model list]

Keywords

OpenAPI

FAQs

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.