-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathv1_pod_status.py
542 lines (406 loc) · 25.4 KB
/
v1_pod_status.py
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
532
533
534
535
536
537
538
539
540
541
542
# coding: utf-8
"""
Kubernetes
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
The version of the OpenAPI document: release-1.32
Generated by: https://openapi-generator.tech
"""
import pprint
import re # noqa: F401
import six
from kubernetes.client.configuration import Configuration
class V1PodStatus(object):
"""NOTE: This class is auto generated by OpenAPI Generator.
Ref: https://openapi-generator.tech
Do not edit the class manually.
"""
"""
Attributes:
openapi_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.
"""
openapi_types = {
'conditions': 'list[V1PodCondition]',
'container_statuses': 'list[V1ContainerStatus]',
'ephemeral_container_statuses': 'list[V1ContainerStatus]',
'host_ip': 'str',
'host_i_ps': 'list[V1HostIP]',
'init_container_statuses': 'list[V1ContainerStatus]',
'message': 'str',
'nominated_node_name': 'str',
'phase': 'str',
'pod_ip': 'str',
'pod_i_ps': 'list[V1PodIP]',
'qos_class': 'str',
'reason': 'str',
'resize': 'str',
'resource_claim_statuses': 'list[V1PodResourceClaimStatus]',
'start_time': 'datetime'
}
attribute_map = {
'conditions': 'conditions',
'container_statuses': 'containerStatuses',
'ephemeral_container_statuses': 'ephemeralContainerStatuses',
'host_ip': 'hostIP',
'host_i_ps': 'hostIPs',
'init_container_statuses': 'initContainerStatuses',
'message': 'message',
'nominated_node_name': 'nominatedNodeName',
'phase': 'phase',
'pod_ip': 'podIP',
'pod_i_ps': 'podIPs',
'qos_class': 'qosClass',
'reason': 'reason',
'resize': 'resize',
'resource_claim_statuses': 'resourceClaimStatuses',
'start_time': 'startTime'
}
def __init__(self, conditions=None, container_statuses=None, ephemeral_container_statuses=None, host_ip=None, host_i_ps=None, init_container_statuses=None, message=None, nominated_node_name=None, phase=None, pod_ip=None, pod_i_ps=None, qos_class=None, reason=None, resize=None, resource_claim_statuses=None, start_time=None, local_vars_configuration=None): # noqa: E501
"""V1PodStatus - a model defined in OpenAPI""" # noqa: E501
if local_vars_configuration is None:
local_vars_configuration = Configuration()
self.local_vars_configuration = local_vars_configuration
self._conditions = None
self._container_statuses = None
self._ephemeral_container_statuses = None
self._host_ip = None
self._host_i_ps = None
self._init_container_statuses = None
self._message = None
self._nominated_node_name = None
self._phase = None
self._pod_ip = None
self._pod_i_ps = None
self._qos_class = None
self._reason = None
self._resize = None
self._resource_claim_statuses = None
self._start_time = None
self.discriminator = None
if conditions is not None:
self.conditions = conditions
if container_statuses is not None:
self.container_statuses = container_statuses
if ephemeral_container_statuses is not None:
self.ephemeral_container_statuses = ephemeral_container_statuses
if host_ip is not None:
self.host_ip = host_ip
if host_i_ps is not None:
self.host_i_ps = host_i_ps
if init_container_statuses is not None:
self.init_container_statuses = init_container_statuses
if message is not None:
self.message = message
if nominated_node_name is not None:
self.nominated_node_name = nominated_node_name
if phase is not None:
self.phase = phase
if pod_ip is not None:
self.pod_ip = pod_ip
if pod_i_ps is not None:
self.pod_i_ps = pod_i_ps
if qos_class is not None:
self.qos_class = qos_class
if reason is not None:
self.reason = reason
if resize is not None:
self.resize = resize
if resource_claim_statuses is not None:
self.resource_claim_statuses = resource_claim_statuses
if start_time is not None:
self.start_time = start_time
@property
def conditions(self):
"""Gets the conditions of this V1PodStatus. # noqa: E501
Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions # noqa: E501
:return: The conditions of this V1PodStatus. # noqa: E501
:rtype: list[V1PodCondition]
"""
return self._conditions
@conditions.setter
def conditions(self, conditions):
"""Sets the conditions of this V1PodStatus.
Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions # noqa: E501
:param conditions: The conditions of this V1PodStatus. # noqa: E501
:type: list[V1PodCondition]
"""
self._conditions = conditions
@property
def container_statuses(self):
"""Gets the container_statuses of this V1PodStatus. # noqa: E501
Statuses of containers in this pod. Each container in the pod should have at most one status in this list, and all statuses should be for containers in the pod. However this is not enforced. If a status for a non-existent container is present in the list, or the list has duplicate names, the behavior of various Kubernetes components is not defined and those statuses might be ignored. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status # noqa: E501
:return: The container_statuses of this V1PodStatus. # noqa: E501
:rtype: list[V1ContainerStatus]
"""
return self._container_statuses
@container_statuses.setter
def container_statuses(self, container_statuses):
"""Sets the container_statuses of this V1PodStatus.
Statuses of containers in this pod. Each container in the pod should have at most one status in this list, and all statuses should be for containers in the pod. However this is not enforced. If a status for a non-existent container is present in the list, or the list has duplicate names, the behavior of various Kubernetes components is not defined and those statuses might be ignored. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status # noqa: E501
:param container_statuses: The container_statuses of this V1PodStatus. # noqa: E501
:type: list[V1ContainerStatus]
"""
self._container_statuses = container_statuses
@property
def ephemeral_container_statuses(self):
"""Gets the ephemeral_container_statuses of this V1PodStatus. # noqa: E501
Statuses for any ephemeral containers that have run in this pod. Each ephemeral container in the pod should have at most one status in this list, and all statuses should be for containers in the pod. However this is not enforced. If a status for a non-existent container is present in the list, or the list has duplicate names, the behavior of various Kubernetes components is not defined and those statuses might be ignored. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status # noqa: E501
:return: The ephemeral_container_statuses of this V1PodStatus. # noqa: E501
:rtype: list[V1ContainerStatus]
"""
return self._ephemeral_container_statuses
@ephemeral_container_statuses.setter
def ephemeral_container_statuses(self, ephemeral_container_statuses):
"""Sets the ephemeral_container_statuses of this V1PodStatus.
Statuses for any ephemeral containers that have run in this pod. Each ephemeral container in the pod should have at most one status in this list, and all statuses should be for containers in the pod. However this is not enforced. If a status for a non-existent container is present in the list, or the list has duplicate names, the behavior of various Kubernetes components is not defined and those statuses might be ignored. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status # noqa: E501
:param ephemeral_container_statuses: The ephemeral_container_statuses of this V1PodStatus. # noqa: E501
:type: list[V1ContainerStatus]
"""
self._ephemeral_container_statuses = ephemeral_container_statuses
@property
def host_ip(self):
"""Gets the host_ip of this V1PodStatus. # noqa: E501
hostIP holds the IP address of the host to which the pod is assigned. Empty if the pod has not started yet. A pod can be assigned to a node that has a problem in kubelet which in turns mean that HostIP will not be updated even if there is a node is assigned to pod # noqa: E501
:return: The host_ip of this V1PodStatus. # noqa: E501
:rtype: str
"""
return self._host_ip
@host_ip.setter
def host_ip(self, host_ip):
"""Sets the host_ip of this V1PodStatus.
hostIP holds the IP address of the host to which the pod is assigned. Empty if the pod has not started yet. A pod can be assigned to a node that has a problem in kubelet which in turns mean that HostIP will not be updated even if there is a node is assigned to pod # noqa: E501
:param host_ip: The host_ip of this V1PodStatus. # noqa: E501
:type: str
"""
self._host_ip = host_ip
@property
def host_i_ps(self):
"""Gets the host_i_ps of this V1PodStatus. # noqa: E501
hostIPs holds the IP addresses allocated to the host. If this field is specified, the first entry must match the hostIP field. This list is empty if the pod has not started yet. A pod can be assigned to a node that has a problem in kubelet which in turns means that HostIPs will not be updated even if there is a node is assigned to this pod. # noqa: E501
:return: The host_i_ps of this V1PodStatus. # noqa: E501
:rtype: list[V1HostIP]
"""
return self._host_i_ps
@host_i_ps.setter
def host_i_ps(self, host_i_ps):
"""Sets the host_i_ps of this V1PodStatus.
hostIPs holds the IP addresses allocated to the host. If this field is specified, the first entry must match the hostIP field. This list is empty if the pod has not started yet. A pod can be assigned to a node that has a problem in kubelet which in turns means that HostIPs will not be updated even if there is a node is assigned to this pod. # noqa: E501
:param host_i_ps: The host_i_ps of this V1PodStatus. # noqa: E501
:type: list[V1HostIP]
"""
self._host_i_ps = host_i_ps
@property
def init_container_statuses(self):
"""Gets the init_container_statuses of this V1PodStatus. # noqa: E501
Statuses of init containers in this pod. The most recent successful non-restartable init container will have ready = true, the most recently started container will have startTime set. Each init container in the pod should have at most one status in this list, and all statuses should be for containers in the pod. However this is not enforced. If a status for a non-existent container is present in the list, or the list has duplicate names, the behavior of various Kubernetes components is not defined and those statuses might be ignored. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-and-container-status # noqa: E501
:return: The init_container_statuses of this V1PodStatus. # noqa: E501
:rtype: list[V1ContainerStatus]
"""
return self._init_container_statuses
@init_container_statuses.setter
def init_container_statuses(self, init_container_statuses):
"""Sets the init_container_statuses of this V1PodStatus.
Statuses of init containers in this pod. The most recent successful non-restartable init container will have ready = true, the most recently started container will have startTime set. Each init container in the pod should have at most one status in this list, and all statuses should be for containers in the pod. However this is not enforced. If a status for a non-existent container is present in the list, or the list has duplicate names, the behavior of various Kubernetes components is not defined and those statuses might be ignored. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-and-container-status # noqa: E501
:param init_container_statuses: The init_container_statuses of this V1PodStatus. # noqa: E501
:type: list[V1ContainerStatus]
"""
self._init_container_statuses = init_container_statuses
@property
def message(self):
"""Gets the message of this V1PodStatus. # noqa: E501
A human readable message indicating details about why the pod is in this condition. # noqa: E501
:return: The message of this V1PodStatus. # noqa: E501
:rtype: str
"""
return self._message
@message.setter
def message(self, message):
"""Sets the message of this V1PodStatus.
A human readable message indicating details about why the pod is in this condition. # noqa: E501
:param message: The message of this V1PodStatus. # noqa: E501
:type: str
"""
self._message = message
@property
def nominated_node_name(self):
"""Gets the nominated_node_name of this V1PodStatus. # noqa: E501
nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods. This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption. As a result, this field may be different than PodSpec.nodeName when the pod is scheduled. # noqa: E501
:return: The nominated_node_name of this V1PodStatus. # noqa: E501
:rtype: str
"""
return self._nominated_node_name
@nominated_node_name.setter
def nominated_node_name(self, nominated_node_name):
"""Sets the nominated_node_name of this V1PodStatus.
nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods. This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption. As a result, this field may be different than PodSpec.nodeName when the pod is scheduled. # noqa: E501
:param nominated_node_name: The nominated_node_name of this V1PodStatus. # noqa: E501
:type: str
"""
self._nominated_node_name = nominated_node_name
@property
def phase(self):
"""Gets the phase of this V1PodStatus. # noqa: E501
The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod's status. There are five possible phase values: Pending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while. Running: The pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase # noqa: E501
:return: The phase of this V1PodStatus. # noqa: E501
:rtype: str
"""
return self._phase
@phase.setter
def phase(self, phase):
"""Sets the phase of this V1PodStatus.
The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod's status. There are five possible phase values: Pending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while. Running: The pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase # noqa: E501
:param phase: The phase of this V1PodStatus. # noqa: E501
:type: str
"""
self._phase = phase
@property
def pod_ip(self):
"""Gets the pod_ip of this V1PodStatus. # noqa: E501
podIP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated. # noqa: E501
:return: The pod_ip of this V1PodStatus. # noqa: E501
:rtype: str
"""
return self._pod_ip
@pod_ip.setter
def pod_ip(self, pod_ip):
"""Sets the pod_ip of this V1PodStatus.
podIP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated. # noqa: E501
:param pod_ip: The pod_ip of this V1PodStatus. # noqa: E501
:type: str
"""
self._pod_ip = pod_ip
@property
def pod_i_ps(self):
"""Gets the pod_i_ps of this V1PodStatus. # noqa: E501
podIPs holds the IP addresses allocated to the pod. If this field is specified, the 0th entry must match the podIP field. Pods may be allocated at most 1 value for each of IPv4 and IPv6. This list is empty if no IPs have been allocated yet. # noqa: E501
:return: The pod_i_ps of this V1PodStatus. # noqa: E501
:rtype: list[V1PodIP]
"""
return self._pod_i_ps
@pod_i_ps.setter
def pod_i_ps(self, pod_i_ps):
"""Sets the pod_i_ps of this V1PodStatus.
podIPs holds the IP addresses allocated to the pod. If this field is specified, the 0th entry must match the podIP field. Pods may be allocated at most 1 value for each of IPv4 and IPv6. This list is empty if no IPs have been allocated yet. # noqa: E501
:param pod_i_ps: The pod_i_ps of this V1PodStatus. # noqa: E501
:type: list[V1PodIP]
"""
self._pod_i_ps = pod_i_ps
@property
def qos_class(self):
"""Gets the qos_class of this V1PodStatus. # noqa: E501
The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-qos/#quality-of-service-classes # noqa: E501
:return: The qos_class of this V1PodStatus. # noqa: E501
:rtype: str
"""
return self._qos_class
@qos_class.setter
def qos_class(self, qos_class):
"""Sets the qos_class of this V1PodStatus.
The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-qos/#quality-of-service-classes # noqa: E501
:param qos_class: The qos_class of this V1PodStatus. # noqa: E501
:type: str
"""
self._qos_class = qos_class
@property
def reason(self):
"""Gets the reason of this V1PodStatus. # noqa: E501
A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted' # noqa: E501
:return: The reason of this V1PodStatus. # noqa: E501
:rtype: str
"""
return self._reason
@reason.setter
def reason(self, reason):
"""Sets the reason of this V1PodStatus.
A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted' # noqa: E501
:param reason: The reason of this V1PodStatus. # noqa: E501
:type: str
"""
self._reason = reason
@property
def resize(self):
"""Gets the resize of this V1PodStatus. # noqa: E501
Status of resources resize desired for pod's containers. It is empty if no resources resize is pending. Any changes to container resources will automatically set this to \"Proposed\" # noqa: E501
:return: The resize of this V1PodStatus. # noqa: E501
:rtype: str
"""
return self._resize
@resize.setter
def resize(self, resize):
"""Sets the resize of this V1PodStatus.
Status of resources resize desired for pod's containers. It is empty if no resources resize is pending. Any changes to container resources will automatically set this to \"Proposed\" # noqa: E501
:param resize: The resize of this V1PodStatus. # noqa: E501
:type: str
"""
self._resize = resize
@property
def resource_claim_statuses(self):
"""Gets the resource_claim_statuses of this V1PodStatus. # noqa: E501
Status of resource claims. # noqa: E501
:return: The resource_claim_statuses of this V1PodStatus. # noqa: E501
:rtype: list[V1PodResourceClaimStatus]
"""
return self._resource_claim_statuses
@resource_claim_statuses.setter
def resource_claim_statuses(self, resource_claim_statuses):
"""Sets the resource_claim_statuses of this V1PodStatus.
Status of resource claims. # noqa: E501
:param resource_claim_statuses: The resource_claim_statuses of this V1PodStatus. # noqa: E501
:type: list[V1PodResourceClaimStatus]
"""
self._resource_claim_statuses = resource_claim_statuses
@property
def start_time(self):
"""Gets the start_time of this V1PodStatus. # noqa: E501
RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod. # noqa: E501
:return: The start_time of this V1PodStatus. # noqa: E501
:rtype: datetime
"""
return self._start_time
@start_time.setter
def start_time(self, start_time):
"""Sets the start_time of this V1PodStatus.
RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod. # noqa: E501
:param start_time: The start_time of this V1PodStatus. # noqa: E501
:type: datetime
"""
self._start_time = start_time
def to_dict(self):
"""Returns the model properties as a dict"""
result = {}
for attr, _ in six.iteritems(self.openapi_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
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, V1PodStatus):
return False
return self.to_dict() == other.to_dict()
def __ne__(self, other):
"""Returns true if both objects are not equal"""
if not isinstance(other, V1PodStatus):
return True
return self.to_dict() != other.to_dict()