tencentcloud-sdk-python 3.0.1363__py2.py3-none-any.whl → 3.0.1365__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/cat/v20180409/cat_client.py +23 -0
- tencentcloud/cat/v20180409/models.py +199 -0
- tencentcloud/cbs/v20170312/models.py +26 -12
- tencentcloud/ccc/v20200210/models.py +71 -56
- tencentcloud/cdc/v20201214/cdc_client.py +46 -0
- tencentcloud/cdc/v20201214/errorcodes.py +18 -0
- tencentcloud/cdc/v20201214/models.py +173 -0
- tencentcloud/cdn/v20180606/models.py +15 -0
- tencentcloud/cdwpg/v20201230/models.py +0 -12
- tencentcloud/clb/v20180317/clb_client.py +1 -1
- tencentcloud/clb/v20180317/models.py +262 -368
- tencentcloud/cls/v20201016/models.py +35 -0
- tencentcloud/cvm/v20170312/errorcodes.py +1 -1
- tencentcloud/cvm/v20170312/models.py +34 -0
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +23 -0
- tencentcloud/dbbrain/v20210527/models.py +109 -0
- tencentcloud/dlc/v20210125/dlc_client.py +23 -0
- tencentcloud/dlc/v20210125/models.py +124 -0
- tencentcloud/dts/v20211206/models.py +1 -1
- tencentcloud/ess/v20201111/models.py +16 -12
- tencentcloud/gwlb/v20240906/errorcodes.py +3 -0
- tencentcloud/gwlb/v20240906/gwlb_client.py +0 -1
- tencentcloud/gwlb/v20240906/models.py +4 -4
- tencentcloud/hunyuan/v20230901/models.py +2 -2
- tencentcloud/ioa/v20220601/ioa_client.py +46 -0
- tencentcloud/ioa/v20220601/models.py +538 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +3 -1
- tencentcloud/lke/v20231130/errorcodes.py +3 -0
- tencentcloud/lke/v20231130/lke_client.py +4 -2
- tencentcloud/lke/v20231130/models.py +167 -6
- tencentcloud/lkeap/v20240522/lkeap_client.py +3 -3
- tencentcloud/lkeap/v20240522/models.py +2 -2
- tencentcloud/monitor/v20180724/models.py +8 -8
- tencentcloud/monitor/v20180724/monitor_client.py +1 -1
- tencentcloud/mps/v20190612/errorcodes.py +6 -0
- tencentcloud/mps/v20190612/models.py +133 -8
- tencentcloud/ssm/v20190923/models.py +45 -0
- tencentcloud/tds/v20220801/models.py +441 -0
- tencentcloud/tds/v20220801/tds_client.py +23 -0
- tencentcloud/tem/v20210701/models.py +0 -498
- tencentcloud/teo/v20220901/errorcodes.py +3 -0
- tencentcloud/teo/v20220901/models.py +12 -116
- tencentcloud/tsf/v20180326/models.py +15 -0
- tencentcloud/vpc/v20170312/models.py +710 -0
- tencentcloud/vpc/v20170312/vpc_client.py +115 -0
- tencentcloud/waf/v20180125/models.py +378 -0
- {tencentcloud_sdk_python-3.0.1363.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1363.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/RECORD +52 -52
- {tencentcloud_sdk_python-3.0.1363.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1363.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1363.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/top_level.txt +0 -0
@@ -10932,6 +10932,112 @@ class CreateFlowLogResponse(AbstractModel):
|
|
10932
10932
|
self._RequestId = params.get("RequestId")
|
10933
10933
|
|
10934
10934
|
|
10935
|
+
class CreateGlobalRoutesRequest(AbstractModel):
|
10936
|
+
"""CreateGlobalRoutes请求参数结构体
|
10937
|
+
|
10938
|
+
"""
|
10939
|
+
|
10940
|
+
def __init__(self):
|
10941
|
+
r"""
|
10942
|
+
:param _VpcId: VPC唯一Id。
|
10943
|
+
:type VpcId: str
|
10944
|
+
:param _GlobalRoutes: 全局路由对象。创建时必填参数: 'GatewayType','GatewayId','DestinationCidrBlock'。
|
10945
|
+
|
10946
|
+
:type GlobalRoutes: list of GlobalRoute
|
10947
|
+
"""
|
10948
|
+
self._VpcId = None
|
10949
|
+
self._GlobalRoutes = None
|
10950
|
+
|
10951
|
+
@property
|
10952
|
+
def VpcId(self):
|
10953
|
+
"""VPC唯一Id。
|
10954
|
+
:rtype: str
|
10955
|
+
"""
|
10956
|
+
return self._VpcId
|
10957
|
+
|
10958
|
+
@VpcId.setter
|
10959
|
+
def VpcId(self, VpcId):
|
10960
|
+
self._VpcId = VpcId
|
10961
|
+
|
10962
|
+
@property
|
10963
|
+
def GlobalRoutes(self):
|
10964
|
+
"""全局路由对象。创建时必填参数: 'GatewayType','GatewayId','DestinationCidrBlock'。
|
10965
|
+
|
10966
|
+
:rtype: list of GlobalRoute
|
10967
|
+
"""
|
10968
|
+
return self._GlobalRoutes
|
10969
|
+
|
10970
|
+
@GlobalRoutes.setter
|
10971
|
+
def GlobalRoutes(self, GlobalRoutes):
|
10972
|
+
self._GlobalRoutes = GlobalRoutes
|
10973
|
+
|
10974
|
+
|
10975
|
+
def _deserialize(self, params):
|
10976
|
+
self._VpcId = params.get("VpcId")
|
10977
|
+
if params.get("GlobalRoutes") is not None:
|
10978
|
+
self._GlobalRoutes = []
|
10979
|
+
for item in params.get("GlobalRoutes"):
|
10980
|
+
obj = GlobalRoute()
|
10981
|
+
obj._deserialize(item)
|
10982
|
+
self._GlobalRoutes.append(obj)
|
10983
|
+
memeber_set = set(params.keys())
|
10984
|
+
for name, value in vars(self).items():
|
10985
|
+
property_name = name[1:]
|
10986
|
+
if property_name in memeber_set:
|
10987
|
+
memeber_set.remove(property_name)
|
10988
|
+
if len(memeber_set) > 0:
|
10989
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
10990
|
+
|
10991
|
+
|
10992
|
+
|
10993
|
+
class CreateGlobalRoutesResponse(AbstractModel):
|
10994
|
+
"""CreateGlobalRoutes返回参数结构体
|
10995
|
+
|
10996
|
+
"""
|
10997
|
+
|
10998
|
+
def __init__(self):
|
10999
|
+
r"""
|
11000
|
+
:param _GlobalRouteSet: 全局路由对象。
|
11001
|
+
:type GlobalRouteSet: list of GlobalRoute
|
11002
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
11003
|
+
:type RequestId: str
|
11004
|
+
"""
|
11005
|
+
self._GlobalRouteSet = None
|
11006
|
+
self._RequestId = None
|
11007
|
+
|
11008
|
+
@property
|
11009
|
+
def GlobalRouteSet(self):
|
11010
|
+
"""全局路由对象。
|
11011
|
+
:rtype: list of GlobalRoute
|
11012
|
+
"""
|
11013
|
+
return self._GlobalRouteSet
|
11014
|
+
|
11015
|
+
@GlobalRouteSet.setter
|
11016
|
+
def GlobalRouteSet(self, GlobalRouteSet):
|
11017
|
+
self._GlobalRouteSet = GlobalRouteSet
|
11018
|
+
|
11019
|
+
@property
|
11020
|
+
def RequestId(self):
|
11021
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
11022
|
+
:rtype: str
|
11023
|
+
"""
|
11024
|
+
return self._RequestId
|
11025
|
+
|
11026
|
+
@RequestId.setter
|
11027
|
+
def RequestId(self, RequestId):
|
11028
|
+
self._RequestId = RequestId
|
11029
|
+
|
11030
|
+
|
11031
|
+
def _deserialize(self, params):
|
11032
|
+
if params.get("GlobalRouteSet") is not None:
|
11033
|
+
self._GlobalRouteSet = []
|
11034
|
+
for item in params.get("GlobalRouteSet"):
|
11035
|
+
obj = GlobalRoute()
|
11036
|
+
obj._deserialize(item)
|
11037
|
+
self._GlobalRouteSet.append(obj)
|
11038
|
+
self._RequestId = params.get("RequestId")
|
11039
|
+
|
11040
|
+
|
10935
11041
|
class CreateHaVipRequest(AbstractModel):
|
10936
11042
|
"""CreateHaVip请求参数结构体
|
10937
11043
|
|
@@ -18997,6 +19103,85 @@ class DeleteFlowLogResponse(AbstractModel):
|
|
18997
19103
|
self._RequestId = params.get("RequestId")
|
18998
19104
|
|
18999
19105
|
|
19106
|
+
class DeleteGlobalRoutesRequest(AbstractModel):
|
19107
|
+
"""DeleteGlobalRoutes请求参数结构体
|
19108
|
+
|
19109
|
+
"""
|
19110
|
+
|
19111
|
+
def __init__(self):
|
19112
|
+
r"""
|
19113
|
+
:param _VpcId: VPC唯一Id。
|
19114
|
+
:type VpcId: str
|
19115
|
+
:param _GlobalRouteIds: 全局路由实例唯一Id列表。
|
19116
|
+
:type GlobalRouteIds: list of str
|
19117
|
+
"""
|
19118
|
+
self._VpcId = None
|
19119
|
+
self._GlobalRouteIds = None
|
19120
|
+
|
19121
|
+
@property
|
19122
|
+
def VpcId(self):
|
19123
|
+
"""VPC唯一Id。
|
19124
|
+
:rtype: str
|
19125
|
+
"""
|
19126
|
+
return self._VpcId
|
19127
|
+
|
19128
|
+
@VpcId.setter
|
19129
|
+
def VpcId(self, VpcId):
|
19130
|
+
self._VpcId = VpcId
|
19131
|
+
|
19132
|
+
@property
|
19133
|
+
def GlobalRouteIds(self):
|
19134
|
+
"""全局路由实例唯一Id列表。
|
19135
|
+
:rtype: list of str
|
19136
|
+
"""
|
19137
|
+
return self._GlobalRouteIds
|
19138
|
+
|
19139
|
+
@GlobalRouteIds.setter
|
19140
|
+
def GlobalRouteIds(self, GlobalRouteIds):
|
19141
|
+
self._GlobalRouteIds = GlobalRouteIds
|
19142
|
+
|
19143
|
+
|
19144
|
+
def _deserialize(self, params):
|
19145
|
+
self._VpcId = params.get("VpcId")
|
19146
|
+
self._GlobalRouteIds = params.get("GlobalRouteIds")
|
19147
|
+
memeber_set = set(params.keys())
|
19148
|
+
for name, value in vars(self).items():
|
19149
|
+
property_name = name[1:]
|
19150
|
+
if property_name in memeber_set:
|
19151
|
+
memeber_set.remove(property_name)
|
19152
|
+
if len(memeber_set) > 0:
|
19153
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
19154
|
+
|
19155
|
+
|
19156
|
+
|
19157
|
+
class DeleteGlobalRoutesResponse(AbstractModel):
|
19158
|
+
"""DeleteGlobalRoutes返回参数结构体
|
19159
|
+
|
19160
|
+
"""
|
19161
|
+
|
19162
|
+
def __init__(self):
|
19163
|
+
r"""
|
19164
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
19165
|
+
:type RequestId: str
|
19166
|
+
"""
|
19167
|
+
self._RequestId = None
|
19168
|
+
|
19169
|
+
@property
|
19170
|
+
def RequestId(self):
|
19171
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
19172
|
+
:rtype: str
|
19173
|
+
"""
|
19174
|
+
return self._RequestId
|
19175
|
+
|
19176
|
+
@RequestId.setter
|
19177
|
+
def RequestId(self, RequestId):
|
19178
|
+
self._RequestId = RequestId
|
19179
|
+
|
19180
|
+
|
19181
|
+
def _deserialize(self, params):
|
19182
|
+
self._RequestId = params.get("RequestId")
|
19183
|
+
|
19184
|
+
|
19000
19185
|
class DeleteHaVipRequest(AbstractModel):
|
19001
19186
|
"""DeleteHaVip请求参数结构体
|
19002
19187
|
|
@@ -26914,6 +27099,187 @@ class DescribeGatewayFlowQosResponse(AbstractModel):
|
|
26914
27099
|
self._RequestId = params.get("RequestId")
|
26915
27100
|
|
26916
27101
|
|
27102
|
+
class DescribeGlobalRoutesRequest(AbstractModel):
|
27103
|
+
"""DescribeGlobalRoutes请求参数结构体
|
27104
|
+
|
27105
|
+
"""
|
27106
|
+
|
27107
|
+
def __init__(self):
|
27108
|
+
r"""
|
27109
|
+
:param _Filters: 过滤条件。
|
27110
|
+
<li>global-route-id - String - (过滤条件)如全局路由唯一 Id,形如:gr-bmenrwu2。</li>
|
27111
|
+
<li>vpc-id - String - (过滤条件)VPC唯一Id, 形如: vpc-mcqaoy0f。</li>
|
27112
|
+
<li>gateway-id - String - (过滤条件)下一跳对象。</li>
|
27113
|
+
<li>gateway-type - String - 是否必填:否 - (过滤条件)按下一跳类型进行过滤。支持 NORMAL_CVM
|
27114
|
+
</li>
|
27115
|
+
<li>cdc-id - String - (过滤条件)CDC实例ID,形如:cluster-gbo27yc4。</li>
|
27116
|
+
<li>description - String - (过滤条件)描述。</li>
|
27117
|
+
<li>dest-cidr - String - (过滤条件)Ipv4目标网段。</li>
|
27118
|
+
<li>subnet-route-algorithm - String - (过滤条件)支持的 ECMP算法有:
|
27119
|
+
|
27120
|
+
- ECMP_QUINTUPLE_HASH:五元组hash
|
27121
|
+
- ECMP_SOURCE_DESTINATION_IP_HASH:源和目的IP hash
|
27122
|
+
- ECMP_DESTINATION_IP_HASH:目的IP hash
|
27123
|
+
- ECMP_SOURCE_IP_HASH:源IP hash
|
27124
|
+
</li>
|
27125
|
+
|
27126
|
+
:type Filters: list of Filter
|
27127
|
+
:param _Offset: 偏移量。
|
27128
|
+
:type Offset: int
|
27129
|
+
:param _Limit: 请求对象个数。
|
27130
|
+
:type Limit: int
|
27131
|
+
:param _GlobalRouteIds: 全局路由唯一Id列表。
|
27132
|
+
:type GlobalRouteIds: list of str
|
27133
|
+
"""
|
27134
|
+
self._Filters = None
|
27135
|
+
self._Offset = None
|
27136
|
+
self._Limit = None
|
27137
|
+
self._GlobalRouteIds = None
|
27138
|
+
|
27139
|
+
@property
|
27140
|
+
def Filters(self):
|
27141
|
+
"""过滤条件。
|
27142
|
+
<li>global-route-id - String - (过滤条件)如全局路由唯一 Id,形如:gr-bmenrwu2。</li>
|
27143
|
+
<li>vpc-id - String - (过滤条件)VPC唯一Id, 形如: vpc-mcqaoy0f。</li>
|
27144
|
+
<li>gateway-id - String - (过滤条件)下一跳对象。</li>
|
27145
|
+
<li>gateway-type - String - 是否必填:否 - (过滤条件)按下一跳类型进行过滤。支持 NORMAL_CVM
|
27146
|
+
</li>
|
27147
|
+
<li>cdc-id - String - (过滤条件)CDC实例ID,形如:cluster-gbo27yc4。</li>
|
27148
|
+
<li>description - String - (过滤条件)描述。</li>
|
27149
|
+
<li>dest-cidr - String - (过滤条件)Ipv4目标网段。</li>
|
27150
|
+
<li>subnet-route-algorithm - String - (过滤条件)支持的 ECMP算法有:
|
27151
|
+
|
27152
|
+
- ECMP_QUINTUPLE_HASH:五元组hash
|
27153
|
+
- ECMP_SOURCE_DESTINATION_IP_HASH:源和目的IP hash
|
27154
|
+
- ECMP_DESTINATION_IP_HASH:目的IP hash
|
27155
|
+
- ECMP_SOURCE_IP_HASH:源IP hash
|
27156
|
+
</li>
|
27157
|
+
|
27158
|
+
:rtype: list of Filter
|
27159
|
+
"""
|
27160
|
+
return self._Filters
|
27161
|
+
|
27162
|
+
@Filters.setter
|
27163
|
+
def Filters(self, Filters):
|
27164
|
+
self._Filters = Filters
|
27165
|
+
|
27166
|
+
@property
|
27167
|
+
def Offset(self):
|
27168
|
+
"""偏移量。
|
27169
|
+
:rtype: int
|
27170
|
+
"""
|
27171
|
+
return self._Offset
|
27172
|
+
|
27173
|
+
@Offset.setter
|
27174
|
+
def Offset(self, Offset):
|
27175
|
+
self._Offset = Offset
|
27176
|
+
|
27177
|
+
@property
|
27178
|
+
def Limit(self):
|
27179
|
+
"""请求对象个数。
|
27180
|
+
:rtype: int
|
27181
|
+
"""
|
27182
|
+
return self._Limit
|
27183
|
+
|
27184
|
+
@Limit.setter
|
27185
|
+
def Limit(self, Limit):
|
27186
|
+
self._Limit = Limit
|
27187
|
+
|
27188
|
+
@property
|
27189
|
+
def GlobalRouteIds(self):
|
27190
|
+
"""全局路由唯一Id列表。
|
27191
|
+
:rtype: list of str
|
27192
|
+
"""
|
27193
|
+
return self._GlobalRouteIds
|
27194
|
+
|
27195
|
+
@GlobalRouteIds.setter
|
27196
|
+
def GlobalRouteIds(self, GlobalRouteIds):
|
27197
|
+
self._GlobalRouteIds = GlobalRouteIds
|
27198
|
+
|
27199
|
+
|
27200
|
+
def _deserialize(self, params):
|
27201
|
+
if params.get("Filters") is not None:
|
27202
|
+
self._Filters = []
|
27203
|
+
for item in params.get("Filters"):
|
27204
|
+
obj = Filter()
|
27205
|
+
obj._deserialize(item)
|
27206
|
+
self._Filters.append(obj)
|
27207
|
+
self._Offset = params.get("Offset")
|
27208
|
+
self._Limit = params.get("Limit")
|
27209
|
+
self._GlobalRouteIds = params.get("GlobalRouteIds")
|
27210
|
+
memeber_set = set(params.keys())
|
27211
|
+
for name, value in vars(self).items():
|
27212
|
+
property_name = name[1:]
|
27213
|
+
if property_name in memeber_set:
|
27214
|
+
memeber_set.remove(property_name)
|
27215
|
+
if len(memeber_set) > 0:
|
27216
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
27217
|
+
|
27218
|
+
|
27219
|
+
|
27220
|
+
class DescribeGlobalRoutesResponse(AbstractModel):
|
27221
|
+
"""DescribeGlobalRoutes返回参数结构体
|
27222
|
+
|
27223
|
+
"""
|
27224
|
+
|
27225
|
+
def __init__(self):
|
27226
|
+
r"""
|
27227
|
+
:param _GlobalRouteSet: 全局路由对象。
|
27228
|
+
:type GlobalRouteSet: list of GlobalRoute
|
27229
|
+
:param _TotalCount: 符合条件的实例数量。
|
27230
|
+
:type TotalCount: int
|
27231
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
27232
|
+
:type RequestId: str
|
27233
|
+
"""
|
27234
|
+
self._GlobalRouteSet = None
|
27235
|
+
self._TotalCount = None
|
27236
|
+
self._RequestId = None
|
27237
|
+
|
27238
|
+
@property
|
27239
|
+
def GlobalRouteSet(self):
|
27240
|
+
"""全局路由对象。
|
27241
|
+
:rtype: list of GlobalRoute
|
27242
|
+
"""
|
27243
|
+
return self._GlobalRouteSet
|
27244
|
+
|
27245
|
+
@GlobalRouteSet.setter
|
27246
|
+
def GlobalRouteSet(self, GlobalRouteSet):
|
27247
|
+
self._GlobalRouteSet = GlobalRouteSet
|
27248
|
+
|
27249
|
+
@property
|
27250
|
+
def TotalCount(self):
|
27251
|
+
"""符合条件的实例数量。
|
27252
|
+
:rtype: int
|
27253
|
+
"""
|
27254
|
+
return self._TotalCount
|
27255
|
+
|
27256
|
+
@TotalCount.setter
|
27257
|
+
def TotalCount(self, TotalCount):
|
27258
|
+
self._TotalCount = TotalCount
|
27259
|
+
|
27260
|
+
@property
|
27261
|
+
def RequestId(self):
|
27262
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
27263
|
+
:rtype: str
|
27264
|
+
"""
|
27265
|
+
return self._RequestId
|
27266
|
+
|
27267
|
+
@RequestId.setter
|
27268
|
+
def RequestId(self, RequestId):
|
27269
|
+
self._RequestId = RequestId
|
27270
|
+
|
27271
|
+
|
27272
|
+
def _deserialize(self, params):
|
27273
|
+
if params.get("GlobalRouteSet") is not None:
|
27274
|
+
self._GlobalRouteSet = []
|
27275
|
+
for item in params.get("GlobalRouteSet"):
|
27276
|
+
obj = GlobalRoute()
|
27277
|
+
obj._deserialize(item)
|
27278
|
+
self._GlobalRouteSet.append(obj)
|
27279
|
+
self._TotalCount = params.get("TotalCount")
|
27280
|
+
self._RequestId = params.get("RequestId")
|
27281
|
+
|
27282
|
+
|
26917
27283
|
class DescribeHaVipsRequest(AbstractModel):
|
26918
27284
|
"""DescribeHaVips请求参数结构体
|
26919
27285
|
|
@@ -42622,6 +42988,157 @@ class GetCcnRegionBandwidthLimitsResponse(AbstractModel):
|
|
42622
42988
|
self._RequestId = params.get("RequestId")
|
42623
42989
|
|
42624
42990
|
|
42991
|
+
class GlobalRoute(AbstractModel):
|
42992
|
+
"""全局路由对象。
|
42993
|
+
|
42994
|
+
"""
|
42995
|
+
|
42996
|
+
def __init__(self):
|
42997
|
+
r"""
|
42998
|
+
:param _VpcId: 作为出参展示,表示VPC唯一Id,。
|
42999
|
+
:type VpcId: str
|
43000
|
+
:param _GlobalRouteId: 全局路由唯一Id。
|
43001
|
+
:type GlobalRouteId: str
|
43002
|
+
:param _DestinationCidrBlock: Ipv4目标网段。
|
43003
|
+
:type DestinationCidrBlock: str
|
43004
|
+
:param _GatewayType: 下一跳类型,支持 NORMAL_CVM。
|
43005
|
+
:type GatewayType: str
|
43006
|
+
:param _GatewayId: 下一跳对象,如果GatewayType类型是NORMAL_CVM填写子机IP。
|
43007
|
+
:type GatewayId: str
|
43008
|
+
:param _Description: 备注。
|
43009
|
+
:type Description: str
|
43010
|
+
:param _CreatedTime: 创建时间。
|
43011
|
+
:type CreatedTime: str
|
43012
|
+
:param _SubnetRouteAlgorithm: 支持的 ECMP算法有:
|
43013
|
+
|
43014
|
+
- ECMP_QUINTUPLE_HASH:五元组hash
|
43015
|
+
- ECMP_SOURCE_DESTINATION_IP_HASH:源和目的IP hash
|
43016
|
+
- ECMP_DESTINATION_IP_HASH:目的IP hash
|
43017
|
+
- ECMP_SOURCE_IP_HASH:源IP hash。
|
43018
|
+
:type SubnetRouteAlgorithm: str
|
43019
|
+
"""
|
43020
|
+
self._VpcId = None
|
43021
|
+
self._GlobalRouteId = None
|
43022
|
+
self._DestinationCidrBlock = None
|
43023
|
+
self._GatewayType = None
|
43024
|
+
self._GatewayId = None
|
43025
|
+
self._Description = None
|
43026
|
+
self._CreatedTime = None
|
43027
|
+
self._SubnetRouteAlgorithm = None
|
43028
|
+
|
43029
|
+
@property
|
43030
|
+
def VpcId(self):
|
43031
|
+
"""作为出参展示,表示VPC唯一Id,。
|
43032
|
+
:rtype: str
|
43033
|
+
"""
|
43034
|
+
return self._VpcId
|
43035
|
+
|
43036
|
+
@VpcId.setter
|
43037
|
+
def VpcId(self, VpcId):
|
43038
|
+
self._VpcId = VpcId
|
43039
|
+
|
43040
|
+
@property
|
43041
|
+
def GlobalRouteId(self):
|
43042
|
+
"""全局路由唯一Id。
|
43043
|
+
:rtype: str
|
43044
|
+
"""
|
43045
|
+
return self._GlobalRouteId
|
43046
|
+
|
43047
|
+
@GlobalRouteId.setter
|
43048
|
+
def GlobalRouteId(self, GlobalRouteId):
|
43049
|
+
self._GlobalRouteId = GlobalRouteId
|
43050
|
+
|
43051
|
+
@property
|
43052
|
+
def DestinationCidrBlock(self):
|
43053
|
+
"""Ipv4目标网段。
|
43054
|
+
:rtype: str
|
43055
|
+
"""
|
43056
|
+
return self._DestinationCidrBlock
|
43057
|
+
|
43058
|
+
@DestinationCidrBlock.setter
|
43059
|
+
def DestinationCidrBlock(self, DestinationCidrBlock):
|
43060
|
+
self._DestinationCidrBlock = DestinationCidrBlock
|
43061
|
+
|
43062
|
+
@property
|
43063
|
+
def GatewayType(self):
|
43064
|
+
"""下一跳类型,支持 NORMAL_CVM。
|
43065
|
+
:rtype: str
|
43066
|
+
"""
|
43067
|
+
return self._GatewayType
|
43068
|
+
|
43069
|
+
@GatewayType.setter
|
43070
|
+
def GatewayType(self, GatewayType):
|
43071
|
+
self._GatewayType = GatewayType
|
43072
|
+
|
43073
|
+
@property
|
43074
|
+
def GatewayId(self):
|
43075
|
+
"""下一跳对象,如果GatewayType类型是NORMAL_CVM填写子机IP。
|
43076
|
+
:rtype: str
|
43077
|
+
"""
|
43078
|
+
return self._GatewayId
|
43079
|
+
|
43080
|
+
@GatewayId.setter
|
43081
|
+
def GatewayId(self, GatewayId):
|
43082
|
+
self._GatewayId = GatewayId
|
43083
|
+
|
43084
|
+
@property
|
43085
|
+
def Description(self):
|
43086
|
+
"""备注。
|
43087
|
+
:rtype: str
|
43088
|
+
"""
|
43089
|
+
return self._Description
|
43090
|
+
|
43091
|
+
@Description.setter
|
43092
|
+
def Description(self, Description):
|
43093
|
+
self._Description = Description
|
43094
|
+
|
43095
|
+
@property
|
43096
|
+
def CreatedTime(self):
|
43097
|
+
"""创建时间。
|
43098
|
+
:rtype: str
|
43099
|
+
"""
|
43100
|
+
return self._CreatedTime
|
43101
|
+
|
43102
|
+
@CreatedTime.setter
|
43103
|
+
def CreatedTime(self, CreatedTime):
|
43104
|
+
self._CreatedTime = CreatedTime
|
43105
|
+
|
43106
|
+
@property
|
43107
|
+
def SubnetRouteAlgorithm(self):
|
43108
|
+
"""支持的 ECMP算法有:
|
43109
|
+
|
43110
|
+
- ECMP_QUINTUPLE_HASH:五元组hash
|
43111
|
+
- ECMP_SOURCE_DESTINATION_IP_HASH:源和目的IP hash
|
43112
|
+
- ECMP_DESTINATION_IP_HASH:目的IP hash
|
43113
|
+
- ECMP_SOURCE_IP_HASH:源IP hash。
|
43114
|
+
:rtype: str
|
43115
|
+
"""
|
43116
|
+
return self._SubnetRouteAlgorithm
|
43117
|
+
|
43118
|
+
@SubnetRouteAlgorithm.setter
|
43119
|
+
def SubnetRouteAlgorithm(self, SubnetRouteAlgorithm):
|
43120
|
+
self._SubnetRouteAlgorithm = SubnetRouteAlgorithm
|
43121
|
+
|
43122
|
+
|
43123
|
+
def _deserialize(self, params):
|
43124
|
+
self._VpcId = params.get("VpcId")
|
43125
|
+
self._GlobalRouteId = params.get("GlobalRouteId")
|
43126
|
+
self._DestinationCidrBlock = params.get("DestinationCidrBlock")
|
43127
|
+
self._GatewayType = params.get("GatewayType")
|
43128
|
+
self._GatewayId = params.get("GatewayId")
|
43129
|
+
self._Description = params.get("Description")
|
43130
|
+
self._CreatedTime = params.get("CreatedTime")
|
43131
|
+
self._SubnetRouteAlgorithm = params.get("SubnetRouteAlgorithm")
|
43132
|
+
memeber_set = set(params.keys())
|
43133
|
+
for name, value in vars(self).items():
|
43134
|
+
property_name = name[1:]
|
43135
|
+
if property_name in memeber_set:
|
43136
|
+
memeber_set.remove(property_name)
|
43137
|
+
if len(memeber_set) > 0:
|
43138
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
43139
|
+
|
43140
|
+
|
43141
|
+
|
42625
43142
|
class HaVip(AbstractModel):
|
42626
43143
|
"""描述 HAVIP 信息
|
42627
43144
|
|
@@ -48695,6 +49212,199 @@ class ModifyGatewayFlowQosResponse(AbstractModel):
|
|
48695
49212
|
self._RequestId = params.get("RequestId")
|
48696
49213
|
|
48697
49214
|
|
49215
|
+
class ModifyGlobalRouteECMPAlgorithmRequest(AbstractModel):
|
49216
|
+
"""ModifyGlobalRouteECMPAlgorithm请求参数结构体
|
49217
|
+
|
49218
|
+
"""
|
49219
|
+
|
49220
|
+
def __init__(self):
|
49221
|
+
r"""
|
49222
|
+
:param _VpcId: VPC唯一Id。
|
49223
|
+
:type VpcId: str
|
49224
|
+
:param _DestinationCidrBlock: Ipv4目标网段。
|
49225
|
+
:type DestinationCidrBlock: str
|
49226
|
+
:param _SubnetRouteAlgorithm: 支持的 ECMP算法有:ECMP_QUINTUPLE_HASH:五元组hash,ECMP_SOURCE_DESTINATION_IP_HASH:源和目的IP hash,ECMP_DESTINATION_IP_HASH:目的IP hash,ECMP_SOURCE_IP_HASH:源IP hash。
|
49227
|
+
:type SubnetRouteAlgorithm: str
|
49228
|
+
:param _CdcId: CDC 集群唯一 ID。
|
49229
|
+
:type CdcId: str
|
49230
|
+
"""
|
49231
|
+
self._VpcId = None
|
49232
|
+
self._DestinationCidrBlock = None
|
49233
|
+
self._SubnetRouteAlgorithm = None
|
49234
|
+
self._CdcId = None
|
49235
|
+
|
49236
|
+
@property
|
49237
|
+
def VpcId(self):
|
49238
|
+
"""VPC唯一Id。
|
49239
|
+
:rtype: str
|
49240
|
+
"""
|
49241
|
+
return self._VpcId
|
49242
|
+
|
49243
|
+
@VpcId.setter
|
49244
|
+
def VpcId(self, VpcId):
|
49245
|
+
self._VpcId = VpcId
|
49246
|
+
|
49247
|
+
@property
|
49248
|
+
def DestinationCidrBlock(self):
|
49249
|
+
"""Ipv4目标网段。
|
49250
|
+
:rtype: str
|
49251
|
+
"""
|
49252
|
+
return self._DestinationCidrBlock
|
49253
|
+
|
49254
|
+
@DestinationCidrBlock.setter
|
49255
|
+
def DestinationCidrBlock(self, DestinationCidrBlock):
|
49256
|
+
self._DestinationCidrBlock = DestinationCidrBlock
|
49257
|
+
|
49258
|
+
@property
|
49259
|
+
def SubnetRouteAlgorithm(self):
|
49260
|
+
"""支持的 ECMP算法有:ECMP_QUINTUPLE_HASH:五元组hash,ECMP_SOURCE_DESTINATION_IP_HASH:源和目的IP hash,ECMP_DESTINATION_IP_HASH:目的IP hash,ECMP_SOURCE_IP_HASH:源IP hash。
|
49261
|
+
:rtype: str
|
49262
|
+
"""
|
49263
|
+
return self._SubnetRouteAlgorithm
|
49264
|
+
|
49265
|
+
@SubnetRouteAlgorithm.setter
|
49266
|
+
def SubnetRouteAlgorithm(self, SubnetRouteAlgorithm):
|
49267
|
+
self._SubnetRouteAlgorithm = SubnetRouteAlgorithm
|
49268
|
+
|
49269
|
+
@property
|
49270
|
+
def CdcId(self):
|
49271
|
+
"""CDC 集群唯一 ID。
|
49272
|
+
:rtype: str
|
49273
|
+
"""
|
49274
|
+
return self._CdcId
|
49275
|
+
|
49276
|
+
@CdcId.setter
|
49277
|
+
def CdcId(self, CdcId):
|
49278
|
+
self._CdcId = CdcId
|
49279
|
+
|
49280
|
+
|
49281
|
+
def _deserialize(self, params):
|
49282
|
+
self._VpcId = params.get("VpcId")
|
49283
|
+
self._DestinationCidrBlock = params.get("DestinationCidrBlock")
|
49284
|
+
self._SubnetRouteAlgorithm = params.get("SubnetRouteAlgorithm")
|
49285
|
+
self._CdcId = params.get("CdcId")
|
49286
|
+
memeber_set = set(params.keys())
|
49287
|
+
for name, value in vars(self).items():
|
49288
|
+
property_name = name[1:]
|
49289
|
+
if property_name in memeber_set:
|
49290
|
+
memeber_set.remove(property_name)
|
49291
|
+
if len(memeber_set) > 0:
|
49292
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
49293
|
+
|
49294
|
+
|
49295
|
+
|
49296
|
+
class ModifyGlobalRouteECMPAlgorithmResponse(AbstractModel):
|
49297
|
+
"""ModifyGlobalRouteECMPAlgorithm返回参数结构体
|
49298
|
+
|
49299
|
+
"""
|
49300
|
+
|
49301
|
+
def __init__(self):
|
49302
|
+
r"""
|
49303
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
49304
|
+
:type RequestId: str
|
49305
|
+
"""
|
49306
|
+
self._RequestId = None
|
49307
|
+
|
49308
|
+
@property
|
49309
|
+
def RequestId(self):
|
49310
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
49311
|
+
:rtype: str
|
49312
|
+
"""
|
49313
|
+
return self._RequestId
|
49314
|
+
|
49315
|
+
@RequestId.setter
|
49316
|
+
def RequestId(self, RequestId):
|
49317
|
+
self._RequestId = RequestId
|
49318
|
+
|
49319
|
+
|
49320
|
+
def _deserialize(self, params):
|
49321
|
+
self._RequestId = params.get("RequestId")
|
49322
|
+
|
49323
|
+
|
49324
|
+
class ModifyGlobalRoutesRequest(AbstractModel):
|
49325
|
+
"""ModifyGlobalRoutes请求参数结构体
|
49326
|
+
|
49327
|
+
"""
|
49328
|
+
|
49329
|
+
def __init__(self):
|
49330
|
+
r"""
|
49331
|
+
:param _VpcId: VPC唯一Id。
|
49332
|
+
:type VpcId: str
|
49333
|
+
:param _GlobalRoutes: 全局路由对象。仅支持修改:'Description',其他字段暂不支持。
|
49334
|
+
:type GlobalRoutes: list of GlobalRoute
|
49335
|
+
"""
|
49336
|
+
self._VpcId = None
|
49337
|
+
self._GlobalRoutes = None
|
49338
|
+
|
49339
|
+
@property
|
49340
|
+
def VpcId(self):
|
49341
|
+
"""VPC唯一Id。
|
49342
|
+
:rtype: str
|
49343
|
+
"""
|
49344
|
+
return self._VpcId
|
49345
|
+
|
49346
|
+
@VpcId.setter
|
49347
|
+
def VpcId(self, VpcId):
|
49348
|
+
self._VpcId = VpcId
|
49349
|
+
|
49350
|
+
@property
|
49351
|
+
def GlobalRoutes(self):
|
49352
|
+
"""全局路由对象。仅支持修改:'Description',其他字段暂不支持。
|
49353
|
+
:rtype: list of GlobalRoute
|
49354
|
+
"""
|
49355
|
+
return self._GlobalRoutes
|
49356
|
+
|
49357
|
+
@GlobalRoutes.setter
|
49358
|
+
def GlobalRoutes(self, GlobalRoutes):
|
49359
|
+
self._GlobalRoutes = GlobalRoutes
|
49360
|
+
|
49361
|
+
|
49362
|
+
def _deserialize(self, params):
|
49363
|
+
self._VpcId = params.get("VpcId")
|
49364
|
+
if params.get("GlobalRoutes") is not None:
|
49365
|
+
self._GlobalRoutes = []
|
49366
|
+
for item in params.get("GlobalRoutes"):
|
49367
|
+
obj = GlobalRoute()
|
49368
|
+
obj._deserialize(item)
|
49369
|
+
self._GlobalRoutes.append(obj)
|
49370
|
+
memeber_set = set(params.keys())
|
49371
|
+
for name, value in vars(self).items():
|
49372
|
+
property_name = name[1:]
|
49373
|
+
if property_name in memeber_set:
|
49374
|
+
memeber_set.remove(property_name)
|
49375
|
+
if len(memeber_set) > 0:
|
49376
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
49377
|
+
|
49378
|
+
|
49379
|
+
|
49380
|
+
class ModifyGlobalRoutesResponse(AbstractModel):
|
49381
|
+
"""ModifyGlobalRoutes返回参数结构体
|
49382
|
+
|
49383
|
+
"""
|
49384
|
+
|
49385
|
+
def __init__(self):
|
49386
|
+
r"""
|
49387
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
49388
|
+
:type RequestId: str
|
49389
|
+
"""
|
49390
|
+
self._RequestId = None
|
49391
|
+
|
49392
|
+
@property
|
49393
|
+
def RequestId(self):
|
49394
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
49395
|
+
:rtype: str
|
49396
|
+
"""
|
49397
|
+
return self._RequestId
|
49398
|
+
|
49399
|
+
@RequestId.setter
|
49400
|
+
def RequestId(self, RequestId):
|
49401
|
+
self._RequestId = RequestId
|
49402
|
+
|
49403
|
+
|
49404
|
+
def _deserialize(self, params):
|
49405
|
+
self._RequestId = params.get("RequestId")
|
49406
|
+
|
49407
|
+
|
48698
49408
|
class ModifyHaVipAttributeRequest(AbstractModel):
|
48699
49409
|
"""ModifyHaVipAttribute请求参数结构体
|
48700
49410
|
|