@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/messages.js
ADDED
|
@@ -0,0 +1,215 @@
|
|
|
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 = void 0;
|
|
8
|
+
const WSMan_1 = require("../WSMan");
|
|
9
|
+
const _1 = require("./");
|
|
10
|
+
class BIOSElement extends WSMan_1.Base {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments);
|
|
13
|
+
this.className = _1.Classes.BIOS_ELEMENT;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
class BootConfigSetting extends WSMan_1.Base {
|
|
17
|
+
constructor() {
|
|
18
|
+
super(...arguments);
|
|
19
|
+
this.className = _1.Classes.BOOT_CONFIG_SETTING;
|
|
20
|
+
/**
|
|
21
|
+
* This method is called to change the boot order within a boot configuration.
|
|
22
|
+
* @param source Types.BootConfigSetting.InstanceID. Optional. Not specifying a source clears the BootConfigSetting
|
|
23
|
+
* @returns string
|
|
24
|
+
*/
|
|
25
|
+
this.ChangeBootOrder = (source) => {
|
|
26
|
+
const header = this.wsmanMessageCreator.createHeader(_1.Actions.CHANGE_BOOT_ORDER, _1.Classes.BOOT_CONFIG_SETTING);
|
|
27
|
+
const bootSource = source
|
|
28
|
+
? `<h:Source><Address xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing">http://schemas.xmlsoap.org/ws/2004/08/addressing</Address><ReferenceParameters xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing"><ResourceURI xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd">http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_BootSourceSetting</ResourceURI><SelectorSet xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd"><Selector Name="InstanceID">${source}</Selector></SelectorSet></ReferenceParameters></h:Source>`
|
|
29
|
+
: '';
|
|
30
|
+
const body = `<Body><h:ChangeBootOrder_INPUT xmlns:h="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_BootConfigSetting">${bootSource}</h:ChangeBootOrder_INPUT></Body>`;
|
|
31
|
+
return this.wsmanMessageCreator.createXml(header, body);
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
class BootService extends WSMan_1.Base {
|
|
36
|
+
constructor() {
|
|
37
|
+
super(...arguments);
|
|
38
|
+
this.className = _1.Classes.BOOT_SERVICE;
|
|
39
|
+
/**
|
|
40
|
+
* This method is called to set the role of the BootConfigSetting that is directly or indirectly associated to one or more ComputerSystems. The method applies the new role equally to all related ComputerSystems. If a BootConfigSetting can be related to more than one ComputerSystem, but role modification applies to just one of them, the SetBootConfigUsage method shall be used instead. The method shall update the IsNext or IsDefault property of every ElementSettingData that directly or indirectly associates BootConfigSetting to a ComputerSystem. The method may also update the IsNext or IsDefault property of other ElementSettingDatas that reference the same ComputerSystems to satisfy cardinality constraints.
|
|
41
|
+
* @param bootSource An existing BootConfigSetting instance whose role will be updated.
|
|
42
|
+
* @param role The desired Role of the BootConfigSetting.
|
|
43
|
+
* @returns string
|
|
44
|
+
*/
|
|
45
|
+
this.SetBootConfigRole = (bootSource, role) => {
|
|
46
|
+
const header = this.wsmanMessageCreator.createHeader(_1.Actions.SET_BOOT_CONFIG_ROLE, _1.Classes.BOOT_SERVICE);
|
|
47
|
+
const body = `<Body><h:SetBootConfigRole_INPUT xmlns:h="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_BootService"><h:BootConfigSetting><Address xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing">http://schemas.xmlsoap.org/ws/2004/08/addressing</Address><ReferenceParameters xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing"><ResourceURI xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd">http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_BootConfigSetting</ResourceURI><SelectorSet xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd"><Selector Name="InstanceID">${bootSource}</Selector></SelectorSet></ReferenceParameters></h:BootConfigSetting><h:Role>${role}</h:Role></h:SetBootConfigRole_INPUT></Body>`;
|
|
48
|
+
return this.wsmanMessageCreator.createXml(header, body);
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* Requests that the state of the element be changed to the value specified in the RequestedState parameter. When the requested state change takes place, the EnabledState and RequestedState of the element will be the same. Invoking the RequestStateChange method multiple times could result in earlier requests being overwritten or lost. If 0 is returned, then the task completed successfully and the use of ConcreteJob was not required. If 4096 (0x1000) is returned, then the task will take some time to complete, ConcreteJob will be created, and its reference returned in the output parameter Job. Any other return code indicates an error condition.
|
|
52
|
+
* @param requestedState The state requested for the element. This information will be placed into the RequestedState property of the instance if the return code of the RequestStateChange method is 0 ('Completed with No Error'), or 4096 (0x1000) ('Job Started'). Refer to the description of the EnabledState and RequestedState properties for the detailed explanations of the RequestedState values.
|
|
53
|
+
* @returns string
|
|
54
|
+
*/
|
|
55
|
+
this.RequestStateChange = (requestedState) => this.protectedRequestStateChange(`http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/${this.className}/RequestStateChange`, requestedState);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
class BootSourceSetting extends WSMan_1.Base {
|
|
59
|
+
constructor() {
|
|
60
|
+
super(...arguments);
|
|
61
|
+
this.className = _1.Classes.BOOT_SOURCE_SETTING;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
class Card extends WSMan_1.Base {
|
|
65
|
+
constructor() {
|
|
66
|
+
super(...arguments);
|
|
67
|
+
this.className = _1.Classes.CARD;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
class Chassis extends WSMan_1.Base {
|
|
71
|
+
constructor() {
|
|
72
|
+
super(...arguments);
|
|
73
|
+
this.className = _1.Classes.CHASSIS;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
class Chip extends WSMan_1.Base {
|
|
77
|
+
constructor() {
|
|
78
|
+
super(...arguments);
|
|
79
|
+
this.className = _1.Classes.CHIP;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
class ComputerSystemPackage extends WSMan_1.Base {
|
|
83
|
+
constructor() {
|
|
84
|
+
super(...arguments);
|
|
85
|
+
this.className = _1.Classes.COMPUTER_SYSTEM_PACKAGE;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
class IEEE8021xSettings extends WSMan_1.Base {
|
|
89
|
+
constructor() {
|
|
90
|
+
super(...arguments);
|
|
91
|
+
this.className = _1.Classes.IEEE8021X_SETTINGS;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
class KVMRedirectionSAP extends WSMan_1.Base {
|
|
95
|
+
constructor() {
|
|
96
|
+
super(...arguments);
|
|
97
|
+
this.className = _1.Classes.KVM_REDIRECTION_SAP;
|
|
98
|
+
/**
|
|
99
|
+
* Requests that the state of the element be changed to the value specified in the RequestedState parameter. When the requested state change takes place, the EnabledState and RequestedState of the element will be the same. Invoking the RequestStateChange method multiple times could result in earlier requests being overwritten or lost. A return code of 0 shall indicate the state change was successfully initiated. A return code of 3 shall indicate that the state transition cannot complete within the interval specified by the TimeoutPeriod parameter. A return code of 4096 (0x1000) shall indicate the state change was successfully initiated, a ConcreteJob has been created, and its reference returned in the output parameter Job. Any other return code indicates an error condition.
|
|
100
|
+
* @param requestedState The state requested for the element. This information will be placed into the RequestedState property of the instance if the return code of the RequestStateChange method is 0 ('Completed with No Error'), or 4096 (0x1000) ('Job Started'). Refer to the description of the EnabledState and RequestedState properties for the detailed explanations of the RequestedState values.
|
|
101
|
+
* @returns string
|
|
102
|
+
*/
|
|
103
|
+
this.RequestStateChange = (requestedState) => this.protectedRequestStateChange(`http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/${this.className}/RequestStateChange`, requestedState);
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
class MediaAccessDevice extends WSMan_1.Base {
|
|
107
|
+
constructor() {
|
|
108
|
+
super(...arguments);
|
|
109
|
+
this.className = _1.Classes.MEDIA_ACCESS_DEVICE;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
class PhysicalMemory extends WSMan_1.Base {
|
|
113
|
+
constructor() {
|
|
114
|
+
super(...arguments);
|
|
115
|
+
this.className = _1.Classes.PHYSICAL_MEMORY;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
class PhysicalPackage extends WSMan_1.Base {
|
|
119
|
+
constructor() {
|
|
120
|
+
super(...arguments);
|
|
121
|
+
this.className = _1.Classes.PHYSICAL_PACKAGE;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
class PowerManagementService extends WSMan_1.Base {
|
|
125
|
+
constructor() {
|
|
126
|
+
super(...arguments);
|
|
127
|
+
this.className = _1.Classes.POWER_MANAGEMENT_SERVICE;
|
|
128
|
+
/**
|
|
129
|
+
* RequestPowerStateChange defines the desired power state of the managed element, and when the element should be put into that state. The RequestPowerStateChange method has five input parameters and a result code.
|
|
130
|
+
* @param powerState The power state for PowerManagementService.
|
|
131
|
+
* @returns string
|
|
132
|
+
*/
|
|
133
|
+
this.RequestPowerStateChange = (powerState) => {
|
|
134
|
+
const header = this.wsmanMessageCreator.createHeader(_1.Actions.REQUEST_POWER_STATE_CHANGE, _1.Classes.POWER_MANAGEMENT_SERVICE);
|
|
135
|
+
const body = `<Body><h:RequestPowerStateChange_INPUT xmlns:h="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_PowerManagementService"><h:PowerState>${powerState}</h:PowerState><h:ManagedElement><Address xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing">http://schemas.xmlsoap.org/ws/2004/08/addressing</Address><ReferenceParameters xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing"><ResourceURI xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd">http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ComputerSystem</ResourceURI><SelectorSet xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd"><Selector Name="CreationClassName">CIM_ComputerSystem</Selector><Selector Name="Name">ManagedSystem</Selector></SelectorSet></ReferenceParameters></h:ManagedElement></h:RequestPowerStateChange_INPUT></Body>`;
|
|
136
|
+
return this.wsmanMessageCreator.createXml(header, body);
|
|
137
|
+
};
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
class Processor extends WSMan_1.Base {
|
|
141
|
+
constructor() {
|
|
142
|
+
super(...arguments);
|
|
143
|
+
this.className = _1.Classes.PROCESSOR;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
class ServiceAvailableToElement extends WSMan_1.Base {
|
|
147
|
+
constructor() {
|
|
148
|
+
super(...arguments);
|
|
149
|
+
this.className = _1.Classes.SERVICE_AVAILABLE_TO_ELEMENT;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
class SoftwareIdentity extends WSMan_1.Base {
|
|
153
|
+
constructor() {
|
|
154
|
+
super(...arguments);
|
|
155
|
+
this.className = _1.Classes.SOFTWARE_IDENTITY;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
class SystemPackaging extends WSMan_1.Base {
|
|
159
|
+
constructor() {
|
|
160
|
+
super(...arguments);
|
|
161
|
+
this.className = _1.Classes.SYSTEM_PACKAGING;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
class WiFiEndpointSettings extends WSMan_1.Base {
|
|
165
|
+
constructor() {
|
|
166
|
+
super(...arguments);
|
|
167
|
+
this.className = _1.Classes.WIFI_ENDPOINT_SETTINGS;
|
|
168
|
+
/**
|
|
169
|
+
* Deletes an instance of WiFiEndpointSettings
|
|
170
|
+
* @param selector Selector Object.
|
|
171
|
+
* @returns string
|
|
172
|
+
*/
|
|
173
|
+
this.Delete = (selector) => this.protectedDelete(selector);
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
class WiFiPort extends WSMan_1.Base {
|
|
177
|
+
constructor() {
|
|
178
|
+
super(...arguments);
|
|
179
|
+
this.className = _1.Classes.WIFI_PORT;
|
|
180
|
+
/**
|
|
181
|
+
* Requests that the state of the element be changed to the value specified in the RequestedState parameter. When the requested state change takes place, the EnabledState and RequestedState of the element will be the same. Invoking the RequestStateChange method multiple times could result in earlier requests being overwritten or lost. A return code of 0 shall indicate the state change was successfully initiated. A return code of 3 shall indicate that the state transition cannot complete within the interval specified by the TimeoutPeriod parameter. A return code of 4096 (0x1000) shall indicate the state change was successfully initiated, a ConcreteJob has been created, and its reference returned in the output parameter Job. Any other return code indicates an error condition.
|
|
182
|
+
* @param requestedState The state requested for the element. This information will be placed into the RequestedState property of the instance if the return code of the RequestStateChange method is 0 ('Completed with No Error'), or 4096 (0x1000) ('Job Started'). Refer to the description of the EnabledState and RequestedState properties for the detailed explanations of the RequestedState values.
|
|
183
|
+
* @returns string
|
|
184
|
+
*/
|
|
185
|
+
this.RequestStateChange = (requestedState) => this.protectedRequestStateChange(`http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/${this.className}/RequestStateChange`, requestedState);
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
class Messages {
|
|
189
|
+
constructor() {
|
|
190
|
+
this.resourceUriBase = 'http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/';
|
|
191
|
+
this.wsmanMessageCreator = new WSMan_1.WSManMessageCreator(this.resourceUriBase);
|
|
192
|
+
this.BIOSElement = new BIOSElement(this.wsmanMessageCreator);
|
|
193
|
+
this.BootConfigSetting = new BootConfigSetting(this.wsmanMessageCreator);
|
|
194
|
+
this.BootService = new BootService(this.wsmanMessageCreator);
|
|
195
|
+
this.BootSourceSetting = new BootSourceSetting(this.wsmanMessageCreator);
|
|
196
|
+
this.Card = new Card(this.wsmanMessageCreator);
|
|
197
|
+
this.Chassis = new Chassis(this.wsmanMessageCreator);
|
|
198
|
+
this.Chip = new Chip(this.wsmanMessageCreator);
|
|
199
|
+
this.ComputerSystemPackage = new ComputerSystemPackage(this.wsmanMessageCreator);
|
|
200
|
+
this.IEEE8021xSettings = new IEEE8021xSettings(this.wsmanMessageCreator);
|
|
201
|
+
this.KVMRedirectionSAP = new KVMRedirectionSAP(this.wsmanMessageCreator);
|
|
202
|
+
this.MediaAccessDevice = new MediaAccessDevice(this.wsmanMessageCreator);
|
|
203
|
+
this.PhysicalMemory = new PhysicalMemory(this.wsmanMessageCreator);
|
|
204
|
+
this.PhysicalPackage = new PhysicalPackage(this.wsmanMessageCreator);
|
|
205
|
+
this.PowerManagementService = new PowerManagementService(this.wsmanMessageCreator);
|
|
206
|
+
this.Processor = new Processor(this.wsmanMessageCreator);
|
|
207
|
+
this.ServiceAvailableToElement = new ServiceAvailableToElement(this.wsmanMessageCreator);
|
|
208
|
+
this.SoftwareIdentity = new SoftwareIdentity(this.wsmanMessageCreator);
|
|
209
|
+
this.SystemPackaging = new SystemPackaging(this.wsmanMessageCreator);
|
|
210
|
+
this.WiFiEndpointSettings = new WiFiEndpointSettings(this.wsmanMessageCreator);
|
|
211
|
+
this.WiFiPort = new WiFiPort(this.wsmanMessageCreator);
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
exports.Messages = Messages;
|
|
215
|
+
//# sourceMappingURL=messages.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"messages.js","sourceRoot":"","sources":["../../src/cim/messages.ts"],"names":[],"mappings":"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"}
|