@@ -14814,6 +14814,8 @@ public class CreateApplicationRequest : Tea.TeaModel {
14814
14814
14815
14815
public var slsConfigs: String?
14816
14816
14817
+ public var startupProbe: String?
14818
+
14817
14819
public var terminationGracePeriodSeconds: Int32?
14818
14820
14819
14821
public var timezone: String?
@@ -15054,6 +15056,9 @@ public class CreateApplicationRequest : Tea.TeaModel {
15054
15056
if self.slsConfigs != nil {
15055
15057
map["SlsConfigs"] = self.slsConfigs!
15056
15058
}
15059
+ if self.startupProbe != nil {
15060
+ map["StartupProbe"] = self.startupProbe!
15061
+ }
15057
15062
if self.terminationGracePeriodSeconds != nil {
15058
15063
map["TerminationGracePeriodSeconds"] = self.terminationGracePeriodSeconds!
15059
15064
}
@@ -15304,6 +15309,9 @@ public class CreateApplicationRequest : Tea.TeaModel {
15304
15309
if let value = dict["SlsConfigs"] as? String {
15305
15310
self.slsConfigs = value
15306
15311
}
15312
+ if let value = dict["StartupProbe"] as? String {
15313
+ self.startupProbe = value
15314
+ }
15307
15315
if let value = dict["TerminationGracePeriodSeconds"] as? Int32 {
15308
15316
self.terminationGracePeriodSeconds = value
15309
15317
}
@@ -15465,6 +15473,8 @@ public class CreateApplicationShrinkRequest : Tea.TeaModel {
15465
15473
15466
15474
public var slsConfigs: String?
15467
15475
15476
+ public var startupProbe: String?
15477
+
15468
15478
public var terminationGracePeriodSeconds: Int32?
15469
15479
15470
15480
public var timezone: String?
@@ -15697,6 +15707,9 @@ public class CreateApplicationShrinkRequest : Tea.TeaModel {
15697
15707
if self.slsConfigs != nil {
15698
15708
map["SlsConfigs"] = self.slsConfigs!
15699
15709
}
15710
+ if self.startupProbe != nil {
15711
+ map["StartupProbe"] = self.startupProbe!
15712
+ }
15700
15713
if self.terminationGracePeriodSeconds != nil {
15701
15714
map["TerminationGracePeriodSeconds"] = self.terminationGracePeriodSeconds!
15702
15715
}
@@ -15927,6 +15940,9 @@ public class CreateApplicationShrinkRequest : Tea.TeaModel {
15927
15940
if let value = dict["SlsConfigs"] as? String {
15928
15941
self.slsConfigs = value
15929
15942
}
15943
+ if let value = dict["StartupProbe"] as? String {
15944
+ self.startupProbe = value
15945
+ }
15930
15946
if let value = dict["TerminationGracePeriodSeconds"] as? Int32 {
15931
15947
self.terminationGracePeriodSeconds = value
15932
15948
}
@@ -22208,6 +22224,8 @@ public class DeployApplicationRequest : Tea.TeaModel {
22208
22224
22209
22225
public var slsConfigs: String?
22210
22226
22227
+ public var startupProbe: String?
22228
+
22211
22229
public var swimlanePvtzDiscoverySvc: String?
22212
22230
22213
22231
public var terminationGracePeriodSeconds: Int32?
@@ -22441,6 +22459,9 @@ public class DeployApplicationRequest : Tea.TeaModel {
22441
22459
if self.slsConfigs != nil {
22442
22460
map["SlsConfigs"] = self.slsConfigs!
22443
22461
}
22462
+ if self.startupProbe != nil {
22463
+ map["StartupProbe"] = self.startupProbe!
22464
+ }
22444
22465
if self.swimlanePvtzDiscoverySvc != nil {
22445
22466
map["SwimlanePvtzDiscoverySvc"] = self.swimlanePvtzDiscoverySvc!
22446
22467
}
@@ -22685,6 +22706,9 @@ public class DeployApplicationRequest : Tea.TeaModel {
22685
22706
if let value = dict["SlsConfigs"] as? String {
22686
22707
self.slsConfigs = value
22687
22708
}
22709
+ if let value = dict["StartupProbe"] as? String {
22710
+ self.startupProbe = value
22711
+ }
22688
22712
if let value = dict["SwimlanePvtzDiscoverySvc"] as? String {
22689
22713
self.swimlanePvtzDiscoverySvc = value
22690
22714
}
@@ -22843,6 +22867,8 @@ public class DeployApplicationShrinkRequest : Tea.TeaModel {
22843
22867
22844
22868
public var slsConfigs: String?
22845
22869
22870
+ public var startupProbe: String?
22871
+
22846
22872
public var swimlanePvtzDiscoverySvc: String?
22847
22873
22848
22874
public var terminationGracePeriodSeconds: Int32?
@@ -23068,6 +23094,9 @@ public class DeployApplicationShrinkRequest : Tea.TeaModel {
23068
23094
if self.slsConfigs != nil {
23069
23095
map["SlsConfigs"] = self.slsConfigs!
23070
23096
}
23097
+ if self.startupProbe != nil {
23098
+ map["StartupProbe"] = self.startupProbe!
23099
+ }
23071
23100
if self.swimlanePvtzDiscoverySvc != nil {
23072
23101
map["SwimlanePvtzDiscoverySvc"] = self.swimlanePvtzDiscoverySvc!
23073
23102
}
@@ -23292,6 +23321,9 @@ public class DeployApplicationShrinkRequest : Tea.TeaModel {
23292
23321
if let value = dict["SlsConfigs"] as? String {
23293
23322
self.slsConfigs = value
23294
23323
}
23324
+ if let value = dict["StartupProbe"] as? String {
23325
+ self.startupProbe = value
23326
+ }
23295
23327
if let value = dict["SwimlanePvtzDiscoverySvc"] as? String {
23296
23328
self.swimlanePvtzDiscoverySvc = value
23297
23329
}
@@ -24787,6 +24819,8 @@ public class DescribeApplicationConfigResponseBody : Tea.TeaModel {
24787
24819
24788
24820
public var slsConfigs: String?
24789
24821
24822
+ public var startupProbe: String?
24823
+
24790
24824
public var swimlanePvtzDiscovery: String?
24791
24825
24792
24826
public var tags: [DescribeApplicationConfigResponseBody.Data.Tags]?
@@ -25064,6 +25098,9 @@ public class DescribeApplicationConfigResponseBody : Tea.TeaModel {
25064
25098
if self.slsConfigs != nil {
25065
25099
map["SlsConfigs"] = self.slsConfigs!
25066
25100
}
25101
+ if self.startupProbe != nil {
25102
+ map["StartupProbe"] = self.startupProbe!
25103
+ }
25067
25104
if self.swimlanePvtzDiscovery != nil {
25068
25105
map["SwimlanePvtzDiscovery"] = self.swimlanePvtzDiscovery!
25069
25106
}
@@ -25382,6 +25419,9 @@ public class DescribeApplicationConfigResponseBody : Tea.TeaModel {
25382
25419
if let value = dict["SlsConfigs"] as? String {
25383
25420
self.slsConfigs = value
25384
25421
}
25422
+ if let value = dict["StartupProbe"] as? String {
25423
+ self.startupProbe = value
25424
+ }
25385
25425
if let value = dict["SwimlanePvtzDiscovery"] as? String {
25386
25426
self.swimlanePvtzDiscovery = value
25387
25427
}
0 commit comments