Skip to content

feat(key_manager): add API #521

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 17, 2024
Merged
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
2 changes: 2 additions & 0 deletions scaleway-async/scaleway_async/key_manager/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# This file was automatically generated. DO NOT EDIT.
# If you have any remark or suggestion do not hesitate to open an issue.
55 changes: 55 additions & 0 deletions scaleway-async/scaleway_async/key_manager/v1alpha1/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# This file was automatically generated. DO NOT EDIT.
# If you have any remark or suggestion do not hesitate to open an issue.
from .types import DataKeyAlgorithmSymmetricEncryption
from .types import KeyAlgorithmSymmetricEncryption
from .types import KeyState
from .types import ListKeysRequestOrderBy
from .types import KeyRotationPolicy
from .types import KeyUsage
from .types import Key
from .types import CreateKeyRequest
from .types import DataKey
from .types import DecryptRequest
from .types import DecryptResponse
from .types import DeleteKeyRequest
from .types import DisableKeyRequest
from .types import EnableKeyRequest
from .types import EncryptRequest
from .types import EncryptResponse
from .types import GenerateDataKeyRequest
from .types import GetKeyRequest
from .types import ListKeysRequest
from .types import ListKeysResponse
from .types import ProtectKeyRequest
from .types import RotateKeyRequest
from .types import UnprotectKeyRequest
from .types import UpdateKeyRequest
from .api import KeyManagerV1Alpha1API

__all__ = [
"DataKeyAlgorithmSymmetricEncryption",
"KeyAlgorithmSymmetricEncryption",
"KeyState",
"ListKeysRequestOrderBy",
"KeyRotationPolicy",
"KeyUsage",
"Key",
"CreateKeyRequest",
"DataKey",
"DecryptRequest",
"DecryptResponse",
"DeleteKeyRequest",
"DisableKeyRequest",
"EnableKeyRequest",
"EncryptRequest",
"EncryptResponse",
"GenerateDataKeyRequest",
"GetKeyRequest",
"ListKeysRequest",
"ListKeysResponse",
"ProtectKeyRequest",
"RotateKeyRequest",
"UnprotectKeyRequest",
"UpdateKeyRequest",
"KeyManagerV1Alpha1API",
]
Loading