huaweicloudsdkgeip 3.1.88__py2.py3-none-any.whl → 3.1.90__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of huaweicloudsdkgeip might be problematic. Click here for more details.
- huaweicloudsdkgeip/v3/__init__.py +1 -1
- huaweicloudsdkgeip/v3/model/__init__.py +1 -1
- huaweicloudsdkgeip/v3/model/batch_create_global_eip_job.py +173 -0
- huaweicloudsdkgeip/v3/model/batch_create_global_eip_response.py +23 -19
- huaweicloudsdkgeip/v3/model/count_geip_segments.py +3 -3
- huaweicloudsdkgeip/v3/model/count_global_eip_segment_response.py +18 -18
- huaweicloudsdkgeip/v3/model/count_global_eips_response.py +19 -48
- huaweicloudsdkgeip/v3/model/detach_internet_bandwidth.py +3 -3
- {huaweicloudsdkgeip-3.1.88.dist-info → huaweicloudsdkgeip-3.1.90.dist-info}/METADATA +2 -2
- {huaweicloudsdkgeip-3.1.88.dist-info → huaweicloudsdkgeip-3.1.90.dist-info}/RECORD +13 -13
- huaweicloudsdkgeip/v3/model/batch_create_global_eip.py +0 -738
- {huaweicloudsdkgeip-3.1.88.dist-info → huaweicloudsdkgeip-3.1.90.dist-info}/LICENSE +0 -0
- {huaweicloudsdkgeip-3.1.88.dist-info → huaweicloudsdkgeip-3.1.90.dist-info}/WHEEL +0 -0
- {huaweicloudsdkgeip-3.1.88.dist-info → huaweicloudsdkgeip-3.1.90.dist-info}/top_level.txt +0 -0
|
@@ -36,7 +36,7 @@ from huaweicloudsdkgeip.v3.model.batch_attach_internet_bandwidths_global_eip_req
|
|
|
36
36
|
from huaweicloudsdkgeip.v3.model.batch_attach_internet_bandwidths_global_eip_segment_request_body import BatchAttachInternetBandwidthsGlobalEipSegmentRequestBody
|
|
37
37
|
from huaweicloudsdkgeip.v3.model.batch_create_geip_segment_tags_request import BatchCreateGeipSegmentTagsRequest
|
|
38
38
|
from huaweicloudsdkgeip.v3.model.batch_create_geip_segment_tags_response import BatchCreateGeipSegmentTagsResponse
|
|
39
|
-
from huaweicloudsdkgeip.v3.model.
|
|
39
|
+
from huaweicloudsdkgeip.v3.model.batch_create_global_eip_job import BatchCreateGlobalEipJob
|
|
40
40
|
from huaweicloudsdkgeip.v3.model.batch_create_global_eip_request import BatchCreateGlobalEipRequest
|
|
41
41
|
from huaweicloudsdkgeip.v3.model.batch_create_global_eip_request_body import BatchCreateGlobalEipRequestBody
|
|
42
42
|
from huaweicloudsdkgeip.v3.model.batch_create_global_eip_request_body_global_eip import BatchCreateGlobalEipRequestBodyGlobalEip
|
|
@@ -34,7 +34,7 @@ from huaweicloudsdkgeip.v3.model.batch_attach_internet_bandwidths_global_eip_req
|
|
|
34
34
|
from huaweicloudsdkgeip.v3.model.batch_attach_internet_bandwidths_global_eip_segment_request_body import BatchAttachInternetBandwidthsGlobalEipSegmentRequestBody
|
|
35
35
|
from huaweicloudsdkgeip.v3.model.batch_create_geip_segment_tags_request import BatchCreateGeipSegmentTagsRequest
|
|
36
36
|
from huaweicloudsdkgeip.v3.model.batch_create_geip_segment_tags_response import BatchCreateGeipSegmentTagsResponse
|
|
37
|
-
from huaweicloudsdkgeip.v3.model.
|
|
37
|
+
from huaweicloudsdkgeip.v3.model.batch_create_global_eip_job import BatchCreateGlobalEipJob
|
|
38
38
|
from huaweicloudsdkgeip.v3.model.batch_create_global_eip_request import BatchCreateGlobalEipRequest
|
|
39
39
|
from huaweicloudsdkgeip.v3.model.batch_create_global_eip_request_body import BatchCreateGlobalEipRequestBody
|
|
40
40
|
from huaweicloudsdkgeip.v3.model.batch_create_global_eip_request_body_global_eip import BatchCreateGlobalEipRequestBodyGlobalEip
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
import six
|
|
4
|
+
|
|
5
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class BatchCreateGlobalEipJob:
|
|
9
|
+
|
|
10
|
+
"""
|
|
11
|
+
Attributes:
|
|
12
|
+
openapi_types (dict): The key is attribute name
|
|
13
|
+
and the value is attribute type.
|
|
14
|
+
attribute_map (dict): The key is attribute name
|
|
15
|
+
and the value is json key in definition.
|
|
16
|
+
"""
|
|
17
|
+
sensitive_list = []
|
|
18
|
+
|
|
19
|
+
openapi_types = {
|
|
20
|
+
'id': 'str',
|
|
21
|
+
'name': 'str',
|
|
22
|
+
'job_id': 'str'
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
attribute_map = {
|
|
26
|
+
'id': 'id',
|
|
27
|
+
'name': 'name',
|
|
28
|
+
'job_id': 'job_id'
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
def __init__(self, id=None, name=None, job_id=None):
|
|
32
|
+
"""BatchCreateGlobalEipJob
|
|
33
|
+
|
|
34
|
+
The model defined in huaweicloud sdk
|
|
35
|
+
|
|
36
|
+
:param id: 全域弹性公网IP的ID
|
|
37
|
+
:type id: str
|
|
38
|
+
:param name: - 功能说明:全域弹性公网IP名称 - 取值范围:1-64,支持数字、字母、中文、_(下划线)、-(中划线)、.(点)
|
|
39
|
+
:type name: str
|
|
40
|
+
:param job_id: 请求完成的job id
|
|
41
|
+
:type job_id: str
|
|
42
|
+
"""
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
self._id = None
|
|
47
|
+
self._name = None
|
|
48
|
+
self._job_id = None
|
|
49
|
+
self.discriminator = None
|
|
50
|
+
|
|
51
|
+
if id is not None:
|
|
52
|
+
self.id = id
|
|
53
|
+
if name is not None:
|
|
54
|
+
self.name = name
|
|
55
|
+
if job_id is not None:
|
|
56
|
+
self.job_id = job_id
|
|
57
|
+
|
|
58
|
+
@property
|
|
59
|
+
def id(self):
|
|
60
|
+
"""Gets the id of this BatchCreateGlobalEipJob.
|
|
61
|
+
|
|
62
|
+
全域弹性公网IP的ID
|
|
63
|
+
|
|
64
|
+
:return: The id of this BatchCreateGlobalEipJob.
|
|
65
|
+
:rtype: str
|
|
66
|
+
"""
|
|
67
|
+
return self._id
|
|
68
|
+
|
|
69
|
+
@id.setter
|
|
70
|
+
def id(self, id):
|
|
71
|
+
"""Sets the id of this BatchCreateGlobalEipJob.
|
|
72
|
+
|
|
73
|
+
全域弹性公网IP的ID
|
|
74
|
+
|
|
75
|
+
:param id: The id of this BatchCreateGlobalEipJob.
|
|
76
|
+
:type id: str
|
|
77
|
+
"""
|
|
78
|
+
self._id = id
|
|
79
|
+
|
|
80
|
+
@property
|
|
81
|
+
def name(self):
|
|
82
|
+
"""Gets the name of this BatchCreateGlobalEipJob.
|
|
83
|
+
|
|
84
|
+
- 功能说明:全域弹性公网IP名称 - 取值范围:1-64,支持数字、字母、中文、_(下划线)、-(中划线)、.(点)
|
|
85
|
+
|
|
86
|
+
:return: The name of this BatchCreateGlobalEipJob.
|
|
87
|
+
:rtype: str
|
|
88
|
+
"""
|
|
89
|
+
return self._name
|
|
90
|
+
|
|
91
|
+
@name.setter
|
|
92
|
+
def name(self, name):
|
|
93
|
+
"""Sets the name of this BatchCreateGlobalEipJob.
|
|
94
|
+
|
|
95
|
+
- 功能说明:全域弹性公网IP名称 - 取值范围:1-64,支持数字、字母、中文、_(下划线)、-(中划线)、.(点)
|
|
96
|
+
|
|
97
|
+
:param name: The name of this BatchCreateGlobalEipJob.
|
|
98
|
+
:type name: str
|
|
99
|
+
"""
|
|
100
|
+
self._name = name
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
def job_id(self):
|
|
104
|
+
"""Gets the job_id of this BatchCreateGlobalEipJob.
|
|
105
|
+
|
|
106
|
+
请求完成的job id
|
|
107
|
+
|
|
108
|
+
:return: The job_id of this BatchCreateGlobalEipJob.
|
|
109
|
+
:rtype: str
|
|
110
|
+
"""
|
|
111
|
+
return self._job_id
|
|
112
|
+
|
|
113
|
+
@job_id.setter
|
|
114
|
+
def job_id(self, job_id):
|
|
115
|
+
"""Sets the job_id of this BatchCreateGlobalEipJob.
|
|
116
|
+
|
|
117
|
+
请求完成的job id
|
|
118
|
+
|
|
119
|
+
:param job_id: The job_id of this BatchCreateGlobalEipJob.
|
|
120
|
+
:type job_id: str
|
|
121
|
+
"""
|
|
122
|
+
self._job_id = job_id
|
|
123
|
+
|
|
124
|
+
def to_dict(self):
|
|
125
|
+
"""Returns the model properties as a dict"""
|
|
126
|
+
result = {}
|
|
127
|
+
|
|
128
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
|
129
|
+
value = getattr(self, attr)
|
|
130
|
+
if isinstance(value, list):
|
|
131
|
+
result[attr] = list(map(
|
|
132
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
133
|
+
value
|
|
134
|
+
))
|
|
135
|
+
elif hasattr(value, "to_dict"):
|
|
136
|
+
result[attr] = value.to_dict()
|
|
137
|
+
elif isinstance(value, dict):
|
|
138
|
+
result[attr] = dict(map(
|
|
139
|
+
lambda item: (item[0], item[1].to_dict())
|
|
140
|
+
if hasattr(item[1], "to_dict") else item,
|
|
141
|
+
value.items()
|
|
142
|
+
))
|
|
143
|
+
else:
|
|
144
|
+
if attr in self.sensitive_list:
|
|
145
|
+
result[attr] = "****"
|
|
146
|
+
else:
|
|
147
|
+
result[attr] = value
|
|
148
|
+
|
|
149
|
+
return result
|
|
150
|
+
|
|
151
|
+
def to_str(self):
|
|
152
|
+
"""Returns the string representation of the model"""
|
|
153
|
+
import simplejson as json
|
|
154
|
+
if six.PY2:
|
|
155
|
+
import sys
|
|
156
|
+
reload(sys)
|
|
157
|
+
sys.setdefaultencoding("utf-8")
|
|
158
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
|
159
|
+
|
|
160
|
+
def __repr__(self):
|
|
161
|
+
"""For `print`"""
|
|
162
|
+
return self.to_str()
|
|
163
|
+
|
|
164
|
+
def __eq__(self, other):
|
|
165
|
+
"""Returns true if both objects are equal"""
|
|
166
|
+
if not isinstance(other, BatchCreateGlobalEipJob):
|
|
167
|
+
return False
|
|
168
|
+
|
|
169
|
+
return self.__dict__ == other.__dict__
|
|
170
|
+
|
|
171
|
+
def __ne__(self, other):
|
|
172
|
+
"""Returns true if both objects are not equal"""
|
|
173
|
+
return not self == other
|
|
@@ -19,25 +19,25 @@ class BatchCreateGlobalEipResponse(SdkResponse):
|
|
|
19
19
|
|
|
20
20
|
openapi_types = {
|
|
21
21
|
'request_id': 'str',
|
|
22
|
-
'
|
|
22
|
+
'global_eips': 'list[BatchCreateGlobalEipJob]',
|
|
23
23
|
'x_request_id': 'str'
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
attribute_map = {
|
|
27
27
|
'request_id': 'request_id',
|
|
28
|
-
'
|
|
28
|
+
'global_eips': 'global_eips',
|
|
29
29
|
'x_request_id': 'X-Request-Id'
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
def __init__(self, request_id=None,
|
|
32
|
+
def __init__(self, request_id=None, global_eips=None, x_request_id=None):
|
|
33
33
|
"""BatchCreateGlobalEipResponse
|
|
34
34
|
|
|
35
35
|
The model defined in huaweicloud sdk
|
|
36
36
|
|
|
37
37
|
:param request_id: 本次请求的编号
|
|
38
38
|
:type request_id: str
|
|
39
|
-
:param
|
|
40
|
-
:type
|
|
39
|
+
:param global_eips: 响应对象
|
|
40
|
+
:type global_eips: list[:class:`huaweicloudsdkgeip.v3.BatchCreateGlobalEipJob`]
|
|
41
41
|
:param x_request_id:
|
|
42
42
|
:type x_request_id: str
|
|
43
43
|
"""
|
|
@@ -45,14 +45,14 @@ class BatchCreateGlobalEipResponse(SdkResponse):
|
|
|
45
45
|
super(BatchCreateGlobalEipResponse, self).__init__()
|
|
46
46
|
|
|
47
47
|
self._request_id = None
|
|
48
|
-
self.
|
|
48
|
+
self._global_eips = None
|
|
49
49
|
self._x_request_id = None
|
|
50
50
|
self.discriminator = None
|
|
51
51
|
|
|
52
52
|
if request_id is not None:
|
|
53
53
|
self.request_id = request_id
|
|
54
|
-
if
|
|
55
|
-
self.
|
|
54
|
+
if global_eips is not None:
|
|
55
|
+
self.global_eips = global_eips
|
|
56
56
|
if x_request_id is not None:
|
|
57
57
|
self.x_request_id = x_request_id
|
|
58
58
|
|
|
@@ -79,22 +79,26 @@ class BatchCreateGlobalEipResponse(SdkResponse):
|
|
|
79
79
|
self._request_id = request_id
|
|
80
80
|
|
|
81
81
|
@property
|
|
82
|
-
def
|
|
83
|
-
"""Gets the
|
|
82
|
+
def global_eips(self):
|
|
83
|
+
"""Gets the global_eips of this BatchCreateGlobalEipResponse.
|
|
84
84
|
|
|
85
|
-
|
|
86
|
-
|
|
85
|
+
响应对象
|
|
86
|
+
|
|
87
|
+
:return: The global_eips of this BatchCreateGlobalEipResponse.
|
|
88
|
+
:rtype: list[:class:`huaweicloudsdkgeip.v3.BatchCreateGlobalEipJob`]
|
|
87
89
|
"""
|
|
88
|
-
return self.
|
|
90
|
+
return self._global_eips
|
|
91
|
+
|
|
92
|
+
@global_eips.setter
|
|
93
|
+
def global_eips(self, global_eips):
|
|
94
|
+
"""Sets the global_eips of this BatchCreateGlobalEipResponse.
|
|
89
95
|
|
|
90
|
-
|
|
91
|
-
def global_eip(self, global_eip):
|
|
92
|
-
"""Sets the global_eip of this BatchCreateGlobalEipResponse.
|
|
96
|
+
响应对象
|
|
93
97
|
|
|
94
|
-
:param
|
|
95
|
-
:type
|
|
98
|
+
:param global_eips: The global_eips of this BatchCreateGlobalEipResponse.
|
|
99
|
+
:type global_eips: list[:class:`huaweicloudsdkgeip.v3.BatchCreateGlobalEipJob`]
|
|
96
100
|
"""
|
|
97
|
-
self.
|
|
101
|
+
self._global_eips = global_eips
|
|
98
102
|
|
|
99
103
|
@property
|
|
100
104
|
def x_request_id(self):
|
|
@@ -29,7 +29,7 @@ class CountGeipSegments:
|
|
|
29
29
|
|
|
30
30
|
The model defined in huaweicloud sdk
|
|
31
31
|
|
|
32
|
-
:param count:
|
|
32
|
+
:param count: 全域弹性公网IP段个数
|
|
33
33
|
:type count: int
|
|
34
34
|
"""
|
|
35
35
|
|
|
@@ -44,7 +44,7 @@ class CountGeipSegments:
|
|
|
44
44
|
def count(self):
|
|
45
45
|
"""Gets the count of this CountGeipSegments.
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
全域弹性公网IP段个数
|
|
48
48
|
|
|
49
49
|
:return: The count of this CountGeipSegments.
|
|
50
50
|
:rtype: int
|
|
@@ -55,7 +55,7 @@ class CountGeipSegments:
|
|
|
55
55
|
def count(self, count):
|
|
56
56
|
"""Sets the count of this CountGeipSegments.
|
|
57
57
|
|
|
58
|
-
|
|
58
|
+
全域弹性公网IP段个数
|
|
59
59
|
|
|
60
60
|
:param count: The count of this CountGeipSegments.
|
|
61
61
|
:type count: int
|
|
@@ -19,25 +19,25 @@ class CountGlobalEipSegmentResponse(SdkResponse):
|
|
|
19
19
|
|
|
20
20
|
openapi_types = {
|
|
21
21
|
'request_id': 'str',
|
|
22
|
-
'
|
|
22
|
+
'global_eip_segment': 'CountGeipSegments',
|
|
23
23
|
'x_request_id': 'str'
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
attribute_map = {
|
|
27
27
|
'request_id': 'request_id',
|
|
28
|
-
'
|
|
28
|
+
'global_eip_segment': 'global_eip_segment',
|
|
29
29
|
'x_request_id': 'X-Request-Id'
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
def __init__(self, request_id=None,
|
|
32
|
+
def __init__(self, request_id=None, global_eip_segment=None, x_request_id=None):
|
|
33
33
|
"""CountGlobalEipSegmentResponse
|
|
34
34
|
|
|
35
35
|
The model defined in huaweicloud sdk
|
|
36
36
|
|
|
37
37
|
:param request_id: 本次请求的编号
|
|
38
38
|
:type request_id: str
|
|
39
|
-
:param
|
|
40
|
-
:type
|
|
39
|
+
:param global_eip_segment:
|
|
40
|
+
:type global_eip_segment: CountGeipSegments
|
|
41
41
|
:param x_request_id:
|
|
42
42
|
:type x_request_id: str
|
|
43
43
|
"""
|
|
@@ -45,14 +45,14 @@ class CountGlobalEipSegmentResponse(SdkResponse):
|
|
|
45
45
|
super(CountGlobalEipSegmentResponse, self).__init__()
|
|
46
46
|
|
|
47
47
|
self._request_id = None
|
|
48
|
-
self.
|
|
48
|
+
self._global_eip_segment = None
|
|
49
49
|
self._x_request_id = None
|
|
50
50
|
self.discriminator = None
|
|
51
51
|
|
|
52
52
|
if request_id is not None:
|
|
53
53
|
self.request_id = request_id
|
|
54
|
-
if
|
|
55
|
-
self.
|
|
54
|
+
if global_eip_segment is not None:
|
|
55
|
+
self.global_eip_segment = global_eip_segment
|
|
56
56
|
if x_request_id is not None:
|
|
57
57
|
self.x_request_id = x_request_id
|
|
58
58
|
|
|
@@ -79,22 +79,22 @@ class CountGlobalEipSegmentResponse(SdkResponse):
|
|
|
79
79
|
self._request_id = request_id
|
|
80
80
|
|
|
81
81
|
@property
|
|
82
|
-
def
|
|
83
|
-
"""Gets the
|
|
82
|
+
def global_eip_segment(self):
|
|
83
|
+
"""Gets the global_eip_segment of this CountGlobalEipSegmentResponse.
|
|
84
84
|
|
|
85
|
-
:return: The
|
|
85
|
+
:return: The global_eip_segment of this CountGlobalEipSegmentResponse.
|
|
86
86
|
:rtype: CountGeipSegments
|
|
87
87
|
"""
|
|
88
|
-
return self.
|
|
88
|
+
return self._global_eip_segment
|
|
89
89
|
|
|
90
|
-
@
|
|
91
|
-
def
|
|
92
|
-
"""Sets the
|
|
90
|
+
@global_eip_segment.setter
|
|
91
|
+
def global_eip_segment(self, global_eip_segment):
|
|
92
|
+
"""Sets the global_eip_segment of this CountGlobalEipSegmentResponse.
|
|
93
93
|
|
|
94
|
-
:param
|
|
95
|
-
:type
|
|
94
|
+
:param global_eip_segment: The global_eip_segment of this CountGlobalEipSegmentResponse.
|
|
95
|
+
:type global_eip_segment: CountGeipSegments
|
|
96
96
|
"""
|
|
97
|
-
self.
|
|
97
|
+
self._global_eip_segment = global_eip_segment
|
|
98
98
|
|
|
99
99
|
@property
|
|
100
100
|
def x_request_id(self):
|
|
@@ -19,29 +19,25 @@ class CountGlobalEipsResponse(SdkResponse):
|
|
|
19
19
|
|
|
20
20
|
openapi_types = {
|
|
21
21
|
'request_id': 'str',
|
|
22
|
-
'
|
|
23
|
-
'page_info': 'ListGlobalEipsResponseBodyPageInfo',
|
|
22
|
+
'global_eip': 'CountGlobalEips',
|
|
24
23
|
'x_request_id': 'str'
|
|
25
24
|
}
|
|
26
25
|
|
|
27
26
|
attribute_map = {
|
|
28
27
|
'request_id': 'request_id',
|
|
29
|
-
'
|
|
30
|
-
'page_info': 'page_info',
|
|
28
|
+
'global_eip': 'global_eip',
|
|
31
29
|
'x_request_id': 'X-Request-Id'
|
|
32
30
|
}
|
|
33
31
|
|
|
34
|
-
def __init__(self, request_id=None,
|
|
32
|
+
def __init__(self, request_id=None, global_eip=None, x_request_id=None):
|
|
35
33
|
"""CountGlobalEipsResponse
|
|
36
34
|
|
|
37
35
|
The model defined in huaweicloud sdk
|
|
38
36
|
|
|
39
37
|
:param request_id: 本次请求的编号
|
|
40
38
|
:type request_id: str
|
|
41
|
-
:param
|
|
42
|
-
:type
|
|
43
|
-
:param page_info:
|
|
44
|
-
:type page_info: :class:`huaweicloudsdkgeip.v3.ListGlobalEipsResponseBodyPageInfo`
|
|
39
|
+
:param global_eip:
|
|
40
|
+
:type global_eip: :class:`huaweicloudsdkgeip.v3.CountGlobalEips`
|
|
45
41
|
:param x_request_id:
|
|
46
42
|
:type x_request_id: str
|
|
47
43
|
"""
|
|
@@ -49,17 +45,14 @@ class CountGlobalEipsResponse(SdkResponse):
|
|
|
49
45
|
super(CountGlobalEipsResponse, self).__init__()
|
|
50
46
|
|
|
51
47
|
self._request_id = None
|
|
52
|
-
self.
|
|
53
|
-
self._page_info = None
|
|
48
|
+
self._global_eip = None
|
|
54
49
|
self._x_request_id = None
|
|
55
50
|
self.discriminator = None
|
|
56
51
|
|
|
57
52
|
if request_id is not None:
|
|
58
53
|
self.request_id = request_id
|
|
59
|
-
if
|
|
60
|
-
self.
|
|
61
|
-
if page_info is not None:
|
|
62
|
-
self.page_info = page_info
|
|
54
|
+
if global_eip is not None:
|
|
55
|
+
self.global_eip = global_eip
|
|
63
56
|
if x_request_id is not None:
|
|
64
57
|
self.x_request_id = x_request_id
|
|
65
58
|
|
|
@@ -86,44 +79,22 @@ class CountGlobalEipsResponse(SdkResponse):
|
|
|
86
79
|
self._request_id = request_id
|
|
87
80
|
|
|
88
81
|
@property
|
|
89
|
-
def
|
|
90
|
-
"""Gets the
|
|
82
|
+
def global_eip(self):
|
|
83
|
+
"""Gets the global_eip of this CountGlobalEipsResponse.
|
|
91
84
|
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
:return: The global_eips of this CountGlobalEipsResponse.
|
|
95
|
-
:rtype: list[:class:`huaweicloudsdkgeip.v3.CountGlobalEips`]
|
|
96
|
-
"""
|
|
97
|
-
return self._global_eips
|
|
98
|
-
|
|
99
|
-
@global_eips.setter
|
|
100
|
-
def global_eips(self, global_eips):
|
|
101
|
-
"""Sets the global_eips of this CountGlobalEipsResponse.
|
|
102
|
-
|
|
103
|
-
全域弹性公网IP列表
|
|
104
|
-
|
|
105
|
-
:param global_eips: The global_eips of this CountGlobalEipsResponse.
|
|
106
|
-
:type global_eips: list[:class:`huaweicloudsdkgeip.v3.CountGlobalEips`]
|
|
107
|
-
"""
|
|
108
|
-
self._global_eips = global_eips
|
|
109
|
-
|
|
110
|
-
@property
|
|
111
|
-
def page_info(self):
|
|
112
|
-
"""Gets the page_info of this CountGlobalEipsResponse.
|
|
113
|
-
|
|
114
|
-
:return: The page_info of this CountGlobalEipsResponse.
|
|
115
|
-
:rtype: :class:`huaweicloudsdkgeip.v3.ListGlobalEipsResponseBodyPageInfo`
|
|
85
|
+
:return: The global_eip of this CountGlobalEipsResponse.
|
|
86
|
+
:rtype: :class:`huaweicloudsdkgeip.v3.CountGlobalEips`
|
|
116
87
|
"""
|
|
117
|
-
return self.
|
|
88
|
+
return self._global_eip
|
|
118
89
|
|
|
119
|
-
@
|
|
120
|
-
def
|
|
121
|
-
"""Sets the
|
|
90
|
+
@global_eip.setter
|
|
91
|
+
def global_eip(self, global_eip):
|
|
92
|
+
"""Sets the global_eip of this CountGlobalEipsResponse.
|
|
122
93
|
|
|
123
|
-
:param
|
|
124
|
-
:type
|
|
94
|
+
:param global_eip: The global_eip of this CountGlobalEipsResponse.
|
|
95
|
+
:type global_eip: :class:`huaweicloudsdkgeip.v3.CountGlobalEips`
|
|
125
96
|
"""
|
|
126
|
-
self.
|
|
97
|
+
self._global_eip = global_eip
|
|
127
98
|
|
|
128
99
|
@property
|
|
129
100
|
def x_request_id(self):
|
|
@@ -29,7 +29,7 @@ class DetachInternetBandwidth:
|
|
|
29
29
|
|
|
30
30
|
The model defined in huaweicloud sdk
|
|
31
31
|
|
|
32
|
-
:param global_eip_segment_id:
|
|
32
|
+
:param global_eip_segment_id: 全域弹性公网IP段ID
|
|
33
33
|
:type global_eip_segment_id: str
|
|
34
34
|
"""
|
|
35
35
|
|
|
@@ -44,7 +44,7 @@ class DetachInternetBandwidth:
|
|
|
44
44
|
def global_eip_segment_id(self):
|
|
45
45
|
"""Gets the global_eip_segment_id of this DetachInternetBandwidth.
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
全域弹性公网IP段ID
|
|
48
48
|
|
|
49
49
|
:return: The global_eip_segment_id of this DetachInternetBandwidth.
|
|
50
50
|
:rtype: str
|
|
@@ -55,7 +55,7 @@ class DetachInternetBandwidth:
|
|
|
55
55
|
def global_eip_segment_id(self, global_eip_segment_id):
|
|
56
56
|
"""Sets the global_eip_segment_id of this DetachInternetBandwidth.
|
|
57
57
|
|
|
58
|
-
|
|
58
|
+
全域弹性公网IP段ID
|
|
59
59
|
|
|
60
60
|
:param global_eip_segment_id: The global_eip_segment_id of this DetachInternetBandwidth.
|
|
61
61
|
:type global_eip_segment_id: str
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: huaweicloudsdkgeip
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.90
|
|
4
4
|
Summary: GEIP
|
|
5
5
|
Home-page: https://github.com/huaweicloud/huaweicloud-sdk-python-v3
|
|
6
6
|
Author: HuaweiCloud SDK
|
|
@@ -22,6 +22,6 @@ Classifier: Topic :: Software Development
|
|
|
22
22
|
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
License-File: LICENSE
|
|
25
|
-
Requires-Dist: huaweicloudsdkcore >=3.1.
|
|
25
|
+
Requires-Dist: huaweicloudsdkcore >=3.1.90
|
|
26
26
|
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
huaweicloudsdkgeip/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
huaweicloudsdkgeip/v3/__init__.py,sha256=
|
|
2
|
+
huaweicloudsdkgeip/v3/__init__.py,sha256=BmJP2b9kpkf-yV7QrDdbOih49stj-easLiYPRfmpRR4,22925
|
|
3
3
|
huaweicloudsdkgeip/v3/geip_async_client.py,sha256=_zUF9K1NhWFPMuT1YsVwvQhapAk-3QwTPClAeDHRng8,185879
|
|
4
4
|
huaweicloudsdkgeip/v3/geip_client.py,sha256=PKg8ehRqrWjSXCnAlGMjpPlkmXr_1g90D_T9vYaMXcw,185906
|
|
5
|
-
huaweicloudsdkgeip/v3/model/__init__.py,sha256=
|
|
5
|
+
huaweicloudsdkgeip/v3/model/__init__.py,sha256=WTvbOhnHycG-n8mujfkdQk3gxDQtUQDM1hmiMZnye-0,22833
|
|
6
6
|
huaweicloudsdkgeip/v3/model/add_geip_segment_tags_request.py,sha256=E2ihBbwsV1Ad-vYvTHHUbr64A6Bi-aC3SzNGUdxpdcw,3930
|
|
7
7
|
huaweicloudsdkgeip/v3/model/add_geip_segment_tags_response.py,sha256=wZRl9IZAymexyAK_yTCwMT7BNSL5druqLEeDNLodEHI,3278
|
|
8
8
|
huaweicloudsdkgeip/v3/model/add_global_eip_tags_request.py,sha256=84Zu9bVWoA-kpFKyNGpC6_eYOHKyk51beLgtD1ePGRQ,3906
|
|
@@ -34,12 +34,12 @@ huaweicloudsdkgeip/v3/model/batch_attach_internet_bandwidths_global_eip_request_
|
|
|
34
34
|
huaweicloudsdkgeip/v3/model/batch_attach_internet_bandwidths_global_eip_segment_request_body.py,sha256=1V0Yequ9GOcJz1w9kQguZy-1LKEKNA5qyTUmKSoRc9M,3735
|
|
35
35
|
huaweicloudsdkgeip/v3/model/batch_create_geip_segment_tags_request.py,sha256=sVJMcpxPNeU-JN_uGwfWv3Q03nHNaS_ZiybnqQfLSC0,4034
|
|
36
36
|
huaweicloudsdkgeip/v3/model/batch_create_geip_segment_tags_response.py,sha256=eDLlGbcwX-fXURWvsU3x0TXGzhw33pc-PfrUjOXI0uI,3342
|
|
37
|
-
huaweicloudsdkgeip/v3/model/
|
|
37
|
+
huaweicloudsdkgeip/v3/model/batch_create_global_eip_job.py,sha256=2VoZBwsN3rQSLGenjW3eeKfFcom2FkmqiNsmBHUP3R8,4841
|
|
38
38
|
huaweicloudsdkgeip/v3/model/batch_create_global_eip_request.py,sha256=fN4GRH4wcPY3WpPMqep0RO10vbYc8GwKMfe3jUld8B8,3226
|
|
39
39
|
huaweicloudsdkgeip/v3/model/batch_create_global_eip_request_body.py,sha256=-ediQ3929LwLsSbXtGX-vnEZLtdyOFXiHrpHd3NZnxA,4082
|
|
40
40
|
huaweicloudsdkgeip/v3/model/batch_create_global_eip_request_body_global_eip.py,sha256=ZmIkXslsFI9K_MkaeQ230Grmbmxlv5OMzQbcHvPwc_g,12404
|
|
41
41
|
huaweicloudsdkgeip/v3/model/batch_create_global_eip_request_body_global_eip_internet_bandwidth_info.py,sha256=NAGl6_NLS2CqxEmuX_GPCrZAfpE9itWlVA9pQXuNEzg,9536
|
|
42
|
-
huaweicloudsdkgeip/v3/model/batch_create_global_eip_response.py,sha256=
|
|
42
|
+
huaweicloudsdkgeip/v3/model/batch_create_global_eip_response.py,sha256=EqAYxtucD86utGpA46nVdmTVcupZgQFC1VJx1D_mrxw,5223
|
|
43
43
|
huaweicloudsdkgeip/v3/model/batch_create_global_eip_tags_request.py,sha256=OuGmoIsN-RsC04YyXPpQMDfFCcLY3G6uDyiVKh1-om0,4010
|
|
44
44
|
huaweicloudsdkgeip/v3/model/batch_create_global_eip_tags_response.py,sha256=86mSdXmFJ9GeSA6JhhSVSa4kbBDNBm6QteiUwkpopnY,3326
|
|
45
45
|
huaweicloudsdkgeip/v3/model/batch_create_internet_bandwidth.py,sha256=90cYIZK03ArrupGHmOxCujsqSyltN7MApZ3aNg-8HXY,20075
|
|
@@ -65,12 +65,12 @@ huaweicloudsdkgeip/v3/model/batch_detach_internet_bandwidth_response.py,sha256=5
|
|
|
65
65
|
huaweicloudsdkgeip/v3/model/batch_detach_internet_bandwidths_global_eip_request_body.py,sha256=6xLEQvJpL18lnO15eJATVPHh4c4a5aQzEMR1s--n90E,3448
|
|
66
66
|
huaweicloudsdkgeip/v3/model/batch_detach_internet_bandwidths_global_eip_segment_request_body.py,sha256=zF16sneC-jn1JA2_BkHoMcYenyg48YjMzjIzVCWAtZo,3735
|
|
67
67
|
huaweicloudsdkgeip/v3/model/batch_internet_bandwidths_global_eip_response_body.py,sha256=vjeXAsm9RWsE3QX1cFW8DnshLxpoVHcSsZiRXt9bts8,3195
|
|
68
|
-
huaweicloudsdkgeip/v3/model/count_geip_segments.py,sha256=
|
|
68
|
+
huaweicloudsdkgeip/v3/model/count_geip_segments.py,sha256=3Y1-wvXTCd4P3zmTz4GlMcO01BDfajguaapPpNyrTIg,3008
|
|
69
69
|
huaweicloudsdkgeip/v3/model/count_global_eip_segment_request.py,sha256=Mgck9WXiFpIXW-LTh2txA1u5FPV1ID-xC9yfy0i58j4,26040
|
|
70
|
-
huaweicloudsdkgeip/v3/model/count_global_eip_segment_response.py,sha256=
|
|
70
|
+
huaweicloudsdkgeip/v3/model/count_global_eip_segment_response.py,sha256=wfH1Ze8Eqz1qrxBtwkIuRU2-Rup05w1rfi4RT83SOcI,5203
|
|
71
71
|
huaweicloudsdkgeip/v3/model/count_global_eips.py,sha256=c2Ab4vwXG91lYVf54J6ec0nswiIHOj4IY3AgxLjVMtk,2985
|
|
72
72
|
huaweicloudsdkgeip/v3/model/count_global_eips_request.py,sha256=frqeMHspaKuF7NWJu-Te3Bl2x14w5Gayv6WgmKDdY80,24396
|
|
73
|
-
huaweicloudsdkgeip/v3/model/count_global_eips_response.py,sha256=
|
|
73
|
+
huaweicloudsdkgeip/v3/model/count_global_eips_response.py,sha256=y7QXLTwErmEKvkGy7Ev0E3eghhI1f7pIcM2IHy2e_OE,5008
|
|
74
74
|
huaweicloudsdkgeip/v3/model/count_internet_bandwidth_request.py,sha256=Mz03Gjwpv7PPjO2g3V804wz5YXZGi7ygZjI3njut5v8,8388
|
|
75
75
|
huaweicloudsdkgeip/v3/model/count_internet_bandwidth_response.py,sha256=9aKW17-vDWD3aeLwShzIR1rpx_Znceu05D3DC4amJcs,5266
|
|
76
76
|
huaweicloudsdkgeip/v3/model/count_internet_bandwidths.py,sha256=ypNjA4SRWzS5LOFylRuubRLtRBqvMUwmZsmug67gfNQ,3044
|
|
@@ -110,7 +110,7 @@ huaweicloudsdkgeip/v3/model/delete_internet_bandwidth_tag_request.py,sha256=F_6-
|
|
|
110
110
|
huaweicloudsdkgeip/v3/model/delete_internet_bandwidth_tag_response.py,sha256=czWa76EukD0ts1SF_31j427BaOH_eotX9xC_KtaLWVg,3342
|
|
111
111
|
huaweicloudsdkgeip/v3/model/delete_user_disclaimer_request.py,sha256=M-s3tDGoBHqEmzk8zgYOV9ia2CnPZB1XNqxPxYr_N00,2339
|
|
112
112
|
huaweicloudsdkgeip/v3/model/delete_user_disclaimer_response.py,sha256=8awBBVEEuD05of_PoPozloq8aV88upqvzQERV5mh1O8,3294
|
|
113
|
-
huaweicloudsdkgeip/v3/model/detach_internet_bandwidth.py,sha256=
|
|
113
|
+
huaweicloudsdkgeip/v3/model/detach_internet_bandwidth.py,sha256=1GWGbkfoCRMuV2FOkop2purjdod681UYuv6c83f1PsQ,3390
|
|
114
114
|
huaweicloudsdkgeip/v3/model/detach_internet_bandwidth_global_eips.py,sha256=Hl2u4DLZ8mdLP-voOqiMmm5y5mhnEFKBxjiAidBepxQ,26293
|
|
115
115
|
huaweicloudsdkgeip/v3/model/detach_internet_bandwidth_request.py,sha256=sGrwe6Pk8B93CJAOMkZGQAXSZf54PZgxKU_5iSciDgU,4011
|
|
116
116
|
huaweicloudsdkgeip/v3/model/detach_internet_bandwidth_response.py,sha256=0KwULC1as3Zw1_3clkI8E6XUvDiGmJaq70tuucqXJ3A,5115
|
|
@@ -221,8 +221,8 @@ huaweicloudsdkgeip/v3/model/update_internet_bandwidth_request_body_internet_band
|
|
|
221
221
|
huaweicloudsdkgeip/v3/model/update_internet_bandwidth_response.py,sha256=SjGMebs9cHKj1iNRR7qDlv9wyL2B_Lb59tJz8KA-LOs,5352
|
|
222
222
|
huaweicloudsdkgeip/v3/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
223
223
|
huaweicloudsdkgeip/v3/region/geip_region.py,sha256=drQ_lEB4tHYNvZGc2RJjef0ce0ca9ECDStylvA2opys,953
|
|
224
|
-
huaweicloudsdkgeip-3.1.
|
|
225
|
-
huaweicloudsdkgeip-3.1.
|
|
226
|
-
huaweicloudsdkgeip-3.1.
|
|
227
|
-
huaweicloudsdkgeip-3.1.
|
|
228
|
-
huaweicloudsdkgeip-3.1.
|
|
224
|
+
huaweicloudsdkgeip-3.1.90.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
|
225
|
+
huaweicloudsdkgeip-3.1.90.dist-info/METADATA,sha256=8w8H6FFT_lGHHCczp12Bn133H0CprzIVjFmrJQljzLA,1137
|
|
226
|
+
huaweicloudsdkgeip-3.1.90.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
|
|
227
|
+
huaweicloudsdkgeip-3.1.90.dist-info/top_level.txt,sha256=GQJtxqGY-6a27ti16e4Bj2HCOiB5DFSo7R8tL62iULs,19
|
|
228
|
+
huaweicloudsdkgeip-3.1.90.dist-info/RECORD,,
|