tencentcloud-sdk-python 3.0.1299__py2.py3-none-any.whl → 3.0.1301__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/aiart/v20221229/aiart_client.py +55 -0
- tencentcloud/aiart/v20221229/models.py +367 -0
- tencentcloud/batch/v20170312/models.py +2 -2
- tencentcloud/cdb/v20170320/models.py +27 -0
- tencentcloud/cmq/v20190304/cmq_client.py +0 -365
- tencentcloud/cmq/v20190304/models.py +324 -2473
- tencentcloud/config/v20220802/config_client.py +46 -0
- tencentcloud/config/v20220802/errorcodes.py +3 -0
- tencentcloud/config/v20220802/models.py +716 -26
- tencentcloud/csxg/v20230303/errorcodes.py +48 -0
- tencentcloud/cvm/v20170312/models.py +2 -2
- tencentcloud/dc/v20180410/dc_client.py +1 -1
- tencentcloud/dc/v20180410/models.py +14 -32
- tencentcloud/ecm/v20190719/models.py +0 -18
- tencentcloud/es/v20180416/models.py +17 -0
- tencentcloud/ess/v20201111/ess_client.py +25 -4
- tencentcloud/ess/v20201111/models.py +8 -48
- tencentcloud/essbasic/v20210526/models.py +8 -18
- tencentcloud/hai/v20230812/hai_client.py +23 -0
- tencentcloud/hai/v20230812/models.py +326 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +92 -0
- tencentcloud/iotexplorer/v20190423/models.py +1012 -36
- tencentcloud/iotvideo/v20211125/iotvideo_client.py +23 -0
- tencentcloud/iotvideo/v20211125/models.py +135 -0
- tencentcloud/lkeap/v20240522/errorcodes.py +3 -0
- tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
- tencentcloud/lkeap/v20240522/models.py +54 -16
- tencentcloud/mna/v20210119/models.py +0 -22
- tencentcloud/redis/v20180412/models.py +6 -2
- tencentcloud/sms/v20190711/errorcodes.py +6 -0
- tencentcloud/sms/v20190711/models.py +81 -0
- tencentcloud/sms/v20210111/errorcodes.py +6 -0
- tencentcloud/sms/v20210111/models.py +81 -0
- tencentcloud/tcb/v20180608/models.py +2 -86
- tencentcloud/tke/v20220501/models.py +2 -2
- tencentcloud/trro/v20220325/models.py +15 -58
- tencentcloud/tse/v20201207/models.py +30 -0
- tencentcloud/vpc/v20170312/errorcodes.py +15 -0
- tencentcloud/vpc/v20170312/models.py +2 -16
- tencentcloud/wedata/v20210820/models.py +126 -0
- {tencentcloud_sdk_python-3.0.1299.dist-info → tencentcloud_sdk_python-3.0.1301.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1299.dist-info → tencentcloud_sdk_python-3.0.1301.dist-info}/RECORD +46 -46
- {tencentcloud_sdk_python-3.0.1299.dist-info → tencentcloud_sdk_python-3.0.1301.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1299.dist-info → tencentcloud_sdk_python-3.0.1301.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1299.dist-info → tencentcloud_sdk_python-3.0.1301.dist-info}/top_level.txt +0 -0
@@ -2225,29 +2225,23 @@ class Device(AbstractModel):
|
|
2225
2225
|
def __init__(self):
|
2226
2226
|
r"""
|
2227
2227
|
:param _DeviceId: 设备ID
|
2228
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2229
2228
|
:type DeviceId: str
|
2230
2229
|
:param _DeviceName: 设备名称
|
2231
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2232
2230
|
:type DeviceName: str
|
2233
2231
|
:param _LicenseCount: 已经绑定license数量
|
2234
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2235
2232
|
:type LicenseCount: int
|
2236
2233
|
:param _RemainDay: 剩余天数:天
|
2237
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2238
2234
|
:type RemainDay: int
|
2239
2235
|
:param _ExpireTime: 过期时间:s
|
2240
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2241
2236
|
:type ExpireTime: str
|
2242
2237
|
:param _Duration: 服务时长:s
|
2243
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2244
2238
|
:type Duration: str
|
2245
2239
|
:param _LicenseIds: 已经绑定licenseId列表
|
2246
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2247
2240
|
:type LicenseIds: list of str
|
2248
2241
|
:param _MonthlyRemainTime: 每月license的限定时长
|
2249
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2250
2242
|
:type MonthlyRemainTime: int
|
2243
|
+
:param _LimitedTime: 月封顶时长(分钟)
|
2244
|
+
:type LimitedTime: int
|
2251
2245
|
"""
|
2252
2246
|
self._DeviceId = None
|
2253
2247
|
self._DeviceName = None
|
@@ -2257,11 +2251,11 @@ class Device(AbstractModel):
|
|
2257
2251
|
self._Duration = None
|
2258
2252
|
self._LicenseIds = None
|
2259
2253
|
self._MonthlyRemainTime = None
|
2254
|
+
self._LimitedTime = None
|
2260
2255
|
|
2261
2256
|
@property
|
2262
2257
|
def DeviceId(self):
|
2263
2258
|
"""设备ID
|
2264
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2265
2259
|
:rtype: str
|
2266
2260
|
"""
|
2267
2261
|
return self._DeviceId
|
@@ -2273,7 +2267,6 @@ class Device(AbstractModel):
|
|
2273
2267
|
@property
|
2274
2268
|
def DeviceName(self):
|
2275
2269
|
"""设备名称
|
2276
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2277
2270
|
:rtype: str
|
2278
2271
|
"""
|
2279
2272
|
return self._DeviceName
|
@@ -2285,7 +2278,6 @@ class Device(AbstractModel):
|
|
2285
2278
|
@property
|
2286
2279
|
def LicenseCount(self):
|
2287
2280
|
"""已经绑定license数量
|
2288
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2289
2281
|
:rtype: int
|
2290
2282
|
"""
|
2291
2283
|
return self._LicenseCount
|
@@ -2297,7 +2289,6 @@ class Device(AbstractModel):
|
|
2297
2289
|
@property
|
2298
2290
|
def RemainDay(self):
|
2299
2291
|
"""剩余天数:天
|
2300
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2301
2292
|
:rtype: int
|
2302
2293
|
"""
|
2303
2294
|
return self._RemainDay
|
@@ -2309,7 +2300,6 @@ class Device(AbstractModel):
|
|
2309
2300
|
@property
|
2310
2301
|
def ExpireTime(self):
|
2311
2302
|
"""过期时间:s
|
2312
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2313
2303
|
:rtype: str
|
2314
2304
|
"""
|
2315
2305
|
return self._ExpireTime
|
@@ -2321,7 +2311,6 @@ class Device(AbstractModel):
|
|
2321
2311
|
@property
|
2322
2312
|
def Duration(self):
|
2323
2313
|
"""服务时长:s
|
2324
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2325
2314
|
:rtype: str
|
2326
2315
|
"""
|
2327
2316
|
return self._Duration
|
@@ -2333,7 +2322,6 @@ class Device(AbstractModel):
|
|
2333
2322
|
@property
|
2334
2323
|
def LicenseIds(self):
|
2335
2324
|
"""已经绑定licenseId列表
|
2336
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2337
2325
|
:rtype: list of str
|
2338
2326
|
"""
|
2339
2327
|
return self._LicenseIds
|
@@ -2345,7 +2333,6 @@ class Device(AbstractModel):
|
|
2345
2333
|
@property
|
2346
2334
|
def MonthlyRemainTime(self):
|
2347
2335
|
"""每月license的限定时长
|
2348
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2349
2336
|
:rtype: int
|
2350
2337
|
"""
|
2351
2338
|
return self._MonthlyRemainTime
|
@@ -2354,6 +2341,17 @@ class Device(AbstractModel):
|
|
2354
2341
|
def MonthlyRemainTime(self, MonthlyRemainTime):
|
2355
2342
|
self._MonthlyRemainTime = MonthlyRemainTime
|
2356
2343
|
|
2344
|
+
@property
|
2345
|
+
def LimitedTime(self):
|
2346
|
+
"""月封顶时长(分钟)
|
2347
|
+
:rtype: int
|
2348
|
+
"""
|
2349
|
+
return self._LimitedTime
|
2350
|
+
|
2351
|
+
@LimitedTime.setter
|
2352
|
+
def LimitedTime(self, LimitedTime):
|
2353
|
+
self._LimitedTime = LimitedTime
|
2354
|
+
|
2357
2355
|
|
2358
2356
|
def _deserialize(self, params):
|
2359
2357
|
self._DeviceId = params.get("DeviceId")
|
@@ -2364,6 +2362,7 @@ class Device(AbstractModel):
|
|
2364
2362
|
self._Duration = params.get("Duration")
|
2365
2363
|
self._LicenseIds = params.get("LicenseIds")
|
2366
2364
|
self._MonthlyRemainTime = params.get("MonthlyRemainTime")
|
2365
|
+
self._LimitedTime = params.get("LimitedTime")
|
2367
2366
|
memeber_set = set(params.keys())
|
2368
2367
|
for name, value in vars(self).items():
|
2369
2368
|
property_name = name[1:]
|
@@ -3909,70 +3908,49 @@ class SessionDeviceDetail(AbstractModel):
|
|
3909
3908
|
:param _DeviceId: 设备ID
|
3910
3909
|
:type DeviceId: str
|
3911
3910
|
:param _Ver: sdk版本
|
3912
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3913
3911
|
:type Ver: str
|
3914
3912
|
:param _SdkMode: 模式(p2p/server)
|
3915
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3916
3913
|
:type SdkMode: str
|
3917
3914
|
:param _DecodeCost: 解码耗时,单位:ms
|
3918
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3919
3915
|
:type DecodeCost: list of int
|
3920
3916
|
:param _RenderConst: 【已废弃,使用RenderCost】
|
3921
3917
|
注意:此字段可能返回 null,表示取不到有效值。
|
3922
3918
|
:type RenderConst: list of int
|
3923
3919
|
:param _K100: 卡顿k100
|
3924
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3925
3920
|
:type K100: list of float
|
3926
3921
|
:param _K150: 卡顿k150
|
3927
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3928
3922
|
:type K150: list of float
|
3929
3923
|
:param _NACK: nack请求数
|
3930
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3931
3924
|
:type NACK: list of int
|
3932
3925
|
:param _BitRateEstimate: 服务端调控码率,单位:kbps
|
3933
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3934
3926
|
:type BitRateEstimate: list of int
|
3935
3927
|
:param _Width: 宽度
|
3936
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3937
3928
|
:type Width: int
|
3938
3929
|
:param _Height: 高度
|
3939
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3940
3930
|
:type Height: int
|
3941
3931
|
:param _EncodeCost: 编码耗时,单位:ms
|
3942
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3943
3932
|
:type EncodeCost: list of int
|
3944
3933
|
:param _CaptureCost: 采集耗时,单位:ms
|
3945
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3946
3934
|
:type CaptureCost: list of int
|
3947
3935
|
:param _RenderCost: 渲染耗时,单位:ms
|
3948
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3949
3936
|
:type RenderCost: list of int
|
3950
3937
|
:param _ConfigWidth: 配置宽度
|
3951
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3952
3938
|
:type ConfigWidth: int
|
3953
3939
|
:param _ConfigHeight: 配置高度
|
3954
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3955
3940
|
:type ConfigHeight: int
|
3956
3941
|
:param _FrameDelta: 平均帧间隔
|
3957
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3958
3942
|
:type FrameDelta: list of int
|
3959
3943
|
:param _MaxFrameDelta: 最大帧间隔
|
3960
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3961
3944
|
:type MaxFrameDelta: list of int
|
3962
3945
|
:param _TotalBitrateEstimate: 总码率评估,单位:kbps
|
3963
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3964
3946
|
:type TotalBitrateEstimate: list of int
|
3965
3947
|
:param _Lag100Duration: 帧间隔大于100ms的卡顿时长
|
3966
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3967
3948
|
:type Lag100Duration: list of int
|
3968
3949
|
:param _Lag150Duration: 帧间隔大于150ms的卡顿时长
|
3969
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3970
3950
|
:type Lag150Duration: list of int
|
3971
3951
|
:param _MultiMode: 是否开启多网:0 单网,1 多网
|
3972
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3973
3952
|
:type MultiMode: int
|
3974
3953
|
:param _MultiNet: 多网卡信息
|
3975
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3976
3954
|
:type MultiNet: list of MultiNet
|
3977
3955
|
"""
|
3978
3956
|
self._DeviceType = None
|
@@ -4169,7 +4147,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4169
4147
|
@property
|
4170
4148
|
def Ver(self):
|
4171
4149
|
"""sdk版本
|
4172
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4173
4150
|
:rtype: str
|
4174
4151
|
"""
|
4175
4152
|
return self._Ver
|
@@ -4181,7 +4158,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4181
4158
|
@property
|
4182
4159
|
def SdkMode(self):
|
4183
4160
|
"""模式(p2p/server)
|
4184
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4185
4161
|
:rtype: str
|
4186
4162
|
"""
|
4187
4163
|
return self._SdkMode
|
@@ -4193,7 +4169,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4193
4169
|
@property
|
4194
4170
|
def DecodeCost(self):
|
4195
4171
|
"""解码耗时,单位:ms
|
4196
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4197
4172
|
:rtype: list of int
|
4198
4173
|
"""
|
4199
4174
|
return self._DecodeCost
|
@@ -4221,7 +4196,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4221
4196
|
@property
|
4222
4197
|
def K100(self):
|
4223
4198
|
"""卡顿k100
|
4224
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4225
4199
|
:rtype: list of float
|
4226
4200
|
"""
|
4227
4201
|
return self._K100
|
@@ -4233,7 +4207,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4233
4207
|
@property
|
4234
4208
|
def K150(self):
|
4235
4209
|
"""卡顿k150
|
4236
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4237
4210
|
:rtype: list of float
|
4238
4211
|
"""
|
4239
4212
|
return self._K150
|
@@ -4245,7 +4218,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4245
4218
|
@property
|
4246
4219
|
def NACK(self):
|
4247
4220
|
"""nack请求数
|
4248
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4249
4221
|
:rtype: list of int
|
4250
4222
|
"""
|
4251
4223
|
return self._NACK
|
@@ -4257,7 +4229,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4257
4229
|
@property
|
4258
4230
|
def BitRateEstimate(self):
|
4259
4231
|
"""服务端调控码率,单位:kbps
|
4260
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4261
4232
|
:rtype: list of int
|
4262
4233
|
"""
|
4263
4234
|
return self._BitRateEstimate
|
@@ -4269,7 +4240,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4269
4240
|
@property
|
4270
4241
|
def Width(self):
|
4271
4242
|
"""宽度
|
4272
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4273
4243
|
:rtype: int
|
4274
4244
|
"""
|
4275
4245
|
return self._Width
|
@@ -4281,7 +4251,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4281
4251
|
@property
|
4282
4252
|
def Height(self):
|
4283
4253
|
"""高度
|
4284
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4285
4254
|
:rtype: int
|
4286
4255
|
"""
|
4287
4256
|
return self._Height
|
@@ -4293,7 +4262,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4293
4262
|
@property
|
4294
4263
|
def EncodeCost(self):
|
4295
4264
|
"""编码耗时,单位:ms
|
4296
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4297
4265
|
:rtype: list of int
|
4298
4266
|
"""
|
4299
4267
|
return self._EncodeCost
|
@@ -4305,7 +4273,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4305
4273
|
@property
|
4306
4274
|
def CaptureCost(self):
|
4307
4275
|
"""采集耗时,单位:ms
|
4308
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4309
4276
|
:rtype: list of int
|
4310
4277
|
"""
|
4311
4278
|
return self._CaptureCost
|
@@ -4317,7 +4284,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4317
4284
|
@property
|
4318
4285
|
def RenderCost(self):
|
4319
4286
|
"""渲染耗时,单位:ms
|
4320
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4321
4287
|
:rtype: list of int
|
4322
4288
|
"""
|
4323
4289
|
return self._RenderCost
|
@@ -4329,7 +4295,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4329
4295
|
@property
|
4330
4296
|
def ConfigWidth(self):
|
4331
4297
|
"""配置宽度
|
4332
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4333
4298
|
:rtype: int
|
4334
4299
|
"""
|
4335
4300
|
return self._ConfigWidth
|
@@ -4341,7 +4306,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4341
4306
|
@property
|
4342
4307
|
def ConfigHeight(self):
|
4343
4308
|
"""配置高度
|
4344
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4345
4309
|
:rtype: int
|
4346
4310
|
"""
|
4347
4311
|
return self._ConfigHeight
|
@@ -4353,7 +4317,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4353
4317
|
@property
|
4354
4318
|
def FrameDelta(self):
|
4355
4319
|
"""平均帧间隔
|
4356
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4357
4320
|
:rtype: list of int
|
4358
4321
|
"""
|
4359
4322
|
return self._FrameDelta
|
@@ -4365,7 +4328,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4365
4328
|
@property
|
4366
4329
|
def MaxFrameDelta(self):
|
4367
4330
|
"""最大帧间隔
|
4368
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4369
4331
|
:rtype: list of int
|
4370
4332
|
"""
|
4371
4333
|
return self._MaxFrameDelta
|
@@ -4377,7 +4339,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4377
4339
|
@property
|
4378
4340
|
def TotalBitrateEstimate(self):
|
4379
4341
|
"""总码率评估,单位:kbps
|
4380
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4381
4342
|
:rtype: list of int
|
4382
4343
|
"""
|
4383
4344
|
return self._TotalBitrateEstimate
|
@@ -4389,7 +4350,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4389
4350
|
@property
|
4390
4351
|
def Lag100Duration(self):
|
4391
4352
|
"""帧间隔大于100ms的卡顿时长
|
4392
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4393
4353
|
:rtype: list of int
|
4394
4354
|
"""
|
4395
4355
|
return self._Lag100Duration
|
@@ -4401,7 +4361,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4401
4361
|
@property
|
4402
4362
|
def Lag150Duration(self):
|
4403
4363
|
"""帧间隔大于150ms的卡顿时长
|
4404
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4405
4364
|
:rtype: list of int
|
4406
4365
|
"""
|
4407
4366
|
return self._Lag150Duration
|
@@ -4413,7 +4372,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4413
4372
|
@property
|
4414
4373
|
def MultiMode(self):
|
4415
4374
|
"""是否开启多网:0 单网,1 多网
|
4416
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4417
4375
|
:rtype: int
|
4418
4376
|
"""
|
4419
4377
|
return self._MultiMode
|
@@ -4425,7 +4383,6 @@ class SessionDeviceDetail(AbstractModel):
|
|
4425
4383
|
@property
|
4426
4384
|
def MultiNet(self):
|
4427
4385
|
"""多网卡信息
|
4428
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4429
4386
|
:rtype: list of MultiNet
|
4430
4387
|
"""
|
4431
4388
|
return self._MultiNet
|
@@ -20400,6 +20400,8 @@ class GovernanceNamespaceInput(AbstractModel):
|
|
20400
20400
|
2、列表内容仅一个元素,且为字符 *,表示所有命名空间可见(包括新增)
|
20401
20401
|
3、列表内容为部份命名空间名称,则只对这些命名空间下可见
|
20402
20402
|
:type ServiceExportTo: list of str
|
20403
|
+
:param _SyncToGlobalRegistry: 是否开启同步到全局注册中心
|
20404
|
+
:type SyncToGlobalRegistry: bool
|
20403
20405
|
"""
|
20404
20406
|
self._Name = None
|
20405
20407
|
self._Comment = None
|
@@ -20408,6 +20410,7 @@ class GovernanceNamespaceInput(AbstractModel):
|
|
20408
20410
|
self._RemoveUserIds = None
|
20409
20411
|
self._RemoveGroupIds = None
|
20410
20412
|
self._ServiceExportTo = None
|
20413
|
+
self._SyncToGlobalRegistry = None
|
20411
20414
|
|
20412
20415
|
@property
|
20413
20416
|
def Name(self):
|
@@ -20489,6 +20492,17 @@ class GovernanceNamespaceInput(AbstractModel):
|
|
20489
20492
|
def ServiceExportTo(self, ServiceExportTo):
|
20490
20493
|
self._ServiceExportTo = ServiceExportTo
|
20491
20494
|
|
20495
|
+
@property
|
20496
|
+
def SyncToGlobalRegistry(self):
|
20497
|
+
"""是否开启同步到全局注册中心
|
20498
|
+
:rtype: bool
|
20499
|
+
"""
|
20500
|
+
return self._SyncToGlobalRegistry
|
20501
|
+
|
20502
|
+
@SyncToGlobalRegistry.setter
|
20503
|
+
def SyncToGlobalRegistry(self, SyncToGlobalRegistry):
|
20504
|
+
self._SyncToGlobalRegistry = SyncToGlobalRegistry
|
20505
|
+
|
20492
20506
|
|
20493
20507
|
def _deserialize(self, params):
|
20494
20508
|
self._Name = params.get("Name")
|
@@ -20498,6 +20512,7 @@ class GovernanceNamespaceInput(AbstractModel):
|
|
20498
20512
|
self._RemoveUserIds = params.get("RemoveUserIds")
|
20499
20513
|
self._RemoveGroupIds = params.get("RemoveGroupIds")
|
20500
20514
|
self._ServiceExportTo = params.get("ServiceExportTo")
|
20515
|
+
self._SyncToGlobalRegistry = params.get("SyncToGlobalRegistry")
|
20501
20516
|
memeber_set = set(params.keys())
|
20502
20517
|
for name, value in vars(self).items():
|
20503
20518
|
property_name = name[1:]
|
@@ -21165,6 +21180,8 @@ class GovernanceServiceInput(AbstractModel):
|
|
21165
21180
|
:type RemoveGroupIds: list of str
|
21166
21181
|
:param _ExportTo: 该服务对哪些命名空间可见
|
21167
21182
|
:type ExportTo: list of str
|
21183
|
+
:param _SyncToGlobalRegistry: 是否开启同步到全局注册中心
|
21184
|
+
:type SyncToGlobalRegistry: bool
|
21168
21185
|
"""
|
21169
21186
|
self._Name = None
|
21170
21187
|
self._Namespace = None
|
@@ -21177,6 +21194,7 @@ class GovernanceServiceInput(AbstractModel):
|
|
21177
21194
|
self._RemoveUserIds = None
|
21178
21195
|
self._RemoveGroupIds = None
|
21179
21196
|
self._ExportTo = None
|
21197
|
+
self._SyncToGlobalRegistry = None
|
21180
21198
|
|
21181
21199
|
@property
|
21182
21200
|
def Name(self):
|
@@ -21299,6 +21317,17 @@ class GovernanceServiceInput(AbstractModel):
|
|
21299
21317
|
def ExportTo(self, ExportTo):
|
21300
21318
|
self._ExportTo = ExportTo
|
21301
21319
|
|
21320
|
+
@property
|
21321
|
+
def SyncToGlobalRegistry(self):
|
21322
|
+
"""是否开启同步到全局注册中心
|
21323
|
+
:rtype: bool
|
21324
|
+
"""
|
21325
|
+
return self._SyncToGlobalRegistry
|
21326
|
+
|
21327
|
+
@SyncToGlobalRegistry.setter
|
21328
|
+
def SyncToGlobalRegistry(self, SyncToGlobalRegistry):
|
21329
|
+
self._SyncToGlobalRegistry = SyncToGlobalRegistry
|
21330
|
+
|
21302
21331
|
|
21303
21332
|
def _deserialize(self, params):
|
21304
21333
|
self._Name = params.get("Name")
|
@@ -21317,6 +21346,7 @@ class GovernanceServiceInput(AbstractModel):
|
|
21317
21346
|
self._RemoveUserIds = params.get("RemoveUserIds")
|
21318
21347
|
self._RemoveGroupIds = params.get("RemoveGroupIds")
|
21319
21348
|
self._ExportTo = params.get("ExportTo")
|
21349
|
+
self._SyncToGlobalRegistry = params.get("SyncToGlobalRegistry")
|
21320
21350
|
memeber_set = set(params.keys())
|
21321
21351
|
for name, value in vars(self).items():
|
21322
21352
|
property_name = name[1:]
|
@@ -395,6 +395,9 @@ INVALIDPARAMETERVALUE_RESOURCENOTFOUND = 'InvalidParameterValue.ResourceNotFound
|
|
395
395
|
# 该资源不支持此操作。
|
396
396
|
INVALIDPARAMETERVALUE_RESOURCENOTSUPPORT = 'InvalidParameterValue.ResourceNotSupport'
|
397
397
|
|
398
|
+
# 自定义路由的下一跳参数不正确。
|
399
|
+
INVALIDPARAMETERVALUE_ROUTENEXTHOPINVALID = 'InvalidParameterValue.RouteNextHopInvalid'
|
400
|
+
|
398
401
|
# 指定的优先级之间冲突或与已存在的优先级冲突。
|
399
402
|
INVALIDPARAMETERVALUE_ROUTEPOLICYPRIORITYCONFLICT = 'InvalidParameterValue.RoutePolicyPriorityConflict'
|
400
403
|
|
@@ -413,6 +416,9 @@ INVALIDPARAMETERVALUE_SUBNETOVERLAP = 'InvalidParameterValue.SubnetOverlap'
|
|
413
416
|
# 子网与辅助Cidr网段重叠。
|
414
417
|
INVALIDPARAMETERVALUE_SUBNETOVERLAPASSISTCIDR = 'InvalidParameterValue.SubnetOverlapAssistCidr'
|
415
418
|
|
419
|
+
# 子网与自定义路由目的Cidr网段完全重叠。
|
420
|
+
INVALIDPARAMETERVALUE_SUBNETOVERLAPROUTE = 'InvalidParameterValue.SubnetOverlapRoute'
|
421
|
+
|
416
422
|
# 子网CIDR不合法。
|
417
423
|
INVALIDPARAMETERVALUE_SUBNETRANGE = 'InvalidParameterValue.SubnetRange'
|
418
424
|
|
@@ -476,6 +482,9 @@ INVALIDPARAMETERVALUE_UNAVAILABLEZONE = 'InvalidParameterValue.UnavailableZone'
|
|
476
482
|
# 目的网段和当前VPC的CIDR冲突。
|
477
483
|
INVALIDPARAMETERVALUE_VPCCIDRCONFLICT = 'InvalidParameterValue.VpcCidrConflict'
|
478
484
|
|
485
|
+
# 辅助Cidr与自定义子网路由目的Cidr网段完全重叠。
|
486
|
+
INVALIDPARAMETERVALUE_VPCCIDROVERLAPROUTE = 'InvalidParameterValue.VpcCidrOverlapRoute'
|
487
|
+
|
479
488
|
# 当前功能不支持此专线网关。
|
480
489
|
INVALIDPARAMETERVALUE_VPGTYPENOTMATCH = 'InvalidParameterValue.VpgTypeNotMatch'
|
481
490
|
|
@@ -809,6 +818,9 @@ UNSUPPORTEDOPERATION_CCNTRAFFICMETERINGUNABLECROSSBORDER = 'UnsupportedOperation
|
|
809
818
|
# CDC子网不支持创建非本地网关类型的路由。
|
810
819
|
UNSUPPORTEDOPERATION_CDCSUBNETNOTSUPPORTUNLOCALGATEWAY = 'UnsupportedOperation.CdcSubnetNotSupportUnLocalGateway'
|
811
820
|
|
821
|
+
# VPG型的CDC网关不存在。
|
822
|
+
UNSUPPORTEDOPERATION_CDCVPGNOTEXISTS = 'UnsupportedOperation.CdcVpgNotExists'
|
823
|
+
|
812
824
|
# 实例已经和VPC绑定。
|
813
825
|
UNSUPPORTEDOPERATION_CLASSICINSTANCEIDALREADYEXISTS = 'UnsupportedOperation.ClassicInstanceIdAlreadyExists'
|
814
826
|
|
@@ -839,6 +851,9 @@ UNSUPPORTEDOPERATION_DCGATEWAYNATRULEEXISTS = 'UnsupportedOperation.DCGatewayNat
|
|
839
851
|
# 指定的VPC未发现专线网关。
|
840
852
|
UNSUPPORTEDOPERATION_DCGATEWAYSNOTFOUNDINVPC = 'UnsupportedOperation.DcGatewaysNotFoundInVpc'
|
841
853
|
|
854
|
+
# 当前专线网关有流日志,不支持删除。
|
855
|
+
UNSUPPORTEDOPERATION_DCGHASFLOWLOG = 'UnsupportedOperation.DcgHasFlowLog'
|
856
|
+
|
842
857
|
# 禁止删除默认路由表。
|
843
858
|
UNSUPPORTEDOPERATION_DELDEFAULTROUTE = 'UnsupportedOperation.DelDefaultRoute'
|
844
859
|
|
@@ -7872,10 +7872,8 @@ class ClassicLinkInstance(AbstractModel):
|
|
7872
7872
|
def __init__(self):
|
7873
7873
|
r"""
|
7874
7874
|
:param _VpcId: VPC实例ID
|
7875
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7876
7875
|
:type VpcId: str
|
7877
7876
|
:param _InstanceId: 云服务器实例唯一ID
|
7878
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7879
7877
|
:type InstanceId: str
|
7880
7878
|
"""
|
7881
7879
|
self._VpcId = None
|
@@ -7884,7 +7882,6 @@ class ClassicLinkInstance(AbstractModel):
|
|
7884
7882
|
@property
|
7885
7883
|
def VpcId(self):
|
7886
7884
|
"""VPC实例ID
|
7887
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7888
7885
|
:rtype: str
|
7889
7886
|
"""
|
7890
7887
|
return self._VpcId
|
@@ -7896,7 +7893,6 @@ class ClassicLinkInstance(AbstractModel):
|
|
7896
7893
|
@property
|
7897
7894
|
def InstanceId(self):
|
7898
7895
|
"""云服务器实例唯一ID
|
7899
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7900
7896
|
:rtype: str
|
7901
7897
|
"""
|
7902
7898
|
return self._InstanceId
|
@@ -36644,7 +36640,6 @@ class DhcpIp(AbstractModel):
|
|
36644
36640
|
:param _CreatedTime: 创建时间。
|
36645
36641
|
:type CreatedTime: str
|
36646
36642
|
:param _TagSet: 标签键值对。
|
36647
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36648
36643
|
:type TagSet: list of Tag
|
36649
36644
|
"""
|
36650
36645
|
self._DhcpIpId = None
|
@@ -36774,7 +36769,6 @@ class DhcpIp(AbstractModel):
|
|
36774
36769
|
@property
|
36775
36770
|
def TagSet(self):
|
36776
36771
|
"""标签键值对。
|
36777
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36778
36772
|
:rtype: list of Tag
|
36779
36773
|
"""
|
36780
36774
|
return self._TagSet
|
@@ -42020,10 +42014,8 @@ class InquirePriceCreateDirectConnectGatewayResponse(AbstractModel):
|
|
42020
42014
|
def __init__(self):
|
42021
42015
|
r"""
|
42022
42016
|
:param _TotalCost: 专线网关标准接入费用
|
42023
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42024
42017
|
:type TotalCost: int
|
42025
42018
|
:param _RealTotalCost: 专线网关真实接入费用
|
42026
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42027
42019
|
:type RealTotalCost: int
|
42028
42020
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
42029
42021
|
:type RequestId: str
|
@@ -42035,7 +42027,6 @@ class InquirePriceCreateDirectConnectGatewayResponse(AbstractModel):
|
|
42035
42027
|
@property
|
42036
42028
|
def TotalCost(self):
|
42037
42029
|
"""专线网关标准接入费用
|
42038
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42039
42030
|
:rtype: int
|
42040
42031
|
"""
|
42041
42032
|
return self._TotalCost
|
@@ -42047,7 +42038,6 @@ class InquirePriceCreateDirectConnectGatewayResponse(AbstractModel):
|
|
42047
42038
|
@property
|
42048
42039
|
def RealTotalCost(self):
|
42049
42040
|
"""专线网关真实接入费用
|
42050
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42051
42041
|
:rtype: int
|
42052
42042
|
"""
|
42053
42043
|
return self._RealTotalCost
|
@@ -44122,7 +44112,7 @@ class Ipv6SubnetCidrBlock(AbstractModel):
|
|
44122
44112
|
r"""
|
44123
44113
|
:param _SubnetId: 子网实例`ID`。形如:`subnet-pxir56ns`。
|
44124
44114
|
:type SubnetId: str
|
44125
|
-
:param _Ipv6CidrBlock: `IPv6`子网段。形如:`3402:4e00:20:1001::/64
|
44115
|
+
:param _Ipv6CidrBlock: `IPv6`子网段。形如:`3402:4e00:20:1001::/64`。作为AssignIpv6SubnetCidrBlock接口入参时,该参数必填。
|
44126
44116
|
:type Ipv6CidrBlock: str
|
44127
44117
|
"""
|
44128
44118
|
self._SubnetId = None
|
@@ -44141,7 +44131,7 @@ class Ipv6SubnetCidrBlock(AbstractModel):
|
|
44141
44131
|
|
44142
44132
|
@property
|
44143
44133
|
def Ipv6CidrBlock(self):
|
44144
|
-
"""`IPv6`子网段。形如:`3402:4e00:20:1001::/64
|
44134
|
+
"""`IPv6`子网段。形如:`3402:4e00:20:1001::/64`。作为AssignIpv6SubnetCidrBlock接口入参时,该参数必填。
|
44145
44135
|
:rtype: str
|
44146
44136
|
"""
|
44147
44137
|
return self._Ipv6CidrBlock
|
@@ -52387,10 +52377,8 @@ NONEXTHOP:无下一跳;
|
|
52387
52377
|
注意:此字段可能返回 null,表示取不到有效值。
|
52388
52378
|
:type NetDetectDescription: str
|
52389
52379
|
:param _CreateTime: 创建时间。
|
52390
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
52391
52380
|
:type CreateTime: str
|
52392
52381
|
:param _TagSet: 标签键值对。
|
52393
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
52394
52382
|
:type TagSet: list of Tag
|
52395
52383
|
"""
|
52396
52384
|
self._VpcId = None
|
@@ -52559,7 +52547,6 @@ NONEXTHOP:无下一跳;
|
|
52559
52547
|
@property
|
52560
52548
|
def CreateTime(self):
|
52561
52549
|
"""创建时间。
|
52562
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
52563
52550
|
:rtype: str
|
52564
52551
|
"""
|
52565
52552
|
return self._CreateTime
|
@@ -52571,7 +52558,6 @@ NONEXTHOP:无下一跳;
|
|
52571
52558
|
@property
|
52572
52559
|
def TagSet(self):
|
52573
52560
|
"""标签键值对。
|
52574
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
52575
52561
|
:rtype: list of Tag
|
52576
52562
|
"""
|
52577
52563
|
return self._TagSet
|