-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathv1_audit_find_request.py
More file actions
531 lines (389 loc) · 13.2 KB
/
v1_audit_find_request.py
File metadata and controls
531 lines (389 loc) · 13.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
# coding: utf-8
"""
metal-api
API to manage and control plane resources like machines, switches, operating system images, machine sizes, networks, IP addresses and more # noqa: E501
OpenAPI spec version: v0.40.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
import pprint
import re # noqa: F401
import six
class V1AuditFindRequest(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 = {
'body': 'str',
'component': 'str',
'detail': 'str',
'error': 'str',
'forwarded_for': 'str',
'_from': 'datetime',
'limit': 'int',
'path': 'str',
'phase': 'str',
'project': 'str',
'remote_addr': 'str',
'rqid': 'str',
'status_code': 'int',
'tenant': 'str',
'to': 'datetime',
'type': 'str',
'user': 'str'
}
attribute_map = {
'body': 'body',
'component': 'component',
'detail': 'detail',
'error': 'error',
'forwarded_for': 'forwarded_for',
'_from': 'from',
'limit': 'limit',
'path': 'path',
'phase': 'phase',
'project': 'project',
'remote_addr': 'remote_addr',
'rqid': 'rqid',
'status_code': 'status_code',
'tenant': 'tenant',
'to': 'to',
'type': 'type',
'user': 'user'
}
def __init__(self, body=None, component=None, detail=None, error=None, forwarded_for=None, _from=None, limit=None, path=None, phase=None, project=None, remote_addr=None, rqid=None, status_code=None, tenant=None, to=None, type=None, user=None): # noqa: E501
"""V1AuditFindRequest - a model defined in Swagger""" # noqa: E501
self._body = None
self._component = None
self._detail = None
self._error = None
self._forwarded_for = None
self.__from = None
self._limit = None
self._path = None
self._phase = None
self._project = None
self._remote_addr = None
self._rqid = None
self._status_code = None
self._tenant = None
self._to = None
self._type = None
self._user = None
self.discriminator = None
if body is not None:
self.body = body
if component is not None:
self.component = component
if detail is not None:
self.detail = detail
if error is not None:
self.error = error
if forwarded_for is not None:
self.forwarded_for = forwarded_for
if _from is not None:
self._from = _from
if limit is not None:
self.limit = limit
if path is not None:
self.path = path
if phase is not None:
self.phase = phase
if project is not None:
self.project = project
if remote_addr is not None:
self.remote_addr = remote_addr
if rqid is not None:
self.rqid = rqid
if status_code is not None:
self.status_code = status_code
if tenant is not None:
self.tenant = tenant
if to is not None:
self.to = to
if type is not None:
self.type = type
if user is not None:
self.user = user
@property
def body(self):
"""Gets the body of this V1AuditFindRequest. # noqa: E501
:return: The body of this V1AuditFindRequest. # noqa: E501
:rtype: str
"""
return self._body
@body.setter
def body(self, body):
"""Sets the body of this V1AuditFindRequest.
:param body: The body of this V1AuditFindRequest. # noqa: E501
:type: str
"""
self._body = body
@property
def component(self):
"""Gets the component of this V1AuditFindRequest. # noqa: E501
:return: The component of this V1AuditFindRequest. # noqa: E501
:rtype: str
"""
return self._component
@component.setter
def component(self, component):
"""Sets the component of this V1AuditFindRequest.
:param component: The component of this V1AuditFindRequest. # noqa: E501
:type: str
"""
self._component = component
@property
def detail(self):
"""Gets the detail of this V1AuditFindRequest. # noqa: E501
:return: The detail of this V1AuditFindRequest. # noqa: E501
:rtype: str
"""
return self._detail
@detail.setter
def detail(self, detail):
"""Sets the detail of this V1AuditFindRequest.
:param detail: The detail of this V1AuditFindRequest. # noqa: E501
:type: str
"""
self._detail = detail
@property
def error(self):
"""Gets the error of this V1AuditFindRequest. # noqa: E501
:return: The error of this V1AuditFindRequest. # noqa: E501
:rtype: str
"""
return self._error
@error.setter
def error(self, error):
"""Sets the error of this V1AuditFindRequest.
:param error: The error of this V1AuditFindRequest. # noqa: E501
:type: str
"""
self._error = error
@property
def forwarded_for(self):
"""Gets the forwarded_for of this V1AuditFindRequest. # noqa: E501
:return: The forwarded_for of this V1AuditFindRequest. # noqa: E501
:rtype: str
"""
return self._forwarded_for
@forwarded_for.setter
def forwarded_for(self, forwarded_for):
"""Sets the forwarded_for of this V1AuditFindRequest.
:param forwarded_for: The forwarded_for of this V1AuditFindRequest. # noqa: E501
:type: str
"""
self._forwarded_for = forwarded_for
@property
def _from(self):
"""Gets the _from of this V1AuditFindRequest. # noqa: E501
:return: The _from of this V1AuditFindRequest. # noqa: E501
:rtype: datetime
"""
return self.__from
@_from.setter
def _from(self, _from):
"""Sets the _from of this V1AuditFindRequest.
:param _from: The _from of this V1AuditFindRequest. # noqa: E501
:type: datetime
"""
self.__from = _from
@property
def limit(self):
"""Gets the limit of this V1AuditFindRequest. # noqa: E501
:return: The limit of this V1AuditFindRequest. # noqa: E501
:rtype: int
"""
return self._limit
@limit.setter
def limit(self, limit):
"""Sets the limit of this V1AuditFindRequest.
:param limit: The limit of this V1AuditFindRequest. # noqa: E501
:type: int
"""
self._limit = limit
@property
def path(self):
"""Gets the path of this V1AuditFindRequest. # noqa: E501
:return: The path of this V1AuditFindRequest. # noqa: E501
:rtype: str
"""
return self._path
@path.setter
def path(self, path):
"""Sets the path of this V1AuditFindRequest.
:param path: The path of this V1AuditFindRequest. # noqa: E501
:type: str
"""
self._path = path
@property
def phase(self):
"""Gets the phase of this V1AuditFindRequest. # noqa: E501
:return: The phase of this V1AuditFindRequest. # noqa: E501
:rtype: str
"""
return self._phase
@phase.setter
def phase(self, phase):
"""Sets the phase of this V1AuditFindRequest.
:param phase: The phase of this V1AuditFindRequest. # noqa: E501
:type: str
"""
self._phase = phase
@property
def project(self):
"""Gets the project of this V1AuditFindRequest. # noqa: E501
:return: The project of this V1AuditFindRequest. # noqa: E501
:rtype: str
"""
return self._project
@project.setter
def project(self, project):
"""Sets the project of this V1AuditFindRequest.
:param project: The project of this V1AuditFindRequest. # noqa: E501
:type: str
"""
self._project = project
@property
def remote_addr(self):
"""Gets the remote_addr of this V1AuditFindRequest. # noqa: E501
:return: The remote_addr of this V1AuditFindRequest. # noqa: E501
:rtype: str
"""
return self._remote_addr
@remote_addr.setter
def remote_addr(self, remote_addr):
"""Sets the remote_addr of this V1AuditFindRequest.
:param remote_addr: The remote_addr of this V1AuditFindRequest. # noqa: E501
:type: str
"""
self._remote_addr = remote_addr
@property
def rqid(self):
"""Gets the rqid of this V1AuditFindRequest. # noqa: E501
:return: The rqid of this V1AuditFindRequest. # noqa: E501
:rtype: str
"""
return self._rqid
@rqid.setter
def rqid(self, rqid):
"""Sets the rqid of this V1AuditFindRequest.
:param rqid: The rqid of this V1AuditFindRequest. # noqa: E501
:type: str
"""
self._rqid = rqid
@property
def status_code(self):
"""Gets the status_code of this V1AuditFindRequest. # noqa: E501
:return: The status_code of this V1AuditFindRequest. # noqa: E501
:rtype: int
"""
return self._status_code
@status_code.setter
def status_code(self, status_code):
"""Sets the status_code of this V1AuditFindRequest.
:param status_code: The status_code of this V1AuditFindRequest. # noqa: E501
:type: int
"""
self._status_code = status_code
@property
def tenant(self):
"""Gets the tenant of this V1AuditFindRequest. # noqa: E501
:return: The tenant of this V1AuditFindRequest. # noqa: E501
:rtype: str
"""
return self._tenant
@tenant.setter
def tenant(self, tenant):
"""Sets the tenant of this V1AuditFindRequest.
:param tenant: The tenant of this V1AuditFindRequest. # noqa: E501
:type: str
"""
self._tenant = tenant
@property
def to(self):
"""Gets the to of this V1AuditFindRequest. # noqa: E501
:return: The to of this V1AuditFindRequest. # noqa: E501
:rtype: datetime
"""
return self._to
@to.setter
def to(self, to):
"""Sets the to of this V1AuditFindRequest.
:param to: The to of this V1AuditFindRequest. # noqa: E501
:type: datetime
"""
self._to = to
@property
def type(self):
"""Gets the type of this V1AuditFindRequest. # noqa: E501
:return: The type of this V1AuditFindRequest. # noqa: E501
:rtype: str
"""
return self._type
@type.setter
def type(self, type):
"""Sets the type of this V1AuditFindRequest.
:param type: The type of this V1AuditFindRequest. # noqa: E501
:type: str
"""
self._type = type
@property
def user(self):
"""Gets the user of this V1AuditFindRequest. # noqa: E501
:return: The user of this V1AuditFindRequest. # noqa: E501
:rtype: str
"""
return self._user
@user.setter
def user(self, user):
"""Sets the user of this V1AuditFindRequest.
:param user: The user of this V1AuditFindRequest. # noqa: E501
:type: str
"""
self._user = user
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(V1AuditFindRequest, 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, V1AuditFindRequest):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other