github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python-legacy/lakefs_client/model/authentication_token.py (about) 1 """ 2 lakeFS API 3 4 lakeFS HTTP API # noqa: E501 5 6 The version of the OpenAPI document: 1.0.0 7 Contact: services@treeverse.io 8 Generated by: https://openapi-generator.tech 9 """ 10 11 12 import re # noqa: F401 13 import sys # noqa: F401 14 15 from lakefs_client.model_utils import ( # noqa: F401 16 ApiTypeError, 17 ModelComposed, 18 ModelNormal, 19 ModelSimple, 20 cached_property, 21 change_keys_js_to_python, 22 convert_js_args_to_python_args, 23 date, 24 datetime, 25 file_type, 26 none_type, 27 validate_get_composed_info, 28 ) 29 from ..model_utils import OpenApiModel 30 from lakefs_client.exceptions import ApiAttributeError 31 32 33 34 class AuthenticationToken(ModelNormal): 35 """NOTE: This class is auto generated by OpenAPI Generator. 36 Ref: https://openapi-generator.tech 37 38 Do not edit the class manually. 39 40 Attributes: 41 allowed_values (dict): The key is the tuple path to the attribute 42 and the for var_name this is (var_name,). The value is a dict 43 with a capitalized key describing the allowed value and an allowed 44 value. These dicts store the allowed enum values. 45 attribute_map (dict): The key is attribute name 46 and the value is json key in definition. 47 discriminator_value_class_map (dict): A dict to go from the discriminator 48 variable value to the discriminator class name. 49 validations (dict): The key is the tuple path to the attribute 50 and the for var_name this is (var_name,). The value is a dict 51 that stores validations for max_length, min_length, max_items, 52 min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum, 53 inclusive_minimum, and regex. 54 additional_properties_type (tuple): A tuple of classes accepted 55 as additional properties values. 56 """ 57 58 allowed_values = { 59 } 60 61 validations = { 62 } 63 64 @cached_property 65 def additional_properties_type(): 66 """ 67 This must be a method because a model may have properties that are 68 of type self, this must run after the class is loaded 69 """ 70 return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501 71 72 _nullable = False 73 74 @cached_property 75 def openapi_types(): 76 """ 77 This must be a method because a model may have properties that are 78 of type self, this must run after the class is loaded 79 80 Returns 81 openapi_types (dict): The key is attribute name 82 and the value is attribute type. 83 """ 84 return { 85 'token': (str,), # noqa: E501 86 'token_expiration': (int,), # noqa: E501 87 } 88 89 @cached_property 90 def discriminator(): 91 return None 92 93 94 attribute_map = { 95 'token': 'token', # noqa: E501 96 'token_expiration': 'token_expiration', # noqa: E501 97 } 98 99 read_only_vars = { 100 } 101 102 _composed_schemas = {} 103 104 @classmethod 105 @convert_js_args_to_python_args 106 def _from_openapi_data(cls, token, *args, **kwargs): # noqa: E501 107 """AuthenticationToken - a model defined in OpenAPI 108 109 Args: 110 token (str): a JWT token that could be used to authenticate requests 111 112 Keyword Args: 113 _check_type (bool): if True, values for parameters in openapi_types 114 will be type checked and a TypeError will be 115 raised if the wrong type is input. 116 Defaults to True 117 _path_to_item (tuple/list): This is a list of keys or values to 118 drill down to the model in received_data 119 when deserializing a response 120 _spec_property_naming (bool): True if the variable names in the input data 121 are serialized names, as specified in the OpenAPI document. 122 False if the variable names in the input data 123 are pythonic names, e.g. snake case (default) 124 _configuration (Configuration): the instance to use when 125 deserializing a file_type parameter. 126 If passed, type conversion is attempted 127 If omitted no type conversion is done. 128 _visited_composed_classes (tuple): This stores a tuple of 129 classes that we have traveled through so that 130 if we see that class again we will not use its 131 discriminator again. 132 When traveling through a discriminator, the 133 composed schema that is 134 is traveled through is added to this set. 135 For example if Animal has a discriminator 136 petType and we pass in "Dog", and the class Dog 137 allOf includes Animal, we move through Animal 138 once using the discriminator, and pick Dog. 139 Then in Dog, we will make an instance of the 140 Animal class but this time we won't travel 141 through its discriminator because we passed in 142 _visited_composed_classes = (Animal,) 143 token_expiration (int): Unix Epoch in seconds. [optional] # noqa: E501 144 """ 145 146 _check_type = kwargs.pop('_check_type', True) 147 _spec_property_naming = kwargs.pop('_spec_property_naming', False) 148 _path_to_item = kwargs.pop('_path_to_item', ()) 149 _configuration = kwargs.pop('_configuration', None) 150 _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) 151 152 self = super(OpenApiModel, cls).__new__(cls) 153 154 if args: 155 raise ApiTypeError( 156 "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( 157 args, 158 self.__class__.__name__, 159 ), 160 path_to_item=_path_to_item, 161 valid_classes=(self.__class__,), 162 ) 163 164 self._data_store = {} 165 self._check_type = _check_type 166 self._spec_property_naming = _spec_property_naming 167 self._path_to_item = _path_to_item 168 self._configuration = _configuration 169 self._visited_composed_classes = _visited_composed_classes + (self.__class__,) 170 171 self.token = token 172 for var_name, var_value in kwargs.items(): 173 if var_name not in self.attribute_map and \ 174 self._configuration is not None and \ 175 self._configuration.discard_unknown_keys and \ 176 self.additional_properties_type is None: 177 # discard variable. 178 continue 179 setattr(self, var_name, var_value) 180 return self 181 182 required_properties = set([ 183 '_data_store', 184 '_check_type', 185 '_spec_property_naming', 186 '_path_to_item', 187 '_configuration', 188 '_visited_composed_classes', 189 ]) 190 191 @convert_js_args_to_python_args 192 def __init__(self, token, *args, **kwargs): # noqa: E501 193 """AuthenticationToken - a model defined in OpenAPI 194 195 Args: 196 token (str): a JWT token that could be used to authenticate requests 197 198 Keyword Args: 199 _check_type (bool): if True, values for parameters in openapi_types 200 will be type checked and a TypeError will be 201 raised if the wrong type is input. 202 Defaults to True 203 _path_to_item (tuple/list): This is a list of keys or values to 204 drill down to the model in received_data 205 when deserializing a response 206 _spec_property_naming (bool): True if the variable names in the input data 207 are serialized names, as specified in the OpenAPI document. 208 False if the variable names in the input data 209 are pythonic names, e.g. snake case (default) 210 _configuration (Configuration): the instance to use when 211 deserializing a file_type parameter. 212 If passed, type conversion is attempted 213 If omitted no type conversion is done. 214 _visited_composed_classes (tuple): This stores a tuple of 215 classes that we have traveled through so that 216 if we see that class again we will not use its 217 discriminator again. 218 When traveling through a discriminator, the 219 composed schema that is 220 is traveled through is added to this set. 221 For example if Animal has a discriminator 222 petType and we pass in "Dog", and the class Dog 223 allOf includes Animal, we move through Animal 224 once using the discriminator, and pick Dog. 225 Then in Dog, we will make an instance of the 226 Animal class but this time we won't travel 227 through its discriminator because we passed in 228 _visited_composed_classes = (Animal,) 229 token_expiration (int): Unix Epoch in seconds. [optional] # noqa: E501 230 """ 231 232 _check_type = kwargs.pop('_check_type', True) 233 _spec_property_naming = kwargs.pop('_spec_property_naming', False) 234 _path_to_item = kwargs.pop('_path_to_item', ()) 235 _configuration = kwargs.pop('_configuration', None) 236 _visited_composed_classes = kwargs.pop('_visited_composed_classes', ()) 237 238 if args: 239 raise ApiTypeError( 240 "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % ( 241 args, 242 self.__class__.__name__, 243 ), 244 path_to_item=_path_to_item, 245 valid_classes=(self.__class__,), 246 ) 247 248 self._data_store = {} 249 self._check_type = _check_type 250 self._spec_property_naming = _spec_property_naming 251 self._path_to_item = _path_to_item 252 self._configuration = _configuration 253 self._visited_composed_classes = _visited_composed_classes + (self.__class__,) 254 255 self.token = token 256 for var_name, var_value in kwargs.items(): 257 if var_name not in self.attribute_map and \ 258 self._configuration is not None and \ 259 self._configuration.discard_unknown_keys and \ 260 self.additional_properties_type is None: 261 # discard variable. 262 continue 263 setattr(self, var_name, var_value) 264 if var_name in self.read_only_vars: 265 raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate " 266 f"class with read only attributes.")