tencentcloud-sdk-bi 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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20220105/models.rb +53 -6
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bdd1bc8f4d8a015ac1a0d4cc0128f033b5d6e781
4
- data.tar.gz: cbe282df281955a62cf1da4be982e53e9057b139
3
+ metadata.gz: 313b82df347524fe21fa32fa2f5b693b8d968659
4
+ data.tar.gz: b18a682177b8a4eed27dc200f126bef66de24edd
5
5
  SHA512:
6
- metadata.gz: 062c96799c85cd395c0f101951f05d1463ab2c27dad1c0caa4d9e93c506b01f970ae968cc4d46a0389f92524dd8ca064a48bd6f0dab65ee16245b1ad9d814094
7
- data.tar.gz: 73529facb706f6ab3e3e410fdeb35c723a84427c9412a7ee998152f51c87669ea61f85d9b0c07af491e43309bf822eae783f638d996426ac918959adb50d4dbc
6
+ metadata.gz: b1c5ea60ec92bfa9d422b5b5ce01278186e2bfc5898f5137e0848d58c3acd58eb0273a53d10e2e73d2cad2ce74487037e747edef367c957b959578c8b3f396b7
7
+ data.tar.gz: dc3018d0f28c97028655511f1a6f15993537d328b52ac91896d0906d0226f67dbe575b79a00a60310553096b217093a14883d3a3b9a0d79f90c152c80b4d4f92
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.823
1
+ 3.0.824
@@ -493,10 +493,50 @@ module TencentCloud
493
493
  # @type UserId: String
494
494
  # @param TicketNum: 访问次数限制,限制范围1-99999,为空则不设置访问次数限制
495
495
  # @type TicketNum: Integer
496
-
497
- attr_accessor :ProjectId, :PageId, :Scope, :ExpireTime, :ExtraParam, :UserCorpId, :UserId, :TicketNum
498
-
499
- def initialize(projectid=nil, pageid=nil, scope=nil, expiretime=nil, extraparam=nil, usercorpid=nil, userid=nil, ticketnum=nil)
496
+ # @param GlobalParam: 全局筛选参数 报表过滤条件的全局参数。 格式为JSON格式的字符串
497
+ # **目前仅支持字符类型页面参数绑定到全局参数
498
+ # **
499
+ # [
500
+ # {
501
+ # "ParamKey": "name", //页面参数名称
502
+ # "JoinType": "AND", // 连接方式,目前仅支持AND
503
+ # "WhereList": [
504
+ # {
505
+ # "Operator": "-neq", // 操作符,参考以下说明
506
+ # "Value": [ //操作值,单值数组只传一个值
507
+ # "zZWJMD",
508
+ # "ZzVGHX",
509
+ # "湖南省",
510
+ # "河北省"
511
+ # ]
512
+ # }
513
+ # ]
514
+ # },
515
+ # {
516
+ # "ParamKey": "genderParam",
517
+ # "JoinType": "AND",
518
+ # "WhereList": [
519
+ # {
520
+ # "Operator": "-neq",
521
+ # "Value": [
522
+ # "男"
523
+ # ]
524
+ # }
525
+ # ]
526
+ # }
527
+ # ]
528
+
529
+
530
+
531
+ # Operator 目前支持
532
+ # -neq 不等于!=操作符
533
+ # -eq 等于=操作符
534
+ # -is in操作符
535
+ # @type GlobalParam: String
536
+
537
+ attr_accessor :ProjectId, :PageId, :Scope, :ExpireTime, :ExtraParam, :UserCorpId, :UserId, :TicketNum, :GlobalParam
538
+
539
+ def initialize(projectid=nil, pageid=nil, scope=nil, expiretime=nil, extraparam=nil, usercorpid=nil, userid=nil, ticketnum=nil, globalparam=nil)
500
540
  @ProjectId = projectid
501
541
  @PageId = pageid
502
542
  @Scope = scope
@@ -505,6 +545,7 @@ module TencentCloud
505
545
  @UserCorpId = usercorpid
506
546
  @UserId = userid
507
547
  @TicketNum = ticketnum
548
+ @GlobalParam = globalparam
508
549
  end
509
550
 
510
551
  def deserialize(params)
@@ -516,6 +557,7 @@ module TencentCloud
516
557
  @UserCorpId = params['UserCorpId']
517
558
  @UserId = params['UserId']
518
559
  @TicketNum = params['TicketNum']
560
+ @GlobalParam = params['GlobalParam']
519
561
  end
520
562
  end
521
563
 
@@ -1773,10 +1815,13 @@ module TencentCloud
1773
1815
  # @param TicketNum: 访问次数限制,限制范围1-99999,为空则不设置访问次数限制
1774
1816
  # 注意:此字段可能返回 null,表示取不到有效值。
1775
1817
  # @type TicketNum: Integer
1818
+ # @param GlobalParam: 全局参数
1819
+ # 注意:此字段可能返回 null,表示取不到有效值。
1820
+ # @type GlobalParam: String
1776
1821
 
1777
- attr_accessor :Id, :BIToken, :ProjectId, :CreatedUser, :CreatedAt, :UpdatedUser, :UpdatedAt, :PageId, :ExtraParam, :Scope, :ExpireTime, :UserCorpId, :UserId, :TicketNum
1822
+ attr_accessor :Id, :BIToken, :ProjectId, :CreatedUser, :CreatedAt, :UpdatedUser, :UpdatedAt, :PageId, :ExtraParam, :Scope, :ExpireTime, :UserCorpId, :UserId, :TicketNum, :GlobalParam
1778
1823
 
1779
- def initialize(id=nil, bitoken=nil, projectid=nil, createduser=nil, createdat=nil, updateduser=nil, updatedat=nil, pageid=nil, extraparam=nil, scope=nil, expiretime=nil, usercorpid=nil, userid=nil, ticketnum=nil)
1824
+ def initialize(id=nil, bitoken=nil, projectid=nil, createduser=nil, createdat=nil, updateduser=nil, updatedat=nil, pageid=nil, extraparam=nil, scope=nil, expiretime=nil, usercorpid=nil, userid=nil, ticketnum=nil, globalparam=nil)
1780
1825
  @Id = id
1781
1826
  @BIToken = bitoken
1782
1827
  @ProjectId = projectid
@@ -1791,6 +1836,7 @@ module TencentCloud
1791
1836
  @UserCorpId = usercorpid
1792
1837
  @UserId = userid
1793
1838
  @TicketNum = ticketnum
1839
+ @GlobalParam = globalparam
1794
1840
  end
1795
1841
 
1796
1842
  def deserialize(params)
@@ -1808,6 +1854,7 @@ module TencentCloud
1808
1854
  @UserCorpId = params['UserCorpId']
1809
1855
  @UserId = params['UserId']
1810
1856
  @TicketNum = params['TicketNum']
1857
+ @GlobalParam = params['GlobalParam']
1811
1858
  end
1812
1859
  end
1813
1860
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-bi
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.823
4
+ version: 3.0.824
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud