tencentcloud-sdk-ccc 3.0.773 → 3.0.774
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/client.rb +24 -0
- data/lib/v20200210/models.rb +48 -0
- 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: e7ac100ca4a765e69fd0b6244299ea6543abb405
|
4
|
+
data.tar.gz: 678c571e516e2f83c9f58396f2bc6ea9b83d15c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28e71289f6526cd5e492fb74e35919554e4bd953f0703e6fc6e57f52d427041a38601061cadb353e17cb0647839f99f0285bdc3e3dbccac29ef8ff3999f18ce3
|
7
|
+
data.tar.gz: a506ddd83f911f8214d13ed4a75a932975c54d91fdcc2340fb780a4d2d0b38a4cf26d039cc0d9e8bf911b5d307a8b3047b174dab0208ffd44a406301a04c1336
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.774
|
data/lib/v20200210/client.rb
CHANGED
@@ -1207,6 +1207,30 @@ module TencentCloud
|
|
1207
1207
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1208
1208
|
end
|
1209
1209
|
|
1210
|
+
# 更新技能组
|
1211
|
+
|
1212
|
+
# @param request: Request instance for UpdateCCCSkillGroup.
|
1213
|
+
# @type request: :class:`Tencentcloud::ccc::V20200210::UpdateCCCSkillGroupRequest`
|
1214
|
+
# @rtype: :class:`Tencentcloud::ccc::V20200210::UpdateCCCSkillGroupResponse`
|
1215
|
+
def UpdateCCCSkillGroup(request)
|
1216
|
+
body = send_request('UpdateCCCSkillGroup', request.serialize)
|
1217
|
+
response = JSON.parse(body)
|
1218
|
+
if response['Response'].key?('Error') == false
|
1219
|
+
model = UpdateCCCSkillGroupResponse.new
|
1220
|
+
model.deserialize(response['Response'])
|
1221
|
+
model
|
1222
|
+
else
|
1223
|
+
code = response['Response']['Error']['Code']
|
1224
|
+
message = response['Response']['Error']['Message']
|
1225
|
+
reqid = response['Response']['RequestId']
|
1226
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1227
|
+
end
|
1228
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1229
|
+
raise e
|
1230
|
+
rescue StandardError => e
|
1231
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1232
|
+
end
|
1233
|
+
|
1210
1234
|
# 任务未启动前,更新预测式外呼任务。
|
1211
1235
|
|
1212
1236
|
# @param request: Request instance for UpdatePredictiveDialingCampaign.
|
data/lib/v20200210/models.rb
CHANGED
@@ -4426,6 +4426,54 @@ module TencentCloud
|
|
4426
4426
|
end
|
4427
4427
|
end
|
4428
4428
|
|
4429
|
+
# UpdateCCCSkillGroup请求参数结构体
|
4430
|
+
class UpdateCCCSkillGroupRequest < TencentCloud::Common::AbstractModel
|
4431
|
+
# @param SdkAppId: 应用 ID(必填)
|
4432
|
+
# @type SdkAppId: Integer
|
4433
|
+
# @param SkillGroupID: 技能组ID
|
4434
|
+
# @type SkillGroupID: Integer
|
4435
|
+
# @param SkillGroupName: 修改后的技能组名字
|
4436
|
+
# @type SkillGroupName: String
|
4437
|
+
# @param MaxConcurrency: 修改后的最大并发数,同振最大为2
|
4438
|
+
# @type MaxConcurrency: Integer
|
4439
|
+
# @param RingAll: true同振,false顺振
|
4440
|
+
# @type RingAll: Boolean
|
4441
|
+
|
4442
|
+
attr_accessor :SdkAppId, :SkillGroupID, :SkillGroupName, :MaxConcurrency, :RingAll
|
4443
|
+
|
4444
|
+
def initialize(sdkappid=nil, skillgroupid=nil, skillgroupname=nil, maxconcurrency=nil, ringall=nil)
|
4445
|
+
@SdkAppId = sdkappid
|
4446
|
+
@SkillGroupID = skillgroupid
|
4447
|
+
@SkillGroupName = skillgroupname
|
4448
|
+
@MaxConcurrency = maxconcurrency
|
4449
|
+
@RingAll = ringall
|
4450
|
+
end
|
4451
|
+
|
4452
|
+
def deserialize(params)
|
4453
|
+
@SdkAppId = params['SdkAppId']
|
4454
|
+
@SkillGroupID = params['SkillGroupID']
|
4455
|
+
@SkillGroupName = params['SkillGroupName']
|
4456
|
+
@MaxConcurrency = params['MaxConcurrency']
|
4457
|
+
@RingAll = params['RingAll']
|
4458
|
+
end
|
4459
|
+
end
|
4460
|
+
|
4461
|
+
# UpdateCCCSkillGroup返回参数结构体
|
4462
|
+
class UpdateCCCSkillGroupResponse < TencentCloud::Common::AbstractModel
|
4463
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4464
|
+
# @type RequestId: String
|
4465
|
+
|
4466
|
+
attr_accessor :RequestId
|
4467
|
+
|
4468
|
+
def initialize(requestid=nil)
|
4469
|
+
@RequestId = requestid
|
4470
|
+
end
|
4471
|
+
|
4472
|
+
def deserialize(params)
|
4473
|
+
@RequestId = params['RequestId']
|
4474
|
+
end
|
4475
|
+
end
|
4476
|
+
|
4429
4477
|
# UpdatePredictiveDialingCampaign请求参数结构体
|
4430
4478
|
class UpdatePredictiveDialingCampaignRequest < TencentCloud::Common::AbstractModel
|
4431
4479
|
# @param SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
|
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.774
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-03-
|
11
|
+
date: 2024-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|