@device-management-toolkit/wsman-messages 5.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -0
- package/WSMan.d.ts +217 -0
- package/WSMan.js +395 -0
- package/WSMan.js.map +1 -0
- package/amt/actions.d.ts +112 -0
- package/amt/actions.js +118 -0
- package/amt/actions.js.map +1 -0
- package/amt/classes.d.ts +33 -0
- package/amt/classes.js +38 -0
- package/amt/classes.js.map +1 -0
- package/amt/index.d.ts +12 -0
- package/amt/index.js +17 -0
- package/amt/index.js.map +1 -0
- package/amt/messages.d.ts +466 -0
- package/amt/messages.js +819 -0
- package/amt/messages.js.map +1 -0
- package/amt/messages.test.d.ts +5 -0
- package/amt/messages.test.js +1091 -0
- package/amt/messages.test.js.map +1 -0
- package/amt/methods.d.ts +42 -0
- package/amt/methods.js +47 -0
- package/amt/methods.js.map +1 -0
- package/amt/models.d.ts +329 -0
- package/amt/models.js +7 -0
- package/amt/models.js.map +1 -0
- package/amt/types.d.ts +206 -0
- package/amt/types.js +7 -0
- package/amt/types.js.map +1 -0
- package/cim/actions.d.ts +9 -0
- package/cim/actions.js +14 -0
- package/cim/actions.js.map +1 -0
- package/cim/classes.d.ts +27 -0
- package/cim/classes.js +32 -0
- package/cim/classes.js.map +1 -0
- package/cim/index.d.ts +12 -0
- package/cim/index.js +16 -0
- package/cim/index.js.map +1 -0
- package/cim/messages.d.ts +136 -0
- package/cim/messages.js +215 -0
- package/cim/messages.js.map +1 -0
- package/cim/messages.test.d.ts +5 -0
- package/cim/messages.test.js +408 -0
- package/cim/messages.test.js.map +1 -0
- package/cim/methods.d.ts +15 -0
- package/cim/methods.js +20 -0
- package/cim/methods.js.map +1 -0
- package/cim/models.d.ts +376 -0
- package/cim/models.js +7 -0
- package/cim/models.js.map +1 -0
- package/cim/types.d.ts +296 -0
- package/cim/types.js +7 -0
- package/cim/types.js.map +1 -0
- package/dist +42 -0
- package/index.d.ts +9 -0
- package/index.js +49 -0
- package/index.js.map +1 -0
- package/ips/actions.d.ts +15 -0
- package/ips/actions.js +20 -0
- package/ips/actions.js.map +1 -0
- package/ips/classes.d.ts +12 -0
- package/ips/classes.js +17 -0
- package/ips/classes.js.map +1 -0
- package/ips/index.d.ts +12 -0
- package/ips/index.js +16 -0
- package/ips/index.js.map +1 -0
- package/ips/messages.d.ts +117 -0
- package/ips/messages.js +210 -0
- package/ips/messages.js.map +1 -0
- package/ips/messages.test.d.ts +5 -0
- package/ips/messages.test.js +206 -0
- package/ips/messages.test.js.map +1 -0
- package/ips/methods.d.ts +21 -0
- package/ips/methods.js +26 -0
- package/ips/methods.js.map +1 -0
- package/ips/models.d.ts +59 -0
- package/ips/models.js +7 -0
- package/ips/models.js.map +1 -0
- package/ips/types.d.ts +58 -0
- package/ips/types.js +7 -0
- package/ips/types.js.map +1 -0
- package/models/common.d.ts +104 -0
- package/models/common.js +7 -0
- package/models/common.js.map +1 -0
- package/models/index.d.ts +6 -0
- package/models/index.js +43 -0
- package/models/index.js.map +1 -0
- package/package.json +41 -0
- package/wsman.test.d.ts +5 -0
- package/wsman.test.js +479 -0
- package/wsman.test.js.map +1 -0
package/cim/types.d.ts
ADDED
|
@@ -0,0 +1,296 @@
|
|
|
1
|
+
/*********************************************************************
|
|
2
|
+
* Copyright (c) Intel Corporation 2021
|
|
3
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
**********************************************************************/
|
|
5
|
+
export declare namespace Types {
|
|
6
|
+
namespace ManagedSystemElement {
|
|
7
|
+
/**
|
|
8
|
+
* 0 = Unknown | 5 = OK | 10 = Degraded/Warning | 15 = Minor failure | 20 = Major failure | 25 = Critical failure | 30 = Non-recoverable error
|
|
9
|
+
*/
|
|
10
|
+
type HealthState = 0 | 5 | 10 | 15 | 20 | 25 | 30;
|
|
11
|
+
/**
|
|
12
|
+
* 0 = Unknown | 1 = Other | 2 = OK | 3 = Degraded | 4 = Stressed | 5 = Predictive Failure | 6 = Error | 7 = Non-Recoverable Error | 8 = Starting | 9 = Stopping | 10 = Stopped | 11 = In Service | 12 = No Contact | 13 = Lost Communication | 14 = Aborted | 15 = Dormant | 16 = Supporting Entity in Error | 17 = Completed | 18 = Power Mode | 19 = Relocating
|
|
13
|
+
*/
|
|
14
|
+
type OperationalStatusValues = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19;
|
|
15
|
+
type OperationalStatus = OperationalStatusValues[];
|
|
16
|
+
}
|
|
17
|
+
namespace PhysicalComponent {
|
|
18
|
+
/**
|
|
19
|
+
* 0 = Unknown | 2 = Not Applicable | 3 = Removable when off | 4 = Removable when on or off
|
|
20
|
+
*/
|
|
21
|
+
type RemovalConditions = 0 | 2 | 3 | 4;
|
|
22
|
+
}
|
|
23
|
+
namespace PhysicalMemory {
|
|
24
|
+
/**
|
|
25
|
+
* 0 = Unknown | 1 = Other | 2 = DRAM | 3 = Synchronous DRAM | 4 = Cache DRAM | 5 = EDO | 6 = EDRAM | 7 = VRAM | 8 = SRAM | 9 = RAM | 10 = ROM | 11 = Flash | 12 = EEPROM | 13 = FEPROM | 14 = EPROM | 15 = CDRAM | 16 = 3DRAM | 17 = SDRAM | 18 = SGRAM | 19 = RDRAM | 20 = DDR | 21 = DDR-2 | 22 = BRAM | 23 = FB-DIMM | 24 = DDR3 | 25 = FBD2 | 26 = DDR4 | 27 = LPDDR | 28 = LPDDR2 | 29 = LPDDR3 | 30 = LPDDR4 | 31 = Logical non-volatile device | 32 = HBM (High Bandwidth Memory) | 33 = HBM2 (High Bandwidth Memory Generation 2) | 34 = DDR5 | 35 = LPDDR5 | 36 = HBM3 (High Bandwidth Memory Generation 3)
|
|
26
|
+
*/
|
|
27
|
+
type MemoryType = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36;
|
|
28
|
+
}
|
|
29
|
+
namespace PhysicalPackage {
|
|
30
|
+
/**
|
|
31
|
+
* Unknown: 0 | Other: 1 | Rack: 2 | Chassis/Frame: 3 | Cross Connect/Backplane: 4 | Container/Frame Slot: 5 | Power Supply: 6 | Fan: 7 | Sensor: 8 | Module/Card: 9 | Port/Connector: 10 | Battery: 11 | Processor: 12 | Memory: 13 | Power Source/Generator: 14 | Storage Media Package (e.g., Disk or Tape Drive): 15 | Blade: 16 | Blade Expansion: 17
|
|
32
|
+
*/
|
|
33
|
+
type PackageType = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17;
|
|
34
|
+
}
|
|
35
|
+
namespace PhysicalFrame {
|
|
36
|
+
/**
|
|
37
|
+
* Unknown: 0 | Not Applicable: 2 | Removable when off: 3 | Removable when on or off: 4
|
|
38
|
+
*/
|
|
39
|
+
type RemovalConditions = 0 | 2 | 3 | 4;
|
|
40
|
+
/**
|
|
41
|
+
* Other: 1 | Unknown: 2 | No Breach: 3 | Breach Attempted: 4 | Breach Successful: 5
|
|
42
|
+
*/
|
|
43
|
+
type SecurityBreach = 1 | 2 | 3 | 4 | 5;
|
|
44
|
+
/**
|
|
45
|
+
* Unknown: 0 | Other: 1 | Service From Top: 2 | Service From Front: 3 | Service From Back: 4 | Service From Side: 5 | Sliding Trays: 6 | Removable Sides: 7 | Moveable: 8
|
|
46
|
+
*/
|
|
47
|
+
type ServicePhilosophyValues = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
|
|
48
|
+
type ServicePhilosophy = ServicePhilosophyValues[];
|
|
49
|
+
}
|
|
50
|
+
namespace Chassis {
|
|
51
|
+
/**
|
|
52
|
+
* Unknown: 0 | Other: 1 | SMBIOS Reserved: 2 | Desktop: 3 | Low Profile Desktop: 4 | Pizza Box: 5 | Mini Tower: 6 | Tower: 7 | Portable: 8 | LapTop: 9 | Notebook: 10 | Hand Held: 11 | Docking Station: 12 | All in One: 13 | Sub Notebook: 14 | Space-Saving: 15 | Lunch Box: 16 | Main System Chassis: 17 | Expansion Chassis: 18 | SubChassis: 19 | Bus Expansion Chassis: 20 | Peripheral Chassis: 21 | Storage Chassis: 22 | SMBIOS Reserved: 23 | Sealed-Case PC: 24 | SMBIOS Reserved: 25 | CompactPCI: 26 | AdvancedTCA: 27 | Blade Enclosure: 28 | SMBIOS Reserved: 29 | Tablet: 30 | Convertible: 31 | Detachable: 32 | IoT Gateway: 33 | Embedded PC: 34 | Mini PC: 35 | Stick PC: 36
|
|
53
|
+
*/
|
|
54
|
+
type ChassisPackageType = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36;
|
|
55
|
+
}
|
|
56
|
+
namespace SoftwareElement {
|
|
57
|
+
/**
|
|
58
|
+
* Deployable: 0 | Installable: 1 | Executable: 2 | Running: 3
|
|
59
|
+
*/
|
|
60
|
+
type SoftwareElementState = 0 | 1 | 2 | 3;
|
|
61
|
+
/**
|
|
62
|
+
* Unknown: 0 | Other: 1 | MACOS: 2 | ATTUNIX: 3 | DGUX: 4 | DECNT: 5 | Tru64 UNIX: 6 | OpenVMS: 7 | HPUX: 8 | AIX: 9 | MVS: 10 | OS400: 11 | OS/2: 12 | JavaVM: 13 | MSDOS: 14 | WIN3x: 15 | WIN95: 16 | WIN98: 17 | WINNT: 18 | WINCE: 19 | NCR3000: 20 | NetWare: 21 | OSF: 22 | DC/OS: 23 | Reliant UNIX: 24 | SCO UnixWare: 25 | SCO OpenServer: 26 | Sequent: 27 | IRIX: 28 | Solaris: 29 | SunOS: 30 | U6000: 31 | ASERIES: 32 | HP NonStop OS: 33 | HP NonStop OSS: 34 | BS2000: 35 | LINUX: 36 | Lynx: 37 | XENIX: 38 | VM: 39 | Interactive UNIX: 40 | BSDUNIX: 41 | FreeBSD: 42 | NetBSD: 43 | GNU Hurd: 44 | OS9: 45 | MACH Kernel: 46 | Inferno: 47 | QNX: 48 | EPOC: 49 | IxWorks: 50 | VxWorks: 51 | MiNT: 52 | BeOS: 53 | HP MPE: 54 | NextStep: 55 | PalmPilot: 56 | Rhapsody: 57 | Windows 2000: 58 | Dedicated: 59 | OS/390: 60 | VSE: 61 | TPF: 62 | Windows (R) Me: 63 | Caldera Open UNIX: 64 | OpenBSD: 65 | Not Applicable: 66 | Windows XP: 67 | z/OS: 68 | Microsoft Windows Server 2003: 69 | Microsoft Windows Server 2003 64-Bit: 70 | Windows XP 64-Bit: 71 | Windows XP Embedded: 72 | Windows Vista: 73 | Windows Vista 64-Bit: 74 | Windows Embedded for Point of Service: 75 | Microsoft Windows Server 2008: 76 | Microsoft Windows Server 2008 64-Bit: 77 | FreeBSD 64-Bit: 78 | RedHat Enterprise Linux: 79 | RedHat Enterprise Linux 64-Bit: 80 | Solaris 64-Bit: 81 | SUSE: 82 | SUSE 64-Bit: 83 | SLES: 84 | SLES 64-Bit: 85 | Novell OES: 86 | Novell Linux Desktop: 87 | Sun Java Desktop System: 88 | Mandriva: 89 | Mandriva 64-Bit: 90 | TurboLinux: 91 | TurboLinux 64-Bit: 92 | Ubuntu: 93 | Ubuntu 64-Bit: 94 | Debian: 95 | Debian 64-Bit: 96 | Linux 2.4.x: 97 | Linux 2.4.x 64-Bit: 98 | Linux 2.6.x: 99 | Linux 2.6.x 64-Bit: 100 | Linux 64-Bit: 101 | Other 64-Bit: 102 | Microsoft Windows Server 2008 R2: 103 | VMware ESXi: 104 | Microsoft Windows 7: 105 | CentOS 32-bit: 106 | CentOS 64-bit: 107 | Oracle Enterprise Linux 32-bit: 108 | Oracle Enterprise Linux 64-bit: 109 | eComStation 32-bitx: 110 | Microsoft Windows Server 2011: 111 | Microsoft Windows Server 2011 64-Bit: 112 | Microsoft Windows Server 8: 113
|
|
63
|
+
*/
|
|
64
|
+
type TargetOperatingSystem = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113;
|
|
65
|
+
}
|
|
66
|
+
namespace Job {
|
|
67
|
+
/**
|
|
68
|
+
* Unknown: 0 | Not Available: 1 | Communication OK: 2 | Lost Communication: 3 | No Contact: 4
|
|
69
|
+
*/
|
|
70
|
+
type CommunicationStatus = 0 | 1 | 2 | 3 | 4;
|
|
71
|
+
/**
|
|
72
|
+
* Not Available: 0 | No Additional Information: 1 | Stressed: 2 | Predictive Failure: 3 | Non-Recoverable Error: 4 | Supporting Entity in Error: 5
|
|
73
|
+
*/
|
|
74
|
+
type DetailedStatus = 0 | 1 | 2 | 3 | 4 | 5;
|
|
75
|
+
/**
|
|
76
|
+
* Unknown: 0 | Not Available: 1 | Servicing: 2 | Starting: 3 | Stopping: 4 | Stopped: 5 | Aborted: 6 | Dormant: 7 | Completed: 8 | Migrating: 9 | Emigrating: 10 | Immigrating: 11 | Snapshotting: 12 | Shutting Down: 13 | In Test: 14 | Transitioning: 15 | In Service: 16
|
|
77
|
+
*/
|
|
78
|
+
type OperatingStatus = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16;
|
|
79
|
+
/**
|
|
80
|
+
* Unknown: 0 | OK: 1 | Degraded: 2 | Error: 3
|
|
81
|
+
*/
|
|
82
|
+
type PrimaryStatus = 0 | 1 | 2 | 3;
|
|
83
|
+
/**
|
|
84
|
+
* January: 0 | February: 1 | March: 2 | April: 3 | May: 4 | June: 5 | July: 6 | August: 7 | September: 8 | October: 9 | November: 10 | December: 11
|
|
85
|
+
*/
|
|
86
|
+
type RunMonth = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11;
|
|
87
|
+
/**
|
|
88
|
+
* The day in the month on which the Job should be processed. There are two different interpretations for this property, depending on the value of DayOfWeek. In one case, RunDay defines the day-in-month on which the Job is processed. This interpretation is used when the DayOfWeek is 0. A positive or negative integer indicates whether the RunDay should be calculated from the beginning or end of the month. For example, 5 indicates the fifth day in the RunMonth and -1 indicates the last day in the RunMonth.
|
|
89
|
+
*/
|
|
90
|
+
type RunDay = -31 | -30 | -29 | -28 | -27 | -26 | -25 | -24 | -23 | -22 | -21 | -20 | -19 | -18 | -17 | -16 | -15 | -14 | -13 | -12 | -11 | -10 | -9 | -8 | -7 | -6 | -5 | -4 | -3 | -2 | -1 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31;
|
|
91
|
+
/**
|
|
92
|
+
* -Saturday: -7 | -Friday: -6 | -Thursday: -5 | -Wednesday: -4 | -Tuesday: -3 | -Monday: -2 | -Sunday: -1 | ExactDayOfMonth: 0 | Sunday: 1 | Monday: 2 | Tuesday: 3 | Wednesday: 4 | Thursday: 5 | Friday: 6 | Saturday: 7
|
|
93
|
+
*
|
|
94
|
+
* A positive or negative integer used in conjunction with RunDay to indicate the day of the week on which the Job is processed. RunDayOfWeek is set to 0 to indicate an exact day of the month, such as March 1. A positive integer (representing Sunday, Monday, ..., Saturday) means that the day of week is found on or after the specified RunDay. A negative integer (representing -Sunday, -Monday, ..., -Saturday) means that the day of week is found on or BEFORE the RunDay.
|
|
95
|
+
*/
|
|
96
|
+
type RunDayOfWeek = -7 | -6 | -5 | -4 | -3 | -2 | -1 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
97
|
+
/**
|
|
98
|
+
* Unknown: 0 | Other: 1 | Do Not Continue: 2 | Continue With Next Job: 3 | Re-run Job: 4 | Run Recovery Job: 5
|
|
99
|
+
*/
|
|
100
|
+
type RecoveryAction = 0 | 1 | 2 | 3 | 4 | 5;
|
|
101
|
+
/**
|
|
102
|
+
* Local Time: 1 | UTC Time: 2
|
|
103
|
+
*/
|
|
104
|
+
type LocalOrUtcTime = 1 | 2;
|
|
105
|
+
}
|
|
106
|
+
namespace ConcreteJob {
|
|
107
|
+
/**
|
|
108
|
+
* New: 2 | Starting: 3 | Running: 4 | Suspended: 5 | Shutting Down: 6 | Completed: 7 | Terminated: 8 | Killed: 9 | Exception: 10 | Service: 11 | Query Pending: 12
|
|
109
|
+
*/
|
|
110
|
+
type JobState = 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
111
|
+
}
|
|
112
|
+
namespace EnabledLogicalElement {
|
|
113
|
+
/**
|
|
114
|
+
* Unknown:0 | Other:1 | Enabled:2 | Disabled:3 | Shutting Down:4 | Not Applicable:5 | Enabled but Offline:6 | In Test:7 | Deferred:8 | Quiesce:9 | Starting:10
|
|
115
|
+
*/
|
|
116
|
+
type EnabledState = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
117
|
+
/**
|
|
118
|
+
* Unknown:0 | Enabled:2 | Disabled:3 | Shut Down:4 | No Change:5 | Offline:6 | Test:7 | Deferred:8 | Quiesce:9 | Reboot:10 | Reset:11 | Not Applicable:12
|
|
119
|
+
*/
|
|
120
|
+
type RequestedState = 0 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
121
|
+
/**
|
|
122
|
+
* Enabled:2 | Disabled:3 | Not Applicable:5 | Enabled but Offline:6 | No Default:7 | Quiesce:9
|
|
123
|
+
*/
|
|
124
|
+
type EnabledDefault = 2 | 3 | 5 | 6 | 7 | 9;
|
|
125
|
+
}
|
|
126
|
+
namespace LogicalDevice {
|
|
127
|
+
/**
|
|
128
|
+
* Unknown:0 | Not Supported:1 | Disabled:2 | Enabled:3 | Power Saving Modes Entered Automatically:4 | Power State Settable:5 | Power Cycling Supported:6 | Timed Power On Supported:7
|
|
129
|
+
*/
|
|
130
|
+
type PowerManagementCapabilitiesValues = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
131
|
+
type PowerManagementCapabilities = PowerManagementCapabilitiesValues[];
|
|
132
|
+
/**
|
|
133
|
+
* Other:1 | Unknown:2 | Running/Full Power:3 | Warning:4 | In Test:5 | Not Applicable:6 | Power Off:7 | Off Line:8 | Off Duty:9 | Degraded:10 | Not Installed:11 | Install Error:12 | Power Save - Unknown:13 | Power Save - Low Power Mode:14 | Power Save - Standby:15 | Power Cycle:16 | Power Save - Warning:17 | Paused:18 | Not Ready:19 | Not Configured:20 | Quiesced:21
|
|
134
|
+
*/
|
|
135
|
+
type Availability = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21;
|
|
136
|
+
/**
|
|
137
|
+
* Other:1 | Unknown:2 | Enabled:3 | Disabled:4 | Not Applicable:5
|
|
138
|
+
*/
|
|
139
|
+
type StatusInfo = 1 | 2 | 3 | 4 | 5;
|
|
140
|
+
/**
|
|
141
|
+
* Other:1 | Unknown:2 | Running/Full Power:3 | Warning:4 | In Test:5 | Not Applicable:6 | Power Off:7 | Off Line:8 | Off Duty:9 | Degraded:10 | Not Installed:11 | Install Error:12 | Power Save - Unknown:13 | Power Save - Low Power Mode:14 | Power Save - Standby:15 | Power Cycle:16 | Power Save - Warning:17 | Paused:18 | Not Ready:19 | Not Configured:20 | Quiesced:21
|
|
142
|
+
*/
|
|
143
|
+
type AdditionalAvailabilityValues = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21;
|
|
144
|
+
type AdditionalAvailability = AdditionalAvailabilityValues[];
|
|
145
|
+
}
|
|
146
|
+
namespace Processor {
|
|
147
|
+
/**
|
|
148
|
+
* Other:1 | Unknown:2 | Daughter Board:3 | ZIF Socket:4 | Replacement/Piggy Back:5 | None:6 | LIF Socket:7 | Slot 1:8 | Slot 2:9 | 370 Pin Socket:10 | Slot A:11 | Slot M:12 | Socket 423:13 | Socket A (Socket 462):14 | Socket 478:15 | Socket 754:16 | Socket 940:17 | Socket 939:18 | Socket mPGA604:19 | Socket LGA771:20 | Socket LGA775:21 | Socket S1:22 | Socket AM2:23 | Socket F (1207):24 | Socket LGA1366:25 | Socket G34:26 | Socket AM3:27 | Socket C32:28 | Socket LGA1156:29 | Socket LGA1567:30 | Socket PGA988A:31 | Socket BGA1288:32 | rPGA988B:33 | BGA1023:34 | BGA1224:35 | LGA1155:36 | LGA1356:37 | LGA2011:38 | Socket FS1:39 | Socket FS2:40 | Socket FM1:41 | Socket FM2:42 | Socket LGA2011-3:43 | Socket LGA1356-3:44 | Socket LGA1150:45 | Socket BGA1168:46 | Socket BGA1234:47 | Socket BGA1364:48 | Socket AM4:49 | Socket LGA1151:50 | Socket BGA1356:51 | Socket BGA1440:52 | Socket BGA1515:53 | Socket LGA3647-1:54 | Socket SP3:55 | Socket SP3r2:56 | Socket LGA2066:57 | Socket BGA1392:58 | Socket BGA1510:59 | Socket BGA1528:60 | Socket LGA4189:61 | Socket LGA1200:62 | Socket LGA4677:63 | Socket LGA1700:64 | Socket BGA1744:65 | Socket BGA1781:66 | Socket BGA1211:67 | Socket BGA2422:68 | Socket LGA1211:69 | Socket LGA2422:70 | Socket LGA5773:71 | Socket BGA5773:72
|
|
149
|
+
*/
|
|
150
|
+
type UpgradeMethod = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72;
|
|
151
|
+
/**
|
|
152
|
+
* Unknown:0 | CPU Enabled:1 | CPU Disabled by User:2 | CPU Disabled By BIOS (POST Error):3 | CPU Is Idle:4 | Other:7
|
|
153
|
+
*/
|
|
154
|
+
type CPUStatus = 0 | 1 | 2 | 3 | 4 | 7;
|
|
155
|
+
}
|
|
156
|
+
namespace MediaAccessDevice {
|
|
157
|
+
/**
|
|
158
|
+
* Unknown:0 | Other:1 | Sequential Access:2 | Random Access:3 | Supports Writing:4 | Encryption:5 | Compression:6 | Supports Removeable Media:7 | Manual Cleaning:8 | Automatic Cleaning:9 | SMART Notification:10 | Supports Dual Sided Media:11 | Predismount Eject Not Required:12
|
|
159
|
+
*/
|
|
160
|
+
type CapabilitiesValues = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
161
|
+
type Capabilities = CapabilitiesValues[];
|
|
162
|
+
/**
|
|
163
|
+
* Other:1 | Unknown:2 | None:3 | Read Only:4 | Locked Out:5 | Boot Bypass:6 | Boot Bypass and Read Only:7
|
|
164
|
+
*/
|
|
165
|
+
type Security = 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
166
|
+
}
|
|
167
|
+
namespace LogicalPort {
|
|
168
|
+
/**
|
|
169
|
+
* Unknown:0 | Front-end only:2 | Back-end only:3 | Not restricted:4
|
|
170
|
+
*/
|
|
171
|
+
type UsageRestriction = 0 | 2 | 3 | 4;
|
|
172
|
+
/**
|
|
173
|
+
* Unknown:0 | Other:1 | Not Applicable:2
|
|
174
|
+
*/
|
|
175
|
+
type PortType = 0 | 1 | 2;
|
|
176
|
+
}
|
|
177
|
+
namespace NetworkPort {
|
|
178
|
+
/**
|
|
179
|
+
* Unknown:0 | Other:1 | Ethernet:2 | IB:3 | FC:4 | FDDI:5 | ATM:6 | Token Ring:7 | Frame Relay:8 | Infrared:9 | BlueTooth:10 | Wireless LAN:11
|
|
180
|
+
*/
|
|
181
|
+
type LinkTechnology = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11;
|
|
182
|
+
}
|
|
183
|
+
namespace Role {
|
|
184
|
+
/**
|
|
185
|
+
* Static:2 | Opaque:3
|
|
186
|
+
*/
|
|
187
|
+
type RoleCharacteristicsValues = 2 | 3;
|
|
188
|
+
type RoleCharacteristics = RoleCharacteristicsValues[];
|
|
189
|
+
}
|
|
190
|
+
namespace Log {
|
|
191
|
+
/**
|
|
192
|
+
* Unknown:0 | Wraps When Full:2 | Never Overwrites:7
|
|
193
|
+
*/
|
|
194
|
+
type OverwritePolicy = 0 | 2 | 7;
|
|
195
|
+
/**
|
|
196
|
+
* Unknown:0 | Normal:2 | Erasing:3 | Not Applicable:4
|
|
197
|
+
*/
|
|
198
|
+
type LogState = 0 | 2 | 3 | 4;
|
|
199
|
+
}
|
|
200
|
+
namespace MessageLog {
|
|
201
|
+
/**
|
|
202
|
+
* Unknown:0 | Other:1 | Write Record Supported:2 | Delete Record Supported:3 | Can Move Backward in Log:4 | Freeze Log Supported:5 | Clear Log Supported:6 | Supports Addressing by Ordinal Record Number:7 | Variable Length Records Supported:8 | Variable Formats for Records:9 | Can Flag Records for Overwrite:10
|
|
203
|
+
*/
|
|
204
|
+
type CapabilitiesValues = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
205
|
+
type Capabilities = CapabilitiesValues[];
|
|
206
|
+
/**
|
|
207
|
+
* Unknown:0 | Add:1 | Delete:2 | Modify:3 | Log Cleared:4
|
|
208
|
+
*/
|
|
209
|
+
type LastChange = 0 | 1 | 2 | 3 | 4;
|
|
210
|
+
/**
|
|
211
|
+
* Unknown:0 | Other:1 | ASCII:2 | Unicode:3 | ISO2022:4 | ISO8859:5 | Extended UNIX Code:6 | UTF-8:7 | UCS-2:8 | Bitmapped Data:9 | OctetString:10 | Defined by Individual Records:11
|
|
212
|
+
*/
|
|
213
|
+
type CharacterSet = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11;
|
|
214
|
+
}
|
|
215
|
+
namespace KVMRedirectionSAP {
|
|
216
|
+
/**
|
|
217
|
+
* Unknown:0 | Other:1 | Enabled:2 | Disabled:3 | Shutting Down:4 | Not Applicable:5 | Enabled but Offline:6 | In Test:7 | Deferred:8 | Quiesce:9 | Starting:10
|
|
218
|
+
*/
|
|
219
|
+
type EnabledState = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
220
|
+
/**
|
|
221
|
+
* Unknown:0 | Enabled:2 | Disabled:3 | Shut Down:4 | No Change:5 | Offline:6 | Test:7 | Deferred:8 | Quiesce:9 | Reboot:10 | Reset:11 | Not Applicable:12
|
|
222
|
+
*/
|
|
223
|
+
type RequestedState = 0 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
224
|
+
/**
|
|
225
|
+
* Enabled:2 | Disabled:3 | Shut Down:4 | Offline:6 | Test:7 | Defer:8 | Quiesce:9 | Reboot:10 | Reset:11
|
|
226
|
+
*/
|
|
227
|
+
type RequestedStateInputs = 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11;
|
|
228
|
+
/**
|
|
229
|
+
* Unknown:0 | Other:1 | Raw:2 | RDP:3 | VNC-RFB:4
|
|
230
|
+
*/
|
|
231
|
+
type KVMProtocol = 0 | 1 | 2 | 3 | 4;
|
|
232
|
+
}
|
|
233
|
+
namespace WiFiEndpointSettings {
|
|
234
|
+
/**
|
|
235
|
+
* Unknown:0 | Independent:2 | Infrastructure:3
|
|
236
|
+
*/
|
|
237
|
+
type BSSType = 0 | 2 | 3;
|
|
238
|
+
/**
|
|
239
|
+
* Other:1 | WEP:2 | TKIP:3 | CCMP:4 | None:5
|
|
240
|
+
*/
|
|
241
|
+
type EncryptionMethod = 1 | 2 | 3 | 4 | 5;
|
|
242
|
+
/**
|
|
243
|
+
* Other:1 | Open System:2 | Shared Key:3 | WPA PSK:4 | WPA IEEE 802.1x:5 | WPA2 PSK:6 | WPA2 IEEE 802.1x:7 | WPA3 SAE:32768 | WPA3 OWE:32769
|
|
244
|
+
*/
|
|
245
|
+
type AuthenticationMethod = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 32768 | 32769;
|
|
246
|
+
}
|
|
247
|
+
namespace PolicySet {
|
|
248
|
+
/**
|
|
249
|
+
* First Matching:1 | All:2
|
|
250
|
+
*/
|
|
251
|
+
type PolicyDecisionStrategy = 1 | 2;
|
|
252
|
+
/**
|
|
253
|
+
* Enabled:1 | Disabled:2 | Enabled For Debug:3
|
|
254
|
+
*/
|
|
255
|
+
type Enabled = 1 | 2 | 3;
|
|
256
|
+
}
|
|
257
|
+
namespace IEEE8021xSettings {
|
|
258
|
+
/**
|
|
259
|
+
* EAP-TLS:0 | EAP-TTLS/MSCHAPv2:1 | PEAPv0/EAP-MSCHAPv2:2 | PEAPv1/EAP-GTC:3 | EAP-FAST/MSCHAPv2:4 | EAP-FAST/GTC:5 | EAP-MD5:6 | EAP-PSK:7 | EAP-SIM:8 | EAP-AKA:9 | EAP-FAST/TLS:10
|
|
260
|
+
*/
|
|
261
|
+
type AuthenticationProtocol = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
262
|
+
/**
|
|
263
|
+
* Other:1 | FullName:2 | DomainSuffix:3
|
|
264
|
+
*/
|
|
265
|
+
type ServerCertificateNameComparison = 1 | 2 | 3;
|
|
266
|
+
}
|
|
267
|
+
namespace WiFiPort {
|
|
268
|
+
/**
|
|
269
|
+
* Unknown:0 | Enabled:2 | Disabled:3 | Shut Down:4 | No Change:5 | Offline:6 | Test:7 | Deferred:8 | Quiesce:9 | Reboot:10 | Reset:11 | Not Applicable:12 | WiFi is enabled in S0:32768 | WiFi is enabled in S0 + Sx/AC:32769
|
|
270
|
+
*/
|
|
271
|
+
type RequestedState = 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 32768 | 32769;
|
|
272
|
+
}
|
|
273
|
+
namespace BootService {
|
|
274
|
+
/**
|
|
275
|
+
* IsNext:0 | IsNextSingleUse:1 | IsDefault:2
|
|
276
|
+
*/
|
|
277
|
+
type Role = 0 | 1 | 2;
|
|
278
|
+
/**
|
|
279
|
+
* Enabled: 2 | Disabled: 3 | Shut Down: 4 | Offline: 6 | Test: 7 | Defer: 8 | Quiesce: 9 | Reboot: 10 | Reset: 11 | disable Intel One-Click Recovery and Intel RPE and enable all other boot options: 32768 | disable Intel RPE and enable Intel One-Click Recovery and all other boot options: 32769 | disable Intel One-Click Recovery and enable Intel RPE and all other boot options: 32770 | enable all boot options: 32771 | Vendor Reserved: 32772
|
|
280
|
+
*/
|
|
281
|
+
type RequestedState = 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 32768 | 32769 | 32770 | 32771 | 32772;
|
|
282
|
+
}
|
|
283
|
+
namespace PowerManagementService {
|
|
284
|
+
/**
|
|
285
|
+
* Power On:2 | Sleep - Light:3 | Sleep - Deep:4 | Power Cycle (Off Soft):5 | Power Off - Hard:6 | Hibernate:7 | Power Off - Soft:8 | Power Cycle (Off Hard):9 | Master Bus Reset:10 | Diagnostic Interrupt (NMI):11 | Power Off - Soft Graceful:12 | Power Off - Hard Graceful:13 | Master Bus Reset Graceful:14 | Power Cycle (Off - Soft Graceful):15 | Power Cycle (Off - Hard Graceful):16
|
|
286
|
+
*/
|
|
287
|
+
type PowerState = 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16;
|
|
288
|
+
}
|
|
289
|
+
namespace BootConfigSetting {
|
|
290
|
+
type InstanceID = 'Intel(r) AMT: Force Hard-drive Boot' | 'Intel(r) AMT: Force CD/DVD Boot' | 'Intel(r) AMT: Force PXE Boot' | 'Intel(r) AMT: Force OCR UEFI HTTPS Boot' | 'Intel(r) AMT: Force OCR UEFI Boot Option 1' | 'Intel(r) AMT: Force OCR UEFI Boot Option 2' | 'Intel(r) AMT: Force OCR UEFI Boot Option 3' | 'Intel(r) AMT: Force OCR UEFI Boot Option 4' | 'Intel(r) AMT: Force OCR UEFI Boot Option 5' | 'Intel(r) AMT: Force OCR UEFI Boot Option 6' | 'Intel(r) AMT: Force OCR UEFI Boot Option 7' | 'Intel(r) AMT: Force OCR UEFI Boot Option 8' | 'Intel(r) AMT: Force OCR UEFI Boot Option 9' | 'Intel(r) AMT: Force OCR UEFI Boot Option 10';
|
|
291
|
+
/**
|
|
292
|
+
* Unknown: 0 | Is Supported: 1 | Not Supported: 2
|
|
293
|
+
*/
|
|
294
|
+
type FailThroughSupported = 0 | 1 | 2;
|
|
295
|
+
}
|
|
296
|
+
}
|
package/cim/types.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*********************************************************************
|
|
3
|
+
* Copyright (c) Intel Corporation 2021
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
**********************************************************************/
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
//# sourceMappingURL=types.js.map
|
package/cim/types.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/cim/types.ts"],"names":[],"mappings":";AAAA;;;wEAGwE"}
|
package/dist
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@open-amt-cloud-toolkit/wsman-messages",
|
|
3
|
+
"version": "5.9.4",
|
|
4
|
+
"description": "A reusable package for AMT libraries",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"types": " index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"prepublishOnly": "cp package.json dist",
|
|
9
|
+
"compile": "tsc",
|
|
10
|
+
"lint": "eslint .",
|
|
11
|
+
"test": "jest --detectOpenHandles --forceExit --coverage",
|
|
12
|
+
"prettify": "npx prettier --write .",
|
|
13
|
+
"ci-prettify": "npx prettier --check ."
|
|
14
|
+
},
|
|
15
|
+
"private": false,
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/device-management-toolkit/wsman-messages.git"
|
|
22
|
+
},
|
|
23
|
+
"author": "",
|
|
24
|
+
"license": "Apache-2.0",
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/device-management-toolkit/wsman-messages/issues"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://github.com/device-management-toolkit/wsman-messages#readme",
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@types/jest": "^29.5.14",
|
|
31
|
+
"@types/node": "^22.0.0",
|
|
32
|
+
"eslint": "^9.7.0",
|
|
33
|
+
"eslint-config-prettier": "^10.0.1",
|
|
34
|
+
"jest": "^29.7.0",
|
|
35
|
+
"jest-junit": "^16.0.0",
|
|
36
|
+
"prettier-config-standard": "^7.0.0",
|
|
37
|
+
"prettier-plugin-multiline-arrays": "^4.0.1",
|
|
38
|
+
"ts-jest": "^29.2.6",
|
|
39
|
+
"typescript": "^5.8.3",
|
|
40
|
+
"typescript-eslint": "8.32.1"
|
|
41
|
+
}
|
|
42
|
+
}
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/*********************************************************************
|
|
2
|
+
* Copyright (c) Intel Corporation 2021
|
|
3
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
**********************************************************************/
|
|
5
|
+
import * as AMT from './amt';
|
|
6
|
+
import * as CIM from './cim';
|
|
7
|
+
import * as IPS from './ips';
|
|
8
|
+
import * as Common from './models';
|
|
9
|
+
export { AMT, IPS, CIM, Common };
|
package/index.js
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*********************************************************************
|
|
3
|
+
* Copyright (c) Intel Corporation 2021
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
**********************************************************************/
|
|
6
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7
|
+
if (k2 === undefined) k2 = k;
|
|
8
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
9
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
10
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
11
|
+
}
|
|
12
|
+
Object.defineProperty(o, k2, desc);
|
|
13
|
+
}) : (function(o, m, k, k2) {
|
|
14
|
+
if (k2 === undefined) k2 = k;
|
|
15
|
+
o[k2] = m[k];
|
|
16
|
+
}));
|
|
17
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
18
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
19
|
+
}) : function(o, v) {
|
|
20
|
+
o["default"] = v;
|
|
21
|
+
});
|
|
22
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
23
|
+
var ownKeys = function(o) {
|
|
24
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
25
|
+
var ar = [];
|
|
26
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
27
|
+
return ar;
|
|
28
|
+
};
|
|
29
|
+
return ownKeys(o);
|
|
30
|
+
};
|
|
31
|
+
return function (mod) {
|
|
32
|
+
if (mod && mod.__esModule) return mod;
|
|
33
|
+
var result = {};
|
|
34
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
35
|
+
__setModuleDefault(result, mod);
|
|
36
|
+
return result;
|
|
37
|
+
};
|
|
38
|
+
})();
|
|
39
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40
|
+
exports.Common = exports.CIM = exports.IPS = exports.AMT = void 0;
|
|
41
|
+
const AMT = __importStar(require("./amt"));
|
|
42
|
+
exports.AMT = AMT;
|
|
43
|
+
const CIM = __importStar(require("./cim"));
|
|
44
|
+
exports.CIM = CIM;
|
|
45
|
+
const IPS = __importStar(require("./ips"));
|
|
46
|
+
exports.IPS = IPS;
|
|
47
|
+
const Common = __importStar(require("./models"));
|
|
48
|
+
exports.Common = Common;
|
|
49
|
+
//# sourceMappingURL=index.js.map
|
package/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;wEAGwE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAExE,2CAA4B;AAInB,kBAAG;AAHZ,2CAA4B;AAGT,kBAAG;AAFtB,2CAA4B;AAEd,kBAAG;AADjB,iDAAkC;AACV,wBAAM"}
|
package/ips/actions.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/*********************************************************************
|
|
2
|
+
* Copyright (c) Intel Corporation 2021
|
|
3
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
**********************************************************************/
|
|
5
|
+
export declare enum Actions {
|
|
6
|
+
SETUP = "http://intel.com/wbem/wscim/1/ips-schema/1/IPS_HostBasedSetupService/Setup",
|
|
7
|
+
ADMIN_SETUP = "http://intel.com/wbem/wscim/1/ips-schema/1/IPS_HostBasedSetupService/AdminSetup",
|
|
8
|
+
UPGRADE_CLIENT_TO_ADMIN = "http://intel.com/wbem/wscim/1/ips-schema/1/IPS_HostBasedSetupService/UpgradeClientToAdmin",
|
|
9
|
+
ADD_NEXT_CERT_IN_CHAIN = "http://intel.com/wbem/wscim/1/ips-schema/1/IPS_HostBasedSetupService/AddNextCertInChain",
|
|
10
|
+
START_OPT_IN = "http://intel.com/wbem/wscim/1/ips-schema/1/IPS_OptInService/StartOptIn",
|
|
11
|
+
CANCEL_OPT_IN = "http://intel.com/wbem/wscim/1/ips-schema/1/IPS_OptInService/CancelOptIn",
|
|
12
|
+
SEND_OPT_IN_CODE = "http://intel.com/wbem/wscim/1/ips-schema/1/IPS_OptInService/SendOptInCode",
|
|
13
|
+
SET_CERTIFICATES = "http://intel.com/wbem/wscim/1/ips-schema/1/IPS_IEEE8021xSettings/SetCertificates",
|
|
14
|
+
REQUEST_OS_POWER_SAVING_STATE_CHANG = "http://intel.com/wbem/wscim/1/ips-schema/1/IPS_PowerManagementService/RequestOSPowerSavingStateChange"
|
|
15
|
+
}
|
package/ips/actions.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*********************************************************************
|
|
3
|
+
* Copyright (c) Intel Corporation 2021
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
**********************************************************************/
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.Actions = void 0;
|
|
8
|
+
var Actions;
|
|
9
|
+
(function (Actions) {
|
|
10
|
+
Actions["SETUP"] = "http://intel.com/wbem/wscim/1/ips-schema/1/IPS_HostBasedSetupService/Setup";
|
|
11
|
+
Actions["ADMIN_SETUP"] = "http://intel.com/wbem/wscim/1/ips-schema/1/IPS_HostBasedSetupService/AdminSetup";
|
|
12
|
+
Actions["UPGRADE_CLIENT_TO_ADMIN"] = "http://intel.com/wbem/wscim/1/ips-schema/1/IPS_HostBasedSetupService/UpgradeClientToAdmin";
|
|
13
|
+
Actions["ADD_NEXT_CERT_IN_CHAIN"] = "http://intel.com/wbem/wscim/1/ips-schema/1/IPS_HostBasedSetupService/AddNextCertInChain";
|
|
14
|
+
Actions["START_OPT_IN"] = "http://intel.com/wbem/wscim/1/ips-schema/1/IPS_OptInService/StartOptIn";
|
|
15
|
+
Actions["CANCEL_OPT_IN"] = "http://intel.com/wbem/wscim/1/ips-schema/1/IPS_OptInService/CancelOptIn";
|
|
16
|
+
Actions["SEND_OPT_IN_CODE"] = "http://intel.com/wbem/wscim/1/ips-schema/1/IPS_OptInService/SendOptInCode";
|
|
17
|
+
Actions["SET_CERTIFICATES"] = "http://intel.com/wbem/wscim/1/ips-schema/1/IPS_IEEE8021xSettings/SetCertificates";
|
|
18
|
+
Actions["REQUEST_OS_POWER_SAVING_STATE_CHANG"] = "http://intel.com/wbem/wscim/1/ips-schema/1/IPS_PowerManagementService/RequestOSPowerSavingStateChange";
|
|
19
|
+
})(Actions || (exports.Actions = Actions = {}));
|
|
20
|
+
//# sourceMappingURL=actions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"actions.js","sourceRoot":"","sources":["../../src/ips/actions.ts"],"names":[],"mappings":";AAAA;;;wEAGwE;;;AAExE,IAAY,OAUX;AAVD,WAAY,OAAO;IACjB,+FAAoF,CAAA;IACpF,0GAA+F,CAAA;IAC/F,gIAAqH,CAAA;IACrH,6HAAkH,CAAA;IAClH,kGAAuF,CAAA;IACvF,oGAAyF,CAAA;IACzF,yGAA8F,CAAA;IAC9F,gHAAqG,CAAA;IACrG,wJAA6I,CAAA;AAC/I,CAAC,EAVW,OAAO,uBAAP,OAAO,QAUlB"}
|
package/ips/classes.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/*********************************************************************
|
|
2
|
+
* Copyright (c) Intel Corporation 2021
|
|
3
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
**********************************************************************/
|
|
5
|
+
export declare enum Classes {
|
|
6
|
+
OPT_IN_SERVICE = "IPS_OptInService",
|
|
7
|
+
HOST_BASED_SETUP_SERVICE = "IPS_HostBasedSetupService",
|
|
8
|
+
ALARM_CLOCK_OCCURRENCE = "IPS_AlarmClockOccurrence",
|
|
9
|
+
IEEE8021X_SETTINGS = "IPS_IEEE8021xSettings",
|
|
10
|
+
IEEE8021X_CREDENTIAL_CONTEXT = "IPS_8021xCredentialContext",
|
|
11
|
+
POWER_MANAGEMENT_SERVICE = "IPS_PowerManagementService"
|
|
12
|
+
}
|
package/ips/classes.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*********************************************************************
|
|
3
|
+
* Copyright (c) Intel Corporation 2021
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
**********************************************************************/
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.Classes = void 0;
|
|
8
|
+
var Classes;
|
|
9
|
+
(function (Classes) {
|
|
10
|
+
Classes["OPT_IN_SERVICE"] = "IPS_OptInService";
|
|
11
|
+
Classes["HOST_BASED_SETUP_SERVICE"] = "IPS_HostBasedSetupService";
|
|
12
|
+
Classes["ALARM_CLOCK_OCCURRENCE"] = "IPS_AlarmClockOccurrence";
|
|
13
|
+
Classes["IEEE8021X_SETTINGS"] = "IPS_IEEE8021xSettings";
|
|
14
|
+
Classes["IEEE8021X_CREDENTIAL_CONTEXT"] = "IPS_8021xCredentialContext";
|
|
15
|
+
Classes["POWER_MANAGEMENT_SERVICE"] = "IPS_PowerManagementService";
|
|
16
|
+
})(Classes || (exports.Classes = Classes = {}));
|
|
17
|
+
//# sourceMappingURL=classes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"classes.js","sourceRoot":"","sources":["../../src/ips/classes.ts"],"names":[],"mappings":";AAAA;;;wEAGwE;;;AAExE,IAAY,OAOX;AAPD,WAAY,OAAO;IACjB,8CAAmC,CAAA;IACnC,iEAAsD,CAAA;IACtD,8DAAmD,CAAA;IACnD,uDAA4C,CAAA;IAC5C,sEAA2D,CAAA;IAC3D,kEAAuD,CAAA;AACzD,CAAC,EAPW,OAAO,uBAAP,OAAO,QAOlB"}
|
package/ips/index.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/*********************************************************************
|
|
2
|
+
* Copyright (c) Intel Corporation 2021
|
|
3
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
**********************************************************************/
|
|
5
|
+
import { Actions } from './actions';
|
|
6
|
+
import { Classes } from './classes';
|
|
7
|
+
import { Messages } from './messages';
|
|
8
|
+
import { Methods } from './methods';
|
|
9
|
+
import type { Models } from './models';
|
|
10
|
+
import type { Types } from './types';
|
|
11
|
+
export { Methods, Actions, Classes, Messages };
|
|
12
|
+
export type { Types, Models };
|
package/ips/index.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*********************************************************************
|
|
3
|
+
* Copyright (c) Intel Corporation 2021
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
**********************************************************************/
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.Messages = exports.Classes = exports.Actions = exports.Methods = void 0;
|
|
8
|
+
const actions_1 = require("./actions");
|
|
9
|
+
Object.defineProperty(exports, "Actions", { enumerable: true, get: function () { return actions_1.Actions; } });
|
|
10
|
+
const classes_1 = require("./classes");
|
|
11
|
+
Object.defineProperty(exports, "Classes", { enumerable: true, get: function () { return classes_1.Classes; } });
|
|
12
|
+
const messages_1 = require("./messages");
|
|
13
|
+
Object.defineProperty(exports, "Messages", { enumerable: true, get: function () { return messages_1.Messages; } });
|
|
14
|
+
const methods_1 = require("./methods");
|
|
15
|
+
Object.defineProperty(exports, "Methods", { enumerable: true, get: function () { return methods_1.Methods; } });
|
|
16
|
+
//# sourceMappingURL=index.js.map
|
package/ips/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/ips/index.ts"],"names":[],"mappings":";AAAA;;;wEAGwE;;;AAExE,uCAAmC;AAMjB,wFANT,iBAAO,OAMS;AALzB,uCAAmC;AAKR,wFALlB,iBAAO,OAKkB;AAJlC,yCAAqC;AAID,yFAJ3B,mBAAQ,OAI2B;AAH5C,uCAAmC;AAG1B,wFAHA,iBAAO,OAGA"}
|