Skip to content

Generator: Update SDK /services/serviceaccount #1392

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

Closed
Closed
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
110 changes: 75 additions & 35 deletions services/serviceaccount/src/stackit/serviceaccount/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,75 +11,115 @@
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
""" # noqa: E501 docstring might be too long
""" # noqa: E501


__version__ = "1.0.0"

# Define package exports
__all__ = [
"DefaultApi",
"ApiResponse",
"ApiClient",
"HostConfiguration",
"OpenApiException",
"ApiTypeError",
"ApiValueError",
"ApiKeyError",
"ApiAttributeError",
"ApiException",
"AccessToken",
"AccessTokenMetadata",
"AuthError",
"AuthErrorError",
"CreateAccessTokenPayload",
"CreateServiceAccountKeyPayload",
"CreateServiceAccountKeyResponse",
"CreateServiceAccountKeyResponseCredentials",
"CreateServiceAccountPayload",
"CreateShortLivedAccessTokenResponse",
"Error",
"GetServiceAccountKeyResponse",
"GetServiceAccountKeyResponseCredentials",
"JWK",
"JWKS",
"ListAccessTokensResponse",
"ListServiceAccountKeysResponse",
"ListServiceAccountsResponse",
"PartialUpdateServiceAccountKeyPayload",
"PartialUpdateServiceAccountKeyResponse",
"ServiceAccount",
"ServiceAccountKeyListResponse",
]

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

# import ApiClient
from stackit.serviceaccount.api_response import ApiResponse
from stackit.serviceaccount.configuration import HostConfiguration
from stackit.serviceaccount.exceptions import (
ApiAttributeError,
ApiException,
ApiKeyError,
ApiTypeError,
ApiValueError,
OpenApiException,
)
from stackit.serviceaccount.api_response import ApiResponse as ApiResponse
from stackit.serviceaccount.configuration import HostConfiguration as HostConfiguration
from stackit.serviceaccount.exceptions import ApiAttributeError as ApiAttributeError
from stackit.serviceaccount.exceptions import ApiException as ApiException
from stackit.serviceaccount.exceptions import ApiKeyError as ApiKeyError
from stackit.serviceaccount.exceptions import ApiTypeError as ApiTypeError
from stackit.serviceaccount.exceptions import ApiValueError as ApiValueError
from stackit.serviceaccount.exceptions import OpenApiException as OpenApiException

# import models into sdk package
from stackit.serviceaccount.models.access_token import AccessToken
from stackit.serviceaccount.models.access_token_metadata import AccessTokenMetadata
from stackit.serviceaccount.models.auth_error import AuthError
from stackit.serviceaccount.models.auth_error_error import AuthErrorError
from stackit.serviceaccount.models.access_token import AccessToken as AccessToken
from stackit.serviceaccount.models.access_token_metadata import (
AccessTokenMetadata as AccessTokenMetadata,
)
from stackit.serviceaccount.models.auth_error import AuthError as AuthError
from stackit.serviceaccount.models.auth_error_error import (
AuthErrorError as AuthErrorError,
)
from stackit.serviceaccount.models.create_access_token_payload import (
CreateAccessTokenPayload,
CreateAccessTokenPayload as CreateAccessTokenPayload,
)
from stackit.serviceaccount.models.create_service_account_key_payload import (
CreateServiceAccountKeyPayload,
CreateServiceAccountKeyPayload as CreateServiceAccountKeyPayload,
)
from stackit.serviceaccount.models.create_service_account_key_response import (
CreateServiceAccountKeyResponse,
CreateServiceAccountKeyResponse as CreateServiceAccountKeyResponse,
)
from stackit.serviceaccount.models.create_service_account_key_response_credentials import (
CreateServiceAccountKeyResponseCredentials,
CreateServiceAccountKeyResponseCredentials as CreateServiceAccountKeyResponseCredentials,
)
from stackit.serviceaccount.models.create_service_account_payload import (
CreateServiceAccountPayload,
CreateServiceAccountPayload as CreateServiceAccountPayload,
)
from stackit.serviceaccount.models.create_short_lived_access_token_response import (
CreateShortLivedAccessTokenResponse,
CreateShortLivedAccessTokenResponse as CreateShortLivedAccessTokenResponse,
)
from stackit.serviceaccount.models.error import Error
from stackit.serviceaccount.models.error import Error as Error
from stackit.serviceaccount.models.get_service_account_key_response import (
GetServiceAccountKeyResponse,
GetServiceAccountKeyResponse as GetServiceAccountKeyResponse,
)
from stackit.serviceaccount.models.get_service_account_key_response_credentials import (
GetServiceAccountKeyResponseCredentials,
GetServiceAccountKeyResponseCredentials as GetServiceAccountKeyResponseCredentials,
)
from stackit.serviceaccount.models.jwk import JWK
from stackit.serviceaccount.models.jwks import JWKS
from stackit.serviceaccount.models.jwk import JWK as JWK
from stackit.serviceaccount.models.jwks import JWKS as JWKS
from stackit.serviceaccount.models.list_access_tokens_response import (
ListAccessTokensResponse,
ListAccessTokensResponse as ListAccessTokensResponse,
)
from stackit.serviceaccount.models.list_service_account_keys_response import (
ListServiceAccountKeysResponse,
ListServiceAccountKeysResponse as ListServiceAccountKeysResponse,
)
from stackit.serviceaccount.models.list_service_accounts_response import (
ListServiceAccountsResponse,
ListServiceAccountsResponse as ListServiceAccountsResponse,
)
from stackit.serviceaccount.models.partial_update_service_account_key_payload import (
PartialUpdateServiceAccountKeyPayload,
PartialUpdateServiceAccountKeyPayload as PartialUpdateServiceAccountKeyPayload,
)
from stackit.serviceaccount.models.partial_update_service_account_key_response import (
PartialUpdateServiceAccountKeyResponse,
PartialUpdateServiceAccountKeyResponse as PartialUpdateServiceAccountKeyResponse,
)
from stackit.serviceaccount.models.service_account import (
ServiceAccount as ServiceAccount,
)
from stackit.serviceaccount.models.service_account import ServiceAccount
from stackit.serviceaccount.models.service_account_key_list_response import (
ServiceAccountKeyListResponse,
ServiceAccountKeyListResponse as ServiceAccountKeyListResponse,
)
Loading
Loading