|
| 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 | +} |
0 commit comments