@@ -1246,6 +1246,8 @@ public class AddUserToDesktopGroupRequest : Tea.TeaModel {
1246
1246
1247
1247
public var regionId: String?
1248
1248
1249
+ public var userOuPath: String?
1250
+
1249
1251
public override init() {
1250
1252
super.init()
1251
1253
}
@@ -1275,6 +1277,9 @@ public class AddUserToDesktopGroupRequest : Tea.TeaModel {
1275
1277
if self.regionId != nil {
1276
1278
map["RegionId"] = self.regionId!
1277
1279
}
1280
+ if self.userOuPath != nil {
1281
+ map["UserOuPath"] = self.userOuPath!
1282
+ }
1278
1283
return map
1279
1284
}
1280
1285
@@ -1294,6 +1299,9 @@ public class AddUserToDesktopGroupRequest : Tea.TeaModel {
1294
1299
if dict.keys.contains("RegionId") {
1295
1300
self.regionId = dict["RegionId"] as! String
1296
1301
}
1302
+ if dict.keys.contains("UserOuPath") {
1303
+ self.userOuPath = dict["UserOuPath"] as! String
1304
+ }
1297
1305
}
1298
1306
}
1299
1307
@@ -7040,6 +7048,8 @@ public class CreateDesktopGroupRequest : Tea.TeaModel {
7040
7048
7041
7049
public var timerGroupId: String?
7042
7050
7051
+ public var userOuPath: String?
7052
+
7043
7053
public var volumeEncryptionEnabled: Bool?
7044
7054
7045
7055
public var volumeEncryptionKey: String?
@@ -7223,6 +7233,9 @@ public class CreateDesktopGroupRequest : Tea.TeaModel {
7223
7233
if self.timerGroupId != nil {
7224
7234
map["TimerGroupId"] = self.timerGroupId!
7225
7235
}
7236
+ if self.userOuPath != nil {
7237
+ map["UserOuPath"] = self.userOuPath!
7238
+ }
7226
7239
if self.volumeEncryptionEnabled != nil {
7227
7240
map["VolumeEncryptionEnabled"] = self.volumeEncryptionEnabled!
7228
7241
}
@@ -7403,6 +7416,9 @@ public class CreateDesktopGroupRequest : Tea.TeaModel {
7403
7416
if dict.keys.contains("TimerGroupId") {
7404
7417
self.timerGroupId = dict["TimerGroupId"] as! String
7405
7418
}
7419
+ if dict.keys.contains("UserOuPath") {
7420
+ self.userOuPath = dict["UserOuPath"] as! String
7421
+ }
7406
7422
if dict.keys.contains("VolumeEncryptionEnabled") {
7407
7423
self.volumeEncryptionEnabled = dict["VolumeEncryptionEnabled"] as! Bool
7408
7424
}
@@ -17931,6 +17947,8 @@ public class DescribeDesktopGroupsResponseBody : Tea.TeaModel {
17931
17947
17932
17948
public var tags: [DescribeDesktopGroupsResponseBody.DesktopGroups.Tags]?
17933
17949
17950
+ public var userOuPath: String?
17951
+
17934
17952
public var version: Int32?
17935
17953
17936
17954
public var volumeEncryptionEnabled: Bool?
@@ -18094,6 +18112,9 @@ public class DescribeDesktopGroupsResponseBody : Tea.TeaModel {
18094
18112
}
18095
18113
map["Tags"] = tmp
18096
18114
}
18115
+ if self.userOuPath != nil {
18116
+ map["UserOuPath"] = self.userOuPath!
18117
+ }
18097
18118
if self.version != nil {
18098
18119
map["Version"] = self.version!
18099
18120
}
@@ -18258,6 +18279,9 @@ public class DescribeDesktopGroupsResponseBody : Tea.TeaModel {
18258
18279
}
18259
18280
self.tags = tmp
18260
18281
}
18282
+ if dict.keys.contains("UserOuPath") {
18283
+ self.userOuPath = dict["UserOuPath"] as! String
18284
+ }
18261
18285
if dict.keys.contains("Version") {
18262
18286
self.version = dict["Version"] as! Int32
18263
18287
}
@@ -34169,6 +34193,8 @@ public class DescribeUsersInGroupResponseBody : Tea.TeaModel {
34169
34193
34170
34194
public var requestId: String?
34171
34195
34196
+ public var userOuPath: String?
34197
+
34172
34198
public var usersCount: Int32?
34173
34199
34174
34200
public override init() {
@@ -34201,6 +34227,9 @@ public class DescribeUsersInGroupResponseBody : Tea.TeaModel {
34201
34227
if self.requestId != nil {
34202
34228
map["RequestId"] = self.requestId!
34203
34229
}
34230
+ if self.userOuPath != nil {
34231
+ map["UserOuPath"] = self.userOuPath!
34232
+ }
34204
34233
if self.usersCount != nil {
34205
34234
map["UsersCount"] = self.usersCount!
34206
34235
}
@@ -34228,6 +34257,9 @@ public class DescribeUsersInGroupResponseBody : Tea.TeaModel {
34228
34257
if dict.keys.contains("RequestId") {
34229
34258
self.requestId = dict["RequestId"] as! String
34230
34259
}
34260
+ if dict.keys.contains("UserOuPath") {
34261
+ self.userOuPath = dict["UserOuPath"] as! String
34262
+ }
34231
34263
if dict.keys.contains("UsersCount") {
34232
34264
self.usersCount = dict["UsersCount"] as! Int32
34233
34265
}
@@ -48853,6 +48885,8 @@ public class RemoveUserFromDesktopGroupRequest : Tea.TeaModel {
48853
48885
48854
48886
public var regionId: String?
48855
48887
48888
+ public var userOuPath: String?
48889
+
48856
48890
public override init() {
48857
48891
super.init()
48858
48892
}
@@ -48879,6 +48913,9 @@ public class RemoveUserFromDesktopGroupRequest : Tea.TeaModel {
48879
48913
if self.regionId != nil {
48880
48914
map["RegionId"] = self.regionId!
48881
48915
}
48916
+ if self.userOuPath != nil {
48917
+ map["UserOuPath"] = self.userOuPath!
48918
+ }
48882
48919
return map
48883
48920
}
48884
48921
@@ -48895,6 +48932,9 @@ public class RemoveUserFromDesktopGroupRequest : Tea.TeaModel {
48895
48932
if dict.keys.contains("RegionId") {
48896
48933
self.regionId = dict["RegionId"] as! String
48897
48934
}
48935
+ if dict.keys.contains("UserOuPath") {
48936
+ self.userOuPath = dict["UserOuPath"] as! String
48937
+ }
48898
48938
}
48899
48939
}
48900
48940
0 commit comments