diff --git a/services/authorization/oas_commit b/services/authorization/oas_commit index e3713dde3..0f8ce352b 100644 --- a/services/authorization/oas_commit +++ b/services/authorization/oas_commit @@ -1 +1 @@ -0e64886dd0847341800d7191ed193b75413be998 +876a48fb56473c7c844baa697906d461c0675f47 diff --git a/services/authorization/src/stackit/authorization/__init__.py b/services/authorization/src/stackit/authorization/__init__.py index 4da63e86c..e9c0c8672 100644 --- a/services/authorization/src/stackit/authorization/__init__.py +++ b/services/authorization/src/stackit/authorization/__init__.py @@ -3,16 +3,17 @@ # flake8: noqa """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 + __version__ = "1.0.0" # Define package exports diff --git a/services/authorization/src/stackit/authorization/api/default_api.py b/services/authorization/src/stackit/authorization/api/default_api.py index c1fff3cb3..0c10bc4ca 100644 --- a/services/authorization/src/stackit/authorization/api/default_api.py +++ b/services/authorization/src/stackit/authorization/api/default_api.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from typing import Any, Dict, List, Optional, Tuple, Union diff --git a/services/authorization/src/stackit/authorization/api_client.py b/services/authorization/src/stackit/authorization/api_client.py index 33ac60c24..831851cbd 100644 --- a/services/authorization/src/stackit/authorization/api_client.py +++ b/services/authorization/src/stackit/authorization/api_client.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 import datetime @@ -36,6 +36,7 @@ ApiException, ) + RequestSerialized = Tuple[str, str, Dict[str, str], Optional[str], List[str]] diff --git a/services/authorization/src/stackit/authorization/api_response.py b/services/authorization/src/stackit/authorization/api_response.py index ca801da0b..b3ba14a1d 100644 --- a/services/authorization/src/stackit/authorization/api_response.py +++ b/services/authorization/src/stackit/authorization/api_response.py @@ -6,6 +6,7 @@ from pydantic import BaseModel, Field, StrictBytes, StrictInt + T = TypeVar("T") diff --git a/services/authorization/src/stackit/authorization/configuration.py b/services/authorization/src/stackit/authorization/configuration.py index 5e323d081..3a432779c 100644 --- a/services/authorization/src/stackit/authorization/configuration.py +++ b/services/authorization/src/stackit/authorization/configuration.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 import sys @@ -18,6 +18,7 @@ import os + ServerVariablesT = Dict[str, str] diff --git a/services/authorization/src/stackit/authorization/exceptions.py b/services/authorization/src/stackit/authorization/exceptions.py index 07d01c8e5..1f9ada4ac 100644 --- a/services/authorization/src/stackit/authorization/exceptions.py +++ b/services/authorization/src/stackit/authorization/exceptions.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from typing import Any, Optional diff --git a/services/authorization/src/stackit/authorization/models/__init__.py b/services/authorization/src/stackit/authorization/models/__init__.py index 8c2fc1baf..f15652803 100644 --- a/services/authorization/src/stackit/authorization/models/__init__.py +++ b/services/authorization/src/stackit/authorization/models/__init__.py @@ -2,14 +2,14 @@ # flake8: noqa """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 # import models into model package diff --git a/services/authorization/src/stackit/authorization/models/add_custom_role_response.py b/services/authorization/src/stackit/authorization/models/add_custom_role_response.py index 55570ae76..29a0c03c1 100644 --- a/services/authorization/src/stackit/authorization/models/add_custom_role_response.py +++ b/services/authorization/src/stackit/authorization/models/add_custom_role_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/add_members_payload.py b/services/authorization/src/stackit/authorization/models/add_members_payload.py index 93dfe6499..f2be7542d 100644 --- a/services/authorization/src/stackit/authorization/models/add_members_payload.py +++ b/services/authorization/src/stackit/authorization/models/add_members_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/add_role_payload.py b/services/authorization/src/stackit/authorization/models/add_role_payload.py index 020440b1e..3c0a1460a 100644 --- a/services/authorization/src/stackit/authorization/models/add_role_payload.py +++ b/services/authorization/src/stackit/authorization/models/add_role_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/delete_role_response.py b/services/authorization/src/stackit/authorization/models/delete_role_response.py index ba037cf6d..f76a3f406 100644 --- a/services/authorization/src/stackit/authorization/models/delete_role_response.py +++ b/services/authorization/src/stackit/authorization/models/delete_role_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/error_response.py b/services/authorization/src/stackit/authorization/models/error_response.py index 07d5987d3..0cb9ff2b7 100644 --- a/services/authorization/src/stackit/authorization/models/error_response.py +++ b/services/authorization/src/stackit/authorization/models/error_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/existing_permission.py b/services/authorization/src/stackit/authorization/models/existing_permission.py index 45593c9b0..de573afea 100644 --- a/services/authorization/src/stackit/authorization/models/existing_permission.py +++ b/services/authorization/src/stackit/authorization/models/existing_permission.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/get_role_response.py b/services/authorization/src/stackit/authorization/models/get_role_response.py index db5976f60..6120f39a0 100644 --- a/services/authorization/src/stackit/authorization/models/get_role_response.py +++ b/services/authorization/src/stackit/authorization/models/get_role_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/list_members_response.py b/services/authorization/src/stackit/authorization/models/list_members_response.py index 67282781c..ccd5b1e66 100644 --- a/services/authorization/src/stackit/authorization/models/list_members_response.py +++ b/services/authorization/src/stackit/authorization/models/list_members_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/list_permissions_response.py b/services/authorization/src/stackit/authorization/models/list_permissions_response.py index 89a6d31c9..62556aaa9 100644 --- a/services/authorization/src/stackit/authorization/models/list_permissions_response.py +++ b/services/authorization/src/stackit/authorization/models/list_permissions_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/list_user_memberships_response.py b/services/authorization/src/stackit/authorization/models/list_user_memberships_response.py index 66d66a1d3..adbbd8354 100644 --- a/services/authorization/src/stackit/authorization/models/list_user_memberships_response.py +++ b/services/authorization/src/stackit/authorization/models/list_user_memberships_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/list_user_permissions_response.py b/services/authorization/src/stackit/authorization/models/list_user_permissions_response.py index 0eadf96d4..086d81302 100644 --- a/services/authorization/src/stackit/authorization/models/list_user_permissions_response.py +++ b/services/authorization/src/stackit/authorization/models/list_user_permissions_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/member.py b/services/authorization/src/stackit/authorization/models/member.py index ea9f1ec4f..71deb7f45 100644 --- a/services/authorization/src/stackit/authorization/models/member.py +++ b/services/authorization/src/stackit/authorization/models/member.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/members_response.py b/services/authorization/src/stackit/authorization/models/members_response.py index aced5ce72..dd55171b6 100644 --- a/services/authorization/src/stackit/authorization/models/members_response.py +++ b/services/authorization/src/stackit/authorization/models/members_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/permission.py b/services/authorization/src/stackit/authorization/models/permission.py index cb1503396..c3ad992ca 100644 --- a/services/authorization/src/stackit/authorization/models/permission.py +++ b/services/authorization/src/stackit/authorization/models/permission.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/permission_request.py b/services/authorization/src/stackit/authorization/models/permission_request.py index 508015c4e..0cef4abce 100644 --- a/services/authorization/src/stackit/authorization/models/permission_request.py +++ b/services/authorization/src/stackit/authorization/models/permission_request.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/remove_members_payload.py b/services/authorization/src/stackit/authorization/models/remove_members_payload.py index ee282d65b..a13b88d53 100644 --- a/services/authorization/src/stackit/authorization/models/remove_members_payload.py +++ b/services/authorization/src/stackit/authorization/models/remove_members_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/role.py b/services/authorization/src/stackit/authorization/models/role.py index db2e7180e..834be9c94 100644 --- a/services/authorization/src/stackit/authorization/models/role.py +++ b/services/authorization/src/stackit/authorization/models/role.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/roles_response.py b/services/authorization/src/stackit/authorization/models/roles_response.py index 5e9fce06f..9e89ab7a3 100644 --- a/services/authorization/src/stackit/authorization/models/roles_response.py +++ b/services/authorization/src/stackit/authorization/models/roles_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/update_role_payload.py b/services/authorization/src/stackit/authorization/models/update_role_payload.py index 468815e65..f78469a38 100644 --- a/services/authorization/src/stackit/authorization/models/update_role_payload.py +++ b/services/authorization/src/stackit/authorization/models/update_role_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/update_role_response.py b/services/authorization/src/stackit/authorization/models/update_role_response.py index 58a2b7278..786de615a 100644 --- a/services/authorization/src/stackit/authorization/models/update_role_response.py +++ b/services/authorization/src/stackit/authorization/models/update_role_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/user_membership.py b/services/authorization/src/stackit/authorization/models/user_membership.py index a19e6cd32..33de65ee5 100644 --- a/services/authorization/src/stackit/authorization/models/user_membership.py +++ b/services/authorization/src/stackit/authorization/models/user_membership.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/user_permission.py b/services/authorization/src/stackit/authorization/models/user_permission.py index ee6828fd1..11f4d1add 100644 --- a/services/authorization/src/stackit/authorization/models/user_permission.py +++ b/services/authorization/src/stackit/authorization/models/user_permission.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/models/zookie.py b/services/authorization/src/stackit/authorization/models/zookie.py index a4ec11fca..6d9ba0a96 100644 --- a/services/authorization/src/stackit/authorization/models/zookie.py +++ b/services/authorization/src/stackit/authorization/models/zookie.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/authorization/src/stackit/authorization/rest.py b/services/authorization/src/stackit/authorization/rest.py index 4e4cf741f..4c73496bf 100644 --- a/services/authorization/src/stackit/authorization/rest.py +++ b/services/authorization/src/stackit/authorization/rest.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Membership API + STACKIT Membership API -The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. + The Membership API is used to manage memberships, roles and permissions of STACKIT resources, like projects, folders, organizations and other resources. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 import io @@ -21,6 +21,7 @@ from stackit.authorization.exceptions import ApiException, ApiValueError + RESTResponseType = requests.Response