huaweicloudsdkvpcep 3.1.86__py2.py3-none-any.whl → 3.1.132__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/__init__.py +2 -0
- huaweicloudsdkvpcep/v1/model/__init__.py +2 -0
- huaweicloudsdkvpcep/v1/model/add_or_remove_service_permissions_request_body.py +3 -3
- huaweicloudsdkvpcep/v1/model/add_or_remove_service_permissions_response.py +3 -3
- huaweicloudsdkvpcep/v1/model/connection_endpoints.py +6 -6
- huaweicloudsdkvpcep/v1/model/create_endpoint_request_body.py +131 -15
- huaweicloudsdkvpcep/v1/model/create_endpoint_response.py +76 -18
- huaweicloudsdkvpcep/v1/model/create_endpoint_service_request_body.py +88 -30
- huaweicloudsdkvpcep/v1/model/create_endpoint_service_response.py +73 -15
- huaweicloudsdkvpcep/v1/model/delete_endpoint_policy_response.py +42 -13
- huaweicloudsdkvpcep/v1/model/endpoint_response_body.py +45 -16
- huaweicloudsdkvpcep/v1/model/endpoint_service.py +6 -6
- huaweicloudsdkvpcep/v1/model/eps_add_permission_request.py +3 -3
- huaweicloudsdkvpcep/v1/model/eps_permission.py +3 -3
- huaweicloudsdkvpcep/v1/model/list_endpoint_info_details_response.py +77 -19
- huaweicloudsdkvpcep/v1/model/list_endpoint_service_request.py +32 -3
- huaweicloudsdkvpcep/v1/model/list_endpoints_request.py +3 -32
- huaweicloudsdkvpcep/v1/model/list_service_describe_details_response.py +6 -6
- huaweicloudsdkvpcep/v1/model/list_service_details_response.py +42 -13
- huaweicloudsdkvpcep/v1/model/list_service_permissions_details_request.py +3 -3
- huaweicloudsdkvpcep/v1/model/permission_object.py +6 -6
- huaweicloudsdkvpcep/v1/model/policy_statement.py +3 -3
- huaweicloudsdkvpcep/v1/model/resource_tag.py +6 -6
- huaweicloudsdkvpcep/v1/model/service_list.py +42 -13
- huaweicloudsdkvpcep/v1/model/tag_list.py +6 -6
- huaweicloudsdkvpcep/v1/model/tag_values_list.py +3 -3
- huaweicloudsdkvpcep/v1/model/update_endpoint_policy_request_body.py +37 -7
- huaweicloudsdkvpcep/v1/model/update_endpoint_policy_response.py +42 -13
- huaweicloudsdkvpcep/v1/model/update_endpoint_service_request_body.py +38 -9
- huaweicloudsdkvpcep/v1/model/update_endpoint_service_response.py +73 -15
- huaweicloudsdkvpcep/v1/model/update_endpoint_white_response.py +67 -9
- huaweicloudsdkvpcep/v1/model/upgrade_endpoint_service_request.py +114 -0
- huaweicloudsdkvpcep/v1/model/upgrade_endpoint_service_response.py +85 -0
- huaweicloudsdkvpcep/v1/region/vpcep_region.py +30 -0
- huaweicloudsdkvpcep/v1/vpcep_async_client.py +85 -11
- huaweicloudsdkvpcep/v1/vpcep_client.py +85 -11
- {huaweicloudsdkvpcep-3.1.86.dist-info → huaweicloudsdkvpcep-3.1.132.dist-info}/METADATA +2 -2
- {huaweicloudsdkvpcep-3.1.86.dist-info → huaweicloudsdkvpcep-3.1.132.dist-info}/RECORD +41 -39
- {huaweicloudsdkvpcep-3.1.86.dist-info → huaweicloudsdkvpcep-3.1.132.dist-info}/WHEEL +1 -1
- {huaweicloudsdkvpcep-3.1.86.dist-info → huaweicloudsdkvpcep-3.1.132.dist-info}/LICENSE +0 -0
- {huaweicloudsdkvpcep-3.1.86.dist-info → huaweicloudsdkvpcep-3.1.132.dist-info}/top_level.txt +0 -0
@@ -104,5 +104,7 @@ from huaweicloudsdkvpcep.v1.model.update_endpoint_service_response import Update
|
|
104
104
|
from huaweicloudsdkvpcep.v1.model.update_endpoint_white_request import UpdateEndpointWhiteRequest
|
105
105
|
from huaweicloudsdkvpcep.v1.model.update_endpoint_white_request_body import UpdateEndpointWhiteRequestBody
|
106
106
|
from huaweicloudsdkvpcep.v1.model.update_endpoint_white_response import UpdateEndpointWhiteResponse
|
107
|
+
from huaweicloudsdkvpcep.v1.model.upgrade_endpoint_service_request import UpgradeEndpointServiceRequest
|
108
|
+
from huaweicloudsdkvpcep.v1.model.upgrade_endpoint_service_response import UpgradeEndpointServiceResponse
|
107
109
|
from huaweicloudsdkvpcep.v1.model.version_object import VersionObject
|
108
110
|
|
@@ -102,4 +102,6 @@ from huaweicloudsdkvpcep.v1.model.update_endpoint_service_response import Update
|
|
102
102
|
from huaweicloudsdkvpcep.v1.model.update_endpoint_white_request import UpdateEndpointWhiteRequest
|
103
103
|
from huaweicloudsdkvpcep.v1.model.update_endpoint_white_request_body import UpdateEndpointWhiteRequestBody
|
104
104
|
from huaweicloudsdkvpcep.v1.model.update_endpoint_white_response import UpdateEndpointWhiteResponse
|
105
|
+
from huaweicloudsdkvpcep.v1.model.upgrade_endpoint_service_request import UpgradeEndpointServiceRequest
|
106
|
+
from huaweicloudsdkvpcep.v1.model.upgrade_endpoint_service_response import UpgradeEndpointServiceResponse
|
105
107
|
from huaweicloudsdkvpcep.v1.model.version_object import VersionObject
|
@@ -33,7 +33,7 @@ class AddOrRemoveServicePermissionsRequestBody:
|
|
33
33
|
|
34
34
|
The model defined in huaweicloud sdk
|
35
35
|
|
36
|
-
:param permissions: permission列表。 权限格式为: - iam:domain::domain_id。其中: “iam:domain::”为固定格式,“domain_id
|
36
|
+
:param permissions: permission列表。 权限格式为: - iam:domain::domain_id。其中: “iam:domain::”为固定格式,“domain_id”为可连接用户的账号ID。 domain_id类型支持输入包括“a~z”、“A~Z”、“0~9”或者“*”,最大长度可以传64。 - organizations:orgPath::org_path。其中: “organizations:orgPath::”为固定格式,org_path为可连接用户的组织路径。 org_path类型支持“a~z”、“A~Z”、“0~9”、“/-*?”或者“*”,最大长度可以传1024。 “*”表示所有终端节点可连接。 示例: - iam:domain::6e9dfd51d1124e8d8498dce894923a0dd - organizations:orgPath::o-3j59d1231uprgk9yuvlidra7zbzfi578/r-rldbu1vmxdw5ahdkknxnvd5rgag77m2z/ou-7tuddd8nh99rebxltawsm6qct5z7rklv/*
|
37
37
|
:type permissions: list[str]
|
38
38
|
:param permission_type: 终端节点服务白名单类型。 - domainId:基于账户ID配置终端节点服务白名单。 - orgPath:基于账户所在组织路径配置终端节点服务白名单。
|
39
39
|
:type permission_type: str
|
@@ -57,7 +57,7 @@ class AddOrRemoveServicePermissionsRequestBody:
|
|
57
57
|
def permissions(self):
|
58
58
|
"""Gets the permissions of this AddOrRemoveServicePermissionsRequestBody.
|
59
59
|
|
60
|
-
permission列表。 权限格式为: - iam:domain::domain_id。其中: “iam:domain::”为固定格式,“domain_id
|
60
|
+
permission列表。 权限格式为: - iam:domain::domain_id。其中: “iam:domain::”为固定格式,“domain_id”为可连接用户的账号ID。 domain_id类型支持输入包括“a~z”、“A~Z”、“0~9”或者“*”,最大长度可以传64。 - organizations:orgPath::org_path。其中: “organizations:orgPath::”为固定格式,org_path为可连接用户的组织路径。 org_path类型支持“a~z”、“A~Z”、“0~9”、“/-*?”或者“*”,最大长度可以传1024。 “*”表示所有终端节点可连接。 示例: - iam:domain::6e9dfd51d1124e8d8498dce894923a0dd - organizations:orgPath::o-3j59d1231uprgk9yuvlidra7zbzfi578/r-rldbu1vmxdw5ahdkknxnvd5rgag77m2z/ou-7tuddd8nh99rebxltawsm6qct5z7rklv/*
|
61
61
|
|
62
62
|
:return: The permissions of this AddOrRemoveServicePermissionsRequestBody.
|
63
63
|
:rtype: list[str]
|
@@ -68,7 +68,7 @@ class AddOrRemoveServicePermissionsRequestBody:
|
|
68
68
|
def permissions(self, permissions):
|
69
69
|
"""Sets the permissions of this AddOrRemoveServicePermissionsRequestBody.
|
70
70
|
|
71
|
-
permission列表。 权限格式为: - iam:domain::domain_id。其中: “iam:domain::”为固定格式,“domain_id
|
71
|
+
permission列表。 权限格式为: - iam:domain::domain_id。其中: “iam:domain::”为固定格式,“domain_id”为可连接用户的账号ID。 domain_id类型支持输入包括“a~z”、“A~Z”、“0~9”或者“*”,最大长度可以传64。 - organizations:orgPath::org_path。其中: “organizations:orgPath::”为固定格式,org_path为可连接用户的组织路径。 org_path类型支持“a~z”、“A~Z”、“0~9”、“/-*?”或者“*”,最大长度可以传1024。 “*”表示所有终端节点可连接。 示例: - iam:domain::6e9dfd51d1124e8d8498dce894923a0dd - organizations:orgPath::o-3j59d1231uprgk9yuvlidra7zbzfi578/r-rldbu1vmxdw5ahdkknxnvd5rgag77m2z/ou-7tuddd8nh99rebxltawsm6qct5z7rklv/*
|
72
72
|
|
73
73
|
:param permissions: The permissions of this AddOrRemoveServicePermissionsRequestBody.
|
74
74
|
:type permissions: list[str]
|
@@ -32,7 +32,7 @@ class AddOrRemoveServicePermissionsResponse(SdkResponse):
|
|
32
32
|
|
33
33
|
The model defined in huaweicloud sdk
|
34
34
|
|
35
|
-
:param permissions: permission列表。 权限格式为: - iam:domain::domain_id。其中: “iam:domain::”为固定格式,“domain_id
|
35
|
+
:param permissions: permission列表。 权限格式为: - iam:domain::domain_id。其中: “iam:domain::”为固定格式,“domain_id”为可连接用户的账号ID。 domain_id类型支持输入包括“a~z”、“A~Z”、“0~9”或者“*”,最大长度可以传64。 - organizations:orgPath::org_path。其中: “organizations:orgPath::”为固定格式,org_path为可连接用户的组织路径。 org_path类型支持“a~z”、“A~Z”、“0~9”、“/-*?”或者“*”,最大长度可以传1024。 “*”表示所有终端节点可连接。 示例: - iam:domain::6e9dfd51d1124e8d8498dce894923a0dd - organizations:orgPath::o-3j59d1231uprgk9yuvlidra7zbzfi578/r-rldbu1vmxdw5ahdkknxnvd5rgag77m2z/ou-7tuddd8nh99rebxltawsm6qct5z7rklv/*
|
36
36
|
:type permissions: list[str]
|
37
37
|
:param permission_type: 终端节点服务白名单类型。 - domainId:基于账户ID配置终端节点服务白名单。 - orgPath:基于账户所在组织路径配置终端节点服务白名单。
|
38
38
|
:type permission_type: str
|
@@ -53,7 +53,7 @@ class AddOrRemoveServicePermissionsResponse(SdkResponse):
|
|
53
53
|
def permissions(self):
|
54
54
|
"""Gets the permissions of this AddOrRemoveServicePermissionsResponse.
|
55
55
|
|
56
|
-
permission列表。 权限格式为: - iam:domain::domain_id。其中: “iam:domain::”为固定格式,“domain_id
|
56
|
+
permission列表。 权限格式为: - iam:domain::domain_id。其中: “iam:domain::”为固定格式,“domain_id”为可连接用户的账号ID。 domain_id类型支持输入包括“a~z”、“A~Z”、“0~9”或者“*”,最大长度可以传64。 - organizations:orgPath::org_path。其中: “organizations:orgPath::”为固定格式,org_path为可连接用户的组织路径。 org_path类型支持“a~z”、“A~Z”、“0~9”、“/-*?”或者“*”,最大长度可以传1024。 “*”表示所有终端节点可连接。 示例: - iam:domain::6e9dfd51d1124e8d8498dce894923a0dd - organizations:orgPath::o-3j59d1231uprgk9yuvlidra7zbzfi578/r-rldbu1vmxdw5ahdkknxnvd5rgag77m2z/ou-7tuddd8nh99rebxltawsm6qct5z7rklv/*
|
57
57
|
|
58
58
|
:return: The permissions of this AddOrRemoveServicePermissionsResponse.
|
59
59
|
:rtype: list[str]
|
@@ -64,7 +64,7 @@ class AddOrRemoveServicePermissionsResponse(SdkResponse):
|
|
64
64
|
def permissions(self, permissions):
|
65
65
|
"""Sets the permissions of this AddOrRemoveServicePermissionsResponse.
|
66
66
|
|
67
|
-
permission列表。 权限格式为: - iam:domain::domain_id。其中: “iam:domain::”为固定格式,“domain_id
|
67
|
+
permission列表。 权限格式为: - iam:domain::domain_id。其中: “iam:domain::”为固定格式,“domain_id”为可连接用户的账号ID。 domain_id类型支持输入包括“a~z”、“A~Z”、“0~9”或者“*”,最大长度可以传64。 - organizations:orgPath::org_path。其中: “organizations:orgPath::”为固定格式,org_path为可连接用户的组织路径。 org_path类型支持“a~z”、“A~Z”、“0~9”、“/-*?”或者“*”,最大长度可以传1024。 “*”表示所有终端节点可连接。 示例: - iam:domain::6e9dfd51d1124e8d8498dce894923a0dd - organizations:orgPath::o-3j59d1231uprgk9yuvlidra7zbzfi578/r-rldbu1vmxdw5ahdkknxnvd5rgag77m2z/ou-7tuddd8nh99rebxltawsm6qct5z7rklv/*
|
68
68
|
|
69
69
|
:param permissions: The permissions of this AddOrRemoveServicePermissionsResponse.
|
70
70
|
:type permissions: list[str]
|
@@ -47,9 +47,9 @@ class ConnectionEndpoints:
|
|
47
47
|
:type id: str
|
48
48
|
:param marker_id: 终端节点的报文标识。
|
49
49
|
:type marker_id: int
|
50
|
-
:param created_at: 终端节点的创建时间。 采用UTC时间格式,格式为:YYYY-
|
50
|
+
:param created_at: 终端节点的创建时间。 采用UTC时间格式,格式为:YYYY-MM-DDTHH:MM:SSZ
|
51
51
|
:type created_at: datetime
|
52
|
-
:param updated_at: 终端节点的更新时间。 采用UTC时间格式,格式为:YYYY-
|
52
|
+
:param updated_at: 终端节点的更新时间。 采用UTC时间格式,格式为:YYYY-MM-DDTHH:MM:SSZ
|
53
53
|
:type updated_at: datetime
|
54
54
|
:param domain_id: 用户的Domain ID。
|
55
55
|
:type domain_id: str
|
@@ -138,7 +138,7 @@ class ConnectionEndpoints:
|
|
138
138
|
def created_at(self):
|
139
139
|
"""Gets the created_at of this ConnectionEndpoints.
|
140
140
|
|
141
|
-
终端节点的创建时间。 采用UTC时间格式,格式为:YYYY-
|
141
|
+
终端节点的创建时间。 采用UTC时间格式,格式为:YYYY-MM-DDTHH:MM:SSZ
|
142
142
|
|
143
143
|
:return: The created_at of this ConnectionEndpoints.
|
144
144
|
:rtype: datetime
|
@@ -149,7 +149,7 @@ class ConnectionEndpoints:
|
|
149
149
|
def created_at(self, created_at):
|
150
150
|
"""Sets the created_at of this ConnectionEndpoints.
|
151
151
|
|
152
|
-
终端节点的创建时间。 采用UTC时间格式,格式为:YYYY-
|
152
|
+
终端节点的创建时间。 采用UTC时间格式,格式为:YYYY-MM-DDTHH:MM:SSZ
|
153
153
|
|
154
154
|
:param created_at: The created_at of this ConnectionEndpoints.
|
155
155
|
:type created_at: datetime
|
@@ -160,7 +160,7 @@ class ConnectionEndpoints:
|
|
160
160
|
def updated_at(self):
|
161
161
|
"""Gets the updated_at of this ConnectionEndpoints.
|
162
162
|
|
163
|
-
终端节点的更新时间。 采用UTC时间格式,格式为:YYYY-
|
163
|
+
终端节点的更新时间。 采用UTC时间格式,格式为:YYYY-MM-DDTHH:MM:SSZ
|
164
164
|
|
165
165
|
:return: The updated_at of this ConnectionEndpoints.
|
166
166
|
:rtype: datetime
|
@@ -171,7 +171,7 @@ class ConnectionEndpoints:
|
|
171
171
|
def updated_at(self, updated_at):
|
172
172
|
"""Sets the updated_at of this ConnectionEndpoints.
|
173
173
|
|
174
|
-
终端节点的更新时间。 采用UTC时间格式,格式为:YYYY-
|
174
|
+
终端节点的更新时间。 采用UTC时间格式,格式为:YYYY-MM-DDTHH:MM:SSZ
|
175
175
|
|
176
176
|
:param updated_at: The updated_at of this ConnectionEndpoints.
|
177
177
|
:type updated_at: datetime
|
@@ -26,7 +26,11 @@ class CreateEndpointRequestBody:
|
|
26
26
|
'port_ip': 'str',
|
27
27
|
'whitelist': 'list[str]',
|
28
28
|
'enable_whitelist': 'bool',
|
29
|
-
'description': 'str'
|
29
|
+
'description': 'str',
|
30
|
+
'policy_statement': 'list[PolicyStatement]',
|
31
|
+
'policy_document': 'object',
|
32
|
+
'ip_version': 'str',
|
33
|
+
'ipv6_address': 'str'
|
30
34
|
}
|
31
35
|
|
32
36
|
attribute_map = {
|
@@ -39,25 +43,29 @@ class CreateEndpointRequestBody:
|
|
39
43
|
'port_ip': 'port_ip',
|
40
44
|
'whitelist': 'whitelist',
|
41
45
|
'enable_whitelist': 'enable_whitelist',
|
42
|
-
'description': 'description'
|
46
|
+
'description': 'description',
|
47
|
+
'policy_statement': 'policy_statement',
|
48
|
+
'policy_document': 'policy_document',
|
49
|
+
'ip_version': 'ip_version',
|
50
|
+
'ipv6_address': 'ipv6_address'
|
43
51
|
}
|
44
52
|
|
45
|
-
def __init__(self, subnet_id=None, endpoint_service_id=None, vpc_id=None, enable_dns=None, tags=None, routetables=None, port_ip=None, whitelist=None, enable_whitelist=None, description=None):
|
53
|
+
def __init__(self, subnet_id=None, endpoint_service_id=None, vpc_id=None, enable_dns=None, tags=None, routetables=None, port_ip=None, whitelist=None, enable_whitelist=None, description=None, policy_statement=None, policy_document=None, ip_version=None, ipv6_address=None):
|
46
54
|
"""CreateEndpointRequestBody
|
47
55
|
|
48
56
|
The model defined in huaweicloud sdk
|
49
57
|
|
50
|
-
:param subnet_id:
|
58
|
+
:param subnet_id: 创建连接Interface类型终端节点服务的终端节点时,此参数必选。 需要指定vpc_id对应VPC下已创建的网络(network)的ID,UUID格式。 说明: - VPC的子网网段不能与198.19.128.0/17重叠 - VPC路由表中自定义路由的目的地址不能与198.19.128.0/17重叠
|
51
59
|
:type subnet_id: str
|
52
60
|
:param endpoint_service_id: 终端节点服务的ID。 可以通过查询终端节点服务概 要获取要连接的终端节点服务 ID。
|
53
61
|
:type endpoint_service_id: str
|
54
|
-
:param vpc_id: 终端节点所在的VPC的ID。
|
62
|
+
:param vpc_id: 终端节点所在的VPC的ID。
|
55
63
|
:type vpc_id: str
|
56
|
-
:param enable_dns: 是否创建域名。 - true:创建域名 - false:不创建域名 默认值为false。 说明
|
64
|
+
:param enable_dns: 是否创建域名。 - true:创建域名 - false:不创建域名 默认值为false。 说明 当创建gateway类型终端节点服务的终端节点时, “enable_dns”设置为true或者false,均不创建域名。
|
57
65
|
:type enable_dns: bool
|
58
66
|
:param tags: 标签列表,没有标签默认为空数组。
|
59
67
|
:type tags: list[:class:`huaweicloudsdkvpcep.v1.TagList`]
|
60
|
-
:param routetables: 路由表ID
|
68
|
+
:param routetables: 路由表ID列表。 创建gateway类型终端节点服务的终端节点时,此参数必选。 不设置此参数时,选择默认路由表。
|
61
69
|
:type routetables: list[str]
|
62
70
|
:param port_ip: 访问所连接的终端节点服务的IP。 创建终端节点时,可以指定访问所连接的终端节点服务的IP,目前只支持IPv4类型 。 创建连接Interface类型终端节点服务的终端节点时,此参数必选。
|
63
71
|
:type port_ip: str
|
@@ -67,6 +75,14 @@ class CreateEndpointRequestBody:
|
|
67
75
|
:type enable_whitelist: bool
|
68
76
|
:param description: 描述字段,支持中英文字母、数字等字符,不支持“<”或“>”字符。
|
69
77
|
:type description: str
|
78
|
+
:param policy_statement: Gateway类型终端节点策略信息,仅限OBS、SFS的终端节点服务的enable_policy值为true时支持该参数。
|
79
|
+
:type policy_statement: list[:class:`huaweicloudsdkvpcep.v1.PolicyStatement`]
|
80
|
+
:param policy_document: 终端节点策略信息,仅当终端节点服务的enable_policy值为true时支持该参数,默认值为完全访问权限。(OBS、SFS的终端节点服务暂不支持该参数)
|
81
|
+
:type policy_document: object
|
82
|
+
:param ip_version: 指定终端节点的IP版本,仅专业型终端节点支持此参数。 - ipv4, IPv4 - dualstack, 双栈
|
83
|
+
:type ip_version: str
|
84
|
+
:param ipv6_address: 访问所连接的终端节点服务的IPv6的地址。 创建终端节点时,可以指定访问所连接的终端节点服务的IP,不指定的情况下,会使用系统生成的一个地址。 仅专业型终端节点支持此参数。
|
85
|
+
:type ipv6_address: str
|
70
86
|
"""
|
71
87
|
|
72
88
|
|
@@ -81,6 +97,10 @@ class CreateEndpointRequestBody:
|
|
81
97
|
self._whitelist = None
|
82
98
|
self._enable_whitelist = None
|
83
99
|
self._description = None
|
100
|
+
self._policy_statement = None
|
101
|
+
self._policy_document = None
|
102
|
+
self._ip_version = None
|
103
|
+
self._ipv6_address = None
|
84
104
|
self.discriminator = None
|
85
105
|
|
86
106
|
if subnet_id is not None:
|
@@ -101,12 +121,20 @@ class CreateEndpointRequestBody:
|
|
101
121
|
self.enable_whitelist = enable_whitelist
|
102
122
|
if description is not None:
|
103
123
|
self.description = description
|
124
|
+
if policy_statement is not None:
|
125
|
+
self.policy_statement = policy_statement
|
126
|
+
if policy_document is not None:
|
127
|
+
self.policy_document = policy_document
|
128
|
+
if ip_version is not None:
|
129
|
+
self.ip_version = ip_version
|
130
|
+
if ipv6_address is not None:
|
131
|
+
self.ipv6_address = ipv6_address
|
104
132
|
|
105
133
|
@property
|
106
134
|
def subnet_id(self):
|
107
135
|
"""Gets the subnet_id of this CreateEndpointRequestBody.
|
108
136
|
|
109
|
-
|
137
|
+
创建连接Interface类型终端节点服务的终端节点时,此参数必选。 需要指定vpc_id对应VPC下已创建的网络(network)的ID,UUID格式。 说明: - VPC的子网网段不能与198.19.128.0/17重叠 - VPC路由表中自定义路由的目的地址不能与198.19.128.0/17重叠
|
110
138
|
|
111
139
|
:return: The subnet_id of this CreateEndpointRequestBody.
|
112
140
|
:rtype: str
|
@@ -117,7 +145,7 @@ class CreateEndpointRequestBody:
|
|
117
145
|
def subnet_id(self, subnet_id):
|
118
146
|
"""Sets the subnet_id of this CreateEndpointRequestBody.
|
119
147
|
|
120
|
-
|
148
|
+
创建连接Interface类型终端节点服务的终端节点时,此参数必选。 需要指定vpc_id对应VPC下已创建的网络(network)的ID,UUID格式。 说明: - VPC的子网网段不能与198.19.128.0/17重叠 - VPC路由表中自定义路由的目的地址不能与198.19.128.0/17重叠
|
121
149
|
|
122
150
|
:param subnet_id: The subnet_id of this CreateEndpointRequestBody.
|
123
151
|
:type subnet_id: str
|
@@ -150,7 +178,7 @@ class CreateEndpointRequestBody:
|
|
150
178
|
def vpc_id(self):
|
151
179
|
"""Gets the vpc_id of this CreateEndpointRequestBody.
|
152
180
|
|
153
|
-
终端节点所在的VPC的ID。
|
181
|
+
终端节点所在的VPC的ID。
|
154
182
|
|
155
183
|
:return: The vpc_id of this CreateEndpointRequestBody.
|
156
184
|
:rtype: str
|
@@ -161,7 +189,7 @@ class CreateEndpointRequestBody:
|
|
161
189
|
def vpc_id(self, vpc_id):
|
162
190
|
"""Sets the vpc_id of this CreateEndpointRequestBody.
|
163
191
|
|
164
|
-
终端节点所在的VPC的ID。
|
192
|
+
终端节点所在的VPC的ID。
|
165
193
|
|
166
194
|
:param vpc_id: The vpc_id of this CreateEndpointRequestBody.
|
167
195
|
:type vpc_id: str
|
@@ -172,7 +200,7 @@ class CreateEndpointRequestBody:
|
|
172
200
|
def enable_dns(self):
|
173
201
|
"""Gets the enable_dns of this CreateEndpointRequestBody.
|
174
202
|
|
175
|
-
是否创建域名。 - true:创建域名 - false:不创建域名 默认值为false。 说明
|
203
|
+
是否创建域名。 - true:创建域名 - false:不创建域名 默认值为false。 说明 当创建gateway类型终端节点服务的终端节点时, “enable_dns”设置为true或者false,均不创建域名。
|
176
204
|
|
177
205
|
:return: The enable_dns of this CreateEndpointRequestBody.
|
178
206
|
:rtype: bool
|
@@ -183,7 +211,7 @@ class CreateEndpointRequestBody:
|
|
183
211
|
def enable_dns(self, enable_dns):
|
184
212
|
"""Sets the enable_dns of this CreateEndpointRequestBody.
|
185
213
|
|
186
|
-
是否创建域名。 - true:创建域名 - false:不创建域名 默认值为false。 说明
|
214
|
+
是否创建域名。 - true:创建域名 - false:不创建域名 默认值为false。 说明 当创建gateway类型终端节点服务的终端节点时, “enable_dns”设置为true或者false,均不创建域名。
|
187
215
|
|
188
216
|
:param enable_dns: The enable_dns of this CreateEndpointRequestBody.
|
189
217
|
:type enable_dns: bool
|
@@ -216,7 +244,7 @@ class CreateEndpointRequestBody:
|
|
216
244
|
def routetables(self):
|
217
245
|
"""Gets the routetables of this CreateEndpointRequestBody.
|
218
246
|
|
219
|
-
路由表ID
|
247
|
+
路由表ID列表。 创建gateway类型终端节点服务的终端节点时,此参数必选。 不设置此参数时,选择默认路由表。
|
220
248
|
|
221
249
|
:return: The routetables of this CreateEndpointRequestBody.
|
222
250
|
:rtype: list[str]
|
@@ -227,7 +255,7 @@ class CreateEndpointRequestBody:
|
|
227
255
|
def routetables(self, routetables):
|
228
256
|
"""Sets the routetables of this CreateEndpointRequestBody.
|
229
257
|
|
230
|
-
路由表ID
|
258
|
+
路由表ID列表。 创建gateway类型终端节点服务的终端节点时,此参数必选。 不设置此参数时,选择默认路由表。
|
231
259
|
|
232
260
|
:param routetables: The routetables of this CreateEndpointRequestBody.
|
233
261
|
:type routetables: list[str]
|
@@ -322,6 +350,94 @@ class CreateEndpointRequestBody:
|
|
322
350
|
"""
|
323
351
|
self._description = description
|
324
352
|
|
353
|
+
@property
|
354
|
+
def policy_statement(self):
|
355
|
+
"""Gets the policy_statement of this CreateEndpointRequestBody.
|
356
|
+
|
357
|
+
Gateway类型终端节点策略信息,仅限OBS、SFS的终端节点服务的enable_policy值为true时支持该参数。
|
358
|
+
|
359
|
+
:return: The policy_statement of this CreateEndpointRequestBody.
|
360
|
+
:rtype: list[:class:`huaweicloudsdkvpcep.v1.PolicyStatement`]
|
361
|
+
"""
|
362
|
+
return self._policy_statement
|
363
|
+
|
364
|
+
@policy_statement.setter
|
365
|
+
def policy_statement(self, policy_statement):
|
366
|
+
"""Sets the policy_statement of this CreateEndpointRequestBody.
|
367
|
+
|
368
|
+
Gateway类型终端节点策略信息,仅限OBS、SFS的终端节点服务的enable_policy值为true时支持该参数。
|
369
|
+
|
370
|
+
:param policy_statement: The policy_statement of this CreateEndpointRequestBody.
|
371
|
+
:type policy_statement: list[:class:`huaweicloudsdkvpcep.v1.PolicyStatement`]
|
372
|
+
"""
|
373
|
+
self._policy_statement = policy_statement
|
374
|
+
|
375
|
+
@property
|
376
|
+
def policy_document(self):
|
377
|
+
"""Gets the policy_document of this CreateEndpointRequestBody.
|
378
|
+
|
379
|
+
终端节点策略信息,仅当终端节点服务的enable_policy值为true时支持该参数,默认值为完全访问权限。(OBS、SFS的终端节点服务暂不支持该参数)
|
380
|
+
|
381
|
+
:return: The policy_document of this CreateEndpointRequestBody.
|
382
|
+
:rtype: object
|
383
|
+
"""
|
384
|
+
return self._policy_document
|
385
|
+
|
386
|
+
@policy_document.setter
|
387
|
+
def policy_document(self, policy_document):
|
388
|
+
"""Sets the policy_document of this CreateEndpointRequestBody.
|
389
|
+
|
390
|
+
终端节点策略信息,仅当终端节点服务的enable_policy值为true时支持该参数,默认值为完全访问权限。(OBS、SFS的终端节点服务暂不支持该参数)
|
391
|
+
|
392
|
+
:param policy_document: The policy_document of this CreateEndpointRequestBody.
|
393
|
+
:type policy_document: object
|
394
|
+
"""
|
395
|
+
self._policy_document = policy_document
|
396
|
+
|
397
|
+
@property
|
398
|
+
def ip_version(self):
|
399
|
+
"""Gets the ip_version of this CreateEndpointRequestBody.
|
400
|
+
|
401
|
+
指定终端节点的IP版本,仅专业型终端节点支持此参数。 - ipv4, IPv4 - dualstack, 双栈
|
402
|
+
|
403
|
+
:return: The ip_version of this CreateEndpointRequestBody.
|
404
|
+
:rtype: str
|
405
|
+
"""
|
406
|
+
return self._ip_version
|
407
|
+
|
408
|
+
@ip_version.setter
|
409
|
+
def ip_version(self, ip_version):
|
410
|
+
"""Sets the ip_version of this CreateEndpointRequestBody.
|
411
|
+
|
412
|
+
指定终端节点的IP版本,仅专业型终端节点支持此参数。 - ipv4, IPv4 - dualstack, 双栈
|
413
|
+
|
414
|
+
:param ip_version: The ip_version of this CreateEndpointRequestBody.
|
415
|
+
:type ip_version: str
|
416
|
+
"""
|
417
|
+
self._ip_version = ip_version
|
418
|
+
|
419
|
+
@property
|
420
|
+
def ipv6_address(self):
|
421
|
+
"""Gets the ipv6_address of this CreateEndpointRequestBody.
|
422
|
+
|
423
|
+
访问所连接的终端节点服务的IPv6的地址。 创建终端节点时,可以指定访问所连接的终端节点服务的IP,不指定的情况下,会使用系统生成的一个地址。 仅专业型终端节点支持此参数。
|
424
|
+
|
425
|
+
:return: The ipv6_address of this CreateEndpointRequestBody.
|
426
|
+
:rtype: str
|
427
|
+
"""
|
428
|
+
return self._ipv6_address
|
429
|
+
|
430
|
+
@ipv6_address.setter
|
431
|
+
def ipv6_address(self, ipv6_address):
|
432
|
+
"""Sets the ipv6_address of this CreateEndpointRequestBody.
|
433
|
+
|
434
|
+
访问所连接的终端节点服务的IPv6的地址。 创建终端节点时,可以指定访问所连接的终端节点服务的IP,不指定的情况下,会使用系统生成的一个地址。 仅专业型终端节点支持此参数。
|
435
|
+
|
436
|
+
:param ipv6_address: The ipv6_address of this CreateEndpointRequestBody.
|
437
|
+
:type ipv6_address: str
|
438
|
+
"""
|
439
|
+
self._ipv6_address = ipv6_address
|
440
|
+
|
325
441
|
def to_dict(self):
|
326
442
|
"""Returns the model properties as a dict"""
|
327
443
|
result = {}
|
@@ -39,9 +39,11 @@ class CreateEndpointResponse(SdkResponse):
|
|
39
39
|
'specification_name': 'str',
|
40
40
|
'description': 'str',
|
41
41
|
'policy_statement': 'list[PolicyStatement]',
|
42
|
+
'policy_document': 'object',
|
42
43
|
'enable_status': 'str',
|
43
44
|
'endpoint_pool_id': 'str',
|
44
|
-
'public_border_group': 'str'
|
45
|
+
'public_border_group': 'str',
|
46
|
+
'ipv6_address': 'str'
|
45
47
|
}
|
46
48
|
|
47
49
|
attribute_map = {
|
@@ -66,25 +68,27 @@ class CreateEndpointResponse(SdkResponse):
|
|
66
68
|
'specification_name': 'specification_name',
|
67
69
|
'description': 'description',
|
68
70
|
'policy_statement': 'policy_statement',
|
71
|
+
'policy_document': 'policy_document',
|
69
72
|
'enable_status': 'enable_status',
|
70
73
|
'endpoint_pool_id': 'endpoint_pool_id',
|
71
|
-
'public_border_group': 'public_border_group'
|
74
|
+
'public_border_group': 'public_border_group',
|
75
|
+
'ipv6_address': 'ipv6_address'
|
72
76
|
}
|
73
77
|
|
74
|
-
def __init__(self, id=None, service_type=None, status=None, ip=None, active_status=None, endpoint_service_name=None, marker_id=None, endpoint_service_id=None, enable_dns=None, subnet_id=None, vpc_id=None, created_at=None, updated_at=None, project_id=None, tags=None, whitelist=None, enable_whitelist=None, routetables=None, specification_name=None, description=None, policy_statement=None, enable_status=None, endpoint_pool_id=None, public_border_group=None):
|
78
|
+
def __init__(self, id=None, service_type=None, status=None, ip=None, active_status=None, endpoint_service_name=None, marker_id=None, endpoint_service_id=None, enable_dns=None, subnet_id=None, vpc_id=None, created_at=None, updated_at=None, project_id=None, tags=None, whitelist=None, enable_whitelist=None, routetables=None, specification_name=None, description=None, policy_statement=None, policy_document=None, enable_status=None, endpoint_pool_id=None, public_border_group=None, ipv6_address=None):
|
75
79
|
"""CreateEndpointResponse
|
76
80
|
|
77
81
|
The model defined in huaweicloud sdk
|
78
82
|
|
79
83
|
:param id: 终端节点的ID,唯一标识。
|
80
84
|
:type id: str
|
81
|
-
:param service_type: 终端节点连接的终端节点服务类型。
|
85
|
+
:param service_type: 终端节点连接的终端节点服务类型。 - gateway:由运维人员配置。用户无需创建,可直接使用。 - interface:包括运维人员配置的云服务和用户自己创建的私有服务。 其中,运维人员配置的云服务无需创建,用户可直接使用。 您可以通过\"查询公共终端节点服务列表\"查看由运维人员配置的所有用户可见且可连接的终端节点服务,并通过创建终端节点服务创建Interface类型的终端节点服务。
|
82
86
|
:type service_type: str
|
83
87
|
:param status: 终端节点的状态。 - pendingAcceptance:待接受 - creating:创建中 - accepted:已接受 - rejected:已拒绝 - failed:失败 - deleting:删除中
|
84
88
|
:type status: str
|
85
89
|
:param ip: 终端节点ip
|
86
90
|
:type ip: str
|
87
|
-
:param active_status:
|
91
|
+
:param active_status: 账号状态。 - frozen:冻结 - active:解冻
|
88
92
|
:type active_status: list[str]
|
89
93
|
:param endpoint_service_name: 终端节点服务的名称。
|
90
94
|
:type endpoint_service_name: str
|
@@ -92,7 +96,7 @@ class CreateEndpointResponse(SdkResponse):
|
|
92
96
|
:type marker_id: int
|
93
97
|
:param endpoint_service_id: 终端节点服务的ID。
|
94
98
|
:type endpoint_service_id: str
|
95
|
-
:param enable_dns: 是否创建域名。 - true:创建域名 - false:不创建域名 说明
|
99
|
+
:param enable_dns: 是否创建域名。 - true:创建域名 - false:不创建域名 说明 当创建gateway类型终端节点服务的终端节点时, “enable_dns”设置为true或者false,均不创建域名。
|
96
100
|
:type enable_dns: bool
|
97
101
|
:param subnet_id: vpc_id对应VPC下已创建的网络(network)的ID,UUID格式。
|
98
102
|
:type subnet_id: str
|
@@ -110,20 +114,24 @@ class CreateEndpointResponse(SdkResponse):
|
|
110
114
|
:type whitelist: list[str]
|
111
115
|
:param enable_whitelist: 是否开启网络ACL隔离。 - true:开启网络ACL隔离 - false:不开启网络ACL隔离 若未指定,则返回false。 创建连接Interface类型终端节点服务的终端节点时,显示此参数。
|
112
116
|
:type enable_whitelist: bool
|
113
|
-
:param routetables: 路由表ID列表。 若未指定,返回默认VPC下路由表ID。
|
117
|
+
:param routetables: 路由表ID列表。 若未指定,返回默认VPC下路由表ID。 创建gateway类型终端节点服务的终端节点时,显示此参数。
|
114
118
|
:type routetables: list[str]
|
115
119
|
:param specification_name: 规格名称
|
116
120
|
:type specification_name: str
|
117
121
|
:param description: 描述
|
118
122
|
:type description: str
|
119
|
-
:param policy_statement:
|
123
|
+
:param policy_statement: Gateway类型终端节点策略信息,仅限OBS、SFS的终端节点服务的enable_policy值为true时支持该参数。
|
120
124
|
:type policy_statement: list[:class:`huaweicloudsdkvpcep.v1.PolicyStatement`]
|
125
|
+
:param policy_document: 终端节点策略信息,仅当终端节点服务的enable_policy值为true时支持该参数,默认值为完全访问权限。(OBS、SFS的终端节点服务暂不支持该参数)
|
126
|
+
:type policy_document: object
|
121
127
|
:param enable_status: 终端节点是否可用。 - enable:启用 - disable:不启用
|
122
128
|
:type enable_status: str
|
123
129
|
:param endpoint_pool_id: 待废弃,实例相关联的集群ID
|
124
130
|
:type endpoint_pool_id: str
|
125
131
|
:param public_border_group: 终端节点对应Pool的Public Border Group信息
|
126
132
|
:type public_border_group: str
|
133
|
+
:param ipv6_address: 终端节点的IPv6地址,仅专业型终端节点支持此参数
|
134
|
+
:type ipv6_address: str
|
127
135
|
"""
|
128
136
|
|
129
137
|
super(CreateEndpointResponse, self).__init__()
|
@@ -149,9 +157,11 @@ class CreateEndpointResponse(SdkResponse):
|
|
149
157
|
self._specification_name = None
|
150
158
|
self._description = None
|
151
159
|
self._policy_statement = None
|
160
|
+
self._policy_document = None
|
152
161
|
self._enable_status = None
|
153
162
|
self._endpoint_pool_id = None
|
154
163
|
self._public_border_group = None
|
164
|
+
self._ipv6_address = None
|
155
165
|
self.discriminator = None
|
156
166
|
|
157
167
|
if id is not None:
|
@@ -196,12 +206,16 @@ class CreateEndpointResponse(SdkResponse):
|
|
196
206
|
self.description = description
|
197
207
|
if policy_statement is not None:
|
198
208
|
self.policy_statement = policy_statement
|
209
|
+
if policy_document is not None:
|
210
|
+
self.policy_document = policy_document
|
199
211
|
if enable_status is not None:
|
200
212
|
self.enable_status = enable_status
|
201
213
|
if endpoint_pool_id is not None:
|
202
214
|
self.endpoint_pool_id = endpoint_pool_id
|
203
215
|
if public_border_group is not None:
|
204
216
|
self.public_border_group = public_border_group
|
217
|
+
if ipv6_address is not None:
|
218
|
+
self.ipv6_address = ipv6_address
|
205
219
|
|
206
220
|
@property
|
207
221
|
def id(self):
|
@@ -229,7 +243,7 @@ class CreateEndpointResponse(SdkResponse):
|
|
229
243
|
def service_type(self):
|
230
244
|
"""Gets the service_type of this CreateEndpointResponse.
|
231
245
|
|
232
|
-
终端节点连接的终端节点服务类型。
|
246
|
+
终端节点连接的终端节点服务类型。 - gateway:由运维人员配置。用户无需创建,可直接使用。 - interface:包括运维人员配置的云服务和用户自己创建的私有服务。 其中,运维人员配置的云服务无需创建,用户可直接使用。 您可以通过\"查询公共终端节点服务列表\"查看由运维人员配置的所有用户可见且可连接的终端节点服务,并通过创建终端节点服务创建Interface类型的终端节点服务。
|
233
247
|
|
234
248
|
:return: The service_type of this CreateEndpointResponse.
|
235
249
|
:rtype: str
|
@@ -240,7 +254,7 @@ class CreateEndpointResponse(SdkResponse):
|
|
240
254
|
def service_type(self, service_type):
|
241
255
|
"""Sets the service_type of this CreateEndpointResponse.
|
242
256
|
|
243
|
-
终端节点连接的终端节点服务类型。
|
257
|
+
终端节点连接的终端节点服务类型。 - gateway:由运维人员配置。用户无需创建,可直接使用。 - interface:包括运维人员配置的云服务和用户自己创建的私有服务。 其中,运维人员配置的云服务无需创建,用户可直接使用。 您可以通过\"查询公共终端节点服务列表\"查看由运维人员配置的所有用户可见且可连接的终端节点服务,并通过创建终端节点服务创建Interface类型的终端节点服务。
|
244
258
|
|
245
259
|
:param service_type: The service_type of this CreateEndpointResponse.
|
246
260
|
:type service_type: str
|
@@ -295,7 +309,7 @@ class CreateEndpointResponse(SdkResponse):
|
|
295
309
|
def active_status(self):
|
296
310
|
"""Gets the active_status of this CreateEndpointResponse.
|
297
311
|
|
298
|
-
|
312
|
+
账号状态。 - frozen:冻结 - active:解冻
|
299
313
|
|
300
314
|
:return: The active_status of this CreateEndpointResponse.
|
301
315
|
:rtype: list[str]
|
@@ -306,7 +320,7 @@ class CreateEndpointResponse(SdkResponse):
|
|
306
320
|
def active_status(self, active_status):
|
307
321
|
"""Sets the active_status of this CreateEndpointResponse.
|
308
322
|
|
309
|
-
|
323
|
+
账号状态。 - frozen:冻结 - active:解冻
|
310
324
|
|
311
325
|
:param active_status: The active_status of this CreateEndpointResponse.
|
312
326
|
:type active_status: list[str]
|
@@ -383,7 +397,7 @@ class CreateEndpointResponse(SdkResponse):
|
|
383
397
|
def enable_dns(self):
|
384
398
|
"""Gets the enable_dns of this CreateEndpointResponse.
|
385
399
|
|
386
|
-
是否创建域名。 - true:创建域名 - false:不创建域名 说明
|
400
|
+
是否创建域名。 - true:创建域名 - false:不创建域名 说明 当创建gateway类型终端节点服务的终端节点时, “enable_dns”设置为true或者false,均不创建域名。
|
387
401
|
|
388
402
|
:return: The enable_dns of this CreateEndpointResponse.
|
389
403
|
:rtype: bool
|
@@ -394,7 +408,7 @@ class CreateEndpointResponse(SdkResponse):
|
|
394
408
|
def enable_dns(self, enable_dns):
|
395
409
|
"""Sets the enable_dns of this CreateEndpointResponse.
|
396
410
|
|
397
|
-
是否创建域名。 - true:创建域名 - false:不创建域名 说明
|
411
|
+
是否创建域名。 - true:创建域名 - false:不创建域名 说明 当创建gateway类型终端节点服务的终端节点时, “enable_dns”设置为true或者false,均不创建域名。
|
398
412
|
|
399
413
|
:param enable_dns: The enable_dns of this CreateEndpointResponse.
|
400
414
|
:type enable_dns: bool
|
@@ -581,7 +595,7 @@ class CreateEndpointResponse(SdkResponse):
|
|
581
595
|
def routetables(self):
|
582
596
|
"""Gets the routetables of this CreateEndpointResponse.
|
583
597
|
|
584
|
-
路由表ID列表。 若未指定,返回默认VPC下路由表ID。
|
598
|
+
路由表ID列表。 若未指定,返回默认VPC下路由表ID。 创建gateway类型终端节点服务的终端节点时,显示此参数。
|
585
599
|
|
586
600
|
:return: The routetables of this CreateEndpointResponse.
|
587
601
|
:rtype: list[str]
|
@@ -592,7 +606,7 @@ class CreateEndpointResponse(SdkResponse):
|
|
592
606
|
def routetables(self, routetables):
|
593
607
|
"""Sets the routetables of this CreateEndpointResponse.
|
594
608
|
|
595
|
-
路由表ID列表。 若未指定,返回默认VPC下路由表ID。
|
609
|
+
路由表ID列表。 若未指定,返回默认VPC下路由表ID。 创建gateway类型终端节点服务的终端节点时,显示此参数。
|
596
610
|
|
597
611
|
:param routetables: The routetables of this CreateEndpointResponse.
|
598
612
|
:type routetables: list[str]
|
@@ -647,7 +661,7 @@ class CreateEndpointResponse(SdkResponse):
|
|
647
661
|
def policy_statement(self):
|
648
662
|
"""Gets the policy_statement of this CreateEndpointResponse.
|
649
663
|
|
650
|
-
|
664
|
+
Gateway类型终端节点策略信息,仅限OBS、SFS的终端节点服务的enable_policy值为true时支持该参数。
|
651
665
|
|
652
666
|
:return: The policy_statement of this CreateEndpointResponse.
|
653
667
|
:rtype: list[:class:`huaweicloudsdkvpcep.v1.PolicyStatement`]
|
@@ -658,13 +672,35 @@ class CreateEndpointResponse(SdkResponse):
|
|
658
672
|
def policy_statement(self, policy_statement):
|
659
673
|
"""Sets the policy_statement of this CreateEndpointResponse.
|
660
674
|
|
661
|
-
|
675
|
+
Gateway类型终端节点策略信息,仅限OBS、SFS的终端节点服务的enable_policy值为true时支持该参数。
|
662
676
|
|
663
677
|
:param policy_statement: The policy_statement of this CreateEndpointResponse.
|
664
678
|
:type policy_statement: list[:class:`huaweicloudsdkvpcep.v1.PolicyStatement`]
|
665
679
|
"""
|
666
680
|
self._policy_statement = policy_statement
|
667
681
|
|
682
|
+
@property
|
683
|
+
def policy_document(self):
|
684
|
+
"""Gets the policy_document of this CreateEndpointResponse.
|
685
|
+
|
686
|
+
终端节点策略信息,仅当终端节点服务的enable_policy值为true时支持该参数,默认值为完全访问权限。(OBS、SFS的终端节点服务暂不支持该参数)
|
687
|
+
|
688
|
+
:return: The policy_document of this CreateEndpointResponse.
|
689
|
+
:rtype: object
|
690
|
+
"""
|
691
|
+
return self._policy_document
|
692
|
+
|
693
|
+
@policy_document.setter
|
694
|
+
def policy_document(self, policy_document):
|
695
|
+
"""Sets the policy_document of this CreateEndpointResponse.
|
696
|
+
|
697
|
+
终端节点策略信息,仅当终端节点服务的enable_policy值为true时支持该参数,默认值为完全访问权限。(OBS、SFS的终端节点服务暂不支持该参数)
|
698
|
+
|
699
|
+
:param policy_document: The policy_document of this CreateEndpointResponse.
|
700
|
+
:type policy_document: object
|
701
|
+
"""
|
702
|
+
self._policy_document = policy_document
|
703
|
+
|
668
704
|
@property
|
669
705
|
def enable_status(self):
|
670
706
|
"""Gets the enable_status of this CreateEndpointResponse.
|
@@ -731,6 +767,28 @@ class CreateEndpointResponse(SdkResponse):
|
|
731
767
|
"""
|
732
768
|
self._public_border_group = public_border_group
|
733
769
|
|
770
|
+
@property
|
771
|
+
def ipv6_address(self):
|
772
|
+
"""Gets the ipv6_address of this CreateEndpointResponse.
|
773
|
+
|
774
|
+
终端节点的IPv6地址,仅专业型终端节点支持此参数
|
775
|
+
|
776
|
+
:return: The ipv6_address of this CreateEndpointResponse.
|
777
|
+
:rtype: str
|
778
|
+
"""
|
779
|
+
return self._ipv6_address
|
780
|
+
|
781
|
+
@ipv6_address.setter
|
782
|
+
def ipv6_address(self, ipv6_address):
|
783
|
+
"""Sets the ipv6_address of this CreateEndpointResponse.
|
784
|
+
|
785
|
+
终端节点的IPv6地址,仅专业型终端节点支持此参数
|
786
|
+
|
787
|
+
:param ipv6_address: The ipv6_address of this CreateEndpointResponse.
|
788
|
+
:type ipv6_address: str
|
789
|
+
"""
|
790
|
+
self._ipv6_address = ipv6_address
|
791
|
+
|
734
792
|
def to_dict(self):
|
735
793
|
"""Returns the model properties as a dict"""
|
736
794
|
result = {}
|