enable endpoint refactoring (#834)

This commit is contained in:
Michael Quigley
2025-02-03 16:29:27 -05:00
parent fc45d4b690
commit 9f63b911ed
19 changed files with 379 additions and 123 deletions

View File

@ -31,8 +31,7 @@ from zrok_api.models.auth_user import AuthUser
from zrok_api.models.change_password_body import ChangePasswordBody
from zrok_api.models.configuration import Configuration
from zrok_api.models.disable_request import DisableRequest
from zrok_api.models.enable_request import EnableRequest
from zrok_api.models.enable_response import EnableResponse
from zrok_api.models.enable_body import EnableBody
from zrok_api.models.environment import Environment
from zrok_api.models.environment_and_resources import EnvironmentAndResources
from zrok_api.models.environments import Environments

View File

@ -130,8 +130,8 @@ class EnvironmentApi(object):
>>> result = thread.get()
:param async_req bool
:param EnableRequest body:
:return: EnableResponse
:param EnableBody body:
:return: InlineResponse201
If the method is called asynchronously,
returns the request thread.
"""
@ -151,8 +151,8 @@ class EnvironmentApi(object):
>>> result = thread.get()
:param async_req bool
:param EnableRequest body:
:return: EnableResponse
:param EnableBody body:
:return: InlineResponse201
If the method is called asynchronously,
returns the request thread.
"""
@ -206,7 +206,7 @@ class EnvironmentApi(object):
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='EnableResponse', # noqa: E501
response_type='InlineResponse201', # noqa: E501
auth_settings=auth_settings,
async_req=params.get('async_req'),
_return_http_data_only=params.get('_return_http_data_only'),

View File

@ -21,8 +21,7 @@ from zrok_api.models.auth_user import AuthUser
from zrok_api.models.change_password_body import ChangePasswordBody
from zrok_api.models.configuration import Configuration
from zrok_api.models.disable_request import DisableRequest
from zrok_api.models.enable_request import EnableRequest
from zrok_api.models.enable_response import EnableResponse
from zrok_api.models.enable_body import EnableBody
from zrok_api.models.environment import Environment
from zrok_api.models.environment_and_resources import EnvironmentAndResources
from zrok_api.models.environments import Environments

View File

@ -0,0 +1,136 @@
# coding: utf-8
"""
zrok
zrok client access # noqa: E501
OpenAPI spec version: 1.0.0
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
import pprint
import re # noqa: F401
import six
class EnableBody(object):
"""NOTE: This class is auto generated by the swagger code generator program.
Do not edit the class manually.
"""
"""
Attributes:
swagger_types (dict): The key is attribute name
and the value is attribute type.
attribute_map (dict): The key is attribute name
and the value is json key in definition.
"""
swagger_types = {
'description': 'str',
'host': 'str'
}
attribute_map = {
'description': 'description',
'host': 'host'
}
def __init__(self, description=None, host=None): # noqa: E501
"""EnableBody - a model defined in Swagger""" # noqa: E501
self._description = None
self._host = None
self.discriminator = None
if description is not None:
self.description = description
if host is not None:
self.host = host
@property
def description(self):
"""Gets the description of this EnableBody. # noqa: E501
:return: The description of this EnableBody. # noqa: E501
:rtype: str
"""
return self._description
@description.setter
def description(self, description):
"""Sets the description of this EnableBody.
:param description: The description of this EnableBody. # noqa: E501
:type: str
"""
self._description = description
@property
def host(self):
"""Gets the host of this EnableBody. # noqa: E501
:return: The host of this EnableBody. # noqa: E501
:rtype: str
"""
return self._host
@host.setter
def host(self, host):
"""Sets the host of this EnableBody.
:param host: The host of this EnableBody. # noqa: E501
:type: str
"""
self._host = host
def to_dict(self):
"""Returns the model properties as a dict"""
result = {}
for attr, _ in six.iteritems(self.swagger_types):
value = getattr(self, attr)
if isinstance(value, list):
result[attr] = list(map(
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
value
))
elif hasattr(value, "to_dict"):
result[attr] = value.to_dict()
elif isinstance(value, dict):
result[attr] = dict(map(
lambda item: (item[0], item[1].to_dict())
if hasattr(item[1], "to_dict") else item,
value.items()
))
else:
result[attr] = value
if issubclass(EnableBody, dict):
for key, value in self.items():
result[key] = value
return result
def to_str(self):
"""Returns the string representation of the model"""
return pprint.pformat(self.to_dict())
def __repr__(self):
"""For `print` and `pprint`"""
return self.to_str()
def __eq__(self, other):
"""Returns true if both objects are equal"""
if not isinstance(other, EnableBody):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other