Skip to content

Commit 43f9ef3

Browse files
committed
Update API DescribeAuditLogRecords: add response parameters Body.Items.$.ExecuteTimestamp.
1 parent 5f2cac2 commit 43f9ef3

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

adb-20211201/AlibabacloudAdb20211201.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 = "AlibabacloudAdb20211201"
4-
spec.version = "4.5.0"
4+
spec.version = "4.5.1"
55
spec.license = "Apache 2.0"
66
spec.summary = "Alibaba Cloud adb (20211201) SDK Library for Swift"
77
spec.homepage = "https://github.com/alibabacloud-sdk-swift/adb-20211201"

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

1919
```ogdl
20-
github "alibabacloud-sdk-swift/adb-20211201" "4.5.0"
20+
github "alibabacloud-sdk-swift/adb-20211201" "4.5.1"
2121
```
2222

2323
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/adb-20211201" "4.5.0"
2626

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/adb-20211201.git", from: "4.5.0")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/adb-20211201.git", from: "4.5.1")
3030
]
3131
```
3232

adb-20211201/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 `AlibabacloudAdb20211201` into your Xcode project using [Carthage](https://github.com/Carthage/Carthage), specify it in your `Cartfile`:
1818

1919
```ogdl
20-
github "alibabacloud-sdk-swift/adb-20211201" "4.5.0"
20+
github "alibabacloud-sdk-swift/adb-20211201" "4.5.1"
2121
```
2222

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

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/adb-20211201.git", from: "4.5.0")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/adb-20211201.git", from: "4.5.1")
3030
]
3131
```
3232

adb-20211201/Sources/AlibabacloudAdb20211201/Models.swift

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20473,6 +20473,8 @@ public class DescribeAuditLogRecordsResponseBody : Tea.TeaModel {
2047320473

2047420474
public var executeTime: String?
2047520475

20476+
public var executeTimestamp: Int64?
20477+
2047620478
public var hostAddress: String?
2047720479

2047820480
public var processID: String?
@@ -20510,6 +20512,9 @@ public class DescribeAuditLogRecordsResponseBody : Tea.TeaModel {
2051020512
if self.executeTime != nil {
2051120513
map["ExecuteTime"] = self.executeTime!
2051220514
}
20515+
if self.executeTimestamp != nil {
20516+
map["ExecuteTimestamp"] = self.executeTimestamp!
20517+
}
2051320518
if self.hostAddress != nil {
2051420519
map["HostAddress"] = self.hostAddress!
2051520520
}
@@ -20545,6 +20550,9 @@ public class DescribeAuditLogRecordsResponseBody : Tea.TeaModel {
2054520550
if let value = dict["ExecuteTime"] as? String {
2054620551
self.executeTime = value
2054720552
}
20553+
if let value = dict["ExecuteTimestamp"] as? Int64 {
20554+
self.executeTimestamp = value
20555+
}
2054820556
if let value = dict["HostAddress"] as? String {
2054920557
self.hostAddress = value
2055020558
}

0 commit comments

Comments
 (0)