huaweicloudsdkvpcep 3.1.140__py2.py3-none-any.whl → 3.1.142__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/list_service_details_response.py +30 -1
- huaweicloudsdkvpcep/v1/model/service_list.py +30 -1
- {huaweicloudsdkvpcep-3.1.140.dist-info → huaweicloudsdkvpcep-3.1.142.dist-info}/METADATA +2 -2
- {huaweicloudsdkvpcep-3.1.140.dist-info → huaweicloudsdkvpcep-3.1.142.dist-info}/RECORD +7 -7
- {huaweicloudsdkvpcep-3.1.140.dist-info → huaweicloudsdkvpcep-3.1.142.dist-info}/LICENSE +0 -0
- {huaweicloudsdkvpcep-3.1.140.dist-info → huaweicloudsdkvpcep-3.1.142.dist-info}/WHEEL +0 -0
- {huaweicloudsdkvpcep-3.1.140.dist-info → huaweicloudsdkvpcep-3.1.142.dist-info}/top_level.txt +0 -0
@@ -26,6 +26,7 @@ class ListServiceDetailsResponse(SdkResponse):
|
|
26
26
|
'approval_enabled': 'bool',
|
27
27
|
'status': 'str',
|
28
28
|
'service_type': 'str',
|
29
|
+
'supported_editions': 'list[str]',
|
29
30
|
'created_at': 'datetime',
|
30
31
|
'updated_at': 'datetime',
|
31
32
|
'project_id': 'str',
|
@@ -48,6 +49,7 @@ class ListServiceDetailsResponse(SdkResponse):
|
|
48
49
|
'approval_enabled': 'approval_enabled',
|
49
50
|
'status': 'status',
|
50
51
|
'service_type': 'service_type',
|
52
|
+
'supported_editions': 'supported_editions',
|
51
53
|
'created_at': 'created_at',
|
52
54
|
'updated_at': 'updated_at',
|
53
55
|
'project_id': 'project_id',
|
@@ -61,7 +63,7 @@ class ListServiceDetailsResponse(SdkResponse):
|
|
61
63
|
'description': 'description'
|
62
64
|
}
|
63
65
|
|
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):
|
66
|
+
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, supported_editions=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):
|
65
67
|
"""ListServiceDetailsResponse
|
66
68
|
|
67
69
|
The model defined in huaweicloud sdk
|
@@ -82,6 +84,8 @@ class ListServiceDetailsResponse(SdkResponse):
|
|
82
84
|
:type status: str
|
83
85
|
:param service_type: 终端节点服务类型。 终端节点服务类型包括“网关(gateway)型”和“接口(interface)型”: - gateway:由运维人员配置。用户无需创建,可直接使用。 - interface:包括运维人员配置的云服务和用户自己创建的私有服务。 其中,运维人员配置的云服务无需创建,用户可直接使用。 您可以通过创建终端节点创建访问Gateway和Interface类型终端节点服务的终端节。
|
84
86
|
:type service_type: str
|
87
|
+
:param supported_editions: 终端节点服务支持的类型,取值范围为profession-专业型,basic-基础型
|
88
|
+
:type supported_editions: list[str]
|
85
89
|
:param created_at: 终端节点服务的创建时间。 采用UTC时间格式,格式为:YYYY-MM-DDTHH:MM:SSZ
|
86
90
|
:type created_at: datetime
|
87
91
|
:param updated_at: 终端节点服务的更新时间。 采用UTC时间格式,格式为:YYYY-MM-DDTHH:MM:SSZ
|
@@ -116,6 +120,7 @@ class ListServiceDetailsResponse(SdkResponse):
|
|
116
120
|
self._approval_enabled = None
|
117
121
|
self._status = None
|
118
122
|
self._service_type = None
|
123
|
+
self._supported_editions = None
|
119
124
|
self._created_at = None
|
120
125
|
self._updated_at = None
|
121
126
|
self._project_id = None
|
@@ -145,6 +150,8 @@ class ListServiceDetailsResponse(SdkResponse):
|
|
145
150
|
self.status = status
|
146
151
|
if service_type is not None:
|
147
152
|
self.service_type = service_type
|
153
|
+
if supported_editions is not None:
|
154
|
+
self.supported_editions = supported_editions
|
148
155
|
if created_at is not None:
|
149
156
|
self.created_at = created_at
|
150
157
|
if updated_at is not None:
|
@@ -344,6 +351,28 @@ class ListServiceDetailsResponse(SdkResponse):
|
|
344
351
|
"""
|
345
352
|
self._service_type = service_type
|
346
353
|
|
354
|
+
@property
|
355
|
+
def supported_editions(self):
|
356
|
+
"""Gets the supported_editions of this ListServiceDetailsResponse.
|
357
|
+
|
358
|
+
终端节点服务支持的类型,取值范围为profession-专业型,basic-基础型
|
359
|
+
|
360
|
+
:return: The supported_editions of this ListServiceDetailsResponse.
|
361
|
+
:rtype: list[str]
|
362
|
+
"""
|
363
|
+
return self._supported_editions
|
364
|
+
|
365
|
+
@supported_editions.setter
|
366
|
+
def supported_editions(self, supported_editions):
|
367
|
+
"""Sets the supported_editions of this ListServiceDetailsResponse.
|
368
|
+
|
369
|
+
终端节点服务支持的类型,取值范围为profession-专业型,basic-基础型
|
370
|
+
|
371
|
+
:param supported_editions: The supported_editions of this ListServiceDetailsResponse.
|
372
|
+
:type supported_editions: list[str]
|
373
|
+
"""
|
374
|
+
self._supported_editions = supported_editions
|
375
|
+
|
347
376
|
@property
|
348
377
|
def created_at(self):
|
349
378
|
"""Gets the created_at of this ListServiceDetailsResponse.
|
@@ -36,6 +36,7 @@ class ServiceList:
|
|
36
36
|
'tcp_proxy': 'str',
|
37
37
|
'error': 'list[Error]',
|
38
38
|
'description': 'str',
|
39
|
+
'supported_editions': 'list[str]',
|
39
40
|
'public_border_group': 'str',
|
40
41
|
'enable_policy': 'bool'
|
41
42
|
}
|
@@ -60,11 +61,12 @@ class ServiceList:
|
|
60
61
|
'tcp_proxy': 'tcp_proxy',
|
61
62
|
'error': 'error',
|
62
63
|
'description': 'description',
|
64
|
+
'supported_editions': 'supported_editions',
|
63
65
|
'public_border_group': 'public_border_group',
|
64
66
|
'enable_policy': 'enable_policy'
|
65
67
|
}
|
66
68
|
|
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):
|
69
|
+
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, supported_editions=None, public_border_group=None, enable_policy=None):
|
68
70
|
"""ServiceList
|
69
71
|
|
70
72
|
The model defined in huaweicloud sdk
|
@@ -107,6 +109,8 @@ class ServiceList:
|
|
107
109
|
:type error: list[:class:`huaweicloudsdkvpcep.v1.Error`]
|
108
110
|
:param description: 描述字段,支持中英文字母、数字等字符,不支持“<”或“>”字符。
|
109
111
|
:type description: str
|
112
|
+
:param supported_editions: 终端节点服务支持的类型,取值范围为profession-专业型,basic-基础型
|
113
|
+
:type supported_editions: list[str]
|
110
114
|
:param public_border_group: 终端节点服务对应Pool的Public Border Group信息
|
111
115
|
:type public_border_group: str
|
112
116
|
:param enable_policy: 是否允许自定义终端节点策略。 - false:不支持设置终端节点策略 - true:支持设置终端节点策略 默认为false
|
@@ -134,6 +138,7 @@ class ServiceList:
|
|
134
138
|
self._tcp_proxy = None
|
135
139
|
self._error = None
|
136
140
|
self._description = None
|
141
|
+
self._supported_editions = None
|
137
142
|
self._public_border_group = None
|
138
143
|
self._enable_policy = None
|
139
144
|
self.discriminator = None
|
@@ -176,6 +181,8 @@ class ServiceList:
|
|
176
181
|
self.error = error
|
177
182
|
if description is not None:
|
178
183
|
self.description = description
|
184
|
+
if supported_editions is not None:
|
185
|
+
self.supported_editions = supported_editions
|
179
186
|
if public_border_group is not None:
|
180
187
|
self.public_border_group = public_border_group
|
181
188
|
if enable_policy is not None:
|
@@ -599,6 +606,28 @@ class ServiceList:
|
|
599
606
|
"""
|
600
607
|
self._description = description
|
601
608
|
|
609
|
+
@property
|
610
|
+
def supported_editions(self):
|
611
|
+
"""Gets the supported_editions of this ServiceList.
|
612
|
+
|
613
|
+
终端节点服务支持的类型,取值范围为profession-专业型,basic-基础型
|
614
|
+
|
615
|
+
:return: The supported_editions of this ServiceList.
|
616
|
+
:rtype: list[str]
|
617
|
+
"""
|
618
|
+
return self._supported_editions
|
619
|
+
|
620
|
+
@supported_editions.setter
|
621
|
+
def supported_editions(self, supported_editions):
|
622
|
+
"""Sets the supported_editions of this ServiceList.
|
623
|
+
|
624
|
+
终端节点服务支持的类型,取值范围为profession-专业型,basic-基础型
|
625
|
+
|
626
|
+
:param supported_editions: The supported_editions of this ServiceList.
|
627
|
+
:type supported_editions: list[str]
|
628
|
+
"""
|
629
|
+
self._supported_editions = supported_editions
|
630
|
+
|
602
631
|
@property
|
603
632
|
def public_border_group(self):
|
604
633
|
"""Gets the public_border_group of this ServiceList.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: huaweicloudsdkvpcep
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.142
|
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.142
|
26
26
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
@@ -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=x5OVXsRKmszcbx6luK6YdSpQUB2PDqeIwF08wNAQMwo,28151
|
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
|
@@ -78,7 +78,7 @@ huaweicloudsdkvpcep/v1/model/resource_tag.py,sha256=3KER5V5ioSG8OJ3xsVcUQ0lKIZZD
|
|
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=
|
81
|
+
huaweicloudsdkvpcep/v1/model/service_list.py,sha256=aJ3ABa5EdECIknTaDlhft-9Azs5apU01Z6OhY6bys90,28762
|
82
82
|
huaweicloudsdkvpcep/v1/model/tag_list.py,sha256=QmwhNOSjwTMTgUpmOC9wyQW1IethQJG6u2PV7FiCIPg,5129
|
83
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
|
@@ -107,8 +107,8 @@ huaweicloudsdkvpcep/v1/model/upgrade_endpoint_service_response.py,sha256=FjVd1vp
|
|
107
107
|
huaweicloudsdkvpcep/v1/model/version_object.py,sha256=aKKQr2giHmj_mL-4HIST_fSBQVMrMowjcdiDjsF7VaU,7677
|
108
108
|
huaweicloudsdkvpcep/v1/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
109
109
|
huaweicloudsdkvpcep/v1/region/vpcep_region.py,sha256=laVUVNa46eqw8ZJHg9Oyc6pmzZHyJq2lFJeoWP-H4nA,5515
|
110
|
-
huaweicloudsdkvpcep-3.1.
|
111
|
-
huaweicloudsdkvpcep-3.1.
|
112
|
-
huaweicloudsdkvpcep-3.1.
|
113
|
-
huaweicloudsdkvpcep-3.1.
|
114
|
-
huaweicloudsdkvpcep-3.1.
|
110
|
+
huaweicloudsdkvpcep-3.1.142.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
111
|
+
huaweicloudsdkvpcep-3.1.142.dist-info/METADATA,sha256=baKdLLbZ30zrAq6QRrRWPu0Zx6G-UyIoDu5am5q0L6U,1141
|
112
|
+
huaweicloudsdkvpcep-3.1.142.dist-info/WHEEL,sha256=Kh9pAotZVRFj97E15yTA4iADqXdQfIVTHcNaZTjxeGM,110
|
113
|
+
huaweicloudsdkvpcep-3.1.142.dist-info/top_level.txt,sha256=JE_XgWO8d5N3LDJfZXUoH8r739Dlwm1N6WWOhnzW2p0,20
|
114
|
+
huaweicloudsdkvpcep-3.1.142.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{huaweicloudsdkvpcep-3.1.140.dist-info → huaweicloudsdkvpcep-3.1.142.dist-info}/top_level.txt
RENAMED
File without changes
|