-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetal_switch_bgp_port_state.py
More file actions
278 lines (206 loc) · 8.77 KB
/
metal_switch_bgp_port_state.py
File metadata and controls
278 lines (206 loc) · 8.77 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
# 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.39.7
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
import pprint
import re # noqa: F401
import six
class MetalSwitchBGPPortState(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 = {
'accepted_prefix_counter': 'int',
'bgp_state': 'str',
'bgp_timer_up_established': 'int',
'neighbor': 'str',
'peer_group': 'str',
'sent_prefix_counter': 'int',
'vrf_name': 'str'
}
attribute_map = {
'accepted_prefix_counter': 'AcceptedPrefixCounter',
'bgp_state': 'BgpState',
'bgp_timer_up_established': 'BgpTimerUpEstablished',
'neighbor': 'Neighbor',
'peer_group': 'PeerGroup',
'sent_prefix_counter': 'SentPrefixCounter',
'vrf_name': 'VrfName'
}
def __init__(self, accepted_prefix_counter=None, bgp_state=None, bgp_timer_up_established=None, neighbor=None, peer_group=None, sent_prefix_counter=None, vrf_name=None): # noqa: E501
"""MetalSwitchBGPPortState - a model defined in Swagger""" # noqa: E501
self._accepted_prefix_counter = None
self._bgp_state = None
self._bgp_timer_up_established = None
self._neighbor = None
self._peer_group = None
self._sent_prefix_counter = None
self._vrf_name = None
self.discriminator = None
self.accepted_prefix_counter = accepted_prefix_counter
self.bgp_state = bgp_state
self.bgp_timer_up_established = bgp_timer_up_established
self.neighbor = neighbor
self.peer_group = peer_group
self.sent_prefix_counter = sent_prefix_counter
self.vrf_name = vrf_name
@property
def accepted_prefix_counter(self):
"""Gets the accepted_prefix_counter of this MetalSwitchBGPPortState. # noqa: E501
:return: The accepted_prefix_counter of this MetalSwitchBGPPortState. # noqa: E501
:rtype: int
"""
return self._accepted_prefix_counter
@accepted_prefix_counter.setter
def accepted_prefix_counter(self, accepted_prefix_counter):
"""Sets the accepted_prefix_counter of this MetalSwitchBGPPortState.
:param accepted_prefix_counter: The accepted_prefix_counter of this MetalSwitchBGPPortState. # noqa: E501
:type: int
"""
if accepted_prefix_counter is None:
raise ValueError("Invalid value for `accepted_prefix_counter`, must not be `None`") # noqa: E501
self._accepted_prefix_counter = accepted_prefix_counter
@property
def bgp_state(self):
"""Gets the bgp_state of this MetalSwitchBGPPortState. # noqa: E501
:return: The bgp_state of this MetalSwitchBGPPortState. # noqa: E501
:rtype: str
"""
return self._bgp_state
@bgp_state.setter
def bgp_state(self, bgp_state):
"""Sets the bgp_state of this MetalSwitchBGPPortState.
:param bgp_state: The bgp_state of this MetalSwitchBGPPortState. # noqa: E501
:type: str
"""
if bgp_state is None:
raise ValueError("Invalid value for `bgp_state`, must not be `None`") # noqa: E501
self._bgp_state = bgp_state
@property
def bgp_timer_up_established(self):
"""Gets the bgp_timer_up_established of this MetalSwitchBGPPortState. # noqa: E501
:return: The bgp_timer_up_established of this MetalSwitchBGPPortState. # noqa: E501
:rtype: int
"""
return self._bgp_timer_up_established
@bgp_timer_up_established.setter
def bgp_timer_up_established(self, bgp_timer_up_established):
"""Sets the bgp_timer_up_established of this MetalSwitchBGPPortState.
:param bgp_timer_up_established: The bgp_timer_up_established of this MetalSwitchBGPPortState. # noqa: E501
:type: int
"""
if bgp_timer_up_established is None:
raise ValueError("Invalid value for `bgp_timer_up_established`, must not be `None`") # noqa: E501
self._bgp_timer_up_established = bgp_timer_up_established
@property
def neighbor(self):
"""Gets the neighbor of this MetalSwitchBGPPortState. # noqa: E501
:return: The neighbor of this MetalSwitchBGPPortState. # noqa: E501
:rtype: str
"""
return self._neighbor
@neighbor.setter
def neighbor(self, neighbor):
"""Sets the neighbor of this MetalSwitchBGPPortState.
:param neighbor: The neighbor of this MetalSwitchBGPPortState. # noqa: E501
:type: str
"""
if neighbor is None:
raise ValueError("Invalid value for `neighbor`, must not be `None`") # noqa: E501
self._neighbor = neighbor
@property
def peer_group(self):
"""Gets the peer_group of this MetalSwitchBGPPortState. # noqa: E501
:return: The peer_group of this MetalSwitchBGPPortState. # noqa: E501
:rtype: str
"""
return self._peer_group
@peer_group.setter
def peer_group(self, peer_group):
"""Sets the peer_group of this MetalSwitchBGPPortState.
:param peer_group: The peer_group of this MetalSwitchBGPPortState. # noqa: E501
:type: str
"""
if peer_group is None:
raise ValueError("Invalid value for `peer_group`, must not be `None`") # noqa: E501
self._peer_group = peer_group
@property
def sent_prefix_counter(self):
"""Gets the sent_prefix_counter of this MetalSwitchBGPPortState. # noqa: E501
:return: The sent_prefix_counter of this MetalSwitchBGPPortState. # noqa: E501
:rtype: int
"""
return self._sent_prefix_counter
@sent_prefix_counter.setter
def sent_prefix_counter(self, sent_prefix_counter):
"""Sets the sent_prefix_counter of this MetalSwitchBGPPortState.
:param sent_prefix_counter: The sent_prefix_counter of this MetalSwitchBGPPortState. # noqa: E501
:type: int
"""
if sent_prefix_counter is None:
raise ValueError("Invalid value for `sent_prefix_counter`, must not be `None`") # noqa: E501
self._sent_prefix_counter = sent_prefix_counter
@property
def vrf_name(self):
"""Gets the vrf_name of this MetalSwitchBGPPortState. # noqa: E501
:return: The vrf_name of this MetalSwitchBGPPortState. # noqa: E501
:rtype: str
"""
return self._vrf_name
@vrf_name.setter
def vrf_name(self, vrf_name):
"""Sets the vrf_name of this MetalSwitchBGPPortState.
:param vrf_name: The vrf_name of this MetalSwitchBGPPortState. # noqa: E501
:type: str
"""
if vrf_name is None:
raise ValueError("Invalid value for `vrf_name`, must not be `None`") # noqa: E501
self._vrf_name = vrf_name
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(MetalSwitchBGPPortState, 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, MetalSwitchBGPPortState):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other