tencentcloud-sdk-python 3.0.1049__py2.py3-none-any.whl → 3.0.1051__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.

Potentially problematic release.


This version of tencentcloud-sdk-python might be problematic. Click here for more details.

Files changed (37) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/cam/v20190116/models.py +12 -0
  3. tencentcloud/cdwdoris/__init__.py +0 -0
  4. tencentcloud/cdwdoris/v20211228/__init__.py +0 -0
  5. tencentcloud/cdwdoris/v20211228/cdwdoris_client.py +95 -0
  6. tencentcloud/cdwdoris/v20211228/errorcodes.py +18 -0
  7. tencentcloud/cdwdoris/v20211228/models.py +1396 -0
  8. tencentcloud/csip/v20221121/csip_client.py +23 -0
  9. tencentcloud/csip/v20221121/models.py +486 -0
  10. tencentcloud/cvm/v20170312/errorcodes.py +3 -0
  11. tencentcloud/ess/v20201111/models.py +30 -17
  12. tencentcloud/essbasic/v20210526/essbasic_client.py +27 -1
  13. tencentcloud/essbasic/v20210526/models.py +386 -15
  14. tencentcloud/lcic/v20220817/models.py +14 -1
  15. tencentcloud/monitor/v20180724/models.py +167 -18
  16. tencentcloud/monitor/v20180724/monitor_client.py +5 -5
  17. tencentcloud/privatedns/v20201028/models.py +84 -0
  18. tencentcloud/privatedns/v20201028/privatedns_client.py +23 -0
  19. tencentcloud/pts/v20210728/models.py +25 -25
  20. tencentcloud/redis/v20180412/models.py +246 -0
  21. tencentcloud/redis/v20180412/redis_client.py +69 -0
  22. tencentcloud/ssm/v20190923/models.py +11 -5
  23. tencentcloud/tcr/v20190924/models.py +0 -270
  24. tencentcloud/tcr/v20190924/tcr_client.py +0 -25
  25. tencentcloud/tdmq/v20200217/models.py +31 -0
  26. tencentcloud/teo/v20220901/errorcodes.py +18 -0
  27. tencentcloud/teo/v20220901/models.py +1 -1
  28. tencentcloud/tke/v20180525/errorcodes.py +18 -0
  29. tencentcloud/tke/v20180525/models.py +189 -0
  30. tencentcloud/tke/v20180525/tke_client.py +46 -0
  31. tencentcloud/vod/v20180717/errorcodes.py +3 -0
  32. tencentcloud/waf/v20180125/models.py +4 -4
  33. {tencentcloud_sdk_python-3.0.1049.dist-info → tencentcloud_sdk_python-3.0.1051.dist-info}/METADATA +1 -1
  34. {tencentcloud_sdk_python-3.0.1049.dist-info → tencentcloud_sdk_python-3.0.1051.dist-info}/RECORD +37 -32
  35. {tencentcloud_sdk_python-3.0.1049.dist-info → tencentcloud_sdk_python-3.0.1051.dist-info}/LICENSE +0 -0
  36. {tencentcloud_sdk_python-3.0.1049.dist-info → tencentcloud_sdk_python-3.0.1051.dist-info}/WHEEL +0 -0
  37. {tencentcloud_sdk_python-3.0.1049.dist-info → tencentcloud_sdk_python-3.0.1051.dist-info}/top_level.txt +0 -0
@@ -1178,31 +1178,6 @@ class TcrClient(AbstractClient):
1178
1178
  raise TencentCloudSDKException(type(e).__name__, str(e))
1179
1179
 
1180
1180
 
1181
- def DescribeCustomAccounts(self, request):
1182
- """接口未使用
1183
-
1184
- 查询自定义账号
1185
-
1186
- :param request: Request instance for DescribeCustomAccounts.
1187
- :type request: :class:`tencentcloud.tcr.v20190924.models.DescribeCustomAccountsRequest`
1188
- :rtype: :class:`tencentcloud.tcr.v20190924.models.DescribeCustomAccountsResponse`
1189
-
1190
- """
1191
- try:
1192
- params = request._serialize()
1193
- headers = request.headers
1194
- body = self.call("DescribeCustomAccounts", params, headers=headers)
1195
- response = json.loads(body)
1196
- model = models.DescribeCustomAccountsResponse()
1197
- model._deserialize(response["Response"])
1198
- return model
1199
- except Exception as e:
1200
- if isinstance(e, TencentCloudSDKException):
1201
- raise
1202
- else:
1203
- raise TencentCloudSDKException(type(e).__name__, str(e))
1204
-
1205
-
1206
1181
  def DescribeExternalEndpointStatus(self, request):
1207
1182
  """查询实例公网访问入口状态
1208
1183
 
@@ -18873,6 +18873,12 @@ class PulsarProInstance(AbstractModel):
18873
18873
  :type SubnetId: str
18874
18874
  :param _MaxBandWidth: 峰值带宽。单位:mbps
18875
18875
  :type MaxBandWidth: int
18876
+ :param _Tags: 集群的标签列表
18877
+ 注意:此字段可能返回 null,表示取不到有效值。
18878
+ :type Tags: list of Tag
18879
+ :param _CreateTime: 集群创建时间
18880
+ 注意:此字段可能返回 null,表示取不到有效值。
18881
+ :type CreateTime: str
18876
18882
  """
18877
18883
  self._InstanceId = None
18878
18884
  self._InstanceName = None
@@ -18890,6 +18896,8 @@ class PulsarProInstance(AbstractModel):
18890
18896
  self._VpcId = None
18891
18897
  self._SubnetId = None
18892
18898
  self._MaxBandWidth = None
18899
+ self._Tags = None
18900
+ self._CreateTime = None
18893
18901
 
18894
18902
  @property
18895
18903
  def InstanceId(self):
@@ -19019,6 +19027,22 @@ class PulsarProInstance(AbstractModel):
19019
19027
  def MaxBandWidth(self, MaxBandWidth):
19020
19028
  self._MaxBandWidth = MaxBandWidth
19021
19029
 
19030
+ @property
19031
+ def Tags(self):
19032
+ return self._Tags
19033
+
19034
+ @Tags.setter
19035
+ def Tags(self, Tags):
19036
+ self._Tags = Tags
19037
+
19038
+ @property
19039
+ def CreateTime(self):
19040
+ return self._CreateTime
19041
+
19042
+ @CreateTime.setter
19043
+ def CreateTime(self, CreateTime):
19044
+ self._CreateTime = CreateTime
19045
+
19022
19046
 
19023
19047
  def _deserialize(self, params):
19024
19048
  self._InstanceId = params.get("InstanceId")
@@ -19037,6 +19061,13 @@ class PulsarProInstance(AbstractModel):
19037
19061
  self._VpcId = params.get("VpcId")
19038
19062
  self._SubnetId = params.get("SubnetId")
19039
19063
  self._MaxBandWidth = params.get("MaxBandWidth")
19064
+ if params.get("Tags") is not None:
19065
+ self._Tags = []
19066
+ for item in params.get("Tags"):
19067
+ obj = Tag()
19068
+ obj._deserialize(item)
19069
+ self._Tags.append(obj)
19070
+ self._CreateTime = params.get("CreateTime")
19040
19071
  memeber_set = set(params.keys())
19041
19072
  for name, value in vars(self).items():
19042
19073
  property_name = name[1:]
@@ -191,6 +191,9 @@ INVALIDPARAMETER_ERRINVALIDACTIONTYPE = 'InvalidParameter.ErrInvalidActionType'
191
191
  # 非法条件。
192
192
  INVALIDPARAMETER_ERRINVALIDCONDITION = 'InvalidParameter.ErrInvalidCondition'
193
193
 
194
+ # 修改源站操作不能仅配置host匹配类型。
195
+ INVALIDPARAMETER_ERRINVALIDCONDITIONCANNOTONLYCONTAINHOSTWHENMODIFYORIGINACTIONCONFIGURED = 'InvalidParameter.ErrInvalidConditionCannotOnlyContainHostWhenModifyOriginActionConfigured'
196
+
194
197
  # 修改源站操作仅支持配置一个host匹配类型。
195
198
  INVALIDPARAMETER_ERRINVALIDCONDITIONHOSTTOOMANYWHENMODIFYORIGINACTIONCONFIGURED = 'InvalidParameter.ErrInvalidConditionHostTooManyWhenModifyOriginActionConfigured'
196
199
 
@@ -482,6 +485,12 @@ INVALIDPARAMETER_OCDIRECTORIGINREQUIRESSMARTROUTING = 'InvalidParameter.OCDirect
482
485
  # 源站是内网IP。
483
486
  INVALIDPARAMETER_ORIGINISINNERIP = 'InvalidParameter.OriginIsInnerIp'
484
487
 
488
+ # 四层代理禁止IP域名混填。
489
+ INVALIDPARAMETER_ORIGINL4RECORDIPV4MIXDOMAIN = 'InvalidParameter.OriginL4RecordIPV4MixDomain'
490
+
491
+ # 四层代理禁止使用多域名源站。
492
+ INVALIDPARAMETER_ORIGINL4RECORDMULTIDOMAIN = 'InvalidParameter.OriginL4RecordMultiDomain'
493
+
485
494
  # 源站组名称已经存在。
486
495
  INVALIDPARAMETER_ORIGINNAMEEXISTS = 'InvalidParameter.OriginNameExists'
487
496
 
@@ -509,6 +518,12 @@ INVALIDPARAMETER_POSTMAXSIZELIMITEXCEEDED = 'InvalidParameter.PostMaxSizeLimitEx
509
518
  # 实例名称重复。
510
519
  INVALIDPARAMETER_PROXYNAMEDUPLICATING = 'InvalidParameter.ProxyNameDuplicating'
511
520
 
521
+ # 实例名称可输入1-50个字符,允许的字符为a-z、0-9、-,- 不能单独注册或连续使用,不能放在开头或结尾。
522
+ INVALIDPARAMETER_PROXYNAMENOTMATCHED = 'InvalidParameter.ProxyNameNotMatched'
523
+
524
+ # 无效的响应头header。
525
+ INVALIDPARAMETER_RESPONSEHEADERCACHECONTROLNOTALLOWDELETE = 'InvalidParameter.ResponseHeaderCacheControlNotAllowDelete'
526
+
512
527
  # 规则源站信息格式错误。
513
528
  INVALIDPARAMETER_RULEORIGINFORMATERROR = 'InvalidParameter.RuleOriginFormatError'
514
529
 
@@ -704,6 +719,9 @@ OPERATIONDENIED_INVALIDADVANCEDDEFENSESECURITYTYPE = 'OperationDenied.InvalidAdv
704
719
  # 开启高防必须保证站点加速区域是国内。
705
720
  OPERATIONDENIED_INVALIDADVANCEDDEFENSEZONEAREA = 'OperationDenied.InvalidAdvancedDefenseZoneArea'
706
721
 
722
+ # 四层实例资源售卖火爆,已售罄,正在加紧补货中,当前无法新增四层代理,请您耐心等待。
723
+ OPERATIONDENIED_L4LACKOFRESOURCES = 'OperationDenied.L4LackOfResources'
724
+
707
725
  # 4层代理资源处于封禁中,禁止操作。
708
726
  OPERATIONDENIED_L4PROXYINBANNEDSTATUS = 'OperationDenied.L4ProxyInBannedStatus'
709
727
 
@@ -8945,7 +8945,7 @@ class DescribeOriginProtectionRequest(AbstractModel):
8945
8945
 
8946
8946
  def __init__(self):
8947
8947
  r"""
8948
- :param _ZoneIds: 查询的站点集合,不填默认查询所有站点。
8948
+ :param _ZoneIds: 查询的站点ID集合。该参数必填。
8949
8949
  :type ZoneIds: list of str
8950
8950
  :param _Filters: 过滤条件,Filters.Values的上限为20。详细的过滤条件如下:
8951
8951
  <li>need-update<br>   按照【<strong>站点是否需要更新源站防护IP白名单</strong>】进行过滤。<br>   类型:String<br>   必选:否<br>   可选项:<br>   true:需要更新<br>   false:无需更新<br></li>
@@ -14,6 +14,9 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
+ # CAM签名/鉴权错误。
18
+ AUTHFAILURE = 'AuthFailure'
19
+
17
20
  # 操作失败。
18
21
  FAILEDOPERATION = 'FailedOperation'
19
22
 
@@ -101,6 +104,9 @@ FAILEDOPERATION_ENABLEVPCCNIFAILED = 'FailedOperation.EnableVPCCNIFailed'
101
104
  # 获取CLS采集配置失败。
102
105
  FAILEDOPERATION_GETCLSCONFIG = 'FailedOperation.GetClsConfig'
103
106
 
107
+ # 获取CLS采集配置绑定的机器组失败。
108
+ FAILEDOPERATION_GETCLSCONFIGMACHINEGROUPS = 'FailedOperation.GetClsConfigMachineGroups'
109
+
104
110
  # 获取CLS索引配置失败。
105
111
  FAILEDOPERATION_GETCLSINDEX = 'FailedOperation.GetClsIndex'
106
112
 
@@ -110,9 +116,15 @@ FAILEDOPERATION_GETCLSLOGSET = 'FailedOperation.GetClsLogSet'
110
116
  # 获取CLS机器组失败。
111
117
  FAILEDOPERATION_GETCLSMACHINEGROUP = 'FailedOperation.GetClsMachineGroup'
112
118
 
119
+ # 获取CLS机器组绑定的采集配置失败。
120
+ FAILEDOPERATION_GETCLSMACHINEGROUPCONFIGS = 'FailedOperation.GetClsMachineGroupConfigs'
121
+
113
122
  # 获取CLS日志主题失败。
114
123
  FAILEDOPERATION_GETCLSTOPIC = 'FailedOperation.GetClsTopic'
115
124
 
125
+ # Kubernetes client建立失败。
126
+ FAILEDOPERATION_K8SCLIENTBUILDERROR = 'FailedOperation.K8sClientBuildError'
127
+
116
128
  # 通过配置文件创建集群Client错误。
117
129
  FAILEDOPERATION_KUBECLIENTCONF = 'FailedOperation.KubeClientConf'
118
130
 
@@ -152,9 +164,15 @@ FAILEDOPERATION_MARKETGETAUTHFAILED = 'FailedOperation.MarketGetAuthFailed'
152
164
  # 操作应用Release失败。
153
165
  FAILEDOPERATION_MARKETRELEASEOPERATION = 'FailedOperation.MarketReleaseOperation'
154
166
 
167
+ # 修改CLS采集配置失败。
168
+ FAILEDOPERATION_MODIFYCLSCONFIG = 'FailedOperation.ModifyClsConfig'
169
+
155
170
  # 修改CLS索引失败。
156
171
  FAILEDOPERATION_MODIFYCLSINDEX = 'FailedOperation.ModifyClsIndex'
157
172
 
173
+ # 修改CLS日志主题失败。
174
+ FAILEDOPERATION_MODIFYCLSTOPIC = 'FailedOperation.ModifyClsTopic'
175
+
158
176
  # 网络扩展错误。
159
177
  FAILEDOPERATION_NETWORKSCALEERROR = 'FailedOperation.NetworkScaleError'
160
178
 
@@ -4351,6 +4351,100 @@ class CreateBackupStorageLocationResponse(AbstractModel):
4351
4351
  self._RequestId = params.get("RequestId")
4352
4352
 
4353
4353
 
4354
+ class CreateCLSLogConfigRequest(AbstractModel):
4355
+ """CreateCLSLogConfig请求参数结构体
4356
+
4357
+ """
4358
+
4359
+ def __init__(self):
4360
+ r"""
4361
+ :param _LogConfig: 日志采集配置的json表达
4362
+ :type LogConfig: str
4363
+ :param _ClusterId: 集群ID
4364
+ :type ClusterId: str
4365
+ :param _LogsetId: CLS日志集ID
4366
+ :type LogsetId: str
4367
+ :param _ClusterType: 当前集群类型支持tke、eks
4368
+ :type ClusterType: str
4369
+ """
4370
+ self._LogConfig = None
4371
+ self._ClusterId = None
4372
+ self._LogsetId = None
4373
+ self._ClusterType = None
4374
+
4375
+ @property
4376
+ def LogConfig(self):
4377
+ return self._LogConfig
4378
+
4379
+ @LogConfig.setter
4380
+ def LogConfig(self, LogConfig):
4381
+ self._LogConfig = LogConfig
4382
+
4383
+ @property
4384
+ def ClusterId(self):
4385
+ return self._ClusterId
4386
+
4387
+ @ClusterId.setter
4388
+ def ClusterId(self, ClusterId):
4389
+ self._ClusterId = ClusterId
4390
+
4391
+ @property
4392
+ def LogsetId(self):
4393
+ return self._LogsetId
4394
+
4395
+ @LogsetId.setter
4396
+ def LogsetId(self, LogsetId):
4397
+ self._LogsetId = LogsetId
4398
+
4399
+ @property
4400
+ def ClusterType(self):
4401
+ return self._ClusterType
4402
+
4403
+ @ClusterType.setter
4404
+ def ClusterType(self, ClusterType):
4405
+ self._ClusterType = ClusterType
4406
+
4407
+
4408
+ def _deserialize(self, params):
4409
+ self._LogConfig = params.get("LogConfig")
4410
+ self._ClusterId = params.get("ClusterId")
4411
+ self._LogsetId = params.get("LogsetId")
4412
+ self._ClusterType = params.get("ClusterType")
4413
+ memeber_set = set(params.keys())
4414
+ for name, value in vars(self).items():
4415
+ property_name = name[1:]
4416
+ if property_name in memeber_set:
4417
+ memeber_set.remove(property_name)
4418
+ if len(memeber_set) > 0:
4419
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
4420
+
4421
+
4422
+
4423
+ class CreateCLSLogConfigResponse(AbstractModel):
4424
+ """CreateCLSLogConfig返回参数结构体
4425
+
4426
+ """
4427
+
4428
+ def __init__(self):
4429
+ r"""
4430
+ :param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4431
+ :type RequestId: str
4432
+ """
4433
+ self._RequestId = None
4434
+
4435
+ @property
4436
+ def RequestId(self):
4437
+ return self._RequestId
4438
+
4439
+ @RequestId.setter
4440
+ def RequestId(self, RequestId):
4441
+ self._RequestId = RequestId
4442
+
4443
+
4444
+ def _deserialize(self, params):
4445
+ self._RequestId = params.get("RequestId")
4446
+
4447
+
4354
4448
  class CreateClusterEndpointRequest(AbstractModel):
4355
4449
  """CreateClusterEndpoint请求参数结构体
4356
4450
 
@@ -6758,6 +6852,101 @@ class CreateEdgeLogConfigResponse(AbstractModel):
6758
6852
  self._RequestId = params.get("RequestId")
6759
6853
 
6760
6854
 
6855
+ class CreateEksLogConfigRequest(AbstractModel):
6856
+ """CreateEksLogConfig请求参数结构体
6857
+
6858
+ """
6859
+
6860
+ def __init__(self):
6861
+ r"""
6862
+ :param _ClusterId: 集群ID
6863
+ :type ClusterId: str
6864
+ :param _LogConfig: 日志采集配置的json表达
6865
+ :type LogConfig: str
6866
+ :param _LogsetId: 日志集ID
6867
+ :type LogsetId: str
6868
+ """
6869
+ self._ClusterId = None
6870
+ self._LogConfig = None
6871
+ self._LogsetId = None
6872
+
6873
+ @property
6874
+ def ClusterId(self):
6875
+ return self._ClusterId
6876
+
6877
+ @ClusterId.setter
6878
+ def ClusterId(self, ClusterId):
6879
+ self._ClusterId = ClusterId
6880
+
6881
+ @property
6882
+ def LogConfig(self):
6883
+ return self._LogConfig
6884
+
6885
+ @LogConfig.setter
6886
+ def LogConfig(self, LogConfig):
6887
+ self._LogConfig = LogConfig
6888
+
6889
+ @property
6890
+ def LogsetId(self):
6891
+ return self._LogsetId
6892
+
6893
+ @LogsetId.setter
6894
+ def LogsetId(self, LogsetId):
6895
+ self._LogsetId = LogsetId
6896
+
6897
+
6898
+ def _deserialize(self, params):
6899
+ self._ClusterId = params.get("ClusterId")
6900
+ self._LogConfig = params.get("LogConfig")
6901
+ self._LogsetId = params.get("LogsetId")
6902
+ memeber_set = set(params.keys())
6903
+ for name, value in vars(self).items():
6904
+ property_name = name[1:]
6905
+ if property_name in memeber_set:
6906
+ memeber_set.remove(property_name)
6907
+ if len(memeber_set) > 0:
6908
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
6909
+
6910
+
6911
+
6912
+ class CreateEksLogConfigResponse(AbstractModel):
6913
+ """CreateEksLogConfig返回参数结构体
6914
+
6915
+ """
6916
+
6917
+ def __init__(self):
6918
+ r"""
6919
+ :param _TopicId: 日志采集topicid
6920
+ 注意:此字段可能返回 null,表示取不到有效值。
6921
+ :type TopicId: str
6922
+ :param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6923
+ :type RequestId: str
6924
+ """
6925
+ self._TopicId = None
6926
+ self._RequestId = None
6927
+
6928
+ @property
6929
+ def TopicId(self):
6930
+ return self._TopicId
6931
+
6932
+ @TopicId.setter
6933
+ def TopicId(self, TopicId):
6934
+ self._TopicId = TopicId
6935
+
6936
+ @property
6937
+ def RequestId(self):
6938
+ return self._RequestId
6939
+
6940
+ @RequestId.setter
6941
+ def RequestId(self, RequestId):
6942
+ self._RequestId = RequestId
6943
+
6944
+
6945
+ def _deserialize(self, params):
6946
+ self._TopicId = params.get("TopicId")
6947
+ self._RequestId = params.get("RequestId")
6948
+
6949
+
6761
6950
  class CreateImageCacheRequest(AbstractModel):
6762
6951
  """CreateImageCache请求参数结构体
6763
6952
 
@@ -233,6 +233,29 @@ class TkeClient(AbstractClient):
233
233
  raise TencentCloudSDKException(type(e).__name__, str(e))
234
234
 
235
235
 
236
+ def CreateCLSLogConfig(self, request):
237
+ """创建日志采集配置
238
+
239
+ :param request: Request instance for CreateCLSLogConfig.
240
+ :type request: :class:`tencentcloud.tke.v20180525.models.CreateCLSLogConfigRequest`
241
+ :rtype: :class:`tencentcloud.tke.v20180525.models.CreateCLSLogConfigResponse`
242
+
243
+ """
244
+ try:
245
+ params = request._serialize()
246
+ headers = request.headers
247
+ body = self.call("CreateCLSLogConfig", params, headers=headers)
248
+ response = json.loads(body)
249
+ model = models.CreateCLSLogConfigResponse()
250
+ model._deserialize(response["Response"])
251
+ return model
252
+ except Exception as e:
253
+ if isinstance(e, TencentCloudSDKException):
254
+ raise
255
+ else:
256
+ raise TencentCloudSDKException(type(e).__name__, str(e))
257
+
258
+
236
259
  def CreateCluster(self, request):
237
260
  """创建集群
238
261
 
@@ -578,6 +601,29 @@ class TkeClient(AbstractClient):
578
601
  raise TencentCloudSDKException(type(e).__name__, str(e))
579
602
 
580
603
 
604
+ def CreateEksLogConfig(self, request):
605
+ """为弹性集群创建日志采集配置
606
+
607
+ :param request: Request instance for CreateEksLogConfig.
608
+ :type request: :class:`tencentcloud.tke.v20180525.models.CreateEksLogConfigRequest`
609
+ :rtype: :class:`tencentcloud.tke.v20180525.models.CreateEksLogConfigResponse`
610
+
611
+ """
612
+ try:
613
+ params = request._serialize()
614
+ headers = request.headers
615
+ body = self.call("CreateEksLogConfig", params, headers=headers)
616
+ response = json.loads(body)
617
+ model = models.CreateEksLogConfigResponse()
618
+ model._deserialize(response["Response"])
619
+ return model
620
+ except Exception as e:
621
+ if isinstance(e, TencentCloudSDKException):
622
+ raise
623
+ else:
624
+ raise TencentCloudSDKException(type(e).__name__, str(e))
625
+
626
+
581
627
  def CreateImageCache(self, request):
582
628
  """创建镜像缓存的接口。创建过程中,请勿删除EKSCI实例和云盘,否则镜像缓存将创建失败。
583
629
 
@@ -665,6 +665,9 @@ RESOURCEUNAVAILABLE_MASTERPLAYLIST = 'ResourceUnavailable.MasterPlaylist'
665
665
  # 未授权操作。
666
666
  UNAUTHORIZEDOPERATION = 'UnauthorizedOperation'
667
667
 
668
+ # 域名解析验证失败
669
+ UNAUTHORIZEDOPERATION_DOMAINRECORDNOTVERIFIED = 'UnauthorizedOperation.DomainRecordNotVerified'
670
+
668
671
  # 未知参数错误。
669
672
  UNKNOWNPARAMETER = 'UnknownParameter'
670
673
 
@@ -24535,7 +24535,7 @@ class UpsertCCRuleRequest(AbstractModel):
24535
24535
  :type Name: str
24536
24536
  :param _Status: 状态
24537
24537
  :type Status: int
24538
- :param _Advance: 高级模式
24538
+ :param _Advance: 高级模式(是否使用Session检测),0表示不启用,1表示启用
24539
24539
  :type Advance: str
24540
24540
  :param _Limit: CC检测阈值
24541
24541
  :type Limit: str
@@ -24543,9 +24543,9 @@ class UpsertCCRuleRequest(AbstractModel):
24543
24543
  :type Interval: str
24544
24544
  :param _Url: 检测Url
24545
24545
  :type Url: str
24546
- :param _MatchFunc: 匹配方法
24546
+ :param _MatchFunc: 匹配方法,0表示等于,1表示前缀匹配,2表示包含
24547
24547
  :type MatchFunc: int
24548
- :param _ActionType: 动作
24548
+ :param _ActionType: 动作,20表示观察,21表示人机识别,22表示拦截,23表示精准拦截
24549
24549
  :type ActionType: str
24550
24550
  :param _Priority: 优先级
24551
24551
  :type Priority: int
@@ -24553,7 +24553,7 @@ class UpsertCCRuleRequest(AbstractModel):
24553
24553
  :type ValidTime: int
24554
24554
  :param _OptionsArr: 附加参数
24555
24555
  :type OptionsArr: str
24556
- :param _Edition: waf版本
24556
+ :param _Edition: waf版本,sparta-waf或者clb-waf
24557
24557
  :type Edition: str
24558
24558
  :param _Type: 操作类型
24559
24559
  :type Type: int
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python
3
- Version: 3.0.1049
3
+ Version: 3.0.1051
4
4
  Summary: Tencent Cloud SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud