tencentcloud-sdk-gme 3.0.642 → 3.0.644

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/v20180711/models.rb +22 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 549367136c6273f0e65913343ad339a4f267a57f
4
- data.tar.gz: f6eca99d055c874428cca1431aeb95ad0e707532
3
+ metadata.gz: b5ff05a44a8061c6cb9419e8cd5a519c03e6ba03
4
+ data.tar.gz: dd23e6e6e47ff9e0b4849f3df4918ff386d423d4
5
5
  SHA512:
6
- metadata.gz: 21c0a44465d6e4844377385c99d1e8b45811cb3f196931a5f5794a2e711e76c3741fa6025526e8170ad3edf25d14809970ccd8dfe8b0dfcc1eb03bd25baf70e3
7
- data.tar.gz: d36acf9b1f0fb3cfe51391108794546dfc9f0e87a74edb6d591d0c8e203e176164a1469050e9304e24c8b3d83925b9bb07f7a9fce2f1467a60602c289af2826f
6
+ metadata.gz: 37fcb80dcc3b673b63635c5ad799c5cbbdcb36bd8c5ad6fe7d1cce062310352eff5003563e8c9315baa5356a854d1327325d0dcb1804a091c4422649f0caa0e7
7
+ data.tar.gz: 9a0a314c5c3d2869f77ed5d561c901b34c1435ca4c6a3195749f12f3083addca0c0759a3ce44f6b2c6131f7a4456c1ba732db53d21a8fcfd558a6fcf7d4c16bc
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.642
1
+ 3.0.644
@@ -594,18 +594,30 @@ module TencentCloud
594
594
  # @param BizId: 应用ID,登录控制台 - 服务管理创建应用得到的AppID
595
595
  # @type BizId: Integer
596
596
  # @param UserId: 需要新增送检的用户号。示例:1234
597
+ # (若UserId不填,则UserIdString必填;两者选其一;两者都填以UserIdString为准)
597
598
  # @type UserId: Integer
599
+ # @param UserIdString: 需要新增送检的用户号。示例:"1234"
600
+ # (若UserIdString不填,则UserId必填;两者选其一;两者都填以UserIdString为准)
601
+ # @type UserIdString: String
602
+ # @param ExpirationTime: 当前用户送检过期时间,单位:秒。
603
+ # 若参数不为0,则在过期时间之后,用户不会被送检。
604
+ # 若参数为0,则送检配置不会自动失效。
605
+ # @type ExpirationTime: Integer
598
606
 
599
- attr_accessor :BizId, :UserId
607
+ attr_accessor :BizId, :UserId, :UserIdString, :ExpirationTime
600
608
 
601
- def initialize(bizid=nil, userid=nil)
609
+ def initialize(bizid=nil, userid=nil, useridstring=nil, expirationtime=nil)
602
610
  @BizId = bizid
603
611
  @UserId = userid
612
+ @UserIdString = useridstring
613
+ @ExpirationTime = expirationtime
604
614
  end
605
615
 
606
616
  def deserialize(params)
607
617
  @BizId = params['BizId']
608
618
  @UserId = params['UserId']
619
+ @UserIdString = params['UserIdString']
620
+ @ExpirationTime = params['ExpirationTime']
609
621
  end
610
622
  end
611
623
 
@@ -781,18 +793,24 @@ module TencentCloud
781
793
  # @param BizId: 应用ID,登录控制台 - 服务管理创建应用得到的AppID
782
794
  # @type BizId: Integer
783
795
  # @param UserId: 需要删除送检的用户号。示例:1234
796
+ # (若UserId不填,则UserIdString必填;两者选其一;两者都填以UserIdString为准)
784
797
  # @type UserId: Integer
798
+ # @param UserIdString: 需要删除送检的用户号。示例:"1234"
799
+ # (若UserIdString不填,则UserId必填;两者选其一;两者都填以UserIdString为准)
800
+ # @type UserIdString: String
785
801
 
786
- attr_accessor :BizId, :UserId
802
+ attr_accessor :BizId, :UserId, :UserIdString
787
803
 
788
- def initialize(bizid=nil, userid=nil)
804
+ def initialize(bizid=nil, userid=nil, useridstring=nil)
789
805
  @BizId = bizid
790
806
  @UserId = userid
807
+ @UserIdString = useridstring
791
808
  end
792
809
 
793
810
  def deserialize(params)
794
811
  @BizId = params['BizId']
795
812
  @UserId = params['UserId']
813
+ @UserIdString = params['UserIdString']
796
814
  end
797
815
  end
798
816
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-gme
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.642
4
+ version: 3.0.644
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-23 00:00:00.000000000 Z
11
+ date: 2023-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common