tencentcloud-sdk-cls 1.0.293 → 1.0.294

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201016/models.rb +32 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 396b43ab9cb4a52da99c8325644ef02bc3b4b067
4
- data.tar.gz: ccd9e7fad4da0f5b94d8618b46ce5ce0d0970422
3
+ metadata.gz: b17b8db13a4916e842219ccc926179f80ae61752
4
+ data.tar.gz: 2ed3ffbe7c067c3d4ebc0080389a8233a62f3b84
5
5
  SHA512:
6
- metadata.gz: eea31b092eceb5704e41a072419165dca9deb5a8a31be034be77b6d46ea5796795b3a07dedef427404ebe73910af51956659a9426f705a55206f3ea6ea3c3c29
7
- data.tar.gz: 2faeb9e0e4ccd25810be5cd35cade5e77ce78643ce93ca149e04d8c044a42e2a5b36f658f60929176026aab25a4b6dc8b31cc262b2a88d31167827a1078a724e
6
+ metadata.gz: e1dfc25c9e6f10040e959a2d33b926dd3d4d5309ab637c9f8a2fc3f6a4ef02c80a608894332e79e205d106bdda3954280c63cb916940b854a0341b8009cc01ee
7
+ data.tar.gz: 11aa95af264b88835cca539dde14d236d8d28a46a0d38ab44a40de9ac20cda7aaf9a51bfcd401852ccbe055d59ff6afcf5cf65372c963c76753cdfa8a361cc73
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.293
1
+ 1.0.294
@@ -1362,13 +1362,19 @@ module TencentCloud
1362
1362
  # @type Rule: :class:`Tencentcloud::Cls.v20201016.models.RuleInfo`
1363
1363
  # @param Status: 是否生效,默认为true
1364
1364
  # @type Status: Boolean
1365
+ # @param IncludeInternalFields: 全文索引系统预置字段标记,默认false。 false:不包含系统预置字段, true:包含系统预置字段
1366
+ # @type IncludeInternalFields: Boolean
1367
+ # @param MetadataFlag: 元数据相关标志位,默认为0。 0:全文索引包括开启键值索引的元数据字段, 1:全文索引包括所有元数据字段,2:全文索引不包括元数据字段。
1368
+ # @type MetadataFlag: Integer
1365
1369
 
1366
- attr_accessor :TopicId, :Rule, :Status
1370
+ attr_accessor :TopicId, :Rule, :Status, :IncludeInternalFields, :MetadataFlag
1367
1371
 
1368
- def initialize(topicid=nil, rule=nil, status=nil)
1372
+ def initialize(topicid=nil, rule=nil, status=nil, includeinternalfields=nil, metadataflag=nil)
1369
1373
  @TopicId = topicid
1370
1374
  @Rule = rule
1371
1375
  @Status = status
1376
+ @IncludeInternalFields = includeinternalfields
1377
+ @MetadataFlag = metadataflag
1372
1378
  end
1373
1379
 
1374
1380
  def deserialize(params)
@@ -1378,6 +1384,8 @@ module TencentCloud
1378
1384
  @Rule.deserialize(params['Rule'])
1379
1385
  end
1380
1386
  @Status = params['Status']
1387
+ @IncludeInternalFields = params['IncludeInternalFields']
1388
+ @MetadataFlag = params['MetadataFlag']
1381
1389
  end
1382
1390
  end
1383
1391
 
@@ -2801,16 +2809,24 @@ module TencentCloud
2801
2809
  # @type Rule: :class:`Tencentcloud::Cls.v20201016.models.RuleInfo`
2802
2810
  # @param ModifyTime: 索引修改时间,初始值为索引创建时间。
2803
2811
  # @type ModifyTime: String
2812
+ # @param IncludeInternalFields: 全文索引系统预置字段标记,默认false。 false:不包含系统预置字段, true:包含系统预置字段
2813
+ # 注意:此字段可能返回 null,表示取不到有效值。
2814
+ # @type IncludeInternalFields: Boolean
2815
+ # @param MetadataFlag: 元数据相关标志位,默认为0。 0:全文索引包括开启键值索引的元数据字段, 1:全文索引包括所有元数据字段,2:全文索引不包括元数据字段。
2816
+ # 注意:此字段可能返回 null,表示取不到有效值。
2817
+ # @type MetadataFlag: Integer
2804
2818
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2805
2819
  # @type RequestId: String
2806
2820
 
2807
- attr_accessor :TopicId, :Status, :Rule, :ModifyTime, :RequestId
2821
+ attr_accessor :TopicId, :Status, :Rule, :ModifyTime, :IncludeInternalFields, :MetadataFlag, :RequestId
2808
2822
 
2809
- def initialize(topicid=nil, status=nil, rule=nil, modifytime=nil, requestid=nil)
2823
+ def initialize(topicid=nil, status=nil, rule=nil, modifytime=nil, includeinternalfields=nil, metadataflag=nil, requestid=nil)
2810
2824
  @TopicId = topicid
2811
2825
  @Status = status
2812
2826
  @Rule = rule
2813
2827
  @ModifyTime = modifytime
2828
+ @IncludeInternalFields = includeinternalfields
2829
+ @MetadataFlag = metadataflag
2814
2830
  @RequestId = requestid
2815
2831
  end
2816
2832
 
@@ -2822,6 +2838,8 @@ module TencentCloud
2822
2838
  @Rule.deserialize(params['Rule'])
2823
2839
  end
2824
2840
  @ModifyTime = params['ModifyTime']
2841
+ @IncludeInternalFields = params['IncludeInternalFields']
2842
+ @MetadataFlag = params['MetadataFlag']
2825
2843
  @RequestId = params['RequestId']
2826
2844
  end
2827
2845
  end
@@ -4748,13 +4766,19 @@ module TencentCloud
4748
4766
  # @type Status: Boolean
4749
4767
  # @param Rule: 索引规则
4750
4768
  # @type Rule: :class:`Tencentcloud::Cls.v20201016.models.RuleInfo`
4769
+ # @param IncludeInternalFields: 全文索引系统预置字段标记,默认false。 false:不包含系统预置字段, true:包含系统预置字段
4770
+ # @type IncludeInternalFields: Boolean
4771
+ # @param MetadataFlag: 元数据相关标志位,默认为0。 0:全文索引包括开启键值索引的元数据字段, 1:全文索引包括所有元数据字段,2:全文索引不包括元数据字段。
4772
+ # @type MetadataFlag: Integer
4751
4773
 
4752
- attr_accessor :TopicId, :Status, :Rule
4774
+ attr_accessor :TopicId, :Status, :Rule, :IncludeInternalFields, :MetadataFlag
4753
4775
 
4754
- def initialize(topicid=nil, status=nil, rule=nil)
4776
+ def initialize(topicid=nil, status=nil, rule=nil, includeinternalfields=nil, metadataflag=nil)
4755
4777
  @TopicId = topicid
4756
4778
  @Status = status
4757
4779
  @Rule = rule
4780
+ @IncludeInternalFields = includeinternalfields
4781
+ @MetadataFlag = metadataflag
4758
4782
  end
4759
4783
 
4760
4784
  def deserialize(params)
@@ -4764,6 +4788,8 @@ module TencentCloud
4764
4788
  @Rule = RuleInfo.new
4765
4789
  @Rule.deserialize(params['Rule'])
4766
4790
  end
4791
+ @IncludeInternalFields = params['IncludeInternalFields']
4792
+ @MetadataFlag = params['MetadataFlag']
4767
4793
  end
4768
4794
  end
4769
4795
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cls
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.293
4
+ version: 1.0.294
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-10 00:00:00.000000000 Z
11
+ date: 2022-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common