tencentcloud-sdk-python 3.0.1138__py2.py3-none-any.whl → 3.0.1140__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/models.py +5 -42
- tencentcloud/cls/v20201016/cls_client.py +115 -0
- tencentcloud/cls/v20201016/errorcodes.py +12 -0
- tencentcloud/cls/v20201016/models.py +481 -11
- tencentcloud/ims/v20201229/ims_client.py +1 -1
- tencentcloud/rum/v20210622/models.py +1 -1
- tencentcloud/teo/v20220901/errorcodes.py +45 -0
- tencentcloud/teo/v20220901/models.py +610 -0
- tencentcloud/teo/v20220901/teo_client.py +151 -0
- tencentcloud/tione/v20191022/models.py +1 -1
- tencentcloud/tione/v20211111/errorcodes.py +1 -1
- tencentcloud/tke/v20180525/models.py +10 -53
- tencentcloud/tke/v20180525/tke_client.py +3 -3
- {tencentcloud_sdk_python-3.0.1138.dist-info → tencentcloud_sdk_python-3.0.1140.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1138.dist-info → tencentcloud_sdk_python-3.0.1140.dist-info}/RECORD +19 -19
- {tencentcloud_sdk_python-3.0.1138.dist-info → tencentcloud_sdk_python-3.0.1140.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1138.dist-info → tencentcloud_sdk_python-3.0.1140.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1138.dist-info → tencentcloud_sdk_python-3.0.1140.dist-info}/top_level.txt +0 -0
@@ -4776,6 +4776,37 @@ class CreateCosRechargeResponse(AbstractModel):
|
|
4776
4776
|
self._RequestId = params.get("RequestId")
|
4777
4777
|
|
4778
4778
|
|
4779
|
+
class CreateDashboardSubscribeRequest(AbstractModel):
|
4780
|
+
"""CreateDashboardSubscribe请求参数结构体
|
4781
|
+
|
4782
|
+
"""
|
4783
|
+
|
4784
|
+
|
4785
|
+
class CreateDashboardSubscribeResponse(AbstractModel):
|
4786
|
+
"""CreateDashboardSubscribe返回参数结构体
|
4787
|
+
|
4788
|
+
"""
|
4789
|
+
|
4790
|
+
def __init__(self):
|
4791
|
+
r"""
|
4792
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4793
|
+
:type RequestId: str
|
4794
|
+
"""
|
4795
|
+
self._RequestId = None
|
4796
|
+
|
4797
|
+
@property
|
4798
|
+
def RequestId(self):
|
4799
|
+
return self._RequestId
|
4800
|
+
|
4801
|
+
@RequestId.setter
|
4802
|
+
def RequestId(self, RequestId):
|
4803
|
+
self._RequestId = RequestId
|
4804
|
+
|
4805
|
+
|
4806
|
+
def _deserialize(self, params):
|
4807
|
+
self._RequestId = params.get("RequestId")
|
4808
|
+
|
4809
|
+
|
4779
4810
|
class CreateDataTransformRequest(AbstractModel):
|
4780
4811
|
"""CreateDataTransform请求参数结构体
|
4781
4812
|
|
@@ -4789,7 +4820,7 @@ class CreateDataTransformRequest(AbstractModel):
|
|
4789
4820
|
:type SrcTopicId: str
|
4790
4821
|
:param _Name: 加工任务名称
|
4791
4822
|
:type Name: str
|
4792
|
-
:param _EtlContent:
|
4823
|
+
:param _EtlContent: 加工语句。[创建加工任务](https://cloud.tencent.com/document/product/614/63940) [函数总览](https://cloud.tencent.com/document/product/614/70395)
|
4793
4824
|
:type EtlContent: str
|
4794
4825
|
:param _TaskType: 加工类型。
|
4795
4826
|
1:使用源日志主题中的随机数据,进行加工预览;2:使用用户自定义测试数据,进行加工预览;3:创建真实加工任务。
|
@@ -5618,19 +5649,19 @@ class CreateMachineGroupRequest(AbstractModel):
|
|
5618
5649
|
r"""
|
5619
5650
|
:param _GroupName: 机器组名字,不能重复
|
5620
5651
|
:type GroupName: str
|
5621
|
-
:param _MachineGroupType:
|
5652
|
+
:param _MachineGroupType: 创建机器组类型。Type:ip,Values中为ip字符串列表创建机器组;Type:label,Values中为标签字符串列表创建机器组。
|
5622
5653
|
:type MachineGroupType: :class:`tencentcloud.cls.v20201016.models.MachineGroupTypeInfo`
|
5623
5654
|
:param _Tags: 标签描述列表,通过指定该参数可以同时绑定标签到相应的机器组。最大支持10个标签键值对,同一个资源只能绑定到同一个标签键下。
|
5624
5655
|
:type Tags: list of Tag
|
5625
|
-
:param _AutoUpdate:
|
5656
|
+
:param _AutoUpdate: 是否开启机器组自动更新。默认false
|
5626
5657
|
:type AutoUpdate: bool
|
5627
5658
|
:param _UpdateStartTime: 升级开始时间,建议业务低峰期升级LogListener
|
5628
5659
|
:type UpdateStartTime: str
|
5629
5660
|
:param _UpdateEndTime: 升级结束时间,建议业务低峰期升级LogListener
|
5630
5661
|
:type UpdateEndTime: str
|
5631
|
-
:param _ServiceLogging: 是否开启服务日志,用于记录因Loglistener 服务自身产生的log,开启后,会创建内部日志集cls_service_logging和日志主题loglistener_status,loglistener_alarm,loglistener_business
|
5662
|
+
:param _ServiceLogging: 是否开启服务日志,用于记录因Loglistener 服务自身产生的log,开启后,会创建内部日志集cls_service_logging和日志主题loglistener_status,loglistener_alarm,loglistener_business,不产生计费。默认false
|
5632
5663
|
:type ServiceLogging: bool
|
5633
|
-
:param _DelayCleanupTime:
|
5664
|
+
:param _DelayCleanupTime: 机器组中机器离线清理时间。单位:天
|
5634
5665
|
:type DelayCleanupTime: int
|
5635
5666
|
:param _MetaTags: 机器组元数据信息列表
|
5636
5667
|
:type MetaTags: list of MetaTagInfo
|
@@ -6714,6 +6745,252 @@ class DashboardInfo(AbstractModel):
|
|
6714
6745
|
|
6715
6746
|
|
6716
6747
|
|
6748
|
+
class DashboardNoticeMode(AbstractModel):
|
6749
|
+
"""仪表盘订阅通知方式
|
6750
|
+
|
6751
|
+
"""
|
6752
|
+
|
6753
|
+
def __init__(self):
|
6754
|
+
r"""
|
6755
|
+
:param _ReceiverType: 仪表盘通知方式。<br>
|
6756
|
+
<li/>Uin:腾讯云用户<br>
|
6757
|
+
<li/>Group:腾讯云用户组<br>
|
6758
|
+
<li/>Email:自定义Email<br>
|
6759
|
+
<li/>WeCom: 企业微信回调
|
6760
|
+
:type ReceiverType: str
|
6761
|
+
:param _Values: 知方式对应的值。
|
6762
|
+
<br> <li/> 当ReceiverType不是 Wecom 时,Values必填。
|
6763
|
+
:type Values: list of str
|
6764
|
+
:param _ReceiverChannels: 仪表盘通知渠道。
|
6765
|
+
<br><li/> 支持:["Email","Sms","WeChat","Phone"]。
|
6766
|
+
<br><li/> 当ReceiverType是 Email 或 Wecom 时,ReceiverChannels不能赋值。
|
6767
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6768
|
+
:type ReceiverChannels: list of str
|
6769
|
+
:param _Url: 回调Url。
|
6770
|
+
<br><li/> 当ReceiverType是 Wecom 时,Url必填。
|
6771
|
+
<br><li/> 当ReceiverType不是 Wecom 时,Url不能填写。
|
6772
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6773
|
+
:type Url: str
|
6774
|
+
"""
|
6775
|
+
self._ReceiverType = None
|
6776
|
+
self._Values = None
|
6777
|
+
self._ReceiverChannels = None
|
6778
|
+
self._Url = None
|
6779
|
+
|
6780
|
+
@property
|
6781
|
+
def ReceiverType(self):
|
6782
|
+
return self._ReceiverType
|
6783
|
+
|
6784
|
+
@ReceiverType.setter
|
6785
|
+
def ReceiverType(self, ReceiverType):
|
6786
|
+
self._ReceiverType = ReceiverType
|
6787
|
+
|
6788
|
+
@property
|
6789
|
+
def Values(self):
|
6790
|
+
return self._Values
|
6791
|
+
|
6792
|
+
@Values.setter
|
6793
|
+
def Values(self, Values):
|
6794
|
+
self._Values = Values
|
6795
|
+
|
6796
|
+
@property
|
6797
|
+
def ReceiverChannels(self):
|
6798
|
+
return self._ReceiverChannels
|
6799
|
+
|
6800
|
+
@ReceiverChannels.setter
|
6801
|
+
def ReceiverChannels(self, ReceiverChannels):
|
6802
|
+
self._ReceiverChannels = ReceiverChannels
|
6803
|
+
|
6804
|
+
@property
|
6805
|
+
def Url(self):
|
6806
|
+
return self._Url
|
6807
|
+
|
6808
|
+
@Url.setter
|
6809
|
+
def Url(self, Url):
|
6810
|
+
self._Url = Url
|
6811
|
+
|
6812
|
+
|
6813
|
+
def _deserialize(self, params):
|
6814
|
+
self._ReceiverType = params.get("ReceiverType")
|
6815
|
+
self._Values = params.get("Values")
|
6816
|
+
self._ReceiverChannels = params.get("ReceiverChannels")
|
6817
|
+
self._Url = params.get("Url")
|
6818
|
+
memeber_set = set(params.keys())
|
6819
|
+
for name, value in vars(self).items():
|
6820
|
+
property_name = name[1:]
|
6821
|
+
if property_name in memeber_set:
|
6822
|
+
memeber_set.remove(property_name)
|
6823
|
+
if len(memeber_set) > 0:
|
6824
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
6825
|
+
|
6826
|
+
|
6827
|
+
|
6828
|
+
class DashboardSubscribeData(AbstractModel):
|
6829
|
+
"""仪表盘订阅相关数据
|
6830
|
+
|
6831
|
+
"""
|
6832
|
+
|
6833
|
+
def __init__(self):
|
6834
|
+
r"""
|
6835
|
+
:param _NoticeModes: 仪表盘订阅通知方式。
|
6836
|
+
:type NoticeModes: list of DashboardNoticeMode
|
6837
|
+
:param _DashboardTime: 仪表盘订阅时间,为空标识取仪表盘默认的时间。
|
6838
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6839
|
+
:type DashboardTime: list of str
|
6840
|
+
:param _TemplateVariables: 仪表盘订阅模板变量。
|
6841
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6842
|
+
:type TemplateVariables: list of DashboardTemplateVariable
|
6843
|
+
:param _Timezone: 时区。参考:https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#SHANGHAI
|
6844
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6845
|
+
:type Timezone: str
|
6846
|
+
:param _SubscribeLanguage: 语言。 zh 中文、en`英文。
|
6847
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6848
|
+
:type SubscribeLanguage: str
|
6849
|
+
:param _JumpDomain: 调用链接域名。http:// 或者 https:// 开头,不能/结尾
|
6850
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6851
|
+
:type JumpDomain: str
|
6852
|
+
:param _JumpUrl: 自定义跳转链接。
|
6853
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6854
|
+
:type JumpUrl: str
|
6855
|
+
"""
|
6856
|
+
self._NoticeModes = None
|
6857
|
+
self._DashboardTime = None
|
6858
|
+
self._TemplateVariables = None
|
6859
|
+
self._Timezone = None
|
6860
|
+
self._SubscribeLanguage = None
|
6861
|
+
self._JumpDomain = None
|
6862
|
+
self._JumpUrl = None
|
6863
|
+
|
6864
|
+
@property
|
6865
|
+
def NoticeModes(self):
|
6866
|
+
return self._NoticeModes
|
6867
|
+
|
6868
|
+
@NoticeModes.setter
|
6869
|
+
def NoticeModes(self, NoticeModes):
|
6870
|
+
self._NoticeModes = NoticeModes
|
6871
|
+
|
6872
|
+
@property
|
6873
|
+
def DashboardTime(self):
|
6874
|
+
return self._DashboardTime
|
6875
|
+
|
6876
|
+
@DashboardTime.setter
|
6877
|
+
def DashboardTime(self, DashboardTime):
|
6878
|
+
self._DashboardTime = DashboardTime
|
6879
|
+
|
6880
|
+
@property
|
6881
|
+
def TemplateVariables(self):
|
6882
|
+
return self._TemplateVariables
|
6883
|
+
|
6884
|
+
@TemplateVariables.setter
|
6885
|
+
def TemplateVariables(self, TemplateVariables):
|
6886
|
+
self._TemplateVariables = TemplateVariables
|
6887
|
+
|
6888
|
+
@property
|
6889
|
+
def Timezone(self):
|
6890
|
+
return self._Timezone
|
6891
|
+
|
6892
|
+
@Timezone.setter
|
6893
|
+
def Timezone(self, Timezone):
|
6894
|
+
self._Timezone = Timezone
|
6895
|
+
|
6896
|
+
@property
|
6897
|
+
def SubscribeLanguage(self):
|
6898
|
+
return self._SubscribeLanguage
|
6899
|
+
|
6900
|
+
@SubscribeLanguage.setter
|
6901
|
+
def SubscribeLanguage(self, SubscribeLanguage):
|
6902
|
+
self._SubscribeLanguage = SubscribeLanguage
|
6903
|
+
|
6904
|
+
@property
|
6905
|
+
def JumpDomain(self):
|
6906
|
+
return self._JumpDomain
|
6907
|
+
|
6908
|
+
@JumpDomain.setter
|
6909
|
+
def JumpDomain(self, JumpDomain):
|
6910
|
+
self._JumpDomain = JumpDomain
|
6911
|
+
|
6912
|
+
@property
|
6913
|
+
def JumpUrl(self):
|
6914
|
+
return self._JumpUrl
|
6915
|
+
|
6916
|
+
@JumpUrl.setter
|
6917
|
+
def JumpUrl(self, JumpUrl):
|
6918
|
+
self._JumpUrl = JumpUrl
|
6919
|
+
|
6920
|
+
|
6921
|
+
def _deserialize(self, params):
|
6922
|
+
if params.get("NoticeModes") is not None:
|
6923
|
+
self._NoticeModes = []
|
6924
|
+
for item in params.get("NoticeModes"):
|
6925
|
+
obj = DashboardNoticeMode()
|
6926
|
+
obj._deserialize(item)
|
6927
|
+
self._NoticeModes.append(obj)
|
6928
|
+
self._DashboardTime = params.get("DashboardTime")
|
6929
|
+
if params.get("TemplateVariables") is not None:
|
6930
|
+
self._TemplateVariables = []
|
6931
|
+
for item in params.get("TemplateVariables"):
|
6932
|
+
obj = DashboardTemplateVariable()
|
6933
|
+
obj._deserialize(item)
|
6934
|
+
self._TemplateVariables.append(obj)
|
6935
|
+
self._Timezone = params.get("Timezone")
|
6936
|
+
self._SubscribeLanguage = params.get("SubscribeLanguage")
|
6937
|
+
self._JumpDomain = params.get("JumpDomain")
|
6938
|
+
self._JumpUrl = params.get("JumpUrl")
|
6939
|
+
memeber_set = set(params.keys())
|
6940
|
+
for name, value in vars(self).items():
|
6941
|
+
property_name = name[1:]
|
6942
|
+
if property_name in memeber_set:
|
6943
|
+
memeber_set.remove(property_name)
|
6944
|
+
if len(memeber_set) > 0:
|
6945
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
6946
|
+
|
6947
|
+
|
6948
|
+
|
6949
|
+
class DashboardTemplateVariable(AbstractModel):
|
6950
|
+
"""仪表盘订阅模板变量
|
6951
|
+
|
6952
|
+
"""
|
6953
|
+
|
6954
|
+
def __init__(self):
|
6955
|
+
r"""
|
6956
|
+
:param _Key: key的值
|
6957
|
+
:type Key: str
|
6958
|
+
:param _Values: key对应的values取值values
|
6959
|
+
:type Values: list of str
|
6960
|
+
"""
|
6961
|
+
self._Key = None
|
6962
|
+
self._Values = None
|
6963
|
+
|
6964
|
+
@property
|
6965
|
+
def Key(self):
|
6966
|
+
return self._Key
|
6967
|
+
|
6968
|
+
@Key.setter
|
6969
|
+
def Key(self, Key):
|
6970
|
+
self._Key = Key
|
6971
|
+
|
6972
|
+
@property
|
6973
|
+
def Values(self):
|
6974
|
+
return self._Values
|
6975
|
+
|
6976
|
+
@Values.setter
|
6977
|
+
def Values(self, Values):
|
6978
|
+
self._Values = Values
|
6979
|
+
|
6980
|
+
|
6981
|
+
def _deserialize(self, params):
|
6982
|
+
self._Key = params.get("Key")
|
6983
|
+
self._Values = params.get("Values")
|
6984
|
+
memeber_set = set(params.keys())
|
6985
|
+
for name, value in vars(self).items():
|
6986
|
+
property_name = name[1:]
|
6987
|
+
if property_name in memeber_set:
|
6988
|
+
memeber_set.remove(property_name)
|
6989
|
+
if len(memeber_set) > 0:
|
6990
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
6991
|
+
|
6992
|
+
|
6993
|
+
|
6717
6994
|
class DashboardTopicInfo(AbstractModel):
|
6718
6995
|
"""仪表盘关联的topic信息
|
6719
6996
|
|
@@ -7416,6 +7693,37 @@ class DeleteConsumerResponse(AbstractModel):
|
|
7416
7693
|
self._RequestId = params.get("RequestId")
|
7417
7694
|
|
7418
7695
|
|
7696
|
+
class DeleteDashboardSubscribeRequest(AbstractModel):
|
7697
|
+
"""DeleteDashboardSubscribe请求参数结构体
|
7698
|
+
|
7699
|
+
"""
|
7700
|
+
|
7701
|
+
|
7702
|
+
class DeleteDashboardSubscribeResponse(AbstractModel):
|
7703
|
+
"""DeleteDashboardSubscribe返回参数结构体
|
7704
|
+
|
7705
|
+
"""
|
7706
|
+
|
7707
|
+
def __init__(self):
|
7708
|
+
r"""
|
7709
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7710
|
+
:type RequestId: str
|
7711
|
+
"""
|
7712
|
+
self._RequestId = None
|
7713
|
+
|
7714
|
+
@property
|
7715
|
+
def RequestId(self):
|
7716
|
+
return self._RequestId
|
7717
|
+
|
7718
|
+
@RequestId.setter
|
7719
|
+
def RequestId(self, RequestId):
|
7720
|
+
self._RequestId = RequestId
|
7721
|
+
|
7722
|
+
|
7723
|
+
def _deserialize(self, params):
|
7724
|
+
self._RequestId = params.get("RequestId")
|
7725
|
+
|
7726
|
+
|
7419
7727
|
class DeleteDataTransformRequest(AbstractModel):
|
7420
7728
|
"""DeleteDataTransform请求参数结构体
|
7421
7729
|
|
@@ -9136,6 +9444,37 @@ class DescribeCosRechargesResponse(AbstractModel):
|
|
9136
9444
|
self._RequestId = params.get("RequestId")
|
9137
9445
|
|
9138
9446
|
|
9447
|
+
class DescribeDashboardSubscribesRequest(AbstractModel):
|
9448
|
+
"""DescribeDashboardSubscribes请求参数结构体
|
9449
|
+
|
9450
|
+
"""
|
9451
|
+
|
9452
|
+
|
9453
|
+
class DescribeDashboardSubscribesResponse(AbstractModel):
|
9454
|
+
"""DescribeDashboardSubscribes返回参数结构体
|
9455
|
+
|
9456
|
+
"""
|
9457
|
+
|
9458
|
+
def __init__(self):
|
9459
|
+
r"""
|
9460
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9461
|
+
:type RequestId: str
|
9462
|
+
"""
|
9463
|
+
self._RequestId = None
|
9464
|
+
|
9465
|
+
@property
|
9466
|
+
def RequestId(self):
|
9467
|
+
return self._RequestId
|
9468
|
+
|
9469
|
+
@RequestId.setter
|
9470
|
+
def RequestId(self, RequestId):
|
9471
|
+
self._RequestId = RequestId
|
9472
|
+
|
9473
|
+
|
9474
|
+
def _deserialize(self, params):
|
9475
|
+
self._RequestId = params.get("RequestId")
|
9476
|
+
|
9477
|
+
|
9139
9478
|
class DescribeDashboardsRequest(AbstractModel):
|
9140
9479
|
"""DescribeDashboards请求参数结构体
|
9141
9480
|
|
@@ -10948,9 +11287,11 @@ class DescribeShipperTasksRequest(AbstractModel):
|
|
10948
11287
|
r"""
|
10949
11288
|
:param _ShipperId: 投递规则ID
|
10950
11289
|
:type ShipperId: str
|
10951
|
-
:param _StartTime: 查询的开始时间戳,支持最近3天的查询,
|
11290
|
+
:param _StartTime: 查询的开始时间戳,支持最近3天的查询, 毫秒。
|
11291
|
+
StartTime必须小于EndTime
|
10952
11292
|
:type StartTime: int
|
10953
|
-
:param _EndTime: 查询的结束时间戳,
|
11293
|
+
:param _EndTime: 查询的结束时间戳, 毫秒。
|
11294
|
+
StartTime必须小于EndTime
|
10954
11295
|
:type EndTime: int
|
10955
11296
|
"""
|
10956
11297
|
self._ShipperId = None
|
@@ -14063,9 +14404,11 @@ class MachineGroupTypeInfo(AbstractModel):
|
|
14063
14404
|
|
14064
14405
|
def __init__(self):
|
14065
14406
|
r"""
|
14066
|
-
:param _Type:
|
14407
|
+
:param _Type: 机器组类型。支持 ip 和 label。
|
14408
|
+
- ip:表示该机器组Values中存的是采集机器的ip地址
|
14409
|
+
- label:表示该机器组Values中存储的是机器的标签
|
14067
14410
|
:type Type: str
|
14068
|
-
:param _Values:
|
14411
|
+
:param _Values: 机器描述列表。
|
14069
14412
|
:type Values: list of str
|
14070
14413
|
"""
|
14071
14414
|
self._Type = None
|
@@ -15802,6 +16145,37 @@ class ModifyCosRechargeResponse(AbstractModel):
|
|
15802
16145
|
self._RequestId = params.get("RequestId")
|
15803
16146
|
|
15804
16147
|
|
16148
|
+
class ModifyDashboardSubscribeRequest(AbstractModel):
|
16149
|
+
"""ModifyDashboardSubscribe请求参数结构体
|
16150
|
+
|
16151
|
+
"""
|
16152
|
+
|
16153
|
+
|
16154
|
+
class ModifyDashboardSubscribeResponse(AbstractModel):
|
16155
|
+
"""ModifyDashboardSubscribe返回参数结构体
|
16156
|
+
|
16157
|
+
"""
|
16158
|
+
|
16159
|
+
def __init__(self):
|
16160
|
+
r"""
|
16161
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16162
|
+
:type RequestId: str
|
16163
|
+
"""
|
16164
|
+
self._RequestId = None
|
16165
|
+
|
16166
|
+
@property
|
16167
|
+
def RequestId(self):
|
16168
|
+
return self._RequestId
|
16169
|
+
|
16170
|
+
@RequestId.setter
|
16171
|
+
def RequestId(self, RequestId):
|
16172
|
+
self._RequestId = RequestId
|
16173
|
+
|
16174
|
+
|
16175
|
+
def _deserialize(self, params):
|
16176
|
+
self._RequestId = params.get("RequestId")
|
16177
|
+
|
16178
|
+
|
15805
16179
|
class ModifyDataTransformRequest(AbstractModel):
|
15806
16180
|
"""ModifyDataTransform请求参数结构体
|
15807
16181
|
|
@@ -16414,7 +16788,7 @@ class ModifyMachineGroupRequest(AbstractModel):
|
|
16414
16788
|
:type GroupId: str
|
16415
16789
|
:param _GroupName: 机器组名称
|
16416
16790
|
:type GroupName: str
|
16417
|
-
:param _MachineGroupType:
|
16791
|
+
:param _MachineGroupType: 机器组类型。Type:ip,Values中为ip字符串列表机器组;Type:label,Values中为标签字符串列表机器组。
|
16418
16792
|
:type MachineGroupType: :class:`tencentcloud.cls.v20201016.models.MachineGroupTypeInfo`
|
16419
16793
|
:param _Tags: 标签列表
|
16420
16794
|
:type Tags: list of Tag
|
@@ -16426,7 +16800,7 @@ class ModifyMachineGroupRequest(AbstractModel):
|
|
16426
16800
|
:type UpdateEndTime: str
|
16427
16801
|
:param _ServiceLogging: 是否开启服务日志,用于记录因Loglistener 服务自身产生的log,开启后,会创建内部日志集cls_service_logging和日志主题loglistener_status,loglistener_alarm,loglistener_business,不产生计费
|
16428
16802
|
:type ServiceLogging: bool
|
16429
|
-
:param _DelayCleanupTime:
|
16803
|
+
:param _DelayCleanupTime: 机器组中机器定期离线清理时间。单位:天
|
16430
16804
|
:type DelayCleanupTime: int
|
16431
16805
|
:param _MetaTags: 机器组元数据信息列表
|
16432
16806
|
:type MetaTags: list of MetaTagInfo
|
@@ -19093,6 +19467,102 @@ class SearchCosRechargeInfoResponse(AbstractModel):
|
|
19093
19467
|
self._RequestId = params.get("RequestId")
|
19094
19468
|
|
19095
19469
|
|
19470
|
+
class SearchDashboardSubscribeRequest(AbstractModel):
|
19471
|
+
"""SearchDashboardSubscribe请求参数结构体
|
19472
|
+
|
19473
|
+
"""
|
19474
|
+
|
19475
|
+
def __init__(self):
|
19476
|
+
r"""
|
19477
|
+
:param _DashboardId: 仪表盘id。
|
19478
|
+
:type DashboardId: str
|
19479
|
+
:param _SubscribeData: 仪表盘订阅数据。
|
19480
|
+
:type SubscribeData: :class:`tencentcloud.cls.v20201016.models.DashboardSubscribeData`
|
19481
|
+
:param _Id: 仪表盘订阅Id。
|
19482
|
+
:type Id: int
|
19483
|
+
:param _Name: 仪表盘订阅名称。
|
19484
|
+
:type Name: str
|
19485
|
+
"""
|
19486
|
+
self._DashboardId = None
|
19487
|
+
self._SubscribeData = None
|
19488
|
+
self._Id = None
|
19489
|
+
self._Name = None
|
19490
|
+
|
19491
|
+
@property
|
19492
|
+
def DashboardId(self):
|
19493
|
+
return self._DashboardId
|
19494
|
+
|
19495
|
+
@DashboardId.setter
|
19496
|
+
def DashboardId(self, DashboardId):
|
19497
|
+
self._DashboardId = DashboardId
|
19498
|
+
|
19499
|
+
@property
|
19500
|
+
def SubscribeData(self):
|
19501
|
+
return self._SubscribeData
|
19502
|
+
|
19503
|
+
@SubscribeData.setter
|
19504
|
+
def SubscribeData(self, SubscribeData):
|
19505
|
+
self._SubscribeData = SubscribeData
|
19506
|
+
|
19507
|
+
@property
|
19508
|
+
def Id(self):
|
19509
|
+
return self._Id
|
19510
|
+
|
19511
|
+
@Id.setter
|
19512
|
+
def Id(self, Id):
|
19513
|
+
self._Id = Id
|
19514
|
+
|
19515
|
+
@property
|
19516
|
+
def Name(self):
|
19517
|
+
return self._Name
|
19518
|
+
|
19519
|
+
@Name.setter
|
19520
|
+
def Name(self, Name):
|
19521
|
+
self._Name = Name
|
19522
|
+
|
19523
|
+
|
19524
|
+
def _deserialize(self, params):
|
19525
|
+
self._DashboardId = params.get("DashboardId")
|
19526
|
+
if params.get("SubscribeData") is not None:
|
19527
|
+
self._SubscribeData = DashboardSubscribeData()
|
19528
|
+
self._SubscribeData._deserialize(params.get("SubscribeData"))
|
19529
|
+
self._Id = params.get("Id")
|
19530
|
+
self._Name = params.get("Name")
|
19531
|
+
memeber_set = set(params.keys())
|
19532
|
+
for name, value in vars(self).items():
|
19533
|
+
property_name = name[1:]
|
19534
|
+
if property_name in memeber_set:
|
19535
|
+
memeber_set.remove(property_name)
|
19536
|
+
if len(memeber_set) > 0:
|
19537
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
19538
|
+
|
19539
|
+
|
19540
|
+
|
19541
|
+
class SearchDashboardSubscribeResponse(AbstractModel):
|
19542
|
+
"""SearchDashboardSubscribe返回参数结构体
|
19543
|
+
|
19544
|
+
"""
|
19545
|
+
|
19546
|
+
def __init__(self):
|
19547
|
+
r"""
|
19548
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
19549
|
+
:type RequestId: str
|
19550
|
+
"""
|
19551
|
+
self._RequestId = None
|
19552
|
+
|
19553
|
+
@property
|
19554
|
+
def RequestId(self):
|
19555
|
+
return self._RequestId
|
19556
|
+
|
19557
|
+
@RequestId.setter
|
19558
|
+
def RequestId(self, RequestId):
|
19559
|
+
self._RequestId = RequestId
|
19560
|
+
|
19561
|
+
|
19562
|
+
def _deserialize(self, params):
|
19563
|
+
self._RequestId = params.get("RequestId")
|
19564
|
+
|
19565
|
+
|
19096
19566
|
class SearchLogErrors(AbstractModel):
|
19097
19567
|
"""多日志主题检索错误信息
|
19098
19568
|
|
@@ -29,7 +29,7 @@ class ImsClient(AbstractClient):
|
|
29
29
|
def CreateImageModerationAsyncTask(self, request):
|
30
30
|
"""本接口用于提交图片文件进行异步智能审核任务。使用前请您使用腾讯云主账号登录控制台 [开通图片内容安全服务](https://console.cloud.tencent.com/cms/image/package) 并调整好对应的业务配置。
|
31
31
|
### 接口使用说明:
|
32
|
-
- 前往“[内容安全控制台-图片内容安全](https://console.cloud.tencent.com/cms/image/package)”开启使用图片内容安全服务,首次开通服务的用户可免费领用试用套餐包,包含**
|
32
|
+
- 前往“[内容安全控制台-图片内容安全](https://console.cloud.tencent.com/cms/image/package)”开启使用图片内容安全服务,首次开通服务的用户可免费领用试用套餐包,包含**3000张图片**识别额度,有效期为15天。
|
33
33
|
- 该接口为收费接口,计费方式敬请参见 [腾讯云图片内容安全定价](https://cloud.tencent.com/product/ims/pricing)。
|
34
34
|
|
35
35
|
### 接口功能说明:
|
@@ -1779,7 +1779,7 @@ class DescribeDataCustomUrlRequest(AbstractModel):
|
|
1779
1779
|
:type ExtThird: str
|
1780
1780
|
:param _ExtFirst: 自定义1
|
1781
1781
|
:type ExtFirst: str
|
1782
|
-
:param _NetType:
|
1782
|
+
:param _NetType: 网络类型(1,2,3,4,5,100),1表示WIFI, 2表示2G, 3表示3G, 4表示4G, 5表示5G, 6表示6G, 100表示未知。
|
1783
1783
|
:type NetType: str
|
1784
1784
|
:param _Device: 机型
|
1785
1785
|
:type Device: str
|
@@ -290,6 +290,9 @@ INVALIDPARAMETER_INVALIDAUTHENTICATIONTYPETIMEFORMAT = 'InvalidParameter.Invalid
|
|
290
290
|
# 无效的token鉴权时间参数。
|
291
291
|
INVALIDPARAMETER_INVALIDAUTHENTICATIONTYPETIMEPARAM = 'InvalidParameter.InvalidAuthenticationTypeTimeParam'
|
292
292
|
|
293
|
+
# 自动使用代金券格式不正确,请输入正确的自动使用代金券格式。
|
294
|
+
INVALIDPARAMETER_INVALIDAUTOUSEVOUCHER = 'InvalidParameter.InvalidAutoUseVoucher'
|
295
|
+
|
293
296
|
# 无效的第三方对象存储。
|
294
297
|
INVALIDPARAMETER_INVALIDAWSPRIVATEACCESS = 'InvalidParameter.InvalidAwsPrivateAccess'
|
295
298
|
|
@@ -422,6 +425,12 @@ INVALIDPARAMETER_INVALIDORIGINVALUE = 'InvalidParameter.InvalidOriginValue'
|
|
422
425
|
# 参数错误。
|
423
426
|
INVALIDPARAMETER_INVALIDPARAMETER = 'InvalidParameter.InvalidParameter'
|
424
427
|
|
428
|
+
# 套餐周期格式不正确,请输入正确的套餐周期格式。
|
429
|
+
INVALIDPARAMETER_INVALIDPERIOD = 'InvalidParameter.InvalidPeriod'
|
430
|
+
|
431
|
+
# 套餐类型格式不正确,请输入正确的套餐类型格式。
|
432
|
+
INVALIDPARAMETER_INVALIDPLANTYPE = 'InvalidParameter.InvalidPlanType'
|
433
|
+
|
425
434
|
# 套餐包不支持最大上传大小。
|
426
435
|
INVALIDPARAMETER_INVALIDPOSTMAXSIZEBILLING = 'InvalidParameter.InvalidPostMaxSizeBilling'
|
427
436
|
|
@@ -437,9 +446,18 @@ INVALIDPARAMETER_INVALIDPRIVATEACCESSSWITCH = 'InvalidParameter.InvalidPrivateAc
|
|
437
446
|
# 套餐包不支持Quic配置。
|
438
447
|
INVALIDPARAMETER_INVALIDQUICBILLING = 'InvalidParameter.InvalidQuicBilling'
|
439
448
|
|
449
|
+
# 配额数量格式不正确,请输入正确的配额数量格式。
|
450
|
+
INVALIDPARAMETER_INVALIDQUOTANUMBER = 'InvalidParameter.InvalidQuotaNumber'
|
451
|
+
|
452
|
+
# 配额类型格式不正确,请输入正确的配额类型格式。
|
453
|
+
INVALIDPARAMETER_INVALIDQUOTATYPE = 'InvalidParameter.InvalidQuotaType'
|
454
|
+
|
440
455
|
# 无效的分片回源。
|
441
456
|
INVALIDPARAMETER_INVALIDRANGEORIGINPULL = 'InvalidParameter.InvalidRangeOriginPull'
|
442
457
|
|
458
|
+
# 自动续费标志格式不正确,请输入正确的自动续费标签格式。
|
459
|
+
INVALIDPARAMETER_INVALIDRENEWFLAG = 'InvalidParameter.InvalidRenewFlag'
|
460
|
+
|
443
461
|
# 无效的请求头header。
|
444
462
|
INVALIDPARAMETER_INVALIDREQUESTHEADERNAME = 'InvalidParameter.InvalidRequestHeaderName'
|
445
463
|
|
@@ -794,6 +812,15 @@ OPERATIONDENIED_DOMAINNUMBERISNOTZERO = 'OperationDenied.DomainNumberIsNotZero'
|
|
794
812
|
# 站点内有域名处于非稳态,稳态包括:“在线” 和 “离线” 两个状态。
|
795
813
|
OPERATIONDENIED_DOMAINSTATUSUNSTABLE = 'OperationDenied.DomainStatusUnstable'
|
796
814
|
|
815
|
+
# 企业版套餐不支持自动续费。
|
816
|
+
OPERATIONDENIED_ENTERPRISEPLANAUTORENEWUNSUPPORTED = 'OperationDenied.EnterprisePlanAutoRenewUnsupported'
|
817
|
+
|
818
|
+
# 企业版套餐不支持续费。
|
819
|
+
OPERATIONDENIED_ENTERPRISEPLANRENEWUNSUPPORTED = 'OperationDenied.EnterprisePlanRenewUnsupported'
|
820
|
+
|
821
|
+
# 企业版套餐不支持升级。
|
822
|
+
OPERATIONDENIED_ENTERPRISEPLANUPGRADEUNSUPPORTED = 'OperationDenied.EnterprisePlanUpgradeUnsupported'
|
823
|
+
|
797
824
|
# 站点环境未准备好。
|
798
825
|
OPERATIONDENIED_ENVNOTREADY = 'OperationDenied.EnvNotReady'
|
799
826
|
|
@@ -869,15 +896,33 @@ OPERATIONDENIED_ORIGINGROUPRULEENGINEUSED = 'OperationDenied.OriginGroupRuleEngi
|
|
869
896
|
# 归属权校验未通过,请先完成站点归属权校验。
|
870
897
|
OPERATIONDENIED_OWNERSHIPVERIFICATIONNOTPASSED = 'OperationDenied.OwnershipVerificationNotPassed'
|
871
898
|
|
899
|
+
# 套餐不支持降级。
|
900
|
+
OPERATIONDENIED_PLANDOWNGRADENOTALLOWED = 'OperationDenied.PlanDowngradeNotAllowed'
|
901
|
+
|
902
|
+
# 套餐已过期。
|
903
|
+
OPERATIONDENIED_PLANHASBEENEXPIRED = 'OperationDenied.PlanHasBeenExpired'
|
904
|
+
|
905
|
+
# 套餐已被隔离。
|
906
|
+
OPERATIONDENIED_PLANHASBEENISOLATED = 'OperationDenied.PlanHasBeenIsolated'
|
907
|
+
|
908
|
+
# 该套餐不支持增购套餐配额。
|
909
|
+
OPERATIONDENIED_PLANINCREASEPLANQUOTAUNSUPPORTED = 'OperationDenied.PlanIncreasePlanQuotaUnsupported'
|
910
|
+
|
872
911
|
# 套餐不支持变更站点的服务区域。
|
873
912
|
OPERATIONDENIED_PLANNOTSUPPORTMODIFYZONEAREA = 'OperationDenied.PlanNotSupportModifyZoneArea'
|
874
913
|
|
875
914
|
# Anycast IP调度模式不支持开启中国大陆加速。
|
876
915
|
OPERATIONDENIED_PLATTYPEIPACCELERATEMAINLANDNOTSUPPORT = 'OperationDenied.PlatTypeIPAccelerateMainlandNotSupport'
|
877
916
|
|
917
|
+
# 如需创建企业版套餐,请联系商务人员。
|
918
|
+
OPERATIONDENIED_PLEASECONTACTBUSINESSPERSONNEL = 'OperationDenied.PleaseContactBusinessPersonnel'
|
919
|
+
|
878
920
|
# DNS 记录不允许添加。
|
879
921
|
OPERATIONDENIED_RECORDISFORBIDDEN = 'OperationDenied.RecordIsForbidden'
|
880
922
|
|
923
|
+
# 计费资源操作中,请稍后重试。
|
924
|
+
OPERATIONDENIED_RESOURCEHASBEENLOCKED = 'OperationDenied.ResourceHasBeenLocked'
|
925
|
+
|
881
926
|
# 当前有互相排斥的请求操作并行发起,请稍后重试。
|
882
927
|
OPERATIONDENIED_RESOURCELOCKEDTEMPORARY = 'OperationDenied.ResourceLockedTemporary'
|
883
928
|
|