regenerate openapi clients (#800)

This commit is contained in:
Michael Quigley
2025-07-17 16:15:53 -04:00
parent df4d144525
commit c8b05e2d5b
20 changed files with 340 additions and 25 deletions

View File

@@ -17,6 +17,7 @@ docs/CreateIdentity201Response.md
docs/CreateIdentityRequest.md
docs/CreateOrganization201Response.md
docs/CreateOrganizationRequest.md
docs/DeleteIdentityRequest.md
docs/DisableRequest.md
docs/EnableRequest.md
docs/Enroll200Response.md
@@ -91,6 +92,7 @@ test/test_create_identity201_response.py
test/test_create_identity_request.py
test/test_create_organization201_response.py
test/test_create_organization_request.py
test/test_delete_identity_request.py
test/test_disable_request.py
test/test_enable_request.py
test/test_enroll200_response.py
@@ -172,6 +174,7 @@ zrok_api/models/create_identity201_response.py
zrok_api/models/create_identity_request.py
zrok_api/models/create_organization201_response.py
zrok_api/models/create_organization_request.py
zrok_api/models/delete_identity_request.py
zrok_api/models/disable_request.py
zrok_api/models/enable_request.py
zrok_api/models/enroll200_response.py

View File

@@ -169,6 +169,7 @@ Class | Method | HTTP request | Description
- [CreateIdentityRequest](docs/CreateIdentityRequest.md)
- [CreateOrganization201Response](docs/CreateOrganization201Response.md)
- [CreateOrganizationRequest](docs/CreateOrganizationRequest.md)
- [DeleteIdentityRequest](docs/DeleteIdentityRequest.md)
- [DisableRequest](docs/DisableRequest.md)
- [EnableRequest](docs/EnableRequest.md)
- [Enroll200Response](docs/Enroll200Response.md)

View File

@@ -718,7 +718,7 @@ void (empty response body)
```python
import zrok_api
from zrok_api.models.create_identity_request import CreateIdentityRequest
from zrok_api.models.delete_identity_request import DeleteIdentityRequest
from zrok_api.rest import ApiException
from pprint import pprint
@@ -743,7 +743,7 @@ configuration.api_key['key'] = os.environ["API_KEY"]
with zrok_api.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = zrok_api.AdminApi(api_client)
body = zrok_api.CreateIdentityRequest() # CreateIdentityRequest | (optional)
body = zrok_api.DeleteIdentityRequest() # DeleteIdentityRequest | (optional)
try:
api_instance.delete_identity(body=body)
@@ -758,7 +758,7 @@ with zrok_api.ApiClient(configuration) as api_client:
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**body** | [**CreateIdentityRequest**](CreateIdentityRequest.md)| | [optional]
**body** | [**DeleteIdentityRequest**](DeleteIdentityRequest.md)| | [optional]
### Return type

View File

@@ -0,0 +1,29 @@
# DeleteIdentityRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**z_id** | **str** | | [optional]
## Example
```python
from zrok_api.models.delete_identity_request import DeleteIdentityRequest
# TODO update the JSON string below
json = "{}"
# create an instance of DeleteIdentityRequest from a JSON string
delete_identity_request_instance = DeleteIdentityRequest.from_json(json)
# print the JSON string representation of the object
print(DeleteIdentityRequest.to_json())
# convert the object into a dict
delete_identity_request_dict = delete_identity_request_instance.to_dict()
# create an instance of DeleteIdentityRequest from a dict
delete_identity_request_from_dict = DeleteIdentityRequest.from_dict(delete_identity_request_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -0,0 +1,51 @@
# coding: utf-8
"""
zrok
zrok client access
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from zrok_api.models.delete_identity_request import DeleteIdentityRequest
class TestDeleteIdentityRequest(unittest.TestCase):
"""DeleteIdentityRequest unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def make_instance(self, include_optional) -> DeleteIdentityRequest:
"""Test DeleteIdentityRequest
include_optional is a boolean, when False only required
params are included, when True both required and
optional params are included """
# uncomment below to create an instance of `DeleteIdentityRequest`
"""
model = DeleteIdentityRequest()
if include_optional:
return DeleteIdentityRequest(
z_id = ''
)
else:
return DeleteIdentityRequest(
)
"""
def testDeleteIdentityRequest(self):
"""Test DeleteIdentityRequest"""
# inst_req_only = self.make_instance(include_optional=False)
# inst_req_and_optional = self.make_instance(include_optional=True)
if __name__ == '__main__':
unittest.main()

View File

@@ -47,6 +47,7 @@ __all__ = [
"CreateIdentityRequest",
"CreateOrganization201Response",
"CreateOrganizationRequest",
"DeleteIdentityRequest",
"DisableRequest",
"EnableRequest",
"Enroll200Response",
@@ -134,6 +135,7 @@ from zrok_api.models.create_identity201_response import CreateIdentity201Respons
from zrok_api.models.create_identity_request import CreateIdentityRequest as CreateIdentityRequest
from zrok_api.models.create_organization201_response import CreateOrganization201Response as CreateOrganization201Response
from zrok_api.models.create_organization_request import CreateOrganizationRequest as CreateOrganizationRequest
from zrok_api.models.delete_identity_request import DeleteIdentityRequest as DeleteIdentityRequest
from zrok_api.models.disable_request import DisableRequest as DisableRequest
from zrok_api.models.enable_request import EnableRequest as EnableRequest
from zrok_api.models.enroll200_response import Enroll200Response as Enroll200Response

View File

@@ -25,6 +25,7 @@ from zrok_api.models.create_identity201_response import CreateIdentity201Respons
from zrok_api.models.create_identity_request import CreateIdentityRequest
from zrok_api.models.create_organization201_response import CreateOrganization201Response
from zrok_api.models.create_organization_request import CreateOrganizationRequest
from zrok_api.models.delete_identity_request import DeleteIdentityRequest
from zrok_api.models.invite_token_generate_request import InviteTokenGenerateRequest
from zrok_api.models.list_frontends200_response_inner import ListFrontends200ResponseInner
from zrok_api.models.list_organization_members200_response import ListOrganizationMembers200Response
@@ -2549,7 +2550,7 @@ class AdminApi:
@validate_call
def delete_identity(
self,
body: Optional[CreateIdentityRequest] = None,
body: Optional[DeleteIdentityRequest] = None,
_request_timeout: Union[
None,
Annotated[StrictFloat, Field(gt=0)],
@@ -2567,7 +2568,7 @@ class AdminApi:
:param body:
:type body: CreateIdentityRequest
:type body: DeleteIdentityRequest
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
@@ -2618,7 +2619,7 @@ class AdminApi:
@validate_call
def delete_identity_with_http_info(
self,
body: Optional[CreateIdentityRequest] = None,
body: Optional[DeleteIdentityRequest] = None,
_request_timeout: Union[
None,
Annotated[StrictFloat, Field(gt=0)],
@@ -2636,7 +2637,7 @@ class AdminApi:
:param body:
:type body: CreateIdentityRequest
:type body: DeleteIdentityRequest
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
@@ -2687,7 +2688,7 @@ class AdminApi:
@validate_call
def delete_identity_without_preload_content(
self,
body: Optional[CreateIdentityRequest] = None,
body: Optional[DeleteIdentityRequest] = None,
_request_timeout: Union[
None,
Annotated[StrictFloat, Field(gt=0)],
@@ -2705,7 +2706,7 @@ class AdminApi:
:param body:
:type body: CreateIdentityRequest
:type body: DeleteIdentityRequest
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of

View File

@@ -28,6 +28,7 @@ from zrok_api.models.create_identity201_response import CreateIdentity201Respons
from zrok_api.models.create_identity_request import CreateIdentityRequest
from zrok_api.models.create_organization201_response import CreateOrganization201Response
from zrok_api.models.create_organization_request import CreateOrganizationRequest
from zrok_api.models.delete_identity_request import DeleteIdentityRequest
from zrok_api.models.disable_request import DisableRequest
from zrok_api.models.enable_request import EnableRequest
from zrok_api.models.enroll200_response import Enroll200Response

View File

@@ -0,0 +1,87 @@
# coding: utf-8
"""
zrok
zrok client access
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
from __future__ import annotations
import pprint
import re # noqa: F401
import json
from pydantic import BaseModel, ConfigDict, Field, StrictStr
from typing import Any, ClassVar, Dict, List, Optional
from typing import Optional, Set
from typing_extensions import Self
class DeleteIdentityRequest(BaseModel):
"""
DeleteIdentityRequest
""" # noqa: E501
z_id: Optional[StrictStr] = Field(default=None, alias="zId")
__properties: ClassVar[List[str]] = ["zId"]
model_config = ConfigDict(
populate_by_name=True,
validate_assignment=True,
protected_namespaces=(),
)
def to_str(self) -> str:
"""Returns the string representation of the model using alias"""
return pprint.pformat(self.model_dump(by_alias=True))
def to_json(self) -> str:
"""Returns the JSON representation of the model using alias"""
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
return json.dumps(self.to_dict())
@classmethod
def from_json(cls, json_str: str) -> Optional[Self]:
"""Create an instance of DeleteIdentityRequest from a JSON string"""
return cls.from_dict(json.loads(json_str))
def to_dict(self) -> Dict[str, Any]:
"""Return the dictionary representation of the model using alias.
This has the following differences from calling pydantic's
`self.model_dump(by_alias=True)`:
* `None` is only added to the output dict for nullable fields that
were set at model initialization. Other fields with value `None`
are ignored.
"""
excluded_fields: Set[str] = set([
])
_dict = self.model_dump(
by_alias=True,
exclude=excluded_fields,
exclude_none=True,
)
return _dict
@classmethod
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
"""Create an instance of DeleteIdentityRequest from a dict"""
if obj is None:
return None
if not isinstance(obj, dict):
return cls.model_validate(obj)
_obj = cls.model_validate({
"zId": obj.get("zId")
})
return _obj