Skip to content

Commit 3eda505

Browse files
authored
feat(sdk): generate SDK for version v4.11.0 (#102)
* feat(sdk): generate SDK for version v4.11.0 * feat: add stable service APIs for application, authorization, instance, internal permission, and project
1 parent 396b780 commit 3eda505

385 files changed

Lines changed: 34550 additions & 344 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

zitadel_client/api/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
# import apis into api package
44
from zitadel_client.api.action_service_api import ActionServiceApi
5+
from zitadel_client.api.application_service_api import ApplicationServiceApi
6+
from zitadel_client.api.authorization_service_api import AuthorizationServiceApi
57
from zitadel_client.api.beta_action_service_api import BetaActionServiceApi
68
from zitadel_client.api.beta_app_service_api import BetaAppServiceApi
79
from zitadel_client.api.beta_authorization_service_api import BetaAuthorizationServiceApi
@@ -18,8 +20,11 @@
1820
from zitadel_client.api.beta_web_key_service_api import BetaWebKeyServiceApi
1921
from zitadel_client.api.feature_service_api import FeatureServiceApi
2022
from zitadel_client.api.identity_provider_service_api import IdentityProviderServiceApi
23+
from zitadel_client.api.instance_service_api import InstanceServiceApi
24+
from zitadel_client.api.internal_permission_service_api import InternalPermissionServiceApi
2125
from zitadel_client.api.oidc_service_api import OIDCServiceApi
2226
from zitadel_client.api.organization_service_api import OrganizationServiceApi
27+
from zitadel_client.api.project_service_api import ProjectServiceApi
2328
from zitadel_client.api.saml_service_api import SAMLServiceApi
2429
from zitadel_client.api.session_service_api import SessionServiceApi
2530
from zitadel_client.api.settings_service_api import SettingsServiceApi

zitadel_client/api/action_service_api.py

Lines changed: 667 additions & 17 deletions
Large diffs are not rendered by default.

zitadel_client/api/application_service_api.py

Lines changed: 1599 additions & 0 deletions
Large diffs are not rendered by default.

zitadel_client/api/authorization_service_api.py

Lines changed: 815 additions & 0 deletions
Large diffs are not rendered by default.

zitadel_client/api/beta_action_service_api.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def create_target( self, beta_action_service_create_target
5959
beta_action_service_create_target_request = {}
6060
"""Create Target
6161
62-
Create a new target to your endpoint, which can be used in executions. Required permission: - `action.target.write` Required feature flag: - `actions`
62+
Deprecated: please move to the corresponding endpoint under action service v2. This endpoint will be removed with the next major version of ZITADEL. Create a new target to your endpoint, which can be used in executions. Required permission: - `action.target.write`
6363
6464
:param beta_action_service_create_target_request: (required)
6565
:type beta_action_service_create_target_request: BetaActionServiceCreateTargetRequest
@@ -187,7 +187,7 @@ def _create_target_serialize(
187187
def delete_target( self, beta_action_service_delete_target_request: BetaActionServiceDeleteTargetRequest, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], Tuple[ Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)] ] ] = None, _request_auth: Optional[Dict[StrictStr, Any]] = None, _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> BetaActionServiceDeleteTargetResponse:
188188
"""Delete Target
189189
190-
Delete an existing target. This will remove it from any configured execution as well. In case the target is not found, the request will return a successful response as the desired state is already achieved. Required permission: - `action.target.delete` Required feature flag: - `actions`
190+
Deprecated: please move to the corresponding endpoint under action service v2. This endpoint will be removed with the next major version of ZITADEL. Delete an existing target. This will remove it from any configured execution as well. In case the target is not found, the request will return a successful response as the desired state is already achieved. Required permission: - `action.target.delete`
191191
192192
:param beta_action_service_delete_target_request: (required)
193193
:type beta_action_service_delete_target_request: BetaActionServiceDeleteTargetRequest
@@ -315,7 +315,7 @@ def _delete_target_serialize(
315315
def get_target( self, beta_action_service_get_target_request: BetaActionServiceGetTargetRequest, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], Tuple[ Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)] ] ] = None, _request_auth: Optional[Dict[StrictStr, Any]] = None, _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> BetaActionServiceGetTargetResponse:
316316
"""Get Target
317317
318-
Returns the target identified by the requested ID. Required permission: - `action.target.read` Required feature flag: - `actions`
318+
Deprecated: please move to the corresponding endpoint under action service v2. This endpoint will be removed with the next major version of ZITADEL. Returns the target identified by the requested ID. Required permission: - `action.target.read`
319319
320320
:param beta_action_service_get_target_request: (required)
321321
:type beta_action_service_get_target_request: BetaActionServiceGetTargetRequest
@@ -445,7 +445,7 @@ def list_execution_functions( self, body: Optional[Dict[st
445445
body = {}
446446
"""List Execution Functions
447447
448-
List all available functions which can be used as condition for executions.
448+
Deprecated: please move to the corresponding endpoint under action service v2. This endpoint will be removed with the next major version of ZITADEL. List all available functions which can be used as condition for executions.
449449
450450
:param body: (required)
451451
:type body: object
@@ -575,7 +575,7 @@ def list_execution_methods( self, body: Optional[Dict[str,
575575
body = {}
576576
"""List Execution Methods
577577
578-
List all available methods which can be used as condition for executions.
578+
Deprecated: please move to the corresponding endpoint under action service v2. This endpoint will be removed with the next major version of ZITADEL. List all available methods which can be used as condition for executions.
579579
580580
:param body: (required)
581581
:type body: object
@@ -705,7 +705,7 @@ def list_execution_services( self, body: Optional[Dict[str
705705
body = {}
706706
"""List Execution Services
707707
708-
List all available services which can be used as condition for executions.
708+
Deprecated: please move to the corresponding endpoint under action service v2. This endpoint will be removed with the next major version of ZITADEL. List all available services which can be used as condition for executions.
709709
710710
:param body: (required)
711711
:type body: object
@@ -833,7 +833,7 @@ def _list_execution_services_serialize(
833833
def list_executions( self, beta_action_service_list_executions_request: BetaActionServiceListExecutionsRequest, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], Tuple[ Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)] ] ] = None, _request_auth: Optional[Dict[StrictStr, Any]] = None, _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> BetaActionServiceListExecutionsResponse:
834834
"""List Executions
835835
836-
List all matching executions. By default all executions of the instance are returned that have at least one execution target. Make sure to include a limit and sorting for pagination. Required permission: - `action.execution.read` Required feature flag: - `actions`
836+
Deprecated: please move to the corresponding endpoint under action service v2. This endpoint will be removed with the next major version of ZITADEL. List all matching executions. By default all executions of the instance are returned that have at least one execution target. Make sure to include a limit and sorting for pagination. Required permission: - `action.execution.read`
837837
838838
:param beta_action_service_list_executions_request: (required)
839839
:type beta_action_service_list_executions_request: BetaActionServiceListExecutionsRequest
@@ -961,7 +961,7 @@ def _list_executions_serialize(
961961
def list_targets( self, beta_action_service_list_targets_request: BetaActionServiceListTargetsRequest, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], Tuple[ Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)] ] ] = None, _request_auth: Optional[Dict[StrictStr, Any]] = None, _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> BetaActionServiceListTargetsResponse:
962962
"""List targets
963963
964-
List all matching targets. By default all targets of the instance are returned. Make sure to include a limit and sorting for pagination. Required permission: - `action.target.read` Required feature flag: - `actions`
964+
Deprecated: please move to the corresponding endpoint under action service v2. This endpoint will be removed with the next major version of ZITADEL. List all matching targets. By default all targets of the instance are returned. Make sure to include a limit and sorting for pagination. Required permission: - `action.target.read`
965965
966966
:param beta_action_service_list_targets_request: (required)
967967
:type beta_action_service_list_targets_request: BetaActionServiceListTargetsRequest
@@ -1089,7 +1089,7 @@ def _list_targets_serialize(
10891089
def set_execution( self, beta_action_service_set_execution_request: BetaActionServiceSetExecutionRequest, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], Tuple[ Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)] ] ] = None, _request_auth: Optional[Dict[StrictStr, Any]] = None, _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> BetaActionServiceSetExecutionResponse:
10901090
"""Set Execution
10911091
1092-
Sets an execution to call a target or include the targets of another execution. Setting an empty list of targets will remove all targets from the execution, making it a noop. Required permission: - `action.execution.write` Required feature flag: - `actions`
1092+
Deprecated: please move to the corresponding endpoint under action service v2. This endpoint will be removed with the next major version of ZITADEL. Sets an execution to call a target or include the targets of another execution. Setting an empty list of targets will remove all targets from the execution, making it a noop. Required permission: - `action.execution.write`
10931093
10941094
:param beta_action_service_set_execution_request: (required)
10951095
:type beta_action_service_set_execution_request: BetaActionServiceSetExecutionRequest
@@ -1219,7 +1219,7 @@ def update_target( self, beta_action_service_update_target
12191219
beta_action_service_update_target_request = {}
12201220
"""Update Target
12211221
1222-
Update an existing target. To generate a new signing key set the optional expirationSigningKey. Required permission: - `action.target.write` Required feature flag: - `actions`
1222+
Deprecated: please move to the corresponding endpoint under action service v2. This endpoint will be removed with the next major version of ZITADEL. Update an existing target. To generate a new signing key set the optional expirationSigningKey. Required permission: - `action.target.write`
12231223
12241224
:param beta_action_service_update_target_request: (required)
12251225
:type beta_action_service_update_target_request: BetaActionServiceUpdateTargetRequest

0 commit comments

Comments
 (0)