mirror of
https://github.com/openziti/zrok.git
synced 2025-08-09 08:05:04 +02:00
access endpoint tweaks (#834)
This commit is contained in:
@ -24,8 +24,7 @@ from zrok_api.api.share_api import ShareApi
|
||||
from zrok_api.api_client import ApiClient
|
||||
from zrok_api.configuration import Configuration
|
||||
# import models into sdk package
|
||||
from zrok_api.models.access_request import AccessRequest
|
||||
from zrok_api.models.access_response import AccessResponse
|
||||
from zrok_api.models.access_body import AccessBody
|
||||
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
|
||||
@ -54,6 +53,7 @@ from zrok_api.models.inline_response2005 import InlineResponse2005
|
||||
from zrok_api.models.inline_response2005_memberships import InlineResponse2005Memberships
|
||||
from zrok_api.models.inline_response2006 import InlineResponse2006
|
||||
from zrok_api.models.inline_response201 import InlineResponse201
|
||||
from zrok_api.models.inline_response2011 import InlineResponse2011
|
||||
from zrok_api.models.invite_body import InviteBody
|
||||
from zrok_api.models.login_body import LoginBody
|
||||
from zrok_api.models.metrics import Metrics
|
||||
|
@ -41,8 +41,8 @@ class ShareApi(object):
|
||||
>>> result = thread.get()
|
||||
|
||||
:param async_req bool
|
||||
:param AccessRequest body:
|
||||
:return: AccessResponse
|
||||
:param AccessBody body:
|
||||
:return: InlineResponse2011
|
||||
If the method is called asynchronously,
|
||||
returns the request thread.
|
||||
"""
|
||||
@ -62,8 +62,8 @@ class ShareApi(object):
|
||||
>>> result = thread.get()
|
||||
|
||||
:param async_req bool
|
||||
:param AccessRequest body:
|
||||
:return: AccessResponse
|
||||
:param AccessBody body:
|
||||
:return: InlineResponse2011
|
||||
If the method is called asynchronously,
|
||||
returns the request thread.
|
||||
"""
|
||||
@ -117,7 +117,7 @@ class ShareApi(object):
|
||||
body=body_params,
|
||||
post_params=form_params,
|
||||
files=local_var_files,
|
||||
response_type='AccessResponse', # noqa: E501
|
||||
response_type='InlineResponse2011', # noqa: E501
|
||||
auth_settings=auth_settings,
|
||||
async_req=params.get('async_req'),
|
||||
_return_http_data_only=params.get('_return_http_data_only'),
|
||||
|
@ -14,8 +14,7 @@
|
||||
from __future__ import absolute_import
|
||||
|
||||
# import models into model package
|
||||
from zrok_api.models.access_request import AccessRequest
|
||||
from zrok_api.models.access_response import AccessResponse
|
||||
from zrok_api.models.access_body import AccessBody
|
||||
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
|
||||
@ -44,6 +43,7 @@ from zrok_api.models.inline_response2005 import InlineResponse2005
|
||||
from zrok_api.models.inline_response2005_memberships import InlineResponse2005Memberships
|
||||
from zrok_api.models.inline_response2006 import InlineResponse2006
|
||||
from zrok_api.models.inline_response201 import InlineResponse201
|
||||
from zrok_api.models.inline_response2011 import InlineResponse2011
|
||||
from zrok_api.models.invite_body import InviteBody
|
||||
from zrok_api.models.login_body import LoginBody
|
||||
from zrok_api.models.metrics import Metrics
|
||||
|
136
sdk/python/sdk/zrok/zrok_api/models/access_body.py
Normal file
136
sdk/python/sdk/zrok/zrok_api/models/access_body.py
Normal 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 AccessBody(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 = {
|
||||
'env_zid': 'str',
|
||||
'shr_token': 'str'
|
||||
}
|
||||
|
||||
attribute_map = {
|
||||
'env_zid': 'envZId',
|
||||
'shr_token': 'shrToken'
|
||||
}
|
||||
|
||||
def __init__(self, env_zid=None, shr_token=None): # noqa: E501
|
||||
"""AccessBody - a model defined in Swagger""" # noqa: E501
|
||||
self._env_zid = None
|
||||
self._shr_token = None
|
||||
self.discriminator = None
|
||||
if env_zid is not None:
|
||||
self.env_zid = env_zid
|
||||
if shr_token is not None:
|
||||
self.shr_token = shr_token
|
||||
|
||||
@property
|
||||
def env_zid(self):
|
||||
"""Gets the env_zid of this AccessBody. # noqa: E501
|
||||
|
||||
|
||||
:return: The env_zid of this AccessBody. # noqa: E501
|
||||
:rtype: str
|
||||
"""
|
||||
return self._env_zid
|
||||
|
||||
@env_zid.setter
|
||||
def env_zid(self, env_zid):
|
||||
"""Sets the env_zid of this AccessBody.
|
||||
|
||||
|
||||
:param env_zid: The env_zid of this AccessBody. # noqa: E501
|
||||
:type: str
|
||||
"""
|
||||
|
||||
self._env_zid = env_zid
|
||||
|
||||
@property
|
||||
def shr_token(self):
|
||||
"""Gets the shr_token of this AccessBody. # noqa: E501
|
||||
|
||||
|
||||
:return: The shr_token of this AccessBody. # noqa: E501
|
||||
:rtype: str
|
||||
"""
|
||||
return self._shr_token
|
||||
|
||||
@shr_token.setter
|
||||
def shr_token(self, shr_token):
|
||||
"""Sets the shr_token of this AccessBody.
|
||||
|
||||
|
||||
:param shr_token: The shr_token of this AccessBody. # noqa: E501
|
||||
:type: str
|
||||
"""
|
||||
|
||||
self._shr_token = shr_token
|
||||
|
||||
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(AccessBody, 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, AccessBody):
|
||||
return False
|
||||
|
||||
return self.__dict__ == other.__dict__
|
||||
|
||||
def __ne__(self, other):
|
||||
"""Returns true if both objects are not equal"""
|
||||
return not self == other
|
136
sdk/python/sdk/zrok/zrok_api/models/inline_response2011.py
Normal file
136
sdk/python/sdk/zrok/zrok_api/models/inline_response2011.py
Normal 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 InlineResponse2011(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 = {
|
||||
'frontend_token': 'str',
|
||||
'backend_mode': 'str'
|
||||
}
|
||||
|
||||
attribute_map = {
|
||||
'frontend_token': 'frontendToken',
|
||||
'backend_mode': 'backendMode'
|
||||
}
|
||||
|
||||
def __init__(self, frontend_token=None, backend_mode=None): # noqa: E501
|
||||
"""InlineResponse2011 - a model defined in Swagger""" # noqa: E501
|
||||
self._frontend_token = None
|
||||
self._backend_mode = None
|
||||
self.discriminator = None
|
||||
if frontend_token is not None:
|
||||
self.frontend_token = frontend_token
|
||||
if backend_mode is not None:
|
||||
self.backend_mode = backend_mode
|
||||
|
||||
@property
|
||||
def frontend_token(self):
|
||||
"""Gets the frontend_token of this InlineResponse2011. # noqa: E501
|
||||
|
||||
|
||||
:return: The frontend_token of this InlineResponse2011. # noqa: E501
|
||||
:rtype: str
|
||||
"""
|
||||
return self._frontend_token
|
||||
|
||||
@frontend_token.setter
|
||||
def frontend_token(self, frontend_token):
|
||||
"""Sets the frontend_token of this InlineResponse2011.
|
||||
|
||||
|
||||
:param frontend_token: The frontend_token of this InlineResponse2011. # noqa: E501
|
||||
:type: str
|
||||
"""
|
||||
|
||||
self._frontend_token = frontend_token
|
||||
|
||||
@property
|
||||
def backend_mode(self):
|
||||
"""Gets the backend_mode of this InlineResponse2011. # noqa: E501
|
||||
|
||||
|
||||
:return: The backend_mode of this InlineResponse2011. # noqa: E501
|
||||
:rtype: str
|
||||
"""
|
||||
return self._backend_mode
|
||||
|
||||
@backend_mode.setter
|
||||
def backend_mode(self, backend_mode):
|
||||
"""Sets the backend_mode of this InlineResponse2011.
|
||||
|
||||
|
||||
:param backend_mode: The backend_mode of this InlineResponse2011. # noqa: E501
|
||||
:type: str
|
||||
"""
|
||||
|
||||
self._backend_mode = backend_mode
|
||||
|
||||
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(InlineResponse2011, 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, InlineResponse2011):
|
||||
return False
|
||||
|
||||
return self.__dict__ == other.__dict__
|
||||
|
||||
def __ne__(self, other):
|
||||
"""Returns true if both objects are not equal"""
|
||||
return not self == other
|
Reference in New Issue
Block a user