tencentcloud-sdk-bi 3.0.938 → 3.0.940

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20220105/models.rb +29 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fbd4dc83df1799bdffb0781ec37e01225c320001
4
- data.tar.gz: ddfe60b49603ce409d5006f4bc883e0a61173659
3
+ metadata.gz: 1f13b49e8037e2b9932e23d6126a0082f0b77828
4
+ data.tar.gz: 07111ec0fc54c16ad47b100ee6e3dbb5a5ef2694
5
5
  SHA512:
6
- metadata.gz: 72ccd321c1a10ead7ca407ec5a2a4978728b9028b12dc77e7982263216bd08a0c41064022185eb2f7afd59f36bb1b5369ef17a81f24131b20867f1d45e15cc73
7
- data.tar.gz: eb3210f9fcd489393996ffa60f1ff8c80262681b5a47d1aec4815dae2790dffaf838ddeb6a279880edb5b5072416c129b8965155199ae2980b52e14999bbe143
6
+ metadata.gz: 2c16ecbe69487baa172792efdf2f88815b05532b82b4058ddd348b207255a6b7d0a1fa6ed5a3cf9db250436224317dec78db576c668db5c1d789c624b2cabdbe
7
+ data.tar.gz: 192f4e7ee1ccd097fd373eee55e5de5f6b43a39db10f42d5a0256ae816471f081d153ace96311b5932d34198014dbbdc8ed08353fe6fe7cce9f59c959250f9a3
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.938
1
+ 3.0.940
@@ -541,10 +541,14 @@ module TencentCloud
541
541
  # -eq 等于=操作符
542
542
  # -is in操作符
543
543
  # @type GlobalParam: String
544
+ # @param TokenType: 100 不绑定用户 200 单用户单token 300 单用户多token
545
+ # @type TokenType: Integer
546
+ # @param TokenNum: 一次创建的token数
547
+ # @type TokenNum: Integer
544
548
 
545
- attr_accessor :ProjectId, :PageId, :Intention, :Scope, :ExpireTime, :ExtraParam, :UserCorpId, :UserId, :TicketNum, :GlobalParam
549
+ attr_accessor :ProjectId, :PageId, :Intention, :Scope, :ExpireTime, :ExtraParam, :UserCorpId, :UserId, :TicketNum, :GlobalParam, :TokenType, :TokenNum
546
550
 
547
- def initialize(projectid=nil, pageid=nil, intention=nil, scope=nil, expiretime=nil, extraparam=nil, usercorpid=nil, userid=nil, ticketnum=nil, globalparam=nil)
551
+ def initialize(projectid=nil, pageid=nil, intention=nil, scope=nil, expiretime=nil, extraparam=nil, usercorpid=nil, userid=nil, ticketnum=nil, globalparam=nil, tokentype=nil, tokennum=nil)
548
552
  @ProjectId = projectid
549
553
  @PageId = pageid
550
554
  @Intention = intention
@@ -555,6 +559,8 @@ module TencentCloud
555
559
  @UserId = userid
556
560
  @TicketNum = ticketnum
557
561
  @GlobalParam = globalparam
562
+ @TokenType = tokentype
563
+ @TokenNum = tokennum
558
564
  end
559
565
 
560
566
  def deserialize(params)
@@ -568,6 +574,8 @@ module TencentCloud
568
574
  @UserId = params['UserId']
569
575
  @TicketNum = params['TicketNum']
570
576
  @GlobalParam = params['GlobalParam']
577
+ @TokenType = params['TokenType']
578
+ @TokenNum = params['TokenNum']
571
579
  end
572
580
  end
573
581
 
@@ -1836,10 +1844,21 @@ module TencentCloud
1836
1844
  # @param Intention: embed表示页面看板嵌出,chatBIEmbed表示ChatBI嵌出
1837
1845
  # 注意:此字段可能返回 null,表示取不到有效值。
1838
1846
  # @type Intention: String
1847
+ # @param TokenType: 100 无绑定用户
1848
+ # 200 单用户单token
1849
+ # 300 单用户 多token
1850
+ # 注意:此字段可能返回 null,表示取不到有效值。
1851
+ # @type TokenType: Integer
1852
+ # @param TokenNum: token 数
1853
+ # 注意:此字段可能返回 null,表示取不到有效值。
1854
+ # @type TokenNum: Integer
1855
+ # @param SingleUserMultiToken: 是否单用户多token
1856
+ # 注意:此字段可能返回 null,表示取不到有效值。
1857
+ # @type SingleUserMultiToken: Boolean
1839
1858
 
1840
- attr_accessor :Id, :BIToken, :ProjectId, :CreatedUser, :CreatedAt, :UpdatedUser, :UpdatedAt, :PageId, :ExtraParam, :Scope, :ExpireTime, :UserCorpId, :UserId, :TicketNum, :GlobalParam, :Intention
1859
+ attr_accessor :Id, :BIToken, :ProjectId, :CreatedUser, :CreatedAt, :UpdatedUser, :UpdatedAt, :PageId, :ExtraParam, :Scope, :ExpireTime, :UserCorpId, :UserId, :TicketNum, :GlobalParam, :Intention, :TokenType, :TokenNum, :SingleUserMultiToken
1841
1860
 
1842
- 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, intention=nil)
1861
+ 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, intention=nil, tokentype=nil, tokennum=nil, singleusermultitoken=nil)
1843
1862
  @Id = id
1844
1863
  @BIToken = bitoken
1845
1864
  @ProjectId = projectid
@@ -1856,6 +1875,9 @@ module TencentCloud
1856
1875
  @TicketNum = ticketnum
1857
1876
  @GlobalParam = globalparam
1858
1877
  @Intention = intention
1878
+ @TokenType = tokentype
1879
+ @TokenNum = tokennum
1880
+ @SingleUserMultiToken = singleusermultitoken
1859
1881
  end
1860
1882
 
1861
1883
  def deserialize(params)
@@ -1875,6 +1897,9 @@ module TencentCloud
1875
1897
  @TicketNum = params['TicketNum']
1876
1898
  @GlobalParam = params['GlobalParam']
1877
1899
  @Intention = params['Intention']
1900
+ @TokenType = params['TokenType']
1901
+ @TokenNum = params['TokenNum']
1902
+ @SingleUserMultiToken = params['SingleUserMultiToken']
1878
1903
  end
1879
1904
  end
1880
1905
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-bi
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.938
4
+ version: 3.0.940
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-07 00:00:00.000000000 Z
11
+ date: 2024-11-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common