1
1
namespace Azure . AI . AnomalyDetector
2
2
{
3
- public enum AlignMode
3
+ [ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
4
+ public readonly partial struct AlignMode : System . IEquatable < Azure . AI . AnomalyDetector . AlignMode >
4
5
{
5
- Inner = 0 ,
6
- Outer = 1 ,
6
+ private readonly object _dummy ;
7
+ private readonly int _dummyPrimitive ;
8
+ public AlignMode ( string value ) { throw null ; }
9
+ public static Azure . AI . AnomalyDetector . AlignMode Inner { get { throw null ; } }
10
+ public static Azure . AI . AnomalyDetector . AlignMode Outer { get { throw null ; } }
11
+ public bool Equals ( Azure . AI . AnomalyDetector . AlignMode other ) { throw null ; }
12
+ [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
13
+ public override bool Equals ( object obj ) { throw null ; }
14
+ [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
15
+ public override int GetHashCode ( ) { throw null ; }
16
+ public static bool operator == ( Azure . AI . AnomalyDetector . AlignMode left , Azure . AI . AnomalyDetector . AlignMode right ) { throw null ; }
17
+ public static implicit operator Azure . AI . AnomalyDetector . AlignMode ( string value ) { throw null ; }
18
+ public static bool operator != ( Azure . AI . AnomalyDetector . AlignMode left , Azure . AI . AnomalyDetector . AlignMode right ) { throw null ; }
19
+ public override string ToString ( ) { throw null ; }
7
20
}
8
21
public partial class AlignPolicy
9
22
{
@@ -179,13 +192,13 @@ public ModelInfo(string dataSource, System.DateTimeOffset startTime, System.Date
179
192
public Azure . AI . AnomalyDetector . AlignPolicy AlignPolicy { get { throw null ; } set { } }
180
193
public Azure . AI . AnomalyDetector . DataSchema ? DataSchema { get { throw null ; } set { } }
181
194
public string DataSource { get { throw null ; } set { } }
182
- public Azure . AI . AnomalyDetector . DiagnosticsInfo DiagnosticsInfo { get { throw null ; } set { } }
195
+ public Azure . AI . AnomalyDetector . DiagnosticsInfo DiagnosticsInfo { get { throw null ; } }
183
196
public string DisplayName { get { throw null ; } set { } }
184
197
public System . DateTimeOffset EndTime { get { throw null ; } set { } }
185
198
public System . Collections . Generic . IReadOnlyList < Azure . AI . AnomalyDetector . ErrorResponse > Errors { get { throw null ; } }
186
199
public int ? SlidingWindow { get { throw null ; } set { } }
187
200
public System . DateTimeOffset StartTime { get { throw null ; } set { } }
188
- public Azure . AI . AnomalyDetector . ModelStatus ? Status { get { throw null ; } set { } }
201
+ public Azure . AI . AnomalyDetector . ModelStatus ? Status { get { throw null ; } }
189
202
}
190
203
public partial class ModelState
191
204
{
@@ -195,12 +208,25 @@ public ModelState() { }
195
208
public System . Collections . Generic . IList < float > TrainLosses { get { throw null ; } }
196
209
public System . Collections . Generic . IList < float > ValidationLosses { get { throw null ; } }
197
210
}
198
- public enum ModelStatus
211
+ [ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
212
+ public readonly partial struct ModelStatus : System . IEquatable < Azure . AI . AnomalyDetector . ModelStatus >
199
213
{
200
- Created = 0 ,
201
- Running = 1 ,
202
- Ready = 2 ,
203
- Failed = 3 ,
214
+ private readonly object _dummy ;
215
+ private readonly int _dummyPrimitive ;
216
+ public ModelStatus ( string value ) { throw null ; }
217
+ public static Azure . AI . AnomalyDetector . ModelStatus Created { get { throw null ; } }
218
+ public static Azure . AI . AnomalyDetector . ModelStatus Failed { get { throw null ; } }
219
+ public static Azure . AI . AnomalyDetector . ModelStatus Ready { get { throw null ; } }
220
+ public static Azure . AI . AnomalyDetector . ModelStatus Running { get { throw null ; } }
221
+ public bool Equals ( Azure . AI . AnomalyDetector . ModelStatus other ) { throw null ; }
222
+ [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
223
+ public override bool Equals ( object obj ) { throw null ; }
224
+ [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
225
+ public override int GetHashCode ( ) { throw null ; }
226
+ public static bool operator == ( Azure . AI . AnomalyDetector . ModelStatus left , Azure . AI . AnomalyDetector . ModelStatus right ) { throw null ; }
227
+ public static implicit operator Azure . AI . AnomalyDetector . ModelStatus ( string value ) { throw null ; }
228
+ public static bool operator != ( Azure . AI . AnomalyDetector . ModelStatus left , Azure . AI . AnomalyDetector . ModelStatus right ) { throw null ; }
229
+ public override string ToString ( ) { throw null ; }
204
230
}
205
231
public partial class MultivariateBatchDetectionOptions
206
232
{
@@ -218,12 +244,25 @@ internal MultivariateBatchDetectionResultSummary() { }
218
244
public Azure . AI . AnomalyDetector . MultivariateBatchDetectionStatus Status { get { throw null ; } }
219
245
public System . Collections . Generic . IReadOnlyList < Azure . AI . AnomalyDetector . VariableState > VariableStates { get { throw null ; } }
220
246
}
221
- public enum MultivariateBatchDetectionStatus
247
+ [ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
248
+ public readonly partial struct MultivariateBatchDetectionStatus : System . IEquatable < Azure . AI . AnomalyDetector . MultivariateBatchDetectionStatus >
222
249
{
223
- Created = 0 ,
224
- Running = 1 ,
225
- Ready = 2 ,
226
- Failed = 3 ,
250
+ private readonly object _dummy ;
251
+ private readonly int _dummyPrimitive ;
252
+ public MultivariateBatchDetectionStatus ( string value ) { throw null ; }
253
+ public static Azure . AI . AnomalyDetector . MultivariateBatchDetectionStatus Created { get { throw null ; } }
254
+ public static Azure . AI . AnomalyDetector . MultivariateBatchDetectionStatus Failed { get { throw null ; } }
255
+ public static Azure . AI . AnomalyDetector . MultivariateBatchDetectionStatus Ready { get { throw null ; } }
256
+ public static Azure . AI . AnomalyDetector . MultivariateBatchDetectionStatus Running { get { throw null ; } }
257
+ public bool Equals ( Azure . AI . AnomalyDetector . MultivariateBatchDetectionStatus other ) { throw null ; }
258
+ [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
259
+ public override bool Equals ( object obj ) { throw null ; }
260
+ [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
261
+ public override int GetHashCode ( ) { throw null ; }
262
+ public static bool operator == ( Azure . AI . AnomalyDetector . MultivariateBatchDetectionStatus left , Azure . AI . AnomalyDetector . MultivariateBatchDetectionStatus right ) { throw null ; }
263
+ public static implicit operator Azure . AI . AnomalyDetector . MultivariateBatchDetectionStatus ( string value ) { throw null ; }
264
+ public static bool operator != ( Azure . AI . AnomalyDetector . MultivariateBatchDetectionStatus left , Azure . AI . AnomalyDetector . MultivariateBatchDetectionStatus right ) { throw null ; }
265
+ public override string ToString ( ) { throw null ; }
227
266
}
228
267
public partial class MultivariateDetectionResult
229
268
{
@@ -234,8 +273,8 @@ internal MultivariateDetectionResult() { }
234
273
}
235
274
public partial class MultivariateLastDetectionOptions
236
275
{
237
- public MultivariateLastDetectionOptions ( System . Collections . Generic . IEnumerable < Azure . AI . AnomalyDetector . VariableValues > variables , int topContributorCount ) { }
238
- public int TopContributorCount { get { throw null ; } }
276
+ public MultivariateLastDetectionOptions ( System . Collections . Generic . IEnumerable < Azure . AI . AnomalyDetector . VariableValues > variables ) { }
277
+ public int ? TopContributorCount { get { throw null ; } set { } }
239
278
public System . Collections . Generic . IList < Azure . AI . AnomalyDetector . VariableValues > Variables { get { throw null ; } }
240
279
}
241
280
public partial class MultivariateLastDetectionResult
@@ -244,17 +283,30 @@ internal MultivariateLastDetectionResult() { }
244
283
public System . Collections . Generic . IReadOnlyList < Azure . AI . AnomalyDetector . AnomalyState > Results { get { throw null ; } }
245
284
public System . Collections . Generic . IReadOnlyList < Azure . AI . AnomalyDetector . VariableState > VariableStates { get { throw null ; } }
246
285
}
247
- public enum TimeGranularity
248
- {
249
- Yearly = 0 ,
250
- Monthly = 1 ,
251
- Weekly = 2 ,
252
- Daily = 3 ,
253
- Hourly = 4 ,
254
- PerMinute = 5 ,
255
- PerSecond = 6 ,
256
- Microsecond = 7 ,
257
- None = 8 ,
286
+ [ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
287
+ public readonly partial struct TimeGranularity : System . IEquatable < Azure . AI . AnomalyDetector . TimeGranularity >
288
+ {
289
+ private readonly object _dummy ;
290
+ private readonly int _dummyPrimitive ;
291
+ public TimeGranularity ( string value ) { throw null ; }
292
+ public static Azure . AI . AnomalyDetector . TimeGranularity Daily { get { throw null ; } }
293
+ public static Azure . AI . AnomalyDetector . TimeGranularity Hourly { get { throw null ; } }
294
+ public static Azure . AI . AnomalyDetector . TimeGranularity Microsecond { get { throw null ; } }
295
+ public static Azure . AI . AnomalyDetector . TimeGranularity Monthly { get { throw null ; } }
296
+ public static Azure . AI . AnomalyDetector . TimeGranularity None { get { throw null ; } }
297
+ public static Azure . AI . AnomalyDetector . TimeGranularity PerMinute { get { throw null ; } }
298
+ public static Azure . AI . AnomalyDetector . TimeGranularity PerSecond { get { throw null ; } }
299
+ public static Azure . AI . AnomalyDetector . TimeGranularity Weekly { get { throw null ; } }
300
+ public static Azure . AI . AnomalyDetector . TimeGranularity Yearly { get { throw null ; } }
301
+ public bool Equals ( Azure . AI . AnomalyDetector . TimeGranularity other ) { throw null ; }
302
+ [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
303
+ public override bool Equals ( object obj ) { throw null ; }
304
+ [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
305
+ public override int GetHashCode ( ) { throw null ; }
306
+ public static bool operator == ( Azure . AI . AnomalyDetector . TimeGranularity left , Azure . AI . AnomalyDetector . TimeGranularity right ) { throw null ; }
307
+ public static implicit operator Azure . AI . AnomalyDetector . TimeGranularity ( string value ) { throw null ; }
308
+ public static bool operator != ( Azure . AI . AnomalyDetector . TimeGranularity left , Azure . AI . AnomalyDetector . TimeGranularity right ) { throw null ; }
309
+ public override string ToString ( ) { throw null ; }
258
310
}
259
311
public partial class TimeSeriesPoint
260
312
{
0 commit comments