-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathv1_audit_response.py
More file actions
453 lines (332 loc) · 11.3 KB
/
v1_audit_response.py
File metadata and controls
453 lines (332 loc) · 11.3 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
# 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.41.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
import pprint
import re # noqa: F401
import six
class V1AuditResponse(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',
'path': 'str',
'phase': 'str',
'remote_addr': 'str',
'rqid': 'str',
'status_code': 'int',
'tenant': 'str',
'timestamp': 'datetime',
'type': 'str',
'user': 'str'
}
attribute_map = {
'body': 'body',
'component': 'component',
'detail': 'detail',
'error': 'error',
'forwarded_for': 'forwarded_for',
'path': 'path',
'phase': 'phase',
'remote_addr': 'remote_addr',
'rqid': 'rqid',
'status_code': 'status_code',
'tenant': 'tenant',
'timestamp': 'timestamp',
'type': 'type',
'user': 'user'
}
def __init__(self, body=None, component=None, detail=None, error=None, forwarded_for=None, path=None, phase=None, remote_addr=None, rqid=None, status_code=None, tenant=None, timestamp=None, type=None, user=None): # noqa: E501
"""V1AuditResponse - a model defined in Swagger""" # noqa: E501
self._body = None
self._component = None
self._detail = None
self._error = None
self._forwarded_for = None
self._path = None
self._phase = None
self._remote_addr = None
self._rqid = None
self._status_code = None
self._tenant = None
self._timestamp = 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 path is not None:
self.path = path
if phase is not None:
self.phase = phase
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 timestamp is not None:
self.timestamp = timestamp
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 V1AuditResponse. # noqa: E501
:return: The body of this V1AuditResponse. # noqa: E501
:rtype: str
"""
return self._body
@body.setter
def body(self, body):
"""Sets the body of this V1AuditResponse.
:param body: The body of this V1AuditResponse. # noqa: E501
:type: str
"""
self._body = body
@property
def component(self):
"""Gets the component of this V1AuditResponse. # noqa: E501
:return: The component of this V1AuditResponse. # noqa: E501
:rtype: str
"""
return self._component
@component.setter
def component(self, component):
"""Sets the component of this V1AuditResponse.
:param component: The component of this V1AuditResponse. # noqa: E501
:type: str
"""
self._component = component
@property
def detail(self):
"""Gets the detail of this V1AuditResponse. # noqa: E501
:return: The detail of this V1AuditResponse. # noqa: E501
:rtype: str
"""
return self._detail
@detail.setter
def detail(self, detail):
"""Sets the detail of this V1AuditResponse.
:param detail: The detail of this V1AuditResponse. # noqa: E501
:type: str
"""
self._detail = detail
@property
def error(self):
"""Gets the error of this V1AuditResponse. # noqa: E501
:return: The error of this V1AuditResponse. # noqa: E501
:rtype: str
"""
return self._error
@error.setter
def error(self, error):
"""Sets the error of this V1AuditResponse.
:param error: The error of this V1AuditResponse. # noqa: E501
:type: str
"""
self._error = error
@property
def forwarded_for(self):
"""Gets the forwarded_for of this V1AuditResponse. # noqa: E501
:return: The forwarded_for of this V1AuditResponse. # noqa: E501
:rtype: str
"""
return self._forwarded_for
@forwarded_for.setter
def forwarded_for(self, forwarded_for):
"""Sets the forwarded_for of this V1AuditResponse.
:param forwarded_for: The forwarded_for of this V1AuditResponse. # noqa: E501
:type: str
"""
self._forwarded_for = forwarded_for
@property
def path(self):
"""Gets the path of this V1AuditResponse. # noqa: E501
:return: The path of this V1AuditResponse. # noqa: E501
:rtype: str
"""
return self._path
@path.setter
def path(self, path):
"""Sets the path of this V1AuditResponse.
:param path: The path of this V1AuditResponse. # noqa: E501
:type: str
"""
self._path = path
@property
def phase(self):
"""Gets the phase of this V1AuditResponse. # noqa: E501
:return: The phase of this V1AuditResponse. # noqa: E501
:rtype: str
"""
return self._phase
@phase.setter
def phase(self, phase):
"""Sets the phase of this V1AuditResponse.
:param phase: The phase of this V1AuditResponse. # noqa: E501
:type: str
"""
self._phase = phase
@property
def remote_addr(self):
"""Gets the remote_addr of this V1AuditResponse. # noqa: E501
:return: The remote_addr of this V1AuditResponse. # noqa: E501
:rtype: str
"""
return self._remote_addr
@remote_addr.setter
def remote_addr(self, remote_addr):
"""Sets the remote_addr of this V1AuditResponse.
:param remote_addr: The remote_addr of this V1AuditResponse. # noqa: E501
:type: str
"""
self._remote_addr = remote_addr
@property
def rqid(self):
"""Gets the rqid of this V1AuditResponse. # noqa: E501
:return: The rqid of this V1AuditResponse. # noqa: E501
:rtype: str
"""
return self._rqid
@rqid.setter
def rqid(self, rqid):
"""Sets the rqid of this V1AuditResponse.
:param rqid: The rqid of this V1AuditResponse. # noqa: E501
:type: str
"""
self._rqid = rqid
@property
def status_code(self):
"""Gets the status_code of this V1AuditResponse. # noqa: E501
:return: The status_code of this V1AuditResponse. # noqa: E501
:rtype: int
"""
return self._status_code
@status_code.setter
def status_code(self, status_code):
"""Sets the status_code of this V1AuditResponse.
:param status_code: The status_code of this V1AuditResponse. # noqa: E501
:type: int
"""
self._status_code = status_code
@property
def tenant(self):
"""Gets the tenant of this V1AuditResponse. # noqa: E501
:return: The tenant of this V1AuditResponse. # noqa: E501
:rtype: str
"""
return self._tenant
@tenant.setter
def tenant(self, tenant):
"""Sets the tenant of this V1AuditResponse.
:param tenant: The tenant of this V1AuditResponse. # noqa: E501
:type: str
"""
self._tenant = tenant
@property
def timestamp(self):
"""Gets the timestamp of this V1AuditResponse. # noqa: E501
:return: The timestamp of this V1AuditResponse. # noqa: E501
:rtype: datetime
"""
return self._timestamp
@timestamp.setter
def timestamp(self, timestamp):
"""Sets the timestamp of this V1AuditResponse.
:param timestamp: The timestamp of this V1AuditResponse. # noqa: E501
:type: datetime
"""
self._timestamp = timestamp
@property
def type(self):
"""Gets the type of this V1AuditResponse. # noqa: E501
:return: The type of this V1AuditResponse. # noqa: E501
:rtype: str
"""
return self._type
@type.setter
def type(self, type):
"""Sets the type of this V1AuditResponse.
:param type: The type of this V1AuditResponse. # noqa: E501
:type: str
"""
self._type = type
@property
def user(self):
"""Gets the user of this V1AuditResponse. # noqa: E501
:return: The user of this V1AuditResponse. # noqa: E501
:rtype: str
"""
return self._user
@user.setter
def user(self, user):
"""Sets the user of this V1AuditResponse.
:param user: The user of this V1AuditResponse. # 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(V1AuditResponse, 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, V1AuditResponse):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other