tencentcloud-sdk-ccc 3.0.435 → 3.0.436
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/v20200210/models.rb +33 -2
- 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: 75887a1347eb166e483f997a6a51cb3a91ea19b4
|
4
|
+
data.tar.gz: f1612658c8936ace8c81e556b1cd1aada58ee2f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c263be6af4eec7d4371ae28e355978a5f1473b5b2462021c49be5daa6b3d859cc4b3d81f838082aa1ab426f7f59b4df87556d56c9463bc7127f709c41576db3d
|
7
|
+
data.tar.gz: f7868d3d232be645c3ff3a23925fd89d20e4fdbfc4e8a5a00b354b3c1cf29497aa02de0178cead046bfcfcfa715c2d05e072b4b72c6da9983bf56869d65c31d8
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.436
|
data/lib/v20200210/models.rb
CHANGED
@@ -263,10 +263,12 @@ module TencentCloud
|
|
263
263
|
# @type NotAfter: Integer
|
264
264
|
# @param Tries: 最大尝试次数
|
265
265
|
# @type Tries: Integer
|
266
|
+
# @param Variables: 自定义变量(仅高级版支持)
|
267
|
+
# @type Variables: Array
|
266
268
|
|
267
|
-
attr_accessor :SdkAppId, :NotBefore, :Callees, :Callers, :IvrId, :Name, :Description, :NotAfter, :Tries
|
269
|
+
attr_accessor :SdkAppId, :NotBefore, :Callees, :Callers, :IvrId, :Name, :Description, :NotAfter, :Tries, :Variables
|
268
270
|
|
269
|
-
def initialize(sdkappid=nil, notbefore=nil, callees=nil, callers=nil, ivrid=nil, name=nil, description=nil, notafter=nil, tries=nil)
|
271
|
+
def initialize(sdkappid=nil, notbefore=nil, callees=nil, callers=nil, ivrid=nil, name=nil, description=nil, notafter=nil, tries=nil, variables=nil)
|
270
272
|
@SdkAppId = sdkappid
|
271
273
|
@NotBefore = notbefore
|
272
274
|
@Callees = callees
|
@@ -276,6 +278,7 @@ module TencentCloud
|
|
276
278
|
@Description = description
|
277
279
|
@NotAfter = notafter
|
278
280
|
@Tries = tries
|
281
|
+
@Variables = variables
|
279
282
|
end
|
280
283
|
|
281
284
|
def deserialize(params)
|
@@ -288,6 +291,14 @@ module TencentCloud
|
|
288
291
|
@Description = params['Description']
|
289
292
|
@NotAfter = params['NotAfter']
|
290
293
|
@Tries = params['Tries']
|
294
|
+
unless params['Variables'].nil?
|
295
|
+
@Variables = []
|
296
|
+
params['Variables'].each do |i|
|
297
|
+
variable_tmp = Variable.new
|
298
|
+
variable_tmp.deserialize(i)
|
299
|
+
@Variables << variable_tmp
|
300
|
+
end
|
301
|
+
end
|
291
302
|
end
|
292
303
|
end
|
293
304
|
|
@@ -2684,6 +2695,26 @@ module TencentCloud
|
|
2684
2695
|
end
|
2685
2696
|
end
|
2686
2697
|
|
2698
|
+
# 变量
|
2699
|
+
class Variable < TencentCloud::Common::AbstractModel
|
2700
|
+
# @param Key: 变量名
|
2701
|
+
# @type Key: String
|
2702
|
+
# @param Value: 变量值
|
2703
|
+
# @type Value: String
|
2704
|
+
|
2705
|
+
attr_accessor :Key, :Value
|
2706
|
+
|
2707
|
+
def initialize(key=nil, value=nil)
|
2708
|
+
@Key = key
|
2709
|
+
@Value = value
|
2710
|
+
end
|
2711
|
+
|
2712
|
+
def deserialize(params)
|
2713
|
+
@Key = params['Key']
|
2714
|
+
@Value = params['Value']
|
2715
|
+
end
|
2716
|
+
end
|
2717
|
+
|
2687
2718
|
end
|
2688
2719
|
end
|
2689
2720
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ccc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.436
|
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-10-
|
11
|
+
date: 2022-10-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|