@@ -24,7 +24,7 @@ public AcsSystem(
24
24
List < string > connectedAccountIds = default ,
25
25
string createdAt = default ,
26
26
string ? defaultCredentialManagerAcsSystemId = default ,
27
- List < Errors > errors = default ,
27
+ List < AcsSystemErrors > errors = default ,
28
28
AcsSystem . ExternalTypeEnum ? externalType = default ,
29
29
string ? externalTypeDisplayName = default ,
30
30
string imageAltText = default ,
@@ -35,7 +35,7 @@ public AcsSystem(
35
35
AcsSystem . SystemTypeEnum ? systemType = default ,
36
36
string ? systemTypeDisplayName = default ,
37
37
AcsSystemVisionlineMetadata ? visionlineMetadata = default ,
38
- List < Warnings > warnings = default ,
38
+ List < AcsSystemWarnings > warnings = default ,
39
39
string workspaceId = default
40
40
)
41
41
{
@@ -65,37 +65,43 @@ public AcsSystem(
65
65
66
66
[ JsonConverter ( typeof ( JsonSubtypes ) , "error_code" ) ]
67
67
[ JsonSubtypes . KnownSubType (
68
- typeof ( ErrorsSaltoKsCertificationExpired ) ,
68
+ typeof ( AcsSystemErrorsSaltoKsCertificationExpired ) ,
69
69
"salto_ks_certification_expired"
70
70
) ]
71
- [ JsonSubtypes . KnownSubType ( typeof ( ErrorsAccountDisconnected ) , "account_disconnected" ) ]
72
- [ JsonSubtypes . KnownSubType ( typeof ( ErrorsAcsSystemDisconnected ) , "acs_system_disconnected" ) ]
73
71
[ JsonSubtypes . KnownSubType (
74
- typeof ( ErrorsSaltoKsSubscriptionLimitExceeded ) ,
72
+ typeof ( AcsSystemErrorsAccountDisconnected ) ,
73
+ "account_disconnected"
74
+ ) ]
75
+ [ JsonSubtypes . KnownSubType (
76
+ typeof ( AcsSystemErrorsAcsSystemDisconnected ) ,
77
+ "acs_system_disconnected"
78
+ ) ]
79
+ [ JsonSubtypes . KnownSubType (
80
+ typeof ( AcsSystemErrorsSaltoKsSubscriptionLimitExceeded ) ,
75
81
"salto_ks_subscription_limit_exceeded"
76
82
) ]
77
83
[ JsonSubtypes . KnownSubType (
78
- typeof ( ErrorsVisionlineInstanceUnreachable ) ,
84
+ typeof ( AcsSystemErrorsVisionlineInstanceUnreachable ) ,
79
85
"visionline_instance_unreachable"
80
86
) ]
81
87
[ JsonSubtypes . KnownSubType (
82
- typeof ( ErrorsSeamBridgeDisconnected ) ,
88
+ typeof ( AcsSystemErrorsSeamBridgeDisconnected ) ,
83
89
"seam_bridge_disconnected"
84
90
) ]
85
- public abstract class Errors
91
+ public abstract class AcsSystemErrors
86
92
{
87
93
public abstract string ErrorCode { get ; }
88
94
89
95
public abstract override string ToString ( ) ;
90
96
}
91
97
92
- [ DataContract ( Name = "seamModel_errorsSeamBridgeDisconnected_model " ) ]
93
- public class ErrorsSeamBridgeDisconnected : Errors
98
+ [ DataContract ( Name = "seamModel_acsSystemErrorsSeamBridgeDisconnected_model " ) ]
99
+ public class AcsSystemErrorsSeamBridgeDisconnected : AcsSystemErrors
94
100
{
95
101
[ JsonConstructorAttribute ]
96
- protected ErrorsSeamBridgeDisconnected ( ) { }
102
+ protected AcsSystemErrorsSeamBridgeDisconnected ( ) { }
97
103
98
- public ErrorsSeamBridgeDisconnected (
104
+ public AcsSystemErrorsSeamBridgeDisconnected (
99
105
string createdAt = default ,
100
106
string errorCode = default ,
101
107
string message = default
@@ -135,13 +141,13 @@ public override string ToString()
135
141
}
136
142
}
137
143
138
- [ DataContract ( Name = "seamModel_errorsVisionlineInstanceUnreachable_model " ) ]
139
- public class ErrorsVisionlineInstanceUnreachable : Errors
144
+ [ DataContract ( Name = "seamModel_acsSystemErrorsVisionlineInstanceUnreachable_model " ) ]
145
+ public class AcsSystemErrorsVisionlineInstanceUnreachable : AcsSystemErrors
140
146
{
141
147
[ JsonConstructorAttribute ]
142
- protected ErrorsVisionlineInstanceUnreachable ( ) { }
148
+ protected AcsSystemErrorsVisionlineInstanceUnreachable ( ) { }
143
149
144
- public ErrorsVisionlineInstanceUnreachable (
150
+ public AcsSystemErrorsVisionlineInstanceUnreachable (
145
151
string createdAt = default ,
146
152
string errorCode = default ,
147
153
string message = default
@@ -181,13 +187,13 @@ public override string ToString()
181
187
}
182
188
}
183
189
184
- [ DataContract ( Name = "seamModel_errorsSaltoKsSubscriptionLimitExceeded_model " ) ]
185
- public class ErrorsSaltoKsSubscriptionLimitExceeded : Errors
190
+ [ DataContract ( Name = "seamModel_acsSystemErrorsSaltoKsSubscriptionLimitExceeded_model " ) ]
191
+ public class AcsSystemErrorsSaltoKsSubscriptionLimitExceeded : AcsSystemErrors
186
192
{
187
193
[ JsonConstructorAttribute ]
188
- protected ErrorsSaltoKsSubscriptionLimitExceeded ( ) { }
194
+ protected AcsSystemErrorsSaltoKsSubscriptionLimitExceeded ( ) { }
189
195
190
- public ErrorsSaltoKsSubscriptionLimitExceeded (
196
+ public AcsSystemErrorsSaltoKsSubscriptionLimitExceeded (
191
197
string createdAt = default ,
192
198
string errorCode = default ,
193
199
string message = default
@@ -227,13 +233,13 @@ public override string ToString()
227
233
}
228
234
}
229
235
230
- [ DataContract ( Name = "seamModel_errorsAcsSystemDisconnected_model " ) ]
231
- public class ErrorsAcsSystemDisconnected : Errors
236
+ [ DataContract ( Name = "seamModel_acsSystemErrorsAcsSystemDisconnected_model " ) ]
237
+ public class AcsSystemErrorsAcsSystemDisconnected : AcsSystemErrors
232
238
{
233
239
[ JsonConstructorAttribute ]
234
- protected ErrorsAcsSystemDisconnected ( ) { }
240
+ protected AcsSystemErrorsAcsSystemDisconnected ( ) { }
235
241
236
- public ErrorsAcsSystemDisconnected (
242
+ public AcsSystemErrorsAcsSystemDisconnected (
237
243
string createdAt = default ,
238
244
string errorCode = default ,
239
245
string message = default
@@ -273,13 +279,13 @@ public override string ToString()
273
279
}
274
280
}
275
281
276
- [ DataContract ( Name = "seamModel_errorsAccountDisconnected_model " ) ]
277
- public class ErrorsAccountDisconnected : Errors
282
+ [ DataContract ( Name = "seamModel_acsSystemErrorsAccountDisconnected_model " ) ]
283
+ public class AcsSystemErrorsAccountDisconnected : AcsSystemErrors
278
284
{
279
285
[ JsonConstructorAttribute ]
280
- protected ErrorsAccountDisconnected ( ) { }
286
+ protected AcsSystemErrorsAccountDisconnected ( ) { }
281
287
282
- public ErrorsAccountDisconnected (
288
+ public AcsSystemErrorsAccountDisconnected (
283
289
string createdAt = default ,
284
290
string errorCode = default ,
285
291
string message = default
@@ -319,13 +325,13 @@ public override string ToString()
319
325
}
320
326
}
321
327
322
- [ DataContract ( Name = "seamModel_errorsSaltoKsCertificationExpired_model " ) ]
323
- public class ErrorsSaltoKsCertificationExpired : Errors
328
+ [ DataContract ( Name = "seamModel_acsSystemErrorsSaltoKsCertificationExpired_model " ) ]
329
+ public class AcsSystemErrorsSaltoKsCertificationExpired : AcsSystemErrors
324
330
{
325
331
[ JsonConstructorAttribute ]
326
- protected ErrorsSaltoKsCertificationExpired ( ) { }
332
+ protected AcsSystemErrorsSaltoKsCertificationExpired ( ) { }
327
333
328
- public ErrorsSaltoKsCertificationExpired (
334
+ public AcsSystemErrorsSaltoKsCertificationExpired (
329
335
string createdAt = default ,
330
336
string errorCode = default ,
331
337
string message = default
@@ -459,27 +465,29 @@ public enum SystemTypeEnum
459
465
460
466
[ JsonConverter ( typeof ( JsonSubtypes ) , "warning_code" ) ]
461
467
[ JsonSubtypes . KnownSubType (
462
- typeof ( WarningsTimeZoneDoesNotMatchLocation ) ,
468
+ typeof ( AcsSystemWarningsTimeZoneDoesNotMatchLocation ) ,
463
469
"time_zone_does_not_match_location"
464
470
) ]
465
471
[ JsonSubtypes . KnownSubType (
466
- typeof ( WarningsSaltoKsSubscriptionLimitAlmostReached ) ,
472
+ typeof ( AcsSystemWarningsSaltoKsSubscriptionLimitAlmostReached ) ,
467
473
"salto_ks_subscription_limit_almost_reached"
468
474
) ]
469
- public abstract class Warnings
475
+ public abstract class AcsSystemWarnings
470
476
{
471
477
public abstract string WarningCode { get ; }
472
478
473
479
public abstract override string ToString ( ) ;
474
480
}
475
481
476
- [ DataContract ( Name = "seamModel_warningsSaltoKsSubscriptionLimitAlmostReached_model" ) ]
477
- public class WarningsSaltoKsSubscriptionLimitAlmostReached : Warnings
482
+ [ DataContract (
483
+ Name = "seamModel_acsSystemWarningsSaltoKsSubscriptionLimitAlmostReached_model"
484
+ ) ]
485
+ public class AcsSystemWarningsSaltoKsSubscriptionLimitAlmostReached : AcsSystemWarnings
478
486
{
479
487
[ JsonConstructorAttribute ]
480
- protected WarningsSaltoKsSubscriptionLimitAlmostReached ( ) { }
488
+ protected AcsSystemWarningsSaltoKsSubscriptionLimitAlmostReached ( ) { }
481
489
482
- public WarningsSaltoKsSubscriptionLimitAlmostReached (
490
+ public AcsSystemWarningsSaltoKsSubscriptionLimitAlmostReached (
483
491
string createdAt = default ,
484
492
string message = default ,
485
493
string warningCode = default
@@ -520,13 +528,13 @@ public override string ToString()
520
528
}
521
529
}
522
530
523
- [ DataContract ( Name = "seamModel_warningsTimeZoneDoesNotMatchLocation_model " ) ]
524
- public class WarningsTimeZoneDoesNotMatchLocation : Warnings
531
+ [ DataContract ( Name = "seamModel_acsSystemWarningsTimeZoneDoesNotMatchLocation_model " ) ]
532
+ public class AcsSystemWarningsTimeZoneDoesNotMatchLocation : AcsSystemWarnings
525
533
{
526
534
[ JsonConstructorAttribute ]
527
- protected WarningsTimeZoneDoesNotMatchLocation ( ) { }
535
+ protected AcsSystemWarningsTimeZoneDoesNotMatchLocation ( ) { }
528
536
529
- public WarningsTimeZoneDoesNotMatchLocation (
537
+ public AcsSystemWarningsTimeZoneDoesNotMatchLocation (
530
538
string createdAt = default ,
531
539
string message = default ,
532
540
List < string > ? misconfiguredAcsEntranceIds = default ,
@@ -619,7 +627,7 @@ public override string ToString()
619
627
public string ? DefaultCredentialManagerAcsSystemId { get ; set ; }
620
628
621
629
[ DataMember ( Name = "errors" , IsRequired = true , EmitDefaultValue = false ) ]
622
- public List < Errors > Errors { get ; set ; }
630
+ public List < AcsSystemErrors > Errors { get ; set ; }
623
631
624
632
[ DataMember ( Name = "external_type" , IsRequired = false , EmitDefaultValue = false ) ]
625
633
public AcsSystem . ExternalTypeEnum ? ExternalType { get ; set ; }
@@ -660,7 +668,7 @@ public override string ToString()
660
668
public AcsSystemVisionlineMetadata ? VisionlineMetadata { get ; set ; }
661
669
662
670
[ DataMember ( Name = "warnings" , IsRequired = true , EmitDefaultValue = false ) ]
663
- public List < Warnings > Warnings { get ; set ; }
671
+ public List < AcsSystemWarnings > Warnings { get ; set ; }
664
672
665
673
[ DataMember ( Name = "workspace_id" , IsRequired = true , EmitDefaultValue = false ) ]
666
674
public string WorkspaceId { get ; set ; }
0 commit comments