Skip to content

Commit 831782d

Browse files
committed
Update API CreateConfigGroup: add request parameters ConfigTimers.$.NotificationTime.
1 parent 1825cd3 commit 831782d

File tree

4 files changed

+29
-5
lines changed

4 files changed

+29
-5
lines changed

AlibabacloudEcd20200930.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 = "AlibabacloudEcd20200930"
4-
spec.version = "3.2.0"
4+
spec.version = "3.2.1"
55
spec.license = "Apache 2.0"
66
spec.summary = "Alibaba Cloud ecd (20200930) SDK Library for Swift"
77
spec.homepage = "https://github.com/alibabacloud-sdk-swift/ecd-20200930"

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

1919
```ogdl
20-
github "alibabacloud-sdk-swift/ecd-20200930" "3.2.0"
20+
github "alibabacloud-sdk-swift/ecd-20200930" "3.2.1"
2121
```
2222

2323
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/ecd-20200930" "3.2.0"
2626

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

1919
```ogdl
20-
github "alibabacloud-sdk-swift/ecd-20200930" "3.2.0"
20+
github "alibabacloud-sdk-swift/ecd-20200930" "3.2.1"
2121
```
2222

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

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/ecd-20200930.git", from: "3.2.0")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/ecd-20200930.git", from: "3.2.1")
3030
]
3131
```
3232

Sources/AlibabacloudEcd20200930/Models.swift

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8198,6 +8198,8 @@ public class CreateConfigGroupRequest : Tea.TeaModel {
81988198

81998199
public var interval: Int32?
82008200

8201+
public var notificationTime: Int32?
8202+
82018203
public var operationType: String?
82028204

82038205
public var processWhitelist: [String]?
@@ -8234,6 +8236,9 @@ public class CreateConfigGroupRequest : Tea.TeaModel {
82348236
if self.interval != nil {
82358237
map["Interval"] = self.interval!
82368238
}
8239+
if self.notificationTime != nil {
8240+
map["NotificationTime"] = self.notificationTime!
8241+
}
82378242
if self.operationType != nil {
82388243
map["OperationType"] = self.operationType!
82398244
}
@@ -8265,6 +8270,9 @@ public class CreateConfigGroupRequest : Tea.TeaModel {
82658270
if dict.keys.contains("Interval") {
82668271
self.interval = dict["Interval"] as! Int32
82678272
}
8273+
if dict.keys.contains("NotificationTime") {
8274+
self.notificationTime = dict["NotificationTime"] as! Int32
8275+
}
82688276
if dict.keys.contains("OperationType") {
82698277
self.operationType = dict["OperationType"] as! String
82708278
}
@@ -36183,6 +36191,8 @@ public class DescribeTimerGroupResponseBody : Tea.TeaModel {
3618336191

3618436192
public var interval: Int32?
3618536193

36194+
public var notificationTime: Int32?
36195+
3618636196
public var operationType: String?
3618736197

3618836198
public var processWhitelist: [String]?
@@ -36219,6 +36229,9 @@ public class DescribeTimerGroupResponseBody : Tea.TeaModel {
3621936229
if self.interval != nil {
3622036230
map["Interval"] = self.interval!
3622136231
}
36232+
if self.notificationTime != nil {
36233+
map["NotificationTime"] = self.notificationTime!
36234+
}
3622236235
if self.operationType != nil {
3622336236
map["OperationType"] = self.operationType!
3622436237
}
@@ -36250,6 +36263,9 @@ public class DescribeTimerGroupResponseBody : Tea.TeaModel {
3625036263
if dict.keys.contains("Interval") {
3625136264
self.interval = dict["Interval"] as! Int32
3625236265
}
36266+
if dict.keys.contains("NotificationTime") {
36267+
self.notificationTime = dict["NotificationTime"] as! Int32
36268+
}
3625336269
if dict.keys.contains("OperationType") {
3625436270
self.operationType = dict["OperationType"] as! String
3625536271
}
@@ -52819,6 +52835,8 @@ public class ModifyTimerGroupRequest : Tea.TeaModel {
5281952835

5282052836
public var interval: Int32?
5282152837

52838+
public var notificationTime: Int32?
52839+
5282252840
public var operationType: String?
5282352841

5282452842
public var processWhitelist: [String]?
@@ -52855,6 +52873,9 @@ public class ModifyTimerGroupRequest : Tea.TeaModel {
5285552873
if self.interval != nil {
5285652874
map["Interval"] = self.interval!
5285752875
}
52876+
if self.notificationTime != nil {
52877+
map["NotificationTime"] = self.notificationTime!
52878+
}
5285852879
if self.operationType != nil {
5285952880
map["OperationType"] = self.operationType!
5286052881
}
@@ -52886,6 +52907,9 @@ public class ModifyTimerGroupRequest : Tea.TeaModel {
5288652907
if dict.keys.contains("Interval") {
5288752908
self.interval = dict["Interval"] as! Int32
5288852909
}
52910+
if dict.keys.contains("NotificationTime") {
52911+
self.notificationTime = dict["NotificationTime"] as! Int32
52912+
}
5288952913
if dict.keys.contains("OperationType") {
5289052914
self.operationType = dict["OperationType"] as! String
5289152915
}

0 commit comments

Comments
 (0)