tencentcloud-sdk-python-cls 3.0.1137__tar.gz → 3.0.1138__tar.gz
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-sdk-python-cls-3.0.1137 → tencentcloud-sdk-python-cls-3.0.1138}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.1137 → tencentcloud-sdk-python-cls-3.0.1138}/setup.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1137 → tencentcloud-sdk-python-cls-3.0.1138}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1137 → tencentcloud-sdk-python-cls-3.0.1138}/tencentcloud/cls/v20201016/models.py +125 -3
- {tencentcloud-sdk-python-cls-3.0.1137 → tencentcloud-sdk-python-cls-3.0.1138}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cls-3.0.1138/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cls-3.0.1137/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cls-3.0.1137 → tencentcloud-sdk-python-cls-3.0.1138}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.1137 → tencentcloud-sdk-python-cls-3.0.1138}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cls-3.0.1137 → tencentcloud-sdk-python-cls-3.0.1138}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1137 → tencentcloud-sdk-python-cls-3.0.1138}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1137 → tencentcloud-sdk-python-cls-3.0.1138}/tencentcloud/cls/v20201016/cls_client.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1137 → tencentcloud-sdk-python-cls-3.0.1138}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1137 → tencentcloud-sdk-python-cls-3.0.1138}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1137 → tencentcloud-sdk-python-cls-3.0.1138}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1137 → tencentcloud-sdk-python-cls-3.0.1138}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-cls',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1138"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cls SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -4608,6 +4608,10 @@ class CreateCosRechargeRequest(AbstractModel):
|
|
|
4608
4608
|
:type Compress: str
|
|
4609
4609
|
:param _ExtractRuleInfo: 提取规则,如果设置了ExtractRule,则必须设置LogType
|
|
4610
4610
|
:type ExtractRuleInfo: :class:`tencentcloud.cls.v20201016.models.ExtractRuleInfo`
|
|
4611
|
+
:param _TaskType: COS导入任务类型。1:一次性导入任务;2:持续性导入任务。默认为1:一次性导入任务
|
|
4612
|
+
:type TaskType: int
|
|
4613
|
+
:param _Metadata: 元数据。
|
|
4614
|
+
:type Metadata: list of str
|
|
4611
4615
|
"""
|
|
4612
4616
|
self._TopicId = None
|
|
4613
4617
|
self._LogsetId = None
|
|
@@ -4618,6 +4622,8 @@ class CreateCosRechargeRequest(AbstractModel):
|
|
|
4618
4622
|
self._LogType = None
|
|
4619
4623
|
self._Compress = None
|
|
4620
4624
|
self._ExtractRuleInfo = None
|
|
4625
|
+
self._TaskType = None
|
|
4626
|
+
self._Metadata = None
|
|
4621
4627
|
|
|
4622
4628
|
@property
|
|
4623
4629
|
def TopicId(self):
|
|
@@ -4691,6 +4697,22 @@ class CreateCosRechargeRequest(AbstractModel):
|
|
|
4691
4697
|
def ExtractRuleInfo(self, ExtractRuleInfo):
|
|
4692
4698
|
self._ExtractRuleInfo = ExtractRuleInfo
|
|
4693
4699
|
|
|
4700
|
+
@property
|
|
4701
|
+
def TaskType(self):
|
|
4702
|
+
return self._TaskType
|
|
4703
|
+
|
|
4704
|
+
@TaskType.setter
|
|
4705
|
+
def TaskType(self, TaskType):
|
|
4706
|
+
self._TaskType = TaskType
|
|
4707
|
+
|
|
4708
|
+
@property
|
|
4709
|
+
def Metadata(self):
|
|
4710
|
+
return self._Metadata
|
|
4711
|
+
|
|
4712
|
+
@Metadata.setter
|
|
4713
|
+
def Metadata(self, Metadata):
|
|
4714
|
+
self._Metadata = Metadata
|
|
4715
|
+
|
|
4694
4716
|
|
|
4695
4717
|
def _deserialize(self, params):
|
|
4696
4718
|
self._TopicId = params.get("TopicId")
|
|
@@ -4704,6 +4726,8 @@ class CreateCosRechargeRequest(AbstractModel):
|
|
|
4704
4726
|
if params.get("ExtractRuleInfo") is not None:
|
|
4705
4727
|
self._ExtractRuleInfo = ExtractRuleInfo()
|
|
4706
4728
|
self._ExtractRuleInfo._deserialize(params.get("ExtractRuleInfo"))
|
|
4729
|
+
self._TaskType = params.get("TaskType")
|
|
4730
|
+
self._Metadata = params.get("Metadata")
|
|
4707
4731
|
memeber_set = set(params.keys())
|
|
4708
4732
|
for name, value in vars(self).items():
|
|
4709
4733
|
property_name = name[1:]
|
|
@@ -4721,7 +4745,7 @@ class CreateCosRechargeResponse(AbstractModel):
|
|
|
4721
4745
|
|
|
4722
4746
|
def __init__(self):
|
|
4723
4747
|
r"""
|
|
4724
|
-
:param _Id:
|
|
4748
|
+
:param _Id: COS导入任务id
|
|
4725
4749
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4726
4750
|
:type Id: str
|
|
4727
4751
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -15593,19 +15617,43 @@ class ModifyCosRechargeRequest(AbstractModel):
|
|
|
15593
15617
|
|
|
15594
15618
|
def __init__(self):
|
|
15595
15619
|
r"""
|
|
15596
|
-
:param _Id: COS导入配置
|
|
15620
|
+
:param _Id: COS导入配置Id
|
|
15597
15621
|
:type Id: str
|
|
15598
15622
|
:param _TopicId: 日志主题Id
|
|
15599
15623
|
:type TopicId: str
|
|
15600
15624
|
:param _Name: COS导入任务名称
|
|
15601
15625
|
:type Name: str
|
|
15602
|
-
:param _Enable:
|
|
15626
|
+
:param _Enable: 任务状态 0: 停用 , 1:启用
|
|
15603
15627
|
:type Enable: int
|
|
15628
|
+
:param _Bucket: COS存储桶,详见产品支持的[存储桶命名规范](https://cloud.tencent.com/document/product/436/13312)。
|
|
15629
|
+
:type Bucket: str
|
|
15630
|
+
:param _BucketRegion: COS存储桶所在地域,详见产品支持的[地域列表](https://cloud.tencent.com/document/product/436/6224)。
|
|
15631
|
+
:type BucketRegion: str
|
|
15632
|
+
:param _Prefix: COS文件所在文件夹的前缀
|
|
15633
|
+
:type Prefix: str
|
|
15634
|
+
:param _LogType: 采集的日志类型,json_log代表json格式日志,delimiter_log代表分隔符格式日志,minimalist_log代表单行全文; 默认为minimalist_log
|
|
15635
|
+
:type LogType: str
|
|
15636
|
+
:param _Compress: 解析格式。supported: "", "gzip", "lzop", "snappy"; 默认空
|
|
15637
|
+
:type Compress: str
|
|
15638
|
+
:param _ExtractRuleInfo: 提取规则,如果设置了ExtractRule,则必须设置LogType
|
|
15639
|
+
:type ExtractRuleInfo: :class:`tencentcloud.cls.v20201016.models.ExtractRuleInfo`
|
|
15640
|
+
:param _TaskType: COS导入任务类型。1:一次性导入任务;2:持续性导入任务。
|
|
15641
|
+
:type TaskType: int
|
|
15642
|
+
:param _Metadata: 元数据。支持 bucket,object。
|
|
15643
|
+
:type Metadata: list of str
|
|
15604
15644
|
"""
|
|
15605
15645
|
self._Id = None
|
|
15606
15646
|
self._TopicId = None
|
|
15607
15647
|
self._Name = None
|
|
15608
15648
|
self._Enable = None
|
|
15649
|
+
self._Bucket = None
|
|
15650
|
+
self._BucketRegion = None
|
|
15651
|
+
self._Prefix = None
|
|
15652
|
+
self._LogType = None
|
|
15653
|
+
self._Compress = None
|
|
15654
|
+
self._ExtractRuleInfo = None
|
|
15655
|
+
self._TaskType = None
|
|
15656
|
+
self._Metadata = None
|
|
15609
15657
|
|
|
15610
15658
|
@property
|
|
15611
15659
|
def Id(self):
|
|
@@ -15639,12 +15687,86 @@ class ModifyCosRechargeRequest(AbstractModel):
|
|
|
15639
15687
|
def Enable(self, Enable):
|
|
15640
15688
|
self._Enable = Enable
|
|
15641
15689
|
|
|
15690
|
+
@property
|
|
15691
|
+
def Bucket(self):
|
|
15692
|
+
return self._Bucket
|
|
15693
|
+
|
|
15694
|
+
@Bucket.setter
|
|
15695
|
+
def Bucket(self, Bucket):
|
|
15696
|
+
self._Bucket = Bucket
|
|
15697
|
+
|
|
15698
|
+
@property
|
|
15699
|
+
def BucketRegion(self):
|
|
15700
|
+
return self._BucketRegion
|
|
15701
|
+
|
|
15702
|
+
@BucketRegion.setter
|
|
15703
|
+
def BucketRegion(self, BucketRegion):
|
|
15704
|
+
self._BucketRegion = BucketRegion
|
|
15705
|
+
|
|
15706
|
+
@property
|
|
15707
|
+
def Prefix(self):
|
|
15708
|
+
return self._Prefix
|
|
15709
|
+
|
|
15710
|
+
@Prefix.setter
|
|
15711
|
+
def Prefix(self, Prefix):
|
|
15712
|
+
self._Prefix = Prefix
|
|
15713
|
+
|
|
15714
|
+
@property
|
|
15715
|
+
def LogType(self):
|
|
15716
|
+
return self._LogType
|
|
15717
|
+
|
|
15718
|
+
@LogType.setter
|
|
15719
|
+
def LogType(self, LogType):
|
|
15720
|
+
self._LogType = LogType
|
|
15721
|
+
|
|
15722
|
+
@property
|
|
15723
|
+
def Compress(self):
|
|
15724
|
+
return self._Compress
|
|
15725
|
+
|
|
15726
|
+
@Compress.setter
|
|
15727
|
+
def Compress(self, Compress):
|
|
15728
|
+
self._Compress = Compress
|
|
15729
|
+
|
|
15730
|
+
@property
|
|
15731
|
+
def ExtractRuleInfo(self):
|
|
15732
|
+
return self._ExtractRuleInfo
|
|
15733
|
+
|
|
15734
|
+
@ExtractRuleInfo.setter
|
|
15735
|
+
def ExtractRuleInfo(self, ExtractRuleInfo):
|
|
15736
|
+
self._ExtractRuleInfo = ExtractRuleInfo
|
|
15737
|
+
|
|
15738
|
+
@property
|
|
15739
|
+
def TaskType(self):
|
|
15740
|
+
return self._TaskType
|
|
15741
|
+
|
|
15742
|
+
@TaskType.setter
|
|
15743
|
+
def TaskType(self, TaskType):
|
|
15744
|
+
self._TaskType = TaskType
|
|
15745
|
+
|
|
15746
|
+
@property
|
|
15747
|
+
def Metadata(self):
|
|
15748
|
+
return self._Metadata
|
|
15749
|
+
|
|
15750
|
+
@Metadata.setter
|
|
15751
|
+
def Metadata(self, Metadata):
|
|
15752
|
+
self._Metadata = Metadata
|
|
15753
|
+
|
|
15642
15754
|
|
|
15643
15755
|
def _deserialize(self, params):
|
|
15644
15756
|
self._Id = params.get("Id")
|
|
15645
15757
|
self._TopicId = params.get("TopicId")
|
|
15646
15758
|
self._Name = params.get("Name")
|
|
15647
15759
|
self._Enable = params.get("Enable")
|
|
15760
|
+
self._Bucket = params.get("Bucket")
|
|
15761
|
+
self._BucketRegion = params.get("BucketRegion")
|
|
15762
|
+
self._Prefix = params.get("Prefix")
|
|
15763
|
+
self._LogType = params.get("LogType")
|
|
15764
|
+
self._Compress = params.get("Compress")
|
|
15765
|
+
if params.get("ExtractRuleInfo") is not None:
|
|
15766
|
+
self._ExtractRuleInfo = ExtractRuleInfo()
|
|
15767
|
+
self._ExtractRuleInfo._deserialize(params.get("ExtractRuleInfo"))
|
|
15768
|
+
self._TaskType = params.get("TaskType")
|
|
15769
|
+
self._Metadata = params.get("Metadata")
|
|
15648
15770
|
memeber_set = set(params.keys())
|
|
15649
15771
|
for name, value in vars(self).items():
|
|
15650
15772
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1138
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1137
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|