tencentcloud-sdk-captcha 1.0.275 → 1.0.278
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/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: a0c73168e3cd6904111d4d2400cd8787d5044c5a
|
4
|
+
data.tar.gz: 9455d04f3ec72bab7f6e1f66c548d97577bcce9a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54f212bbb9abbf8ecb24de8b8d1d0c123f6a86bfc69be8060e36be4073f5e8e1200ef79f3dd6cfa5e1e5a8816028d900304bd5c37d4233b66a2ecd65308047f0
|
7
|
+
data.tar.gz: fe6d8437c6e4afed93605982d96b7975567554b19b2bff772434d6c83ccbde0be9e90a9264ebeda5ac75904dbe6090f578fe76b516b74cb5f67700bcb0296d21
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.278
|
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.278
|
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-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|