Skip to content

Commit c8a77f3

Browse files
committed
Update API GetBatchMediaProducingJob: delete param Signature.
1 parent b978843 commit c8a77f3

File tree

5 files changed

+15
-62
lines changed

5 files changed

+15
-62
lines changed

AlibabacloudICE20201109.podspec

Lines changed: 1 addition & 1 deletion
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 = "2.6.0"
4+
spec.version = "3.0.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"

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" "2.6.0"
20+
github "alibabacloud-sdk-swift/ice-20201109" "3.0.0"
2121
```
2222

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

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/ice-20201109.git", from: "2.6.0")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/ice-20201109.git", from: "3.0.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" "2.6.0"
20+
github "alibabacloud-sdk-swift/ice-20201109" "3.0.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: "2.6.0")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/ice-20201109.git", from: "3.0.0")
3030
]
3131
```
3232

Sources/AlibabacloudICE20201109/Client.swift

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2207,21 +2207,6 @@ open class Client : AlibabacloudOpenApi.Client {
22072207
if (!TeaUtils.Client.isUnset(request.jobId)) {
22082208
query["JobId"] = request.jobId ?? "";
22092209
}
2210-
if (!TeaUtils.Client.isUnset(request.signature)) {
2211-
query["Signature"] = request.signature ?? "";
2212-
}
2213-
if (!TeaUtils.Client.isUnset(request.signatureMehtod)) {
2214-
query["SignatureMehtod"] = request.signatureMehtod ?? "";
2215-
}
2216-
if (!TeaUtils.Client.isUnset(request.signatureNonce)) {
2217-
query["SignatureNonce"] = request.signatureNonce ?? "";
2218-
}
2219-
if (!TeaUtils.Client.isUnset(request.signatureType)) {
2220-
query["SignatureType"] = request.signatureType ?? "";
2221-
}
2222-
if (!TeaUtils.Client.isUnset(request.signatureVersion)) {
2223-
query["SignatureVersion"] = request.signatureVersion ?? "";
2224-
}
22252210
var req: AlibabacloudOpenApi.OpenApiRequest = AlibabacloudOpenApi.OpenApiRequest([
22262211
"query": AlibabaCloudOpenApiUtil.Client.query(query)
22272212
])

Sources/AlibabacloudICE20201109/Models.swift

Lines changed: 10 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -10567,16 +10567,6 @@ public class GetAvatarTrainingJobResponse : Tea.TeaModel {
1056710567
public class GetBatchMediaProducingJobRequest : Tea.TeaModel {
1056810568
public var jobId: String?
1056910569

10570-
public var signature: String?
10571-
10572-
public var signatureMehtod: String?
10573-
10574-
public var signatureNonce: String?
10575-
10576-
public var signatureType: String?
10577-
10578-
public var signatureVersion: String?
10579-
1058010570
public override init() {
1058110571
super.init()
1058210572
}
@@ -10594,43 +10584,13 @@ public class GetBatchMediaProducingJobRequest : Tea.TeaModel {
1059410584
if self.jobId != nil {
1059510585
map["JobId"] = self.jobId!
1059610586
}
10597-
if self.signature != nil {
10598-
map["Signature"] = self.signature!
10599-
}
10600-
if self.signatureMehtod != nil {
10601-
map["SignatureMehtod"] = self.signatureMehtod!
10602-
}
10603-
if self.signatureNonce != nil {
10604-
map["SignatureNonce"] = self.signatureNonce!
10605-
}
10606-
if self.signatureType != nil {
10607-
map["SignatureType"] = self.signatureType!
10608-
}
10609-
if self.signatureVersion != nil {
10610-
map["SignatureVersion"] = self.signatureVersion!
10611-
}
1061210587
return map
1061310588
}
1061410589

1061510590
public override func fromMap(_ dict: [String: Any]) -> Void {
1061610591
if dict.keys.contains("JobId") {
1061710592
self.jobId = dict["JobId"] as! String
1061810593
}
10619-
if dict.keys.contains("Signature") {
10620-
self.signature = dict["Signature"] as! String
10621-
}
10622-
if dict.keys.contains("SignatureMehtod") {
10623-
self.signatureMehtod = dict["SignatureMehtod"] as! String
10624-
}
10625-
if dict.keys.contains("SignatureNonce") {
10626-
self.signatureNonce = dict["SignatureNonce"] as! String
10627-
}
10628-
if dict.keys.contains("SignatureType") {
10629-
self.signatureType = dict["SignatureType"] as! String
10630-
}
10631-
if dict.keys.contains("SignatureVersion") {
10632-
self.signatureVersion = dict["SignatureVersion"] as! String
10633-
}
1063410594
}
1063510595
}
1063610596

@@ -10647,6 +10607,8 @@ public class GetBatchMediaProducingJobResponseBody : Tea.TeaModel {
1064710607

1064810608
public var mediaURL: String?
1064910609

10610+
public var projectId: String?
10611+
1065010612
public var status: String?
1065110613

1065210614
public override init() {
@@ -10678,6 +10640,9 @@ public class GetBatchMediaProducingJobResponseBody : Tea.TeaModel {
1067810640
if self.mediaURL != nil {
1067910641
map["MediaURL"] = self.mediaURL!
1068010642
}
10643+
if self.projectId != nil {
10644+
map["ProjectId"] = self.projectId!
10645+
}
1068110646
if self.status != nil {
1068210647
map["Status"] = self.status!
1068310648
}
@@ -10700,6 +10665,9 @@ public class GetBatchMediaProducingJobResponseBody : Tea.TeaModel {
1070010665
if dict.keys.contains("MediaURL") {
1070110666
self.mediaURL = dict["MediaURL"] as! String
1070210667
}
10668+
if dict.keys.contains("ProjectId") {
10669+
self.projectId = dict["ProjectId"] as! String
10670+
}
1070310671
if dict.keys.contains("Status") {
1070410672
self.status = dict["Status"] as! String
1070510673
}
@@ -29925,7 +29893,7 @@ public class ListDNADBResponseBody : Tea.TeaModel {
2992529893

2992629894
public var description_: String?
2992729895

29928-
public var model: Int32?
29896+
public var model: String?
2992929897

2993029898
public var name: String?
2993129899

@@ -29971,7 +29939,7 @@ public class ListDNADBResponseBody : Tea.TeaModel {
2997129939
self.description_ = dict["Description"] as! String
2997229940
}
2997329941
if dict.keys.contains("Model") {
29974-
self.model = dict["Model"] as! Int32
29942+
self.model = dict["Model"] as! String
2997529943
}
2997629944
if dict.keys.contains("Name") {
2997729945
self.name = dict["Name"] as! String

0 commit comments

Comments
 (0)