tencentcloud-sdk-gme 3.0.642 → 3.0.643

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/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: 346a74a5d571cc5c52b6ae8da90e24183d069c21
4
+ data.tar.gz: 5dae3d5c94149a489de934140661b24ead3a33fe
5
5
  SHA512:
6
- metadata.gz: 21c0a44465d6e4844377385c99d1e8b45811cb3f196931a5f5794a2e711e76c3741fa6025526e8170ad3edf25d14809970ccd8dfe8b0dfcc1eb03bd25baf70e3
7
- data.tar.gz: d36acf9b1f0fb3cfe51391108794546dfc9f0e87a74edb6d591d0c8e203e176164a1469050e9304e24c8b3d83925b9bb07f7a9fce2f1467a60602c289af2826f
6
+ metadata.gz: 3fb8c7ee8d62a421e50cbe8d917e8e0286f59d6dbad0de994e10f84e339d35499ffd22916886497040a28e09881bd47b897f57db4abd06255ddff0db776f490d
7
+ data.tar.gz: 3af39eea9e91c7720dde997b84546e9344cedc9537677429e3723b4582a186a3f5ba9cd3293c784cea11818328a37c389d60027583cd78054dc4669efe765643
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.642
1
+ 3.0.643
@@ -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.643
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-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common