tencentcloud-sdk-cls 3.0.823 → 3.0.824
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201016/models.rb +8 -8
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 80a7bf818afb315a88b6186fa6013505be7b4790
|
|
4
|
+
data.tar.gz: 4c8f1ae2b60ad31b1dbeb028822a5ce41a616227
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 13506360605620953c8e3fd444e6498c3d2696b021754e91df3744e7a7af78310aa0cc558a3c66de1a941e08da43cef49bf22e19aaf64d4dd1f259cf13bbf1d9
|
|
7
|
+
data.tar.gz: 4ed4e56f1d16eac95fafc788029e28a46632b7003456bca3eeda91f8309f4871f10f3526b219669e9b08857e59341fae9a4324194cecf311aefc804489999af5
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.824
|
data/lib/v20201016/models.rb
CHANGED
|
@@ -2214,11 +2214,11 @@ module TencentCloud
|
|
|
2214
2214
|
# @type Bucket: String
|
|
2215
2215
|
# @param BucketRegion: COS存储桶所在地域,详见产品支持的[地域列表](https://cloud.tencent.com/document/product/436/6224)。
|
|
2216
2216
|
# @type BucketRegion: String
|
|
2217
|
-
# @param Prefix: COS文件所在文件夹的前缀
|
|
2218
|
-
# @type Prefix: String
|
|
2219
2217
|
# @param LogType: 采集的日志类型,json_log代表json格式日志,delimiter_log代表分隔符格式日志,minimalist_log代表单行全文;
|
|
2220
2218
|
# 默认为minimalist_log
|
|
2221
2219
|
# @type LogType: String
|
|
2220
|
+
# @param Prefix: COS文件所在文件夹的前缀。默认为空,投递存储桶下所有的文件。
|
|
2221
|
+
# @type Prefix: String
|
|
2222
2222
|
# @param Compress: supported: "", "gzip", "lzop", "snappy"; 默认空
|
|
2223
2223
|
# @type Compress: String
|
|
2224
2224
|
# @param ExtractRuleInfo: 提取规则,如果设置了ExtractRule,则必须设置LogType
|
|
@@ -2228,16 +2228,16 @@ module TencentCloud
|
|
|
2228
2228
|
# @param Metadata: 元数据。
|
|
2229
2229
|
# @type Metadata: Array
|
|
2230
2230
|
|
|
2231
|
-
attr_accessor :TopicId, :LogsetId, :Name, :Bucket, :BucketRegion, :
|
|
2231
|
+
attr_accessor :TopicId, :LogsetId, :Name, :Bucket, :BucketRegion, :LogType, :Prefix, :Compress, :ExtractRuleInfo, :TaskType, :Metadata
|
|
2232
2232
|
|
|
2233
|
-
def initialize(topicid=nil, logsetid=nil, name=nil, bucket=nil, bucketregion=nil,
|
|
2233
|
+
def initialize(topicid=nil, logsetid=nil, name=nil, bucket=nil, bucketregion=nil, logtype=nil, prefix=nil, compress=nil, extractruleinfo=nil, tasktype=nil, metadata=nil)
|
|
2234
2234
|
@TopicId = topicid
|
|
2235
2235
|
@LogsetId = logsetid
|
|
2236
2236
|
@Name = name
|
|
2237
2237
|
@Bucket = bucket
|
|
2238
2238
|
@BucketRegion = bucketregion
|
|
2239
|
-
@Prefix = prefix
|
|
2240
2239
|
@LogType = logtype
|
|
2240
|
+
@Prefix = prefix
|
|
2241
2241
|
@Compress = compress
|
|
2242
2242
|
@ExtractRuleInfo = extractruleinfo
|
|
2243
2243
|
@TaskType = tasktype
|
|
@@ -2250,8 +2250,8 @@ module TencentCloud
|
|
|
2250
2250
|
@Name = params['Name']
|
|
2251
2251
|
@Bucket = params['Bucket']
|
|
2252
2252
|
@BucketRegion = params['BucketRegion']
|
|
2253
|
-
@Prefix = params['Prefix']
|
|
2254
2253
|
@LogType = params['LogType']
|
|
2254
|
+
@Prefix = params['Prefix']
|
|
2255
2255
|
@Compress = params['Compress']
|
|
2256
2256
|
unless params['ExtractRuleInfo'].nil?
|
|
2257
2257
|
@ExtractRuleInfo = ExtractRuleInfo.new
|
|
@@ -7799,7 +7799,7 @@ module TencentCloud
|
|
|
7799
7799
|
# @type Bucket: String
|
|
7800
7800
|
# @param BucketRegion: COS存储桶所在地域,详见产品支持的[地域列表](https://cloud.tencent.com/document/product/436/6224)。
|
|
7801
7801
|
# @type BucketRegion: String
|
|
7802
|
-
# @param Prefix: COS
|
|
7802
|
+
# @param Prefix: COS文件所在文件夹的前缀。为空串时投递存储桶下所有的文件。
|
|
7803
7803
|
# @type Prefix: String
|
|
7804
7804
|
# @param LogType: 采集的日志类型,json_log代表json格式日志,delimiter_log代表分隔符格式日志,minimalist_log代表单行全文; 默认为minimalist_log
|
|
7805
7805
|
# @type LogType: String
|
|
@@ -9397,7 +9397,7 @@ module TencentCloud
|
|
|
9397
9397
|
# @type Bucket: String
|
|
9398
9398
|
# @param BucketRegion: COS存储桶所在地域,详见产品支持的[地域列表](https://cloud.tencent.com/document/product/436/6224)。
|
|
9399
9399
|
# @type BucketRegion: String
|
|
9400
|
-
# @param Prefix:
|
|
9400
|
+
# @param Prefix: COS文件所在文件夹的前缀。默认为空,投递存储桶下所有的文件。
|
|
9401
9401
|
# @type Prefix: String
|
|
9402
9402
|
# @param Compress: 压缩模式: "", "gzip", "lzop", "snappy"; 默认""
|
|
9403
9403
|
# @type Compress: String
|