tencentcloud-sdk-bi 3.0.938 → 3.0.940
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/v20220105/models.rb +29 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f13b49e8037e2b9932e23d6126a0082f0b77828
|
4
|
+
data.tar.gz: 07111ec0fc54c16ad47b100ee6e3dbb5a5ef2694
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c16ecbe69487baa172792efdf2f88815b05532b82b4058ddd348b207255a6b7d0a1fa6ed5a3cf9db250436224317dec78db576c668db5c1d789c624b2cabdbe
|
7
|
+
data.tar.gz: 192f4e7ee1ccd097fd373eee55e5de5f6b43a39db10f42d5a0256ae816471f081d153ace96311b5932d34198014dbbdc8ed08353fe6fe7cce9f59c959250f9a3
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.940
|
data/lib/v20220105/models.rb
CHANGED
@@ -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.
|
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-
|
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
|