huaweicloudsdkvpcep 3.1.113__py2.py3-none-any.whl → 3.1.115__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.
- huaweicloudsdkvpcep/v1/model/create_endpoint_service_request_body.py +33 -4
- huaweicloudsdkvpcep/v1/model/create_endpoint_service_response.py +30 -1
- huaweicloudsdkvpcep/v1/model/list_endpoint_service_request.py +32 -3
- huaweicloudsdkvpcep/v1/model/list_service_details_response.py +30 -1
- huaweicloudsdkvpcep/v1/model/policy_statement.py +3 -3
- huaweicloudsdkvpcep/v1/model/resource_tag.py +6 -6
- huaweicloudsdkvpcep/v1/model/service_list.py +30 -1
- huaweicloudsdkvpcep/v1/model/tag_list.py +6 -6
- huaweicloudsdkvpcep/v1/model/tag_values_list.py +3 -3
- huaweicloudsdkvpcep/v1/model/update_endpoint_service_request_body.py +32 -3
- huaweicloudsdkvpcep/v1/model/update_endpoint_service_response.py +30 -1
- huaweicloudsdkvpcep/v1/vpcep_async_client.py +2 -0
- huaweicloudsdkvpcep/v1/vpcep_client.py +2 -0
- {huaweicloudsdkvpcep-3.1.113.dist-info → huaweicloudsdkvpcep-3.1.115.dist-info}/METADATA +2 -2
- {huaweicloudsdkvpcep-3.1.113.dist-info → huaweicloudsdkvpcep-3.1.115.dist-info}/RECORD +18 -18
- {huaweicloudsdkvpcep-3.1.113.dist-info → huaweicloudsdkvpcep-3.1.115.dist-info}/LICENSE +0 -0
- {huaweicloudsdkvpcep-3.1.113.dist-info → huaweicloudsdkvpcep-3.1.115.dist-info}/WHEEL +0 -0
- {huaweicloudsdkvpcep-3.1.113.dist-info → huaweicloudsdkvpcep-3.1.115.dist-info}/top_level.txt +0 -0
@@ -23,6 +23,7 @@ class CreateEndpointServiceRequestBody:
|
|
23
23
|
'approval_enabled': 'bool',
|
24
24
|
'service_type': 'str',
|
25
25
|
'server_type': 'str',
|
26
|
+
'ip': 'str',
|
26
27
|
'ports': 'list[PortList]',
|
27
28
|
'tcp_proxy': 'str',
|
28
29
|
'tags': 'list[TagList]',
|
@@ -37,6 +38,7 @@ class CreateEndpointServiceRequestBody:
|
|
37
38
|
'approval_enabled': 'approval_enabled',
|
38
39
|
'service_type': 'service_type',
|
39
40
|
'server_type': 'server_type',
|
41
|
+
'ip': 'ip',
|
40
42
|
'ports': 'ports',
|
41
43
|
'tcp_proxy': 'tcp_proxy',
|
42
44
|
'tags': 'tags',
|
@@ -44,7 +46,7 @@ class CreateEndpointServiceRequestBody:
|
|
44
46
|
'ip_version': 'ip_version'
|
45
47
|
}
|
46
48
|
|
47
|
-
def __init__(self, port_id=None, service_name=None, vpc_id=None, approval_enabled=None, service_type=None, server_type=None, ports=None, tcp_proxy=None, tags=None, description=None, ip_version=None):
|
49
|
+
def __init__(self, port_id=None, service_name=None, vpc_id=None, approval_enabled=None, service_type=None, server_type=None, ip=None, ports=None, tcp_proxy=None, tags=None, description=None, ip_version=None):
|
48
50
|
"""CreateEndpointServiceRequestBody
|
49
51
|
|
50
52
|
The model defined in huaweicloud sdk
|
@@ -61,11 +63,13 @@ class CreateEndpointServiceRequestBody:
|
|
61
63
|
:type service_type: str
|
62
64
|
:param server_type: 资源类型。 - VM:云服务器,适用于作为服务器使用。 - VIP:虚拟IP,适用于作为虚IP场景使用。(该字段已废弃,请优先使用LB类型) - LB:负载均衡,适用于高访问量业务和对可靠性和容灾性要求较高的业务。
|
63
65
|
:type server_type: str
|
66
|
+
:param ip: 接口型VLAN场景服务端IPv4地址或域名
|
67
|
+
:type ip: str
|
64
68
|
:param ports: 服务开放的端口映射列表,详细内容请参见表4-10。 同一个终端节点服务下,不允许重复的端口映射。若多个终端节点服务共用一个port_id, 则终端节点服务之间的所有端口映射的server_port和protocol的组合不能重复, 单次最多添加200个。
|
65
69
|
:type ports: list[:class:`huaweicloudsdkvpcep.v1.PortList`]
|
66
70
|
:param tcp_proxy: 用于控制将哪些信息(如客户端的源IP、源端口、marker_id等)携带到服务端。 支持携带的客户端信息包括如下两种类型: - TCP TOA:表示将客户端信息插入到tcp option字段中携带至服务端。 说明:仅当后端资源为OBS时,支持TCP TOA类型信息携带方式。 - Proxy Protocol:表示将客户端信息插入到tcp payload字段中携带至服务端。 仅当服务端支持解析上述字段时,该参数设置才有效。 该参数的取值包括: - close:表示关闭代理协议。 - toa_open:表示开启代理协议“tcp_toa”。 - proxy_open:表示开启代理协议“proxy_protocol”。 - open:表示同时开启代理协议“tcp_toa”和“proxy_protocol”。 默认值为“close”。
|
67
71
|
:type tcp_proxy: str
|
68
|
-
:param tags: 资源标签列表。同一个终端节点服务最多可添加
|
72
|
+
:param tags: 资源标签列表。同一个终端节点服务最多可添加20个标签。
|
69
73
|
:type tags: list[:class:`huaweicloudsdkvpcep.v1.TagList`]
|
70
74
|
:param description: 描述字段,支持中英文字母、数字等字符,不支持“<”或“>”字符。 描述字段,支持中英文字母、数字等字符,不支持“<”或“>”字符。
|
71
75
|
:type description: str
|
@@ -81,6 +85,7 @@ class CreateEndpointServiceRequestBody:
|
|
81
85
|
self._approval_enabled = None
|
82
86
|
self._service_type = None
|
83
87
|
self._server_type = None
|
88
|
+
self._ip = None
|
84
89
|
self._ports = None
|
85
90
|
self._tcp_proxy = None
|
86
91
|
self._tags = None
|
@@ -97,6 +102,8 @@ class CreateEndpointServiceRequestBody:
|
|
97
102
|
if service_type is not None:
|
98
103
|
self.service_type = service_type
|
99
104
|
self.server_type = server_type
|
105
|
+
if ip is not None:
|
106
|
+
self.ip = ip
|
100
107
|
self.ports = ports
|
101
108
|
if tcp_proxy is not None:
|
102
109
|
self.tcp_proxy = tcp_proxy
|
@@ -239,6 +246,28 @@ class CreateEndpointServiceRequestBody:
|
|
239
246
|
"""
|
240
247
|
self._server_type = server_type
|
241
248
|
|
249
|
+
@property
|
250
|
+
def ip(self):
|
251
|
+
"""Gets the ip of this CreateEndpointServiceRequestBody.
|
252
|
+
|
253
|
+
接口型VLAN场景服务端IPv4地址或域名
|
254
|
+
|
255
|
+
:return: The ip of this CreateEndpointServiceRequestBody.
|
256
|
+
:rtype: str
|
257
|
+
"""
|
258
|
+
return self._ip
|
259
|
+
|
260
|
+
@ip.setter
|
261
|
+
def ip(self, ip):
|
262
|
+
"""Sets the ip of this CreateEndpointServiceRequestBody.
|
263
|
+
|
264
|
+
接口型VLAN场景服务端IPv4地址或域名
|
265
|
+
|
266
|
+
:param ip: The ip of this CreateEndpointServiceRequestBody.
|
267
|
+
:type ip: str
|
268
|
+
"""
|
269
|
+
self._ip = ip
|
270
|
+
|
242
271
|
@property
|
243
272
|
def ports(self):
|
244
273
|
"""Gets the ports of this CreateEndpointServiceRequestBody.
|
@@ -287,7 +316,7 @@ class CreateEndpointServiceRequestBody:
|
|
287
316
|
def tags(self):
|
288
317
|
"""Gets the tags of this CreateEndpointServiceRequestBody.
|
289
318
|
|
290
|
-
资源标签列表。同一个终端节点服务最多可添加
|
319
|
+
资源标签列表。同一个终端节点服务最多可添加20个标签。
|
291
320
|
|
292
321
|
:return: The tags of this CreateEndpointServiceRequestBody.
|
293
322
|
:rtype: list[:class:`huaweicloudsdkvpcep.v1.TagList`]
|
@@ -298,7 +327,7 @@ class CreateEndpointServiceRequestBody:
|
|
298
327
|
def tags(self, tags):
|
299
328
|
"""Sets the tags of this CreateEndpointServiceRequestBody.
|
300
329
|
|
301
|
-
资源标签列表。同一个终端节点服务最多可添加
|
330
|
+
资源标签列表。同一个终端节点服务最多可添加20个标签。
|
302
331
|
|
303
332
|
:param tags: The tags of this CreateEndpointServiceRequestBody.
|
304
333
|
:type tags: list[:class:`huaweicloudsdkvpcep.v1.TagList`]
|
@@ -30,6 +30,7 @@ class CreateEndpointServiceResponse(SdkResponse):
|
|
30
30
|
'created_at': 'datetime',
|
31
31
|
'updated_at': 'datetime',
|
32
32
|
'project_id': 'str',
|
33
|
+
'ip': 'str',
|
33
34
|
'ports': 'list[PortList]',
|
34
35
|
'tcp_proxy': 'str',
|
35
36
|
'tags': 'list[TagList]',
|
@@ -51,6 +52,7 @@ class CreateEndpointServiceResponse(SdkResponse):
|
|
51
52
|
'created_at': 'created_at',
|
52
53
|
'updated_at': 'updated_at',
|
53
54
|
'project_id': 'project_id',
|
55
|
+
'ip': 'ip',
|
54
56
|
'ports': 'ports',
|
55
57
|
'tcp_proxy': 'tcp_proxy',
|
56
58
|
'tags': 'tags',
|
@@ -59,7 +61,7 @@ class CreateEndpointServiceResponse(SdkResponse):
|
|
59
61
|
'ip_version': 'ip_version'
|
60
62
|
}
|
61
63
|
|
62
|
-
def __init__(self, id=None, port_id=None, service_name=None, server_type=None, vpc_id=None, pool_id=None, approval_enabled=None, status=None, service_type=None, created_at=None, updated_at=None, project_id=None, ports=None, tcp_proxy=None, tags=None, description=None, enable_policy=None, ip_version=None):
|
64
|
+
def __init__(self, id=None, port_id=None, service_name=None, server_type=None, vpc_id=None, pool_id=None, approval_enabled=None, status=None, service_type=None, created_at=None, updated_at=None, project_id=None, ip=None, ports=None, tcp_proxy=None, tags=None, description=None, enable_policy=None, ip_version=None):
|
63
65
|
"""CreateEndpointServiceResponse
|
64
66
|
|
65
67
|
The model defined in huaweicloud sdk
|
@@ -88,6 +90,8 @@ class CreateEndpointServiceResponse(SdkResponse):
|
|
88
90
|
:type updated_at: datetime
|
89
91
|
:param project_id: 项目ID
|
90
92
|
:type project_id: str
|
93
|
+
:param ip: 接口型VLAN场景服务端IPv4地址或域名
|
94
|
+
:type ip: str
|
91
95
|
:param ports: 服务开放的端口映射列表 同一个终端节点服务下,不允许重复的端口映射。 若多个终端节点服务共用一个port_id, 则终端节点服务之间的所有端口映射的server_port和protocol的组合不能重复。
|
92
96
|
:type ports: list[:class:`huaweicloudsdkvpcep.v1.PortList`]
|
93
97
|
:param tcp_proxy: 用于控制将哪些信息(如客户端的源IP、源端口、marker_id等)携带到服务端。 支持携带的客户端信息包括如下两种类型: - TCP TOA:表示将客户端信息插入到tcp option字段中携带至服务端。 说明:仅当后端资源为OBS时,支持TCP TOA类型信息携带方式。 - Proxy Protocol:表示将客户端信息插入到tcp payload字段中携带至服务端。 仅当服务端支持解析上述字段时,该参数设置才有效。 该参数的取值包括: - close:表示关闭代理协议。 - toa_open:表示开启代理协议“tcp_toa”。 - proxy_open:表示开启代理协议“proxy_protocol”。 - open:表示同时开启代理协议“tcp_toa”和“proxy_protocol”。 默认值为“close”。
|
@@ -116,6 +120,7 @@ class CreateEndpointServiceResponse(SdkResponse):
|
|
116
120
|
self._created_at = None
|
117
121
|
self._updated_at = None
|
118
122
|
self._project_id = None
|
123
|
+
self._ip = None
|
119
124
|
self._ports = None
|
120
125
|
self._tcp_proxy = None
|
121
126
|
self._tags = None
|
@@ -148,6 +153,8 @@ class CreateEndpointServiceResponse(SdkResponse):
|
|
148
153
|
self.updated_at = updated_at
|
149
154
|
if project_id is not None:
|
150
155
|
self.project_id = project_id
|
156
|
+
if ip is not None:
|
157
|
+
self.ip = ip
|
151
158
|
if ports is not None:
|
152
159
|
self.ports = ports
|
153
160
|
if tcp_proxy is not None:
|
@@ -425,6 +432,28 @@ class CreateEndpointServiceResponse(SdkResponse):
|
|
425
432
|
"""
|
426
433
|
self._project_id = project_id
|
427
434
|
|
435
|
+
@property
|
436
|
+
def ip(self):
|
437
|
+
"""Gets the ip of this CreateEndpointServiceResponse.
|
438
|
+
|
439
|
+
接口型VLAN场景服务端IPv4地址或域名
|
440
|
+
|
441
|
+
:return: The ip of this CreateEndpointServiceResponse.
|
442
|
+
:rtype: str
|
443
|
+
"""
|
444
|
+
return self._ip
|
445
|
+
|
446
|
+
@ip.setter
|
447
|
+
def ip(self, ip):
|
448
|
+
"""Sets the ip of this CreateEndpointServiceResponse.
|
449
|
+
|
450
|
+
接口型VLAN场景服务端IPv4地址或域名
|
451
|
+
|
452
|
+
:param ip: The ip of this CreateEndpointServiceResponse.
|
453
|
+
:type ip: str
|
454
|
+
"""
|
455
|
+
self._ip = ip
|
456
|
+
|
428
457
|
@property
|
429
458
|
def ports(self):
|
430
459
|
"""Gets the ports of this CreateEndpointServiceResponse.
|
@@ -24,7 +24,8 @@ class ListEndpointServiceRequest:
|
|
24
24
|
'sort_dir': 'str',
|
25
25
|
'limit': 'int',
|
26
26
|
'offset': 'int',
|
27
|
-
'public_border_group': 'str'
|
27
|
+
'public_border_group': 'str',
|
28
|
+
'net_type': 'str'
|
28
29
|
}
|
29
30
|
|
30
31
|
attribute_map = {
|
@@ -35,10 +36,11 @@ class ListEndpointServiceRequest:
|
|
35
36
|
'sort_dir': 'sort_dir',
|
36
37
|
'limit': 'limit',
|
37
38
|
'offset': 'offset',
|
38
|
-
'public_border_group': 'public_border_group'
|
39
|
+
'public_border_group': 'public_border_group',
|
40
|
+
'net_type': 'net_type'
|
39
41
|
}
|
40
42
|
|
41
|
-
def __init__(self, endpoint_service_name=None, id=None, status=None, sort_key=None, sort_dir=None, limit=None, offset=None, public_border_group=None):
|
43
|
+
def __init__(self, endpoint_service_name=None, id=None, status=None, sort_key=None, sort_dir=None, limit=None, offset=None, public_border_group=None, net_type=None):
|
42
44
|
"""ListEndpointServiceRequest
|
43
45
|
|
44
46
|
The model defined in huaweicloud sdk
|
@@ -59,6 +61,8 @@ class ListEndpointServiceRequest:
|
|
59
61
|
:type offset: int
|
60
62
|
:param public_border_group: 筛选结果中匹配边缘属性的EPS
|
61
63
|
:type public_border_group: str
|
64
|
+
:param net_type: 后端类型
|
65
|
+
:type net_type: str
|
62
66
|
"""
|
63
67
|
|
64
68
|
|
@@ -71,6 +75,7 @@ class ListEndpointServiceRequest:
|
|
71
75
|
self._limit = None
|
72
76
|
self._offset = None
|
73
77
|
self._public_border_group = None
|
78
|
+
self._net_type = None
|
74
79
|
self.discriminator = None
|
75
80
|
|
76
81
|
if endpoint_service_name is not None:
|
@@ -89,6 +94,8 @@ class ListEndpointServiceRequest:
|
|
89
94
|
self.offset = offset
|
90
95
|
if public_border_group is not None:
|
91
96
|
self.public_border_group = public_border_group
|
97
|
+
if net_type is not None:
|
98
|
+
self.net_type = net_type
|
92
99
|
|
93
100
|
@property
|
94
101
|
def endpoint_service_name(self):
|
@@ -266,6 +273,28 @@ class ListEndpointServiceRequest:
|
|
266
273
|
"""
|
267
274
|
self._public_border_group = public_border_group
|
268
275
|
|
276
|
+
@property
|
277
|
+
def net_type(self):
|
278
|
+
"""Gets the net_type of this ListEndpointServiceRequest.
|
279
|
+
|
280
|
+
后端类型
|
281
|
+
|
282
|
+
:return: The net_type of this ListEndpointServiceRequest.
|
283
|
+
:rtype: str
|
284
|
+
"""
|
285
|
+
return self._net_type
|
286
|
+
|
287
|
+
@net_type.setter
|
288
|
+
def net_type(self, net_type):
|
289
|
+
"""Sets the net_type of this ListEndpointServiceRequest.
|
290
|
+
|
291
|
+
后端类型
|
292
|
+
|
293
|
+
:param net_type: The net_type of this ListEndpointServiceRequest.
|
294
|
+
:type net_type: str
|
295
|
+
"""
|
296
|
+
self._net_type = net_type
|
297
|
+
|
269
298
|
def to_dict(self):
|
270
299
|
"""Returns the model properties as a dict"""
|
271
300
|
result = {}
|
@@ -30,6 +30,7 @@ class ListServiceDetailsResponse(SdkResponse):
|
|
30
30
|
'updated_at': 'datetime',
|
31
31
|
'project_id': 'str',
|
32
32
|
'cidr_type': 'str',
|
33
|
+
'ip': 'str',
|
33
34
|
'ports': 'list[PortList]',
|
34
35
|
'tcp_proxy': 'str',
|
35
36
|
'tags': 'list[TagList]',
|
@@ -51,6 +52,7 @@ class ListServiceDetailsResponse(SdkResponse):
|
|
51
52
|
'updated_at': 'updated_at',
|
52
53
|
'project_id': 'project_id',
|
53
54
|
'cidr_type': 'cidr_type',
|
55
|
+
'ip': 'ip',
|
54
56
|
'ports': 'ports',
|
55
57
|
'tcp_proxy': 'tcp_proxy',
|
56
58
|
'tags': 'tags',
|
@@ -59,7 +61,7 @@ class ListServiceDetailsResponse(SdkResponse):
|
|
59
61
|
'description': 'description'
|
60
62
|
}
|
61
63
|
|
62
|
-
def __init__(self, id=None, port_id=None, service_name=None, server_type=None, vpc_id=None, approval_enabled=None, status=None, service_type=None, created_at=None, updated_at=None, project_id=None, cidr_type=None, ports=None, tcp_proxy=None, tags=None, error=None, enable_policy=None, description=None):
|
64
|
+
def __init__(self, id=None, port_id=None, service_name=None, server_type=None, vpc_id=None, approval_enabled=None, status=None, service_type=None, created_at=None, updated_at=None, project_id=None, cidr_type=None, ip=None, ports=None, tcp_proxy=None, tags=None, error=None, enable_policy=None, description=None):
|
63
65
|
"""ListServiceDetailsResponse
|
64
66
|
|
65
67
|
The model defined in huaweicloud sdk
|
@@ -88,6 +90,8 @@ class ListServiceDetailsResponse(SdkResponse):
|
|
88
90
|
:type project_id: str
|
89
91
|
:param cidr_type: 网段类型。 public:公网网段 internal:内网网段 默认值为internal。
|
90
92
|
:type cidr_type: str
|
93
|
+
:param ip: 接口型VLAN场景服务端IPv4地址或域名
|
94
|
+
:type ip: str
|
91
95
|
:param ports: 服务开放的端口映射列表,详细内容请参见表4-17 同一个终端节点服务下,不允许重复的端口映射。若多个终端节点服务共用一个port_id,则 终端节点服务之间的所有端口映射的server_port和protocol的组合不能重复。
|
92
96
|
:type ports: list[:class:`huaweicloudsdkvpcep.v1.PortList`]
|
93
97
|
:param tcp_proxy: 用于控制将哪些信息(如客户端的源IP、源端口、marker_id等)携带到服务端。 支持携带的客户端信息包括如下两种类型: - TCP TOA:表示将客户端信息插入到tcp option字段中携带至服务端。 说明:仅当后端资源为OBS时,支持TCP TOA类型信息携带方式。 - Proxy Protocol:表示将客户端信息插入到tcp payload字段中携带至服务端。 仅当服务端支持解析上述字段时,该参数设置才有效。 该参数的取值包括: - close:表示关闭代理协议。 - toa_open:表示开启代理协议“tcp_toa”。 - proxy_open:表示开启代理协议“proxy_protocol”。 - open:表示同时开启代理协议“tcp_toa”和“proxy_protocol”。 默认值为“close”。
|
@@ -116,6 +120,7 @@ class ListServiceDetailsResponse(SdkResponse):
|
|
116
120
|
self._updated_at = None
|
117
121
|
self._project_id = None
|
118
122
|
self._cidr_type = None
|
123
|
+
self._ip = None
|
119
124
|
self._ports = None
|
120
125
|
self._tcp_proxy = None
|
121
126
|
self._tags = None
|
@@ -148,6 +153,8 @@ class ListServiceDetailsResponse(SdkResponse):
|
|
148
153
|
self.project_id = project_id
|
149
154
|
if cidr_type is not None:
|
150
155
|
self.cidr_type = cidr_type
|
156
|
+
if ip is not None:
|
157
|
+
self.ip = ip
|
151
158
|
if ports is not None:
|
152
159
|
self.ports = ports
|
153
160
|
if tcp_proxy is not None:
|
@@ -425,6 +432,28 @@ class ListServiceDetailsResponse(SdkResponse):
|
|
425
432
|
"""
|
426
433
|
self._cidr_type = cidr_type
|
427
434
|
|
435
|
+
@property
|
436
|
+
def ip(self):
|
437
|
+
"""Gets the ip of this ListServiceDetailsResponse.
|
438
|
+
|
439
|
+
接口型VLAN场景服务端IPv4地址或域名
|
440
|
+
|
441
|
+
:return: The ip of this ListServiceDetailsResponse.
|
442
|
+
:rtype: str
|
443
|
+
"""
|
444
|
+
return self._ip
|
445
|
+
|
446
|
+
@ip.setter
|
447
|
+
def ip(self, ip):
|
448
|
+
"""Sets the ip of this ListServiceDetailsResponse.
|
449
|
+
|
450
|
+
接口型VLAN场景服务端IPv4地址或域名
|
451
|
+
|
452
|
+
:param ip: The ip of this ListServiceDetailsResponse.
|
453
|
+
:type ip: str
|
454
|
+
"""
|
455
|
+
self._ip = ip
|
456
|
+
|
428
457
|
@property
|
429
458
|
def ports(self):
|
430
459
|
"""Gets the ports of this ListServiceDetailsResponse.
|
@@ -33,7 +33,7 @@ class PolicyStatement:
|
|
33
33
|
|
34
34
|
The model defined in huaweicloud sdk
|
35
35
|
|
36
|
-
:param effect: Allow
|
36
|
+
:param effect: - Allow,允许控制访问权限 - Deny,拒绝控制访问权限
|
37
37
|
:type effect: str
|
38
38
|
:param action: obs访问权限
|
39
39
|
:type action: list[str]
|
@@ -56,7 +56,7 @@ class PolicyStatement:
|
|
56
56
|
def effect(self):
|
57
57
|
"""Gets the effect of this PolicyStatement.
|
58
58
|
|
59
|
-
Allow
|
59
|
+
- Allow,允许控制访问权限 - Deny,拒绝控制访问权限
|
60
60
|
|
61
61
|
:return: The effect of this PolicyStatement.
|
62
62
|
:rtype: str
|
@@ -67,7 +67,7 @@ class PolicyStatement:
|
|
67
67
|
def effect(self, effect):
|
68
68
|
"""Sets the effect of this PolicyStatement.
|
69
69
|
|
70
|
-
Allow
|
70
|
+
- Allow,允许控制访问权限 - Deny,拒绝控制访问权限
|
71
71
|
|
72
72
|
:param effect: The effect of this PolicyStatement.
|
73
73
|
:type effect: str
|
@@ -31,9 +31,9 @@ class ResourceTag:
|
|
31
31
|
|
32
32
|
The model defined in huaweicloud sdk
|
33
33
|
|
34
|
-
:param key: 键。最大长度
|
34
|
+
:param key: 键。最大长度128个unicode字符。 key需要满足标签字符集规范。
|
35
35
|
:type key: str
|
36
|
-
:param value: 值。action为create时必选,每个值最大长度
|
36
|
+
:param value: 值。action为create时必选,每个值最大长度255个unicode字符, 删除时如果value有值按照key/value删除, 如果value没值,则按照key删除。 value需要满足标签字符集规范。
|
37
37
|
:type value: str
|
38
38
|
"""
|
39
39
|
|
@@ -51,7 +51,7 @@ class ResourceTag:
|
|
51
51
|
def key(self):
|
52
52
|
"""Gets the key of this ResourceTag.
|
53
53
|
|
54
|
-
键。最大长度
|
54
|
+
键。最大长度128个unicode字符。 key需要满足标签字符集规范。
|
55
55
|
|
56
56
|
:return: The key of this ResourceTag.
|
57
57
|
:rtype: str
|
@@ -62,7 +62,7 @@ class ResourceTag:
|
|
62
62
|
def key(self, key):
|
63
63
|
"""Sets the key of this ResourceTag.
|
64
64
|
|
65
|
-
键。最大长度
|
65
|
+
键。最大长度128个unicode字符。 key需要满足标签字符集规范。
|
66
66
|
|
67
67
|
:param key: The key of this ResourceTag.
|
68
68
|
:type key: str
|
@@ -73,7 +73,7 @@ class ResourceTag:
|
|
73
73
|
def value(self):
|
74
74
|
"""Gets the value of this ResourceTag.
|
75
75
|
|
76
|
-
值。action为create时必选,每个值最大长度
|
76
|
+
值。action为create时必选,每个值最大长度255个unicode字符, 删除时如果value有值按照key/value删除, 如果value没值,则按照key删除。 value需要满足标签字符集规范。
|
77
77
|
|
78
78
|
:return: The value of this ResourceTag.
|
79
79
|
:rtype: str
|
@@ -84,7 +84,7 @@ class ResourceTag:
|
|
84
84
|
def value(self, value):
|
85
85
|
"""Sets the value of this ResourceTag.
|
86
86
|
|
87
|
-
值。action为create时必选,每个值最大长度
|
87
|
+
值。action为create时必选,每个值最大长度255个unicode字符, 删除时如果value有值按照key/value删除, 如果value没值,则按照key删除。 value需要满足标签字符集规范。
|
88
88
|
|
89
89
|
:param value: The value of this ResourceTag.
|
90
90
|
:type value: str
|
@@ -30,6 +30,7 @@ class ServiceList:
|
|
30
30
|
'project_id': 'str',
|
31
31
|
'domain_id': 'str',
|
32
32
|
'ports': 'list[PortList]',
|
33
|
+
'ip': 'str',
|
33
34
|
'tags': 'list[TagList]',
|
34
35
|
'connection_count': 'int',
|
35
36
|
'tcp_proxy': 'str',
|
@@ -53,6 +54,7 @@ class ServiceList:
|
|
53
54
|
'project_id': 'project_id',
|
54
55
|
'domain_id': 'domain_id',
|
55
56
|
'ports': 'ports',
|
57
|
+
'ip': 'ip',
|
56
58
|
'tags': 'tags',
|
57
59
|
'connection_count': 'connection_count',
|
58
60
|
'tcp_proxy': 'tcp_proxy',
|
@@ -62,7 +64,7 @@ class ServiceList:
|
|
62
64
|
'enable_policy': 'enable_policy'
|
63
65
|
}
|
64
66
|
|
65
|
-
def __init__(self, id=None, port_id=None, service_name=None, server_type=None, vpc_id=None, approval_enabled=None, status=None, service_type=None, created_at=None, updated_at=None, project_id=None, domain_id=None, ports=None, tags=None, connection_count=None, tcp_proxy=None, error=None, description=None, public_border_group=None, enable_policy=None):
|
67
|
+
def __init__(self, id=None, port_id=None, service_name=None, server_type=None, vpc_id=None, approval_enabled=None, status=None, service_type=None, created_at=None, updated_at=None, project_id=None, domain_id=None, ports=None, ip=None, tags=None, connection_count=None, tcp_proxy=None, error=None, description=None, public_border_group=None, enable_policy=None):
|
66
68
|
"""ServiceList
|
67
69
|
|
68
70
|
The model defined in huaweicloud sdk
|
@@ -93,6 +95,8 @@ class ServiceList:
|
|
93
95
|
:type domain_id: str
|
94
96
|
:param ports: 服务开放的端口映射列表 同一个终端节点服务下,不允许重复的端口映射。 若多个终端节点服务共用一个port_id, 则终端节点服务之间的所有端口映射的server_port和protocol的组合不能重复。
|
95
97
|
:type ports: list[:class:`huaweicloudsdkvpcep.v1.PortList`]
|
98
|
+
:param ip: 接口型VLAN场景服务端IPv4地址或域名
|
99
|
+
:type ip: str
|
96
100
|
:param tags: 资源标签列表
|
97
101
|
:type tags: list[:class:`huaweicloudsdkvpcep.v1.TagList`]
|
98
102
|
:param connection_count: 终端节点服务下连接的状态为“创建中”或“已接受”的终端节点的个数。
|
@@ -124,6 +128,7 @@ class ServiceList:
|
|
124
128
|
self._project_id = None
|
125
129
|
self._domain_id = None
|
126
130
|
self._ports = None
|
131
|
+
self._ip = None
|
127
132
|
self._tags = None
|
128
133
|
self._connection_count = None
|
129
134
|
self._tcp_proxy = None
|
@@ -159,6 +164,8 @@ class ServiceList:
|
|
159
164
|
self.domain_id = domain_id
|
160
165
|
if ports is not None:
|
161
166
|
self.ports = ports
|
167
|
+
if ip is not None:
|
168
|
+
self.ip = ip
|
162
169
|
if tags is not None:
|
163
170
|
self.tags = tags
|
164
171
|
if connection_count is not None:
|
@@ -460,6 +467,28 @@ class ServiceList:
|
|
460
467
|
"""
|
461
468
|
self._ports = ports
|
462
469
|
|
470
|
+
@property
|
471
|
+
def ip(self):
|
472
|
+
"""Gets the ip of this ServiceList.
|
473
|
+
|
474
|
+
接口型VLAN场景服务端IPv4地址或域名
|
475
|
+
|
476
|
+
:return: The ip of this ServiceList.
|
477
|
+
:rtype: str
|
478
|
+
"""
|
479
|
+
return self._ip
|
480
|
+
|
481
|
+
@ip.setter
|
482
|
+
def ip(self, ip):
|
483
|
+
"""Sets the ip of this ServiceList.
|
484
|
+
|
485
|
+
接口型VLAN场景服务端IPv4地址或域名
|
486
|
+
|
487
|
+
:param ip: The ip of this ServiceList.
|
488
|
+
:type ip: str
|
489
|
+
"""
|
490
|
+
self._ip = ip
|
491
|
+
|
463
492
|
@property
|
464
493
|
def tags(self):
|
465
494
|
"""Gets the tags of this ServiceList.
|
@@ -31,9 +31,9 @@ class TagList:
|
|
31
31
|
|
32
32
|
The model defined in huaweicloud sdk
|
33
33
|
|
34
|
-
:param key: 键。
|
34
|
+
:param key: 键。 key不能为空,长度1~128个字符(中文也可以输入128个字符)。 可用 UTF-8 格式表示的字母(包含中文、西班牙语、葡语等)、数字和空格,以及以下字符: _ . : = + - @。 _sys_开头属于系统标签,租户不能输入。 key两头不能有空格字符。
|
35
35
|
:type key: str
|
36
|
-
:param value: 值。
|
36
|
+
:param value: 值。 长度0~255个字符(中文也可以输入255个字符)。 可用 UTF-8 格式表示的字母(包含中文、西班牙语、葡语等)、数字和空格,以及以下字符: _ . : / = + - @。 资源标签值可以为空字符串。
|
37
37
|
:type value: str
|
38
38
|
"""
|
39
39
|
|
@@ -52,7 +52,7 @@ class TagList:
|
|
52
52
|
def key(self):
|
53
53
|
"""Gets the key of this TagList.
|
54
54
|
|
55
|
-
键。
|
55
|
+
键。 key不能为空,长度1~128个字符(中文也可以输入128个字符)。 可用 UTF-8 格式表示的字母(包含中文、西班牙语、葡语等)、数字和空格,以及以下字符: _ . : = + - @。 _sys_开头属于系统标签,租户不能输入。 key两头不能有空格字符。
|
56
56
|
|
57
57
|
:return: The key of this TagList.
|
58
58
|
:rtype: str
|
@@ -63,7 +63,7 @@ class TagList:
|
|
63
63
|
def key(self, key):
|
64
64
|
"""Sets the key of this TagList.
|
65
65
|
|
66
|
-
键。
|
66
|
+
键。 key不能为空,长度1~128个字符(中文也可以输入128个字符)。 可用 UTF-8 格式表示的字母(包含中文、西班牙语、葡语等)、数字和空格,以及以下字符: _ . : = + - @。 _sys_开头属于系统标签,租户不能输入。 key两头不能有空格字符。
|
67
67
|
|
68
68
|
:param key: The key of this TagList.
|
69
69
|
:type key: str
|
@@ -74,7 +74,7 @@ class TagList:
|
|
74
74
|
def value(self):
|
75
75
|
"""Gets the value of this TagList.
|
76
76
|
|
77
|
-
值。
|
77
|
+
值。 长度0~255个字符(中文也可以输入255个字符)。 可用 UTF-8 格式表示的字母(包含中文、西班牙语、葡语等)、数字和空格,以及以下字符: _ . : / = + - @。 资源标签值可以为空字符串。
|
78
78
|
|
79
79
|
:return: The value of this TagList.
|
80
80
|
:rtype: str
|
@@ -85,7 +85,7 @@ class TagList:
|
|
85
85
|
def value(self, value):
|
86
86
|
"""Sets the value of this TagList.
|
87
87
|
|
88
|
-
值。
|
88
|
+
值。 长度0~255个字符(中文也可以输入255个字符)。 可用 UTF-8 格式表示的字母(包含中文、西班牙语、葡语等)、数字和空格,以及以下字符: _ . : / = + - @。 资源标签值可以为空字符串。
|
89
89
|
|
90
90
|
:param value: The value of this TagList.
|
91
91
|
:type value: str
|
@@ -31,7 +31,7 @@ class TagValuesList:
|
|
31
31
|
|
32
32
|
The model defined in huaweicloud sdk
|
33
33
|
|
34
|
-
:param key: 键。 最大长度
|
34
|
+
:param key: 键。 最大长度128个unicode字符。key不能为空。(搜索时不对此参数做字符集校), key不能为空或者空字符串,不能为空格,校验和使用之前先trim前后半角空格。
|
35
35
|
:type key: str
|
36
36
|
:param values: 值列表。 每个值最大长度255个unicode字符,校验和使用之前先trim前后半角空格。 value可为空数组但不可缺省。如果values为空列表,则表示any_value(查询任意value)。 value之间为或的关系。(搜索时不对此参数做字符集校验,只做长度校验)。
|
37
37
|
:type values: list[str]
|
@@ -50,7 +50,7 @@ class TagValuesList:
|
|
50
50
|
def key(self):
|
51
51
|
"""Gets the key of this TagValuesList.
|
52
52
|
|
53
|
-
键。 最大长度
|
53
|
+
键。 最大长度128个unicode字符。key不能为空。(搜索时不对此参数做字符集校), key不能为空或者空字符串,不能为空格,校验和使用之前先trim前后半角空格。
|
54
54
|
|
55
55
|
:return: The key of this TagValuesList.
|
56
56
|
:rtype: str
|
@@ -61,7 +61,7 @@ class TagValuesList:
|
|
61
61
|
def key(self, key):
|
62
62
|
"""Sets the key of this TagValuesList.
|
63
63
|
|
64
|
-
键。 最大长度
|
64
|
+
键。 最大长度128个unicode字符。key不能为空。(搜索时不对此参数做字符集校), key不能为空或者空字符串,不能为空格,校验和使用之前先trim前后半角空格。
|
65
65
|
|
66
66
|
:param key: The key of this TagValuesList.
|
67
67
|
:type key: str
|
@@ -22,7 +22,8 @@ class UpdateEndpointServiceRequestBody:
|
|
22
22
|
'ports': 'list[PortList]',
|
23
23
|
'port_id': 'str',
|
24
24
|
'tcp_proxy': 'str',
|
25
|
-
'description': 'str'
|
25
|
+
'description': 'str',
|
26
|
+
'ip': 'str'
|
26
27
|
}
|
27
28
|
|
28
29
|
attribute_map = {
|
@@ -31,10 +32,11 @@ class UpdateEndpointServiceRequestBody:
|
|
31
32
|
'ports': 'ports',
|
32
33
|
'port_id': 'port_id',
|
33
34
|
'tcp_proxy': 'tcp_proxy',
|
34
|
-
'description': 'description'
|
35
|
+
'description': 'description',
|
36
|
+
'ip': 'ip'
|
35
37
|
}
|
36
38
|
|
37
|
-
def __init__(self, approval_enabled=None, service_name=None, ports=None, port_id=None, tcp_proxy=None, description=None):
|
39
|
+
def __init__(self, approval_enabled=None, service_name=None, ports=None, port_id=None, tcp_proxy=None, description=None, ip=None):
|
38
40
|
"""UpdateEndpointServiceRequestBody
|
39
41
|
|
40
42
|
The model defined in huaweicloud sdk
|
@@ -51,6 +53,8 @@ class UpdateEndpointServiceRequestBody:
|
|
51
53
|
:type tcp_proxy: str
|
52
54
|
:param description: 描述字段,支持中英文字母、数字等字符,不支持“<”或“>”字符。
|
53
55
|
:type description: str
|
56
|
+
:param ip: 接口型VLAN场景服务端IPv4地址或域名
|
57
|
+
:type ip: str
|
54
58
|
"""
|
55
59
|
|
56
60
|
|
@@ -61,6 +65,7 @@ class UpdateEndpointServiceRequestBody:
|
|
61
65
|
self._port_id = None
|
62
66
|
self._tcp_proxy = None
|
63
67
|
self._description = None
|
68
|
+
self._ip = None
|
64
69
|
self.discriminator = None
|
65
70
|
|
66
71
|
if approval_enabled is not None:
|
@@ -75,6 +80,8 @@ class UpdateEndpointServiceRequestBody:
|
|
75
80
|
self.tcp_proxy = tcp_proxy
|
76
81
|
if description is not None:
|
77
82
|
self.description = description
|
83
|
+
if ip is not None:
|
84
|
+
self.ip = ip
|
78
85
|
|
79
86
|
@property
|
80
87
|
def approval_enabled(self):
|
@@ -208,6 +215,28 @@ class UpdateEndpointServiceRequestBody:
|
|
208
215
|
"""
|
209
216
|
self._description = description
|
210
217
|
|
218
|
+
@property
|
219
|
+
def ip(self):
|
220
|
+
"""Gets the ip of this UpdateEndpointServiceRequestBody.
|
221
|
+
|
222
|
+
接口型VLAN场景服务端IPv4地址或域名
|
223
|
+
|
224
|
+
:return: The ip of this UpdateEndpointServiceRequestBody.
|
225
|
+
:rtype: str
|
226
|
+
"""
|
227
|
+
return self._ip
|
228
|
+
|
229
|
+
@ip.setter
|
230
|
+
def ip(self, ip):
|
231
|
+
"""Sets the ip of this UpdateEndpointServiceRequestBody.
|
232
|
+
|
233
|
+
接口型VLAN场景服务端IPv4地址或域名
|
234
|
+
|
235
|
+
:param ip: The ip of this UpdateEndpointServiceRequestBody.
|
236
|
+
:type ip: str
|
237
|
+
"""
|
238
|
+
self._ip = ip
|
239
|
+
|
211
240
|
def to_dict(self):
|
212
241
|
"""Returns the model properties as a dict"""
|
213
242
|
result = {}
|
@@ -30,6 +30,7 @@ class UpdateEndpointServiceResponse(SdkResponse):
|
|
30
30
|
'created_at': 'datetime',
|
31
31
|
'updated_at': 'datetime',
|
32
32
|
'project_id': 'str',
|
33
|
+
'ip': 'str',
|
33
34
|
'ports': 'list[PortList]',
|
34
35
|
'tcp_proxy': 'str',
|
35
36
|
'tags': 'list[TagList]',
|
@@ -51,6 +52,7 @@ class UpdateEndpointServiceResponse(SdkResponse):
|
|
51
52
|
'created_at': 'created_at',
|
52
53
|
'updated_at': 'updated_at',
|
53
54
|
'project_id': 'project_id',
|
55
|
+
'ip': 'ip',
|
54
56
|
'ports': 'ports',
|
55
57
|
'tcp_proxy': 'tcp_proxy',
|
56
58
|
'tags': 'tags',
|
@@ -59,7 +61,7 @@ class UpdateEndpointServiceResponse(SdkResponse):
|
|
59
61
|
'ip_version': 'ip_version'
|
60
62
|
}
|
61
63
|
|
62
|
-
def __init__(self, id=None, port_id=None, service_name=None, server_type=None, vpc_id=None, pool_id=None, approval_enabled=None, status=None, service_type=None, created_at=None, updated_at=None, project_id=None, ports=None, tcp_proxy=None, tags=None, description=None, enable_policy=None, ip_version=None):
|
64
|
+
def __init__(self, id=None, port_id=None, service_name=None, server_type=None, vpc_id=None, pool_id=None, approval_enabled=None, status=None, service_type=None, created_at=None, updated_at=None, project_id=None, ip=None, ports=None, tcp_proxy=None, tags=None, description=None, enable_policy=None, ip_version=None):
|
63
65
|
"""UpdateEndpointServiceResponse
|
64
66
|
|
65
67
|
The model defined in huaweicloud sdk
|
@@ -88,6 +90,8 @@ class UpdateEndpointServiceResponse(SdkResponse):
|
|
88
90
|
:type updated_at: datetime
|
89
91
|
:param project_id: 项目ID
|
90
92
|
:type project_id: str
|
93
|
+
:param ip: 接口型VLAN场景服务端IPv4地址或域名
|
94
|
+
:type ip: str
|
91
95
|
:param ports: 服务开放的端口映射列表 同一个终端节点服务下,不允许重复的端口映射。 若多个终端节点服务共用一个port_id, 则终端节点服务之间的所有端口映射的server_port和protocol的组合不能重复。
|
92
96
|
:type ports: list[:class:`huaweicloudsdkvpcep.v1.PortList`]
|
93
97
|
:param tcp_proxy: 用于控制将哪些信息(如客户端的源IP、源端口、marker_id等)携带到服务端。 支持携带的客户端信息包括如下两种类型: - TCP TOA:表示将客户端信息插入到tcp option字段中携带至服务端。 说明:仅当后端资源为OBS时,支持TCP TOA类型信息携带方式。 - Proxy Protocol:表示将客户端信息插入到tcp payload字段中携带至服务端。 仅当服务端支持解析上述字段时,该参数设置才有效。 该参数的取值包括: - close:表示关闭代理协议。 - toa_open:表示开启代理协议“tcp_toa”。 - proxy_open:表示开启代理协议“proxy_protocol”。 - open:表示同时开启代理协议“tcp_toa”和“proxy_protocol”。 默认值为“close”。
|
@@ -116,6 +120,7 @@ class UpdateEndpointServiceResponse(SdkResponse):
|
|
116
120
|
self._created_at = None
|
117
121
|
self._updated_at = None
|
118
122
|
self._project_id = None
|
123
|
+
self._ip = None
|
119
124
|
self._ports = None
|
120
125
|
self._tcp_proxy = None
|
121
126
|
self._tags = None
|
@@ -148,6 +153,8 @@ class UpdateEndpointServiceResponse(SdkResponse):
|
|
148
153
|
self.updated_at = updated_at
|
149
154
|
if project_id is not None:
|
150
155
|
self.project_id = project_id
|
156
|
+
if ip is not None:
|
157
|
+
self.ip = ip
|
151
158
|
if ports is not None:
|
152
159
|
self.ports = ports
|
153
160
|
if tcp_proxy is not None:
|
@@ -425,6 +432,28 @@ class UpdateEndpointServiceResponse(SdkResponse):
|
|
425
432
|
"""
|
426
433
|
self._project_id = project_id
|
427
434
|
|
435
|
+
@property
|
436
|
+
def ip(self):
|
437
|
+
"""Gets the ip of this UpdateEndpointServiceResponse.
|
438
|
+
|
439
|
+
接口型VLAN场景服务端IPv4地址或域名
|
440
|
+
|
441
|
+
:return: The ip of this UpdateEndpointServiceResponse.
|
442
|
+
:rtype: str
|
443
|
+
"""
|
444
|
+
return self._ip
|
445
|
+
|
446
|
+
@ip.setter
|
447
|
+
def ip(self, ip):
|
448
|
+
"""Sets the ip of this UpdateEndpointServiceResponse.
|
449
|
+
|
450
|
+
接口型VLAN场景服务端IPv4地址或域名
|
451
|
+
|
452
|
+
:param ip: The ip of this UpdateEndpointServiceResponse.
|
453
|
+
:type ip: str
|
454
|
+
"""
|
455
|
+
self._ip = ip
|
456
|
+
|
428
457
|
@property
|
429
458
|
def ports(self):
|
430
459
|
"""Gets the ports of this UpdateEndpointServiceResponse.
|
@@ -750,6 +750,8 @@ class VpcepAsyncClient(Client):
|
|
750
750
|
query_params.append(('offset', local_var_params['offset']))
|
751
751
|
if 'public_border_group' in local_var_params:
|
752
752
|
query_params.append(('public_border_group', local_var_params['public_border_group']))
|
753
|
+
if 'net_type' in local_var_params:
|
754
|
+
query_params.append(('net_type', local_var_params['net_type']))
|
753
755
|
|
754
756
|
header_params = {}
|
755
757
|
|
@@ -750,6 +750,8 @@ class VpcepClient(Client):
|
|
750
750
|
query_params.append(('offset', local_var_params['offset']))
|
751
751
|
if 'public_border_group' in local_var_params:
|
752
752
|
query_params.append(('public_border_group', local_var_params['public_border_group']))
|
753
|
+
if 'net_type' in local_var_params:
|
754
|
+
query_params.append(('net_type', local_var_params['net_type']))
|
753
755
|
|
754
756
|
header_params = {}
|
755
757
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: huaweicloudsdkvpcep
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.115
|
4
4
|
Summary: VPCEP
|
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.115
|
26
26
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
@@ -1,7 +1,7 @@
|
|
1
1
|
huaweicloudsdkvpcep/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
huaweicloudsdkvpcep/v1/__init__.py,sha256=gVS1Zd4Se82LT09s7LiwGW-z9ue2CeN7D08f0N7Hh4I,10324
|
3
|
-
huaweicloudsdkvpcep/v1/vpcep_async_client.py,sha256=
|
4
|
-
huaweicloudsdkvpcep/v1/vpcep_client.py,sha256
|
3
|
+
huaweicloudsdkvpcep/v1/vpcep_async_client.py,sha256=LLJjdbzbJ7pAEno9ZB1dj01hNkFcpzFJ7n_sMfWzTrg,76536
|
4
|
+
huaweicloudsdkvpcep/v1/vpcep_client.py,sha256=c2FGX-5jc9c3e7GDcvTUrBX86z7vFwLM_7tOyRPoONw,76491
|
5
5
|
huaweicloudsdkvpcep/v1/model/__init__.py,sha256=90rHVT3fMnMenWwWvzr3c0i6EuMTR6Ilb94aq1iLreY,10226
|
6
6
|
huaweicloudsdkvpcep/v1/model/accept_or_reject_endpoint_request.py,sha256=pyWanH3An-0bU-9zAD6HMWgh3ElATxnBiB_6zQTtB8M,4387
|
7
7
|
huaweicloudsdkvpcep/v1/model/accept_or_reject_endpoint_request_body.py,sha256=1UNA2Dyf94IUrCLmUQYHKGp98Gby7nwjFnMfgiAfk4w,4335
|
@@ -24,8 +24,8 @@ huaweicloudsdkvpcep/v1/model/create_endpoint_request.py,sha256=j-SEKl7IsgZLYggln
|
|
24
24
|
huaweicloudsdkvpcep/v1/model/create_endpoint_request_body.py,sha256=HmiCBEqq0BuNpJNNjj8I7biiYoXj8iNpDWU2XG4h9TA,20519
|
25
25
|
huaweicloudsdkvpcep/v1/model/create_endpoint_response.py,sha256=glBni4wlLjuWczMF_qxC13deH-Dt9qRazUmuuhDytXQ,31666
|
26
26
|
huaweicloudsdkvpcep/v1/model/create_endpoint_service_request.py,sha256=tYy9bz3ZzScbtOLLQgEyNrHqyYDf_sPuiG4CFkxnLr8,3241
|
27
|
-
huaweicloudsdkvpcep/v1/model/create_endpoint_service_request_body.py,sha256=
|
28
|
-
huaweicloudsdkvpcep/v1/model/create_endpoint_service_response.py,sha256=
|
27
|
+
huaweicloudsdkvpcep/v1/model/create_endpoint_service_request_body.py,sha256=G6bPAHBOl8PQ1us7h-GC-P76fX7mHOK4PPdLz0BxmE8,23594
|
28
|
+
huaweicloudsdkvpcep/v1/model/create_endpoint_service_response.py,sha256=2I-lP83VpLZyRlF1LUs6CzjrwVfCgp0stDGSMNcAeY8,26856
|
29
29
|
huaweicloudsdkvpcep/v1/model/delete_endpoint_policy_request.py,sha256=7yIX51OX95D3NPMsCCmk9IsCJGdMEujtd4QmkW_9Zik,3271
|
30
30
|
huaweicloudsdkvpcep/v1/model/delete_endpoint_policy_response.py,sha256=qNpjsCk_WreELdUAjMxIN3de5aZWvQpM_BWuW7lfG7U,29482
|
31
31
|
huaweicloudsdkvpcep/v1/model/delete_endpoint_request.py,sha256=RVDbIUGe6B9zXTdXwcnCJ7tJXPVSMrJYgZgsIwnJons,3229
|
@@ -42,7 +42,7 @@ huaweicloudsdkvpcep/v1/model/error.py,sha256=gul0xlolJdKV6ljRQqJAseaLFSnmLTn0G70
|
|
42
42
|
huaweicloudsdkvpcep/v1/model/link.py,sha256=5LeR0cr2v4fkJjtT_31vBsAILKgNOe1E65ce0gEnfYg,4371
|
43
43
|
huaweicloudsdkvpcep/v1/model/list_endpoint_info_details_request.py,sha256=lLTZ-sK62IRnccW0vfvdDwX5FpFJp6U0N-UdzgSiJtI,3292
|
44
44
|
huaweicloudsdkvpcep/v1/model/list_endpoint_info_details_response.py,sha256=qN9hvQEjh76_LY_hxIPZjRNTYrCWv9ymJdNcdJZdIWs,36559
|
45
|
-
huaweicloudsdkvpcep/v1/model/list_endpoint_service_request.py,sha256=
|
45
|
+
huaweicloudsdkvpcep/v1/model/list_endpoint_service_request.py,sha256=Hb1DpgdkguabJMHi4YaxXwHQJikMTxTdnmBFWnbvNno,12111
|
46
46
|
huaweicloudsdkvpcep/v1/model/list_endpoint_service_response.py,sha256=crKxvIY8MQ02QEGLUdfCI9gelfVjf5X8uOmDb4U3T9Y,4772
|
47
47
|
huaweicloudsdkvpcep/v1/model/list_endpoints_request.py,sha256=G1aRp9hee6Pl7x9GEqQAEFssqi_tcLOl4syxatXKnII,9594
|
48
48
|
huaweicloudsdkvpcep/v1/model/list_endpoints_response.py,sha256=7xPNsnqzBZQ1rP8FE2-rdOg4LSKE88M2ltonVQ2IGTQ,4525
|
@@ -57,7 +57,7 @@ huaweicloudsdkvpcep/v1/model/list_service_connections_response.py,sha256=KMJa46g
|
|
57
57
|
huaweicloudsdkvpcep/v1/model/list_service_describe_details_request.py,sha256=RRPcVZLq_lggXprM8n89Md_gG8eUDS2qGLnV05FhiLg,4775
|
58
58
|
huaweicloudsdkvpcep/v1/model/list_service_describe_details_response.py,sha256=TX5dAjLmFeUGVcX_pCT3uGIKS2CU30lCgJL2LQziWzs,11212
|
59
59
|
huaweicloudsdkvpcep/v1/model/list_service_details_request.py,sha256=K1cafAUL9bT8CcLGLPTiO10XufvavCV1em061viYcbs,3451
|
60
|
-
huaweicloudsdkvpcep/v1/model/list_service_details_response.py,sha256=
|
60
|
+
huaweicloudsdkvpcep/v1/model/list_service_details_response.py,sha256=eW_5i0GUs22RTeuilm-SM2zqomN97GlkNJWIhrM7Zss,26879
|
61
61
|
huaweicloudsdkvpcep/v1/model/list_service_permissions_details_request.py,sha256=uGVFPTQRq_MOtsAwul4w57GeUQxg88PZ9e2f6mZmeSo,9826
|
62
62
|
huaweicloudsdkvpcep/v1/model/list_service_permissions_details_response.py,sha256=--MBq4b-IhoonheaAEJiZ98h2KTtxw7Fqk6LT8kpno8,4795
|
63
63
|
huaweicloudsdkvpcep/v1/model/list_service_public_details_request.py,sha256=RVPIajB4NfFWmH_12QFAo36ICILww3sVSI29W_nRqcM,9249
|
@@ -68,19 +68,19 @@ huaweicloudsdkvpcep/v1/model/list_version_details_request.py,sha256=yN_blCdR7unf
|
|
68
68
|
huaweicloudsdkvpcep/v1/model/list_version_details_response.py,sha256=8s3snQz802rNb_K6giqf8lHp_sMfvssqAKMa47UdVcs,3474
|
69
69
|
huaweicloudsdkvpcep/v1/model/match.py,sha256=ZYBhdBnAlS1cDN9_ONg-DwePqBvKOyj2KusQU0lEARY,3741
|
70
70
|
huaweicloudsdkvpcep/v1/model/permission_object.py,sha256=2QKS0QQLEPxt_2Ke2ys0Vg2A6pPWUnvEfMBcKzX6z7w,8438
|
71
|
-
huaweicloudsdkvpcep/v1/model/policy_statement.py,sha256=
|
71
|
+
huaweicloudsdkvpcep/v1/model/policy_statement.py,sha256=K3-TRDw3VFjcuDxUj5AHeuplZYrHlBf5gigDN7FthbQ,4537
|
72
72
|
huaweicloudsdkvpcep/v1/model/port_list.py,sha256=pFIOwGtk3mjAtqgUepKyCzCt2sfnYzk0XESzfeWHgp8,5270
|
73
73
|
huaweicloudsdkvpcep/v1/model/query_error.py,sha256=LCce6C5gV7Jfh0ww5OJ7nWJVBt4lUfd1zTrWCqu09Rw,3913
|
74
74
|
huaweicloudsdkvpcep/v1/model/query_resource_instance_tags_body.py,sha256=i7uJH5D0y4RB_xgDgg9C5OgzVrBFbxrotZ-0s4Jqm4w,18822
|
75
75
|
huaweicloudsdkvpcep/v1/model/quotas.py,sha256=1hAO3xKA6DOTba3hURSvCJY1NexNPI5ojEJHpOhCczA,4897
|
76
76
|
huaweicloudsdkvpcep/v1/model/resource_instance.py,sha256=VIEqqK1hiX03DhpC4gpEXtvz_4f4XgDm0mstZizoV1I,5003
|
77
|
-
huaweicloudsdkvpcep/v1/model/resource_tag.py,sha256=
|
77
|
+
huaweicloudsdkvpcep/v1/model/resource_tag.py,sha256=3KER5V5ioSG8OJ3xsVcUQ0lKIZZDb-8bl-PHfLl9nD0,4330
|
78
78
|
huaweicloudsdkvpcep/v1/model/resources_response_body.py,sha256=F4fBnCk_2vAa2NlRrJU4EC30i128C8iknwWmYojnFns,3243
|
79
79
|
huaweicloudsdkvpcep/v1/model/routetable_info_error.py,sha256=NTXBRligT5VSMiETBe0Wv5Q18F6HnE0a8T14-I570xw,4649
|
80
80
|
huaweicloudsdkvpcep/v1/model/routetable_info_error_detial.py,sha256=zfwdiaYb4siWhARkvF0KAVgLdO3srXfk-IhXnnDjMPs,3909
|
81
|
-
huaweicloudsdkvpcep/v1/model/service_list.py,sha256=
|
82
|
-
huaweicloudsdkvpcep/v1/model/tag_list.py,sha256=
|
83
|
-
huaweicloudsdkvpcep/v1/model/tag_values_list.py,sha256=
|
81
|
+
huaweicloudsdkvpcep/v1/model/service_list.py,sha256=n3WPpVoYJS-T8h--yOw5eYGL0jF1F5JAYJdWbfRZB5Y,27550
|
82
|
+
huaweicloudsdkvpcep/v1/model/tag_list.py,sha256=QmwhNOSjwTMTgUpmOC9wyQW1IethQJG6u2PV7FiCIPg,5129
|
83
|
+
huaweicloudsdkvpcep/v1/model/tag_values_list.py,sha256=_t4JzuMEQcJ9eCvdyrxk1WNZhuL5qEAygqgwxfn4kkg,5051
|
84
84
|
huaweicloudsdkvpcep/v1/model/update_endpoint_connections_desc_request.py,sha256=vA34fZ7IrUyQxeaVUqSUWDBtXw2SayIx3-gZrZ7zXOo,4481
|
85
85
|
huaweicloudsdkvpcep/v1/model/update_endpoint_connections_desc_request_body.py,sha256=Ip6aHoUELbY4zmobxfpYCqqjHQRoCSGyNHAH3SbuNBk,3472
|
86
86
|
huaweicloudsdkvpcep/v1/model/update_endpoint_connections_desc_response.py,sha256=m74dK8t1kG4oQFkEb1YzrGzPCVMCBmOhgtFkmx5FoIs,3583
|
@@ -97,16 +97,16 @@ huaweicloudsdkvpcep/v1/model/update_endpoint_service_permission_desc_request.py,
|
|
97
97
|
huaweicloudsdkvpcep/v1/model/update_endpoint_service_permission_desc_request_body.py,sha256=aC0NNfw_8riiL5_YF60FJ_9bGTFyM9EIwOQVfubn5KI,3390
|
98
98
|
huaweicloudsdkvpcep/v1/model/update_endpoint_service_permission_desc_response.py,sha256=FlIhiadpxV_j4bFea38pdRzs5JdJtPj-i0PEQLfCrrQ,3652
|
99
99
|
huaweicloudsdkvpcep/v1/model/update_endpoint_service_request.py,sha256=sGfJ4EvseD6y1nunBciZpoZ3Yw86kSRPKerah0Ee2Hc,4362
|
100
|
-
huaweicloudsdkvpcep/v1/model/update_endpoint_service_request_body.py,sha256=
|
101
|
-
huaweicloudsdkvpcep/v1/model/update_endpoint_service_response.py,sha256=
|
100
|
+
huaweicloudsdkvpcep/v1/model/update_endpoint_service_request_body.py,sha256=RFPpQy0pJoY-i1LGKKDaBgV202qncMYlccFK5YvSBNI,12978
|
101
|
+
huaweicloudsdkvpcep/v1/model/update_endpoint_service_response.py,sha256=4dYIaHIBcqWJizFuW_-8rdvsoiJJLm8MsnHTN3vsaiU,26856
|
102
102
|
huaweicloudsdkvpcep/v1/model/update_endpoint_white_request.py,sha256=kd7iFXZpoGMGkGNCxmCU9FX1yq5XKJ1I49SLmzZndCA,4145
|
103
103
|
huaweicloudsdkvpcep/v1/model/update_endpoint_white_request_body.py,sha256=xL7rS2NZfS4Ft8griBdoErMuaGZeljDjwOJKXGi3gNU,5218
|
104
104
|
huaweicloudsdkvpcep/v1/model/update_endpoint_white_response.py,sha256=-T61J-nWm_IEaxR2iypAWZvucp5Bm8RDu3W8f7w1wpM,26956
|
105
105
|
huaweicloudsdkvpcep/v1/model/version_object.py,sha256=aKKQr2giHmj_mL-4HIST_fSBQVMrMowjcdiDjsF7VaU,7677
|
106
106
|
huaweicloudsdkvpcep/v1/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
107
107
|
huaweicloudsdkvpcep/v1/region/vpcep_region.py,sha256=t2kToeOtdtAwbKsc5AEbjw-u6OYGQ_DpmAsXy76HRQk,5353
|
108
|
-
huaweicloudsdkvpcep-3.1.
|
109
|
-
huaweicloudsdkvpcep-3.1.
|
110
|
-
huaweicloudsdkvpcep-3.1.
|
111
|
-
huaweicloudsdkvpcep-3.1.
|
112
|
-
huaweicloudsdkvpcep-3.1.
|
108
|
+
huaweicloudsdkvpcep-3.1.115.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
109
|
+
huaweicloudsdkvpcep-3.1.115.dist-info/METADATA,sha256=jZUf09fobO2K0Jt882vtzPcklJb3-c8e4-6uhbNl2zA,1141
|
110
|
+
huaweicloudsdkvpcep-3.1.115.dist-info/WHEEL,sha256=fS9sRbCBHs7VFcwJLnLXN1MZRR0_TVTxvXKzOnaSFs8,110
|
111
|
+
huaweicloudsdkvpcep-3.1.115.dist-info/top_level.txt,sha256=JE_XgWO8d5N3LDJfZXUoH8r739Dlwm1N6WWOhnzW2p0,20
|
112
|
+
huaweicloudsdkvpcep-3.1.115.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{huaweicloudsdkvpcep-3.1.113.dist-info → huaweicloudsdkvpcep-3.1.115.dist-info}/top_level.txt
RENAMED
File without changes
|