tencentcloud-sdk-captcha 1.0.276 → 1.0.277
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190722/models.rb +18 -6
- 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: abb1a0fec359e64598a3f28b476aa89647b66441
|
4
|
+
data.tar.gz: 849daf135248e183eb160a42e4880c0a637dab8f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ffbc0905a822c2f9b6e760eb96eb5354179a7b075b2395b0222918963474956d243304bc29d8fa88df8686feded1b7cedeee267b514ae9de3daf1f43a68e55b
|
7
|
+
data.tar.gz: b541c21253fb18581217878514bb89b83d88fad0ff71cd1cca73783f24d43fea9a2af72d686d2c993ab9b7bcb859530079d6343a4b3de43ff8d9ee3a2c226935
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.277
|
data/lib/v20190722/models.rb
CHANGED
@@ -652,19 +652,23 @@ module TencentCloud
|
|
652
652
|
# @type Start: Integer
|
653
653
|
# @param Type: 查询类型
|
654
654
|
# @type Type: Integer
|
655
|
+
# @param End: 查询结束时间
|
656
|
+
# @type End: Integer
|
655
657
|
|
656
|
-
attr_accessor :CaptchaAppId, :Start, :Type
|
658
|
+
attr_accessor :CaptchaAppId, :Start, :Type, :End
|
657
659
|
|
658
|
-
def initialize(captchaappid=nil, start=nil, type=nil)
|
660
|
+
def initialize(captchaappid=nil, start=nil, type=nil, _end=nil)
|
659
661
|
@CaptchaAppId = captchaappid
|
660
662
|
@Start = start
|
661
663
|
@Type = type
|
664
|
+
@End = _end
|
662
665
|
end
|
663
666
|
|
664
667
|
def deserialize(params)
|
665
668
|
@CaptchaAppId = params['CaptchaAppId']
|
666
669
|
@Start = params['Start']
|
667
670
|
@Type = params['Type']
|
671
|
+
@End = params['End']
|
668
672
|
end
|
669
673
|
end
|
670
674
|
|
@@ -891,19 +895,23 @@ module TencentCloud
|
|
891
895
|
# @type Start: Integer
|
892
896
|
# @param Type: 查询类型
|
893
897
|
# @type Type: Integer
|
898
|
+
# @param End: 查询结束时间
|
899
|
+
# @type End: Integer
|
894
900
|
|
895
|
-
attr_accessor :CaptchaAppId, :Start, :Type
|
901
|
+
attr_accessor :CaptchaAppId, :Start, :Type, :End
|
896
902
|
|
897
|
-
def initialize(captchaappid=nil, start=nil, type=nil)
|
903
|
+
def initialize(captchaappid=nil, start=nil, type=nil, _end=nil)
|
898
904
|
@CaptchaAppId = captchaappid
|
899
905
|
@Start = start
|
900
906
|
@Type = type
|
907
|
+
@End = _end
|
901
908
|
end
|
902
909
|
|
903
910
|
def deserialize(params)
|
904
911
|
@CaptchaAppId = params['CaptchaAppId']
|
905
912
|
@Start = params['Start']
|
906
913
|
@Type = params['Type']
|
914
|
+
@End = params['End']
|
907
915
|
end
|
908
916
|
end
|
909
917
|
|
@@ -1060,17 +1068,21 @@ module TencentCloud
|
|
1060
1068
|
# @type CaptchaAppId: Integer
|
1061
1069
|
# @param Start: 查询开始时间 例如:20200909
|
1062
1070
|
# @type Start: Integer
|
1071
|
+
# @param End: 查询结束时间 例如:20220314
|
1072
|
+
# @type End: Integer
|
1063
1073
|
|
1064
|
-
attr_accessor :CaptchaAppId, :Start
|
1074
|
+
attr_accessor :CaptchaAppId, :Start, :End
|
1065
1075
|
|
1066
|
-
def initialize(captchaappid=nil, start=nil)
|
1076
|
+
def initialize(captchaappid=nil, start=nil, _end=nil)
|
1067
1077
|
@CaptchaAppId = captchaappid
|
1068
1078
|
@Start = start
|
1079
|
+
@End = _end
|
1069
1080
|
end
|
1070
1081
|
|
1071
1082
|
def deserialize(params)
|
1072
1083
|
@CaptchaAppId = params['CaptchaAppId']
|
1073
1084
|
@Start = params['Start']
|
1085
|
+
@End = params['End']
|
1074
1086
|
end
|
1075
1087
|
end
|
1076
1088
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-captcha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.277
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-03-
|
11
|
+
date: 2022-03-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|