Skip to content

Commit 17e4956

Browse files
committed
Support API ListAIAgentPhoneNumber.
1 parent 941767b commit 17e4956

File tree

7 files changed

+22017
-17403
lines changed

7 files changed

+22017
-17403
lines changed

AlibabacloudICE20201109.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |spec|
22

33
spec.name = "AlibabacloudICE20201109"
4-
spec.version = "6.0.1"
4+
spec.version = "6.1.0"
55
spec.license = "Apache 2.0"
66
spec.summary = "Alibaba Cloud ICE (20201109) SDK Library for Swift"
77
spec.homepage = "https://github.com/alibabacloud-sdk-swift/ice-20201109"
@@ -17,7 +17,7 @@ Pod::Spec.new do |spec|
1717
spec.watchos.deployment_target = '6.0'
1818
spec.tvos.deployment_target = '13.0'
1919

20-
spec.dependency 'Tea', '~> 1.0.0'
20+
spec.dependency 'Tea', '~> 1.0.3'
2121
spec.dependency 'TeaUtils', '~> 1.0.6'
2222
spec.dependency 'AlibabacloudOpenApi', '~> 1.0.7'
2323
spec.dependency 'AlibabaCloudOpenApiUtil', '~> 1.0.1'

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
github aliyun/tea-swift ~> 1.0.0
1+
github aliyun/tea-swift ~> 1.0.3
22
github alibabacloud-sdk-swift/tea-utils ~> 1.0.6
33
github alibabacloud-sdk-swift/darabonba-openapi ~> 1.0.7
44
github alibabacloud-sdk-swift/openapi-util ~> 1.0.1

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ let package = Package(
1515
],
1616
dependencies: [
1717
// Dependencies declare other packages that this package depends on.
18-
.package(url: "https://github.com/aliyun/tea-swift.git", from: "1.0.0"),
18+
.package(url: "https://github.com/aliyun/tea-swift.git", from: "1.0.3"),
1919
.package(url: "https://github.com/alibabacloud-sdk-swift/tea-utils", from: "1.0.6"),
2020
.package(url: "https://github.com/alibabacloud-sdk-swift/darabonba-openapi", from: "1.0.7"),
2121
.package(url: "https://github.com/alibabacloud-sdk-swift/openapi-util", from: "1.0.1"),

README-CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
要使用 [Carthage](https://github.com/Carthage/Carthage)`AlibabacloudICE20201109` 集成到你的 Xcode 项目中,需要在 `Cartfile` 中定义以下内容:
1818

1919
```ogdl
20-
github "alibabacloud-sdk-swift/ice-20201109" "6.0.1"
20+
github "alibabacloud-sdk-swift/ice-20201109" "6.1.0"
2121
```
2222

2323
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/ice-20201109" "6.0.1"
2626

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/ice-20201109.git", from: "6.0.1")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/ice-20201109.git", from: "6.1.0")
3030
]
3131
```
3232

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ English | [简体中文](README-CN.md)
1717
To integrate `AlibabacloudICE20201109` into your Xcode project using [Carthage](https://github.com/Carthage/Carthage), specify it in your `Cartfile`:
1818

1919
```ogdl
20-
github "alibabacloud-sdk-swift/ice-20201109" "6.0.1"
20+
github "alibabacloud-sdk-swift/ice-20201109" "6.1.0"
2121
```
2222

2323
### Swift Package Manager
@@ -26,7 +26,7 @@ To integrate `AlibabacloudICE20201109` into your Xcode project using [Swift Pack
2626

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/ice-20201109.git", from: "6.0.1")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/ice-20201109.git", from: "6.1.0")
3030
]
3131
```
3232

Sources/AlibabacloudICE20201109/Client.swift

Lines changed: 180 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1054,8 +1054,13 @@ open class Client : AlibabacloudOpenApi.Client {
10541054
}
10551055

10561056
@available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
1057-
public func createLivePackageOriginEndpointWithOptions(_ request: CreateLivePackageOriginEndpointRequest, _ runtime: TeaUtils.RuntimeOptions) async throws -> CreateLivePackageOriginEndpointResponse {
1058-
try TeaUtils.Client.validateModel(request)
1057+
public func createLivePackageOriginEndpointWithOptions(_ tmpReq: CreateLivePackageOriginEndpointRequest, _ runtime: TeaUtils.RuntimeOptions) async throws -> CreateLivePackageOriginEndpointResponse {
1058+
try TeaUtils.Client.validateModel(tmpReq)
1059+
var request: CreateLivePackageOriginEndpointShrinkRequest = CreateLivePackageOriginEndpointShrinkRequest([:])
1060+
AlibabaCloudOpenApiUtil.Client.convert(tmpReq, request)
1061+
if (!TeaUtils.Client.isUnset(tmpReq.livePackagingConfig)) {
1062+
request.livePackagingConfigShrink = AlibabaCloudOpenApiUtil.Client.arrayToStringWithSpecifiedStyle(tmpReq.livePackagingConfig, "LivePackagingConfig", "json")
1063+
}
10591064
var query: [String: Any] = [:]
10601065
if (!TeaUtils.Client.isUnset(request.clientToken)) {
10611066
query["ClientToken"] = request.clientToken ?? "";
@@ -1082,6 +1087,9 @@ open class Client : AlibabacloudOpenApi.Client {
10821087
if (!TeaUtils.Client.isUnset(request.ipWhitelist)) {
10831088
body["IpWhitelist"] = request.ipWhitelist ?? "";
10841089
}
1090+
if (!TeaUtils.Client.isUnset(request.livePackagingConfigShrink)) {
1091+
body["LivePackagingConfig"] = request.livePackagingConfigShrink ?? "";
1092+
}
10851093
if (!TeaUtils.Client.isUnset(request.manifestName)) {
10861094
body["ManifestName"] = request.manifestName ?? "";
10871095
}
@@ -3670,6 +3678,9 @@ open class Client : AlibabacloudOpenApi.Client {
36703678
try TeaUtils.Client.validateModel(tmpReq)
36713679
var request: GenerateAIAgentCallShrinkRequest = GenerateAIAgentCallShrinkRequest([:])
36723680
AlibabaCloudOpenApiUtil.Client.convert(tmpReq, request)
3681+
if (!TeaUtils.Client.isUnset(tmpReq.agentConfig)) {
3682+
request.agentConfigShrink = AlibabaCloudOpenApiUtil.Client.arrayToStringWithSpecifiedStyle(tmpReq.agentConfig, "AgentConfig", "json")
3683+
}
36733684
if (!TeaUtils.Client.isUnset(tmpReq.chatSyncConfig)) {
36743685
request.chatSyncConfigShrink = AlibabaCloudOpenApiUtil.Client.arrayToStringWithSpecifiedStyle(tmpReq.chatSyncConfig, "ChatSyncConfig", "json")
36753686
}
@@ -3680,6 +3691,9 @@ open class Client : AlibabacloudOpenApi.Client {
36803691
if (!TeaUtils.Client.isUnset(request.AIAgentId)) {
36813692
query["AIAgentId"] = request.AIAgentId ?? "";
36823693
}
3694+
if (!TeaUtils.Client.isUnset(request.agentConfigShrink)) {
3695+
query["AgentConfig"] = request.agentConfigShrink ?? "";
3696+
}
36833697
if (!TeaUtils.Client.isUnset(request.chatSyncConfigShrink)) {
36843698
query["ChatSyncConfig"] = request.chatSyncConfigShrink ?? "";
36853699
}
@@ -5884,6 +5898,40 @@ open class Client : AlibabacloudOpenApi.Client {
58845898
return try await listAIAgentInstanceWithOptions(request as! ListAIAgentInstanceRequest, runtime as! TeaUtils.RuntimeOptions)
58855899
}
58865900

5901+
@available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
5902+
public func listAIAgentPhoneNumberWithOptions(_ request: ListAIAgentPhoneNumberRequest, _ runtime: TeaUtils.RuntimeOptions) async throws -> ListAIAgentPhoneNumberResponse {
5903+
try TeaUtils.Client.validateModel(request)
5904+
var query: [String: Any] = [:]
5905+
if (!TeaUtils.Client.isUnset(request.pageNumber)) {
5906+
query["PageNumber"] = request.pageNumber!;
5907+
}
5908+
if (!TeaUtils.Client.isUnset(request.pageSize)) {
5909+
query["PageSize"] = request.pageSize!;
5910+
}
5911+
var req: AlibabacloudOpenApi.OpenApiRequest = AlibabacloudOpenApi.OpenApiRequest([
5912+
"query": AlibabaCloudOpenApiUtil.Client.query(query)
5913+
])
5914+
var params: AlibabacloudOpenApi.Params = AlibabacloudOpenApi.Params([
5915+
"action": "ListAIAgentPhoneNumber",
5916+
"version": "2020-11-09",
5917+
"protocol": "HTTPS",
5918+
"pathname": "/",
5919+
"method": "POST",
5920+
"authType": "AK",
5921+
"style": "RPC",
5922+
"reqBodyType": "formData",
5923+
"bodyType": "json"
5924+
])
5925+
var tmp: [String: Any] = try await callApi(params as! AlibabacloudOpenApi.Params, req as! AlibabacloudOpenApi.OpenApiRequest, runtime as! TeaUtils.RuntimeOptions)
5926+
return Tea.TeaConverter.fromMap(ListAIAgentPhoneNumberResponse(), tmp)
5927+
}
5928+
5929+
@available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
5930+
public func listAIAgentPhoneNumber(_ request: ListAIAgentPhoneNumberRequest) async throws -> ListAIAgentPhoneNumberResponse {
5931+
var runtime: TeaUtils.RuntimeOptions = TeaUtils.RuntimeOptions([:])
5932+
return try await listAIAgentPhoneNumberWithOptions(request as! ListAIAgentPhoneNumberRequest, runtime as! TeaUtils.RuntimeOptions)
5933+
}
5934+
58875935
@available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
58885936
public func listAdInsertionsWithOptions(_ request: ListAdInsertionsRequest, _ runtime: TeaUtils.RuntimeOptions) async throws -> ListAdInsertionsResponse {
58895937
try TeaUtils.Client.validateModel(request)
@@ -9576,6 +9624,9 @@ open class Client : AlibabacloudOpenApi.Client {
95769624
try TeaUtils.Client.validateModel(tmpReq)
95779625
var request: StartAIAgentInstanceShrinkRequest = StartAIAgentInstanceShrinkRequest([:])
95789626
AlibabaCloudOpenApiUtil.Client.convert(tmpReq, request)
9627+
if (!TeaUtils.Client.isUnset(tmpReq.agentConfig)) {
9628+
request.agentConfigShrink = AlibabaCloudOpenApiUtil.Client.arrayToStringWithSpecifiedStyle(tmpReq.agentConfig, "AgentConfig", "json")
9629+
}
95799630
if (!TeaUtils.Client.isUnset(tmpReq.chatSyncConfig)) {
95809631
request.chatSyncConfigShrink = AlibabaCloudOpenApiUtil.Client.arrayToStringWithSpecifiedStyle(tmpReq.chatSyncConfig, "ChatSyncConfig", "json")
95819632
}
@@ -9589,6 +9640,9 @@ open class Client : AlibabacloudOpenApi.Client {
95899640
if (!TeaUtils.Client.isUnset(request.AIAgentId)) {
95909641
query["AIAgentId"] = request.AIAgentId ?? "";
95919642
}
9643+
if (!TeaUtils.Client.isUnset(request.agentConfigShrink)) {
9644+
query["AgentConfig"] = request.agentConfigShrink ?? "";
9645+
}
95929646
if (!TeaUtils.Client.isUnset(request.chatSyncConfigShrink)) {
95939647
query["ChatSyncConfig"] = request.chatSyncConfigShrink ?? "";
95949648
}
@@ -9628,6 +9682,57 @@ open class Client : AlibabacloudOpenApi.Client {
96289682
return try await startAIAgentInstanceWithOptions(request as! StartAIAgentInstanceRequest, runtime as! TeaUtils.RuntimeOptions)
96299683
}
96309684

9685+
@available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
9686+
public func startAIAgentOutboundCallWithOptions(_ tmpReq: StartAIAgentOutboundCallRequest, _ runtime: TeaUtils.RuntimeOptions) async throws -> StartAIAgentOutboundCallResponse {
9687+
try TeaUtils.Client.validateModel(tmpReq)
9688+
var request: StartAIAgentOutboundCallShrinkRequest = StartAIAgentOutboundCallShrinkRequest([:])
9689+
AlibabaCloudOpenApiUtil.Client.convert(tmpReq, request)
9690+
if (!TeaUtils.Client.isUnset(tmpReq.config)) {
9691+
request.configShrink = AlibabaCloudOpenApiUtil.Client.arrayToStringWithSpecifiedStyle(tmpReq.config, "Config", "json")
9692+
}
9693+
var query: [String: Any] = [:]
9694+
if (!TeaUtils.Client.isUnset(request.AIAgentId)) {
9695+
query["AIAgentId"] = request.AIAgentId ?? "";
9696+
}
9697+
if (!TeaUtils.Client.isUnset(request.calledNumber)) {
9698+
query["CalledNumber"] = request.calledNumber ?? "";
9699+
}
9700+
if (!TeaUtils.Client.isUnset(request.callerNumber)) {
9701+
query["CallerNumber"] = request.callerNumber ?? "";
9702+
}
9703+
if (!TeaUtils.Client.isUnset(request.configShrink)) {
9704+
query["Config"] = request.configShrink ?? "";
9705+
}
9706+
if (!TeaUtils.Client.isUnset(request.sessionId)) {
9707+
query["SessionId"] = request.sessionId ?? "";
9708+
}
9709+
if (!TeaUtils.Client.isUnset(request.userData)) {
9710+
query["UserData"] = request.userData ?? "";
9711+
}
9712+
var req: AlibabacloudOpenApi.OpenApiRequest = AlibabacloudOpenApi.OpenApiRequest([
9713+
"query": AlibabaCloudOpenApiUtil.Client.query(query)
9714+
])
9715+
var params: AlibabacloudOpenApi.Params = AlibabacloudOpenApi.Params([
9716+
"action": "StartAIAgentOutboundCall",
9717+
"version": "2020-11-09",
9718+
"protocol": "HTTPS",
9719+
"pathname": "/",
9720+
"method": "POST",
9721+
"authType": "AK",
9722+
"style": "RPC",
9723+
"reqBodyType": "formData",
9724+
"bodyType": "json"
9725+
])
9726+
var tmp: [String: Any] = try await callApi(params as! AlibabacloudOpenApi.Params, req as! AlibabacloudOpenApi.OpenApiRequest, runtime as! TeaUtils.RuntimeOptions)
9727+
return Tea.TeaConverter.fromMap(StartAIAgentOutboundCallResponse(), tmp)
9728+
}
9729+
9730+
@available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
9731+
public func startAIAgentOutboundCall(_ request: StartAIAgentOutboundCallRequest) async throws -> StartAIAgentOutboundCallResponse {
9732+
var runtime: TeaUtils.RuntimeOptions = TeaUtils.RuntimeOptions([:])
9733+
return try await startAIAgentOutboundCallWithOptions(request as! StartAIAgentOutboundCallRequest, runtime as! TeaUtils.RuntimeOptions)
9734+
}
9735+
96319736
@available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
96329737
public func startChannelWithOptions(_ request: StartChannelRequest, _ runtime: TeaUtils.RuntimeOptions) async throws -> StartChannelResponse {
96339738
try TeaUtils.Client.validateModel(request)
@@ -9902,6 +10007,63 @@ open class Client : AlibabacloudOpenApi.Client {
990210007
return try await stopRtcRobotInstanceWithOptions(request as! StopRtcRobotInstanceRequest, runtime as! TeaUtils.RuntimeOptions)
990310008
}
990410009

10010+
@available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
10011+
public func submitAIAgentVideoAuditTaskWithOptions(_ tmpReq: SubmitAIAgentVideoAuditTaskRequest, _ runtime: TeaUtils.RuntimeOptions) async throws -> SubmitAIAgentVideoAuditTaskResponse {
10012+
try TeaUtils.Client.validateModel(tmpReq)
10013+
var request: SubmitAIAgentVideoAuditTaskShrinkRequest = SubmitAIAgentVideoAuditTaskShrinkRequest([:])
10014+
AlibabaCloudOpenApiUtil.Client.convert(tmpReq, request)
10015+
if (!TeaUtils.Client.isUnset(tmpReq.callbackConfig)) {
10016+
request.callbackConfigShrink = AlibabaCloudOpenApiUtil.Client.arrayToStringWithSpecifiedStyle(tmpReq.callbackConfig, "CallbackConfig", "json")
10017+
}
10018+
if (!TeaUtils.Client.isUnset(tmpReq.capturePolicies)) {
10019+
request.capturePoliciesShrink = AlibabaCloudOpenApiUtil.Client.arrayToStringWithSpecifiedStyle(tmpReq.capturePolicies, "CapturePolicies", "json")
10020+
}
10021+
if (!TeaUtils.Client.isUnset(tmpReq.input)) {
10022+
request.inputShrink = AlibabaCloudOpenApiUtil.Client.arrayToStringWithSpecifiedStyle(tmpReq.input, "Input", "json")
10023+
}
10024+
var query: [String: Any] = [:]
10025+
if (!TeaUtils.Client.isUnset(request.AIAgentId)) {
10026+
query["AIAgentId"] = request.AIAgentId ?? "";
10027+
}
10028+
if (!TeaUtils.Client.isUnset(request.auditInterval)) {
10029+
query["AuditInterval"] = request.auditInterval!;
10030+
}
10031+
if (!TeaUtils.Client.isUnset(request.callbackConfigShrink)) {
10032+
query["CallbackConfig"] = request.callbackConfigShrink ?? "";
10033+
}
10034+
if (!TeaUtils.Client.isUnset(request.capturePoliciesShrink)) {
10035+
query["CapturePolicies"] = request.capturePoliciesShrink ?? "";
10036+
}
10037+
if (!TeaUtils.Client.isUnset(request.inputShrink)) {
10038+
query["Input"] = request.inputShrink ?? "";
10039+
}
10040+
if (!TeaUtils.Client.isUnset(request.userData)) {
10041+
query["UserData"] = request.userData ?? "";
10042+
}
10043+
var req: AlibabacloudOpenApi.OpenApiRequest = AlibabacloudOpenApi.OpenApiRequest([
10044+
"query": AlibabaCloudOpenApiUtil.Client.query(query)
10045+
])
10046+
var params: AlibabacloudOpenApi.Params = AlibabacloudOpenApi.Params([
10047+
"action": "SubmitAIAgentVideoAuditTask",
10048+
"version": "2020-11-09",
10049+
"protocol": "HTTPS",
10050+
"pathname": "/",
10051+
"method": "POST",
10052+
"authType": "AK",
10053+
"style": "RPC",
10054+
"reqBodyType": "formData",
10055+
"bodyType": "json"
10056+
])
10057+
var tmp: [String: Any] = try await callApi(params as! AlibabacloudOpenApi.Params, req as! AlibabacloudOpenApi.OpenApiRequest, runtime as! TeaUtils.RuntimeOptions)
10058+
return Tea.TeaConverter.fromMap(SubmitAIAgentVideoAuditTaskResponse(), tmp)
10059+
}
10060+
10061+
@available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
10062+
public func submitAIAgentVideoAuditTask(_ request: SubmitAIAgentVideoAuditTaskRequest) async throws -> SubmitAIAgentVideoAuditTaskResponse {
10063+
var runtime: TeaUtils.RuntimeOptions = TeaUtils.RuntimeOptions([:])
10064+
return try await submitAIAgentVideoAuditTaskWithOptions(request as! SubmitAIAgentVideoAuditTaskRequest, runtime as! TeaUtils.RuntimeOptions)
10065+
}
10066+
990510067
@available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
990610068
public func submitASRJobWithOptions(_ request: SubmitASRJobRequest, _ runtime: TeaUtils.RuntimeOptions) async throws -> SubmitASRJobResponse {
990710069
try TeaUtils.Client.validateModel(request)
@@ -11828,10 +11990,16 @@ open class Client : AlibabacloudOpenApi.Client {
1182811990
try TeaUtils.Client.validateModel(tmpReq)
1182911991
var request: UpdateAIAgentInstanceShrinkRequest = UpdateAIAgentInstanceShrinkRequest([:])
1183011992
AlibabaCloudOpenApiUtil.Client.convert(tmpReq, request)
11993+
if (!TeaUtils.Client.isUnset(tmpReq.agentConfig)) {
11994+
request.agentConfigShrink = AlibabaCloudOpenApiUtil.Client.arrayToStringWithSpecifiedStyle(tmpReq.agentConfig, "AgentConfig", "json")
11995+
}
1183111996
if (!TeaUtils.Client.isUnset(tmpReq.templateConfig)) {
1183211997
request.templateConfigShrink = AlibabaCloudOpenApiUtil.Client.arrayToStringWithSpecifiedStyle(tmpReq.templateConfig, "TemplateConfig", "json")
1183311998
}
1183411999
var query: [String: Any] = [:]
12000+
if (!TeaUtils.Client.isUnset(request.agentConfigShrink)) {
12001+
query["AgentConfig"] = request.agentConfigShrink ?? "";
12002+
}
1183512003
if (!TeaUtils.Client.isUnset(request.instanceId)) {
1183612004
query["InstanceId"] = request.instanceId ?? "";
1183712005
}
@@ -12292,8 +12460,13 @@ open class Client : AlibabacloudOpenApi.Client {
1229212460
}
1229312461

1229412462
@available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
12295-
public func updateLivePackageOriginEndpointWithOptions(_ request: UpdateLivePackageOriginEndpointRequest, _ runtime: TeaUtils.RuntimeOptions) async throws -> UpdateLivePackageOriginEndpointResponse {
12296-
try TeaUtils.Client.validateModel(request)
12463+
public func updateLivePackageOriginEndpointWithOptions(_ tmpReq: UpdateLivePackageOriginEndpointRequest, _ runtime: TeaUtils.RuntimeOptions) async throws -> UpdateLivePackageOriginEndpointResponse {
12464+
try TeaUtils.Client.validateModel(tmpReq)
12465+
var request: UpdateLivePackageOriginEndpointShrinkRequest = UpdateLivePackageOriginEndpointShrinkRequest([:])
12466+
AlibabaCloudOpenApiUtil.Client.convert(tmpReq, request)
12467+
if (!TeaUtils.Client.isUnset(tmpReq.livePackagingConfig)) {
12468+
request.livePackagingConfigShrink = AlibabaCloudOpenApiUtil.Client.arrayToStringWithSpecifiedStyle(tmpReq.livePackagingConfig, "LivePackagingConfig", "json")
12469+
}
1229712470
var body: [String: Any] = [:]
1229812471
if (!TeaUtils.Client.isUnset(request.authorizationCode)) {
1229912472
body["AuthorizationCode"] = request.authorizationCode ?? "";
@@ -12316,6 +12489,9 @@ open class Client : AlibabacloudOpenApi.Client {
1231612489
if (!TeaUtils.Client.isUnset(request.ipWhitelist)) {
1231712490
body["IpWhitelist"] = request.ipWhitelist ?? "";
1231812491
}
12492+
if (!TeaUtils.Client.isUnset(request.livePackagingConfigShrink)) {
12493+
body["LivePackagingConfig"] = request.livePackagingConfigShrink ?? "";
12494+
}
1231912495
if (!TeaUtils.Client.isUnset(request.manifestName)) {
1232012496
body["ManifestName"] = request.manifestName ?? "";
1232112497
}

0 commit comments

Comments
 (0)