Skip to content

Commit 42058f2

Browse files
github-actions[bot]Triogap
authored andcommitted
chore(types): update generated types (PR auto-update)
1 parent d6b79c4 commit 42058f2

File tree

379 files changed

+1979
-1482
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

379 files changed

+1979
-1482
lines changed

Types/Base/_ACE.g.cs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
/**************************************************************
22
* *
3-
* WARNING: This file is autogenerated by *
4-
* System.Management.Generator. *
5-
* Any changes made to this file will be overwritten. *
3+
* WARNING: This file is autogenerated by *
4+
* System.Management.Generator. *
5+
* Any changes made to this file will be overwritten. *
66
* *
77
**************************************************************/
88
namespace System.Management.Types.Base;
99

10-
#nullable enable
1110
public partial record class _ACE(ManagementObject ManagementObject) : _SecurityRelatedClass(ManagementObject)
1211
{
1312
/// <summary>
@@ -19,4 +18,3 @@ public partial record class _ACE(ManagementObject ManagementObject) : _SecurityR
1918
/// </summary>
2019
public _Trustee? Trustee => (_Trustee)ManagementObject[nameof(Trustee)];
2120
}
22-
#nullable disable
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/**************************************************************
2+
* *
3+
* WARNING: This file is autogenerated by *
4+
* System.Management.Generator. *
5+
* Any changes made to this file will be overwritten. *
6+
* *
7+
**************************************************************/
8+
namespace System.Management.Types.Base;
9+
10+
public partial record class _AbsoluteTimerInstruction(ManagementObject ManagementObject) : _TimerInstruction(ManagementObject)
11+
{
12+
/// <summary>
13+
/// Fixed-length string in DMTF format that specifies when the timer fires.
14+
/// </summary>
15+
public DateTimeOffset? EventDateTime => ManagementObject.GetDateTimePropertyValue(nameof(EventDateTime));
16+
}

Types/Base/_AggregateEvent.g.cs

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**************************************************************
2+
* *
3+
* WARNING: This file is autogenerated by *
4+
* System.Management.Generator. *
5+
* Any changes made to this file will be overwritten. *
6+
* *
7+
**************************************************************/
8+
namespace System.Management.Types.Base;
9+
10+
public partial record class _AggregateEvent(ManagementObject ManagementObject) : _IndicationRelated(ManagementObject)
11+
{
12+
/// <summary>
13+
/// Number of events combined to produce this single summary event.
14+
/// </summary>
15+
public uint? NumberOfEvents => (uint?)ManagementObject[nameof(NumberOfEvents)];
16+
/// <summary>
17+
/// Copy of one of the events delivered within the aggregation interval. For example, if a consumer has registered for registry key change events from the Registry Event provider, Representative would hold an instance of the RegistryKeyChangeEvent class.
18+
/// </summary>
19+
public object? Representative => (object)ManagementObject[nameof(Representative)];
20+
}
Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
/**************************************************************
2+
* *
3+
* WARNING: This file is autogenerated by *
4+
* System.Management.Generator. *
5+
* Any changes made to this file will be overwritten. *
6+
* *
7+
**************************************************************/
8+
namespace System.Management.Types.Base;
9+
10+
public partial record class _ArbitratorConfiguration(ManagementObject ManagementObject) : _SystemClass(ManagementObject)
11+
{
12+
/// <summary>
13+
/// Unused. Total number of outstanding tasks at any time.
14+
/// </summary>
15+
public uint? OutstandingTasksTotal => (uint?)ManagementObject[nameof(OutstandingTasksTotal)];
16+
/// <summary>
17+
/// Unused. Number of outstanding user initiated tasks at any one time.
18+
/// </summary>
19+
public uint? OutstandingTasksPerUser => (uint?)ManagementObject[nameof(OutstandingTasksPerUser)];
20+
/// <summary>
21+
/// Unused. Maximum number of task threads.
22+
/// </summary>
23+
public uint? TaskThreadsTotal => (uint?)ManagementObject[nameof(TaskThreadsTotal)];
24+
/// <summary>
25+
/// Unused. Maximum number of task threads associated with a particular user t any one time.
26+
/// </summary>
27+
public uint? TaskThreadsPerUser => (uint?)ManagementObject[nameof(TaskThreadsPerUser)];
28+
/// <summary>
29+
/// Unused. Number of quota violations permitted before a task is canceled.
30+
/// </summary>
31+
public uint? QuotaRetryCount => (uint?)ManagementObject[nameof(QuotaRetryCount)];
32+
/// <summary>
33+
/// Unused. Delay introduced into the task execution on each quota violation.
34+
/// </summary>
35+
public uint? QuotaRetryWaitInterval => (uint?)ManagementObject[nameof(QuotaRetryWaitInterval)];
36+
/// <summary>
37+
/// Unused. Maximum number of connected users.
38+
/// </summary>
39+
public uint? TotalUsers => (uint?)ManagementObject[nameof(TotalUsers)];
40+
/// <summary>
41+
/// Unused. Total memory cache associated with a particular task at any one time.
42+
/// </summary>
43+
public uint? TotalCacheMemoryPerTask => (uint?)ManagementObject[nameof(TotalCacheMemoryPerTask)];
44+
/// <summary>
45+
/// Unused. Total memory cache associated with a particular user at anyone time.
46+
/// </summary>
47+
public uint? TotalCacheMemoryPerUser => (uint?)ManagementObject[nameof(TotalCacheMemoryPerUser)];
48+
/// <summary>
49+
/// Unused. Total memory cache associated with all users at any one time.
50+
/// </summary>
51+
public uint? TotalCacheMemory => (uint?)ManagementObject[nameof(TotalCacheMemory)];
52+
/// <summary>
53+
/// Unused. Total disk cache associated with a particular task at any one time.
54+
/// </summary>
55+
public uint? TotalCacheDiskPerTask => (uint?)ManagementObject[nameof(TotalCacheDiskPerTask)];
56+
/// <summary>
57+
/// Unused. Total disk cache associated with a particular user at any one time.
58+
/// </summary>
59+
public uint? TotalCacheDiskPerUser => (uint?)ManagementObject[nameof(TotalCacheDiskPerUser)];
60+
/// <summary>
61+
/// Unused. Total disk cache associated with all users at any one time.
62+
/// </summary>
63+
public uint? TotalCacheDisk => (uint?)ManagementObject[nameof(TotalCacheDisk)];
64+
/// <summary>
65+
/// Number of temporary subscriptions allowed for a particular user at any one time.
66+
/// </summary>
67+
public uint? TemporarySubscriptionsPerUser => (uint?)ManagementObject[nameof(TemporarySubscriptionsPerUser)];
68+
/// <summary>
69+
/// Number of permanent subscriptions allowed for a particular user at any one time.
70+
/// </summary>
71+
public uint? PermanentSubscriptionsPerUser => (uint?)ManagementObject[nameof(PermanentSubscriptionsPerUser)];
72+
/// <summary>
73+
/// Number of polling event queries allowed for a particular user at any one time.
74+
/// </summary>
75+
public uint? PollingInstructionsPerUser => (uint?)ManagementObject[nameof(PollingInstructionsPerUser)];
76+
/// <summary>
77+
/// Amount of memory polling event queries, issued by a particular user, can consume at any one time.
78+
/// </summary>
79+
public uint? PollingMemoryPerUser => (uint?)ManagementObject[nameof(PollingMemoryPerUser)];
80+
/// <summary>
81+
/// Total number of temporary subscriptions allowed for all users at any one time.
82+
/// </summary>
83+
public uint? TemporarySubscriptionsTotal => (uint?)ManagementObject[nameof(TemporarySubscriptionsTotal)];
84+
/// <summary>
85+
/// Total number of permanent subscriptions allowed for all users at any one time.
86+
/// </summary>
87+
public uint? PermanentSubscriptionsTotal => (uint?)ManagementObject[nameof(PermanentSubscriptionsTotal)];
88+
/// <summary>
89+
/// Total number of polling instructions allowed for all users at any one time.
90+
/// </summary>
91+
public uint? PollingInstructionsTotal => (uint?)ManagementObject[nameof(PollingInstructionsTotal)];
92+
/// <summary>
93+
/// Total amount of memory that polling event queries, for all users combined, can consumer at any one time.
94+
/// </summary>
95+
public uint? PollingMemoryTotal => (uint?)ManagementObject[nameof(PollingMemoryTotal)];
96+
}
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/**************************************************************
2+
* *
3+
* WARNING: This file is autogenerated by *
4+
* System.Management.Generator. *
5+
* Any changes made to this file will be overwritten. *
6+
* *
7+
**************************************************************/
8+
namespace System.Management.Types.Base;
9+
10+
public partial record class _CIMOMIdentification(ManagementObject ManagementObject) : _SystemClass(ManagementObject)
11+
{
12+
/// <summary>
13+
/// Date and time of installation. This property is empty after the operating system is installed for the first time.
14+
/// </summary>
15+
public string? SetupDateTime => (string)ManagementObject[nameof(SetupDateTime)];
16+
/// <summary>
17+
/// "1.00.183.0000"
18+
/// </summary>
19+
public string? VersionCurrentlyRunning => (string)ManagementObject[nameof(VersionCurrentlyRunning)];
20+
/// <summary>
21+
/// "1.00.183.0000"
22+
/// </summary>
23+
public string? VersionUsedToCreateDB => (string)ManagementObject[nameof(VersionUsedToCreateDB)];
24+
/// <summary>
25+
/// Installation directory.
26+
/// </summary>
27+
public string? WorkingDirectory => (string)ManagementObject[nameof(WorkingDirectory)];
28+
}

Types/Base/_CacheControl.g.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/**************************************************************
2+
* *
3+
* WARNING: This file is autogenerated by *
4+
* System.Management.Generator. *
5+
* Any changes made to this file will be overwritten. *
6+
* *
7+
**************************************************************/
8+
namespace System.Management.Types.Base;
9+
10+
public partial record class _CacheControl(ManagementObject ManagementObject) : _SystemClass(ManagementObject)
11+
{
12+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/**************************************************************
2+
* *
3+
* WARNING: This file is autogenerated by *
4+
* System.Management.Generator. *
5+
* Any changes made to this file will be overwritten. *
6+
* *
7+
**************************************************************/
8+
namespace System.Management.Types.Base;
9+
10+
public partial record class _ClassCreationEvent(ManagementObject ManagementObject) : _ClassOperationEvent(ManagementObject)
11+
{
12+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/**************************************************************
2+
* *
3+
* WARNING: This file is autogenerated by *
4+
* System.Management.Generator. *
5+
* Any changes made to this file will be overwritten. *
6+
* *
7+
**************************************************************/
8+
namespace System.Management.Types.Base;
9+
10+
public partial record class _ClassDeletionEvent(ManagementObject ManagementObject) : _ClassOperationEvent(ManagementObject)
11+
{
12+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/**************************************************************
2+
* *
3+
* WARNING: This file is autogenerated by *
4+
* System.Management.Generator. *
5+
* Any changes made to this file will be overwritten. *
6+
* *
7+
**************************************************************/
8+
namespace System.Management.Types.Base;
9+
10+
public partial record class _ClassModificationEvent(ManagementObject ManagementObject) : _ClassOperationEvent(ManagementObject)
11+
{
12+
/// <summary>
13+
/// Copy of the original version of the class.
14+
/// </summary>
15+
public object? PreviousClass => (object)ManagementObject[nameof(PreviousClass)];
16+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/**************************************************************
2+
* *
3+
* WARNING: This file is autogenerated by *
4+
* System.Management.Generator. *
5+
* Any changes made to this file will be overwritten. *
6+
* *
7+
**************************************************************/
8+
namespace System.Management.Types.Base;
9+
10+
public partial record class _ClassOperationEvent(ManagementObject ManagementObject) : _Event(ManagementObject)
11+
{
12+
/// <summary>
13+
/// Class affected by the event. For creation events, this is the newly created class. For modification events, this is the new version of the changed class. For deletion events, this is the deleted class.
14+
/// </summary>
15+
public object? TargetClass => (object)ManagementObject[nameof(TargetClass)];
16+
}

0 commit comments

Comments
 (0)