lint and polish for disable endpoint (#834)

This commit is contained in:
Michael Quigley
2025-02-03 17:03:45 -05:00
parent 9f63b911ed
commit 0fc139e6d9
11 changed files with 217 additions and 47 deletions

View File

@ -30,7 +30,7 @@ from zrok_api.models.account_body import AccountBody
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.disable_body import DisableBody
from zrok_api.models.enable_body import EnableBody
from zrok_api.models.environment import Environment
from zrok_api.models.environment_and_resources import EnvironmentAndResources

View File

@ -41,7 +41,7 @@ class EnvironmentApi(object):
>>> result = thread.get()
:param async_req bool
:param DisableRequest body:
:param DisableBody body:
:return: None
If the method is called asynchronously,
returns the request thread.
@ -62,7 +62,7 @@ class EnvironmentApi(object):
>>> result = thread.get()
:param async_req bool
:param DisableRequest body:
:param DisableBody body:
:return: None
If the method is called asynchronously,
returns the request thread.

View File

@ -20,7 +20,7 @@ from zrok_api.models.account_body import AccountBody
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.disable_body import DisableBody
from zrok_api.models.enable_body import EnableBody
from zrok_api.models.environment import Environment
from zrok_api.models.environment_and_resources import EnvironmentAndResources

View File

@ -0,0 +1,110 @@
# 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 DisableBody(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 = {
'identity': 'str'
}
attribute_map = {
'identity': 'identity'
}
def __init__(self, identity=None): # noqa: E501
"""DisableBody - a model defined in Swagger""" # noqa: E501
self._identity = None
self.discriminator = None
if identity is not None:
self.identity = identity
@property
def identity(self):
"""Gets the identity of this DisableBody. # noqa: E501
:return: The identity of this DisableBody. # noqa: E501
:rtype: str
"""
return self._identity
@identity.setter
def identity(self, identity):
"""Sets the identity of this DisableBody.
:param identity: The identity of this DisableBody. # noqa: E501
:type: str
"""
self._identity = identity
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(DisableBody, 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, DisableBody):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other