Skip to content

Commit a0179fd

Browse files
committed
Update API GetConfig: add response parameters Body.GmtCreateTime.
1 parent c9a925f commit a0179fd

File tree

4 files changed

+37
-5
lines changed

4 files changed

+37
-5
lines changed

AlibabacloudAIWorkSpace20210204.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 = "AlibabacloudAIWorkSpace20210204"
4-
spec.version = "4.4.2"
4+
spec.version = "4.4.3"
55
spec.license = "Apache 2.0"
66
spec.summary = "Alibaba Cloud AIWorkSpace (20210204) SDK Library for Swift"
77
spec.homepage = "https://github.com/alibabacloud-sdk-swift/aiworkspace-20210204"

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)`AlibabacloudAIWorkSpace20210204` 集成到你的 Xcode 项目中,需要在 `Cartfile` 中定义以下内容:
1818

1919
```ogdl
20-
github "alibabacloud-sdk-swift/aiworkspace-20210204" "4.4.2"
20+
github "alibabacloud-sdk-swift/aiworkspace-20210204" "4.4.3"
2121
```
2222

2323
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/aiworkspace-20210204" "4.4.2"
2626

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/aiworkspace-20210204.git", from: "4.4.2")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/aiworkspace-20210204.git", from: "4.4.3")
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 `AlibabacloudAIWorkSpace20210204` into your Xcode project using [Carthage](https://github.com/Carthage/Carthage), specify it in your `Cartfile`:
1818

1919
```ogdl
20-
github "alibabacloud-sdk-swift/aiworkspace-20210204" "4.4.2"
20+
github "alibabacloud-sdk-swift/aiworkspace-20210204" "4.4.3"
2121
```
2222

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

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/aiworkspace-20210204.git", from: "4.4.2")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/aiworkspace-20210204.git", from: "4.4.3")
3030
]
3131
```
3232

Sources/AlibabacloudAIWorkSpace20210204/Models.swift

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10434,6 +10434,10 @@ public class GetConfigResponseBody : Tea.TeaModel {
1043410434

1043510435
public var configValue: String?
1043610436

10437+
public var gmtCreateTime: String?
10438+
10439+
public var gmtModifiedTime: String?
10440+
1043710441
public var labels: [GetConfigResponseBody.Labels]?
1043810442

1043910443
public var requestId: String?
@@ -10463,6 +10467,12 @@ public class GetConfigResponseBody : Tea.TeaModel {
1046310467
if self.configValue != nil {
1046410468
map["ConfigValue"] = self.configValue!
1046510469
}
10470+
if self.gmtCreateTime != nil {
10471+
map["GmtCreateTime"] = self.gmtCreateTime!
10472+
}
10473+
if self.gmtModifiedTime != nil {
10474+
map["GmtModifiedTime"] = self.gmtModifiedTime!
10475+
}
1046610476
if self.labels != nil {
1046710477
var tmp : [Any] = []
1046810478
for k in self.labels! {
@@ -10490,6 +10500,12 @@ public class GetConfigResponseBody : Tea.TeaModel {
1049010500
if let value = dict["ConfigValue"] as? String {
1049110501
self.configValue = value
1049210502
}
10503+
if let value = dict["GmtCreateTime"] as? String {
10504+
self.gmtCreateTime = value
10505+
}
10506+
if let value = dict["GmtModifiedTime"] as? String {
10507+
self.gmtModifiedTime = value
10508+
}
1049310509
if let value = dict["Labels"] as? [Any?] {
1049410510
var tmp : [GetConfigResponseBody.Labels] = []
1049510511
for v in value {
@@ -14370,6 +14386,10 @@ public class ListConfigsResponseBody : Tea.TeaModel {
1437014386

1437114387
public var configValue: String?
1437214388

14389+
public var gmtCreateTime: String?
14390+
14391+
public var gmtModifiedTime: String?
14392+
1437314393
public var labels: [ListConfigsResponseBody.Configs.Labels]?
1437414394

1437514395
public override init() {
@@ -14392,6 +14412,12 @@ public class ListConfigsResponseBody : Tea.TeaModel {
1439214412
if self.configValue != nil {
1439314413
map["ConfigValue"] = self.configValue!
1439414414
}
14415+
if self.gmtCreateTime != nil {
14416+
map["GmtCreateTime"] = self.gmtCreateTime!
14417+
}
14418+
if self.gmtModifiedTime != nil {
14419+
map["GmtModifiedTime"] = self.gmtModifiedTime!
14420+
}
1439514421
if self.labels != nil {
1439614422
var tmp : [Any] = []
1439714423
for k in self.labels! {
@@ -14410,6 +14436,12 @@ public class ListConfigsResponseBody : Tea.TeaModel {
1441014436
if let value = dict["ConfigValue"] as? String {
1441114437
self.configValue = value
1441214438
}
14439+
if let value = dict["GmtCreateTime"] as? String {
14440+
self.gmtCreateTime = value
14441+
}
14442+
if let value = dict["GmtModifiedTime"] as? String {
14443+
self.gmtModifiedTime = value
14444+
}
1441314445
if let value = dict["Labels"] as? [Any?] {
1441414446
var tmp : [ListConfigsResponseBody.Configs.Labels] = []
1441514447
for v in value {

0 commit comments

Comments
 (0)