Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions services/registry/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# stackit.registry
STACKIT Container Registry management API.

For more information, please visit [https://docs.stackit.cloud/products/developer-platform/container-registry/](https://docs.stackit.cloud/products/developer-platform/container-registry/)

This package is part of the STACKIT Python SDK. For additional information, please visit the [GitHub repository](https://github.com/stackitcloud/stackit-sdk-python) of the SDK.


## Installation & Usage
### pip install

```sh
pip install stackit-registry
```

Then import the package:
```python
import stackit.registry
```

## Getting Started

[Examples](https://github.com/stackitcloud/stackit-sdk-python/tree/main/examples) for the usage of the package can be found in the [GitHub repository](https://github.com/stackitcloud/stackit-sdk-python) of the SDK.
1 change: 1 addition & 0 deletions services/registry/oas_commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
edbf5b06d23bb86d065fda9ce400f34249efd65d
110 changes: 110 additions & 0 deletions services/registry/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
[project]
name = "stackit-registry"
version = "v0.0.1a"
description = "STACKIT Container Registry API"
authors = [{name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud"}]
requires-python = ">=3.10,<4.0"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"stackit-core>=0.0.1a",
"requests>=2.33.0",
"pydantic>=2.9.2",
"python-dateutil>=2.9.0.post0",
]

[project.urls]
Homepage = "https://github.com/stackitcloud/stackit-sdk-python"
Issues = "https://github.com/stackitcloud/stackit-sdk-python/issues"

[dependency-groups]
dev = [
"black>=26.3.1",
"pytest>=9.1.1",
"flake8>=5.0.3 ; python_full_version < '3.12'",
"flake8>=6.0.1 ; python_full_version >= '3.12'",
"flake8-black>=0.3.6",
"flake8-pyproject>=1.2.3",
"autoimport>=1.6.1",
"flake8-eol>=0.0.8",
"flake8-eradicate>=1.5.0",
"flake8-bandit>=4.1.1",
"flake8-bugbear>=23.1.14",
"flake8-quotes>=3.4.0",
"isort>=5.13.2",
]

[tool.uv]
default-groups = "all"

[tool.uv.sources]
stackit-core = { path = "../../core" }

[tool.hatch.build.targets.sdist]
include = ["src/stackit"]

[tool.hatch.build.targets.wheel]
include = ["src/stackit"]

[tool.hatch.build.targets.wheel.sources]
"src/stackit" = "stackit"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.pytest.ini_options]
pythonpath = [
"src"
]
testpaths = [
"tests"
]

[tool.black]
line-length = 120
exclude = """
/(
.eggs
| .git
| .hg
| .mypy_cache
| .nox
| .pants.d
| .tox
| .venv
| _build
| buck-out
| build
| dist
| node_modules
| venv
)/
"""

[tool.isort]
profile = 'black'

[tool.flake8]
exclude= [".eggs", ".git", ".hg", ".mypy_cache", ".tox", ".venv", ".devcontainer", "venv", "_build", "buck-out", "build", "dist"]
statistics = true
show-source = false
max-line-length = 120
# E203,W503 and E704 are incompatible with the formatter black
# W291 needs to be disabled because some doc-strings get generated with trailing whitespace but black won't re-format comments
ignore = ["E203", "W503", "E704", "W291"]
inline-quotes = '"'
docstring-quotes = '"""'
multiline-quotes = '"""'
ban-relative-imports = true
# Exclude generated code
extend-exclude = [ "src/stackit/*/models/*", "src/stackit/*/api/*", "src/stackit/*/*.py" ]
111 changes: 111 additions & 0 deletions services/registry/src/stackit/registry/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
# coding: utf-8

# flake8: noqa

"""
STACKIT Container Registry API

STACKIT Container Registry management API.

The version of the OpenAPI document: 1.0.0
Contact: devex_development@stackit.cloud
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
""" # noqa: E501

__version__ = "1.0.0"

# Define package exports
__all__ = [
"DefaultApi",
"ApiResponse",
"ApiClient",
"HostConfiguration",
"OpenApiException",
"ApiTypeError",
"ApiValueError",
"ApiKeyError",
"ApiAttributeError",
"ApiException",
"Artifactory",
"ArtifactoryList",
"BadRequestErrorResponse",
"ConflictErrorResponse",
"CreateArtifactoryPayload",
"CreateProxyRequest",
"Credentials",
"ForbiddenErrorResponse",
"GenericErrorResponse",
"InternalServerErrorResponse",
"NotFoundErrorResponse",
"PatchArtifactoryPayload",
"Proxy",
"RedactedCredentials",
"ReplicationAdapter",
"ReplicationAdapterList",
"UnauthorizedErrorResponse",
"UpdateProxyRequest",
]

# import apis into sdk package
from stackit.registry.api.default_api import DefaultApi as DefaultApi
from stackit.registry.api_client import ApiClient as ApiClient

# import ApiClient
from stackit.registry.api_response import ApiResponse as ApiResponse
from stackit.registry.configuration import HostConfiguration as HostConfiguration
from stackit.registry.exceptions import ApiAttributeError as ApiAttributeError
from stackit.registry.exceptions import ApiException as ApiException
from stackit.registry.exceptions import ApiKeyError as ApiKeyError
from stackit.registry.exceptions import ApiTypeError as ApiTypeError
from stackit.registry.exceptions import ApiValueError as ApiValueError
from stackit.registry.exceptions import OpenApiException as OpenApiException

# import models into sdk package
from stackit.registry.models.artifactory import Artifactory as Artifactory
from stackit.registry.models.artifactory_list import ArtifactoryList as ArtifactoryList
from stackit.registry.models.bad_request_error_response import (
BadRequestErrorResponse as BadRequestErrorResponse,
)
from stackit.registry.models.conflict_error_response import (
ConflictErrorResponse as ConflictErrorResponse,
)
from stackit.registry.models.create_artifactory_payload import (
CreateArtifactoryPayload as CreateArtifactoryPayload,
)
from stackit.registry.models.create_proxy_request import (
CreateProxyRequest as CreateProxyRequest,
)
from stackit.registry.models.credentials import Credentials as Credentials
from stackit.registry.models.forbidden_error_response import (
ForbiddenErrorResponse as ForbiddenErrorResponse,
)
from stackit.registry.models.generic_error_response import (
GenericErrorResponse as GenericErrorResponse,
)
from stackit.registry.models.internal_server_error_response import (
InternalServerErrorResponse as InternalServerErrorResponse,
)
from stackit.registry.models.not_found_error_response import (
NotFoundErrorResponse as NotFoundErrorResponse,
)
from stackit.registry.models.patch_artifactory_payload import (
PatchArtifactoryPayload as PatchArtifactoryPayload,
)
from stackit.registry.models.proxy import Proxy as Proxy
from stackit.registry.models.redacted_credentials import (
RedactedCredentials as RedactedCredentials,
)
from stackit.registry.models.replication_adapter import (
ReplicationAdapter as ReplicationAdapter,
)
from stackit.registry.models.replication_adapter_list import (
ReplicationAdapterList as ReplicationAdapterList,
)
from stackit.registry.models.unauthorized_error_response import (
UnauthorizedErrorResponse as UnauthorizedErrorResponse,
)
from stackit.registry.models.update_proxy_request import (
UpdateProxyRequest as UpdateProxyRequest,
)
4 changes: 4 additions & 0 deletions services/registry/src/stackit/registry/api/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# flake8: noqa

# import apis into api package
from stackit.registry.api.default_api import DefaultApi
Loading
Loading