@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.
Files changed (90) hide show
  1. package/README.md +29 -0
  2. package/WSMan.d.ts +217 -0
  3. package/WSMan.js +395 -0
  4. package/WSMan.js.map +1 -0
  5. package/amt/actions.d.ts +112 -0
  6. package/amt/actions.js +118 -0
  7. package/amt/actions.js.map +1 -0
  8. package/amt/classes.d.ts +33 -0
  9. package/amt/classes.js +38 -0
  10. package/amt/classes.js.map +1 -0
  11. package/amt/index.d.ts +12 -0
  12. package/amt/index.js +17 -0
  13. package/amt/index.js.map +1 -0
  14. package/amt/messages.d.ts +466 -0
  15. package/amt/messages.js +819 -0
  16. package/amt/messages.js.map +1 -0
  17. package/amt/messages.test.d.ts +5 -0
  18. package/amt/messages.test.js +1091 -0
  19. package/amt/messages.test.js.map +1 -0
  20. package/amt/methods.d.ts +42 -0
  21. package/amt/methods.js +47 -0
  22. package/amt/methods.js.map +1 -0
  23. package/amt/models.d.ts +329 -0
  24. package/amt/models.js +7 -0
  25. package/amt/models.js.map +1 -0
  26. package/amt/types.d.ts +206 -0
  27. package/amt/types.js +7 -0
  28. package/amt/types.js.map +1 -0
  29. package/cim/actions.d.ts +9 -0
  30. package/cim/actions.js +14 -0
  31. package/cim/actions.js.map +1 -0
  32. package/cim/classes.d.ts +27 -0
  33. package/cim/classes.js +32 -0
  34. package/cim/classes.js.map +1 -0
  35. package/cim/index.d.ts +12 -0
  36. package/cim/index.js +16 -0
  37. package/cim/index.js.map +1 -0
  38. package/cim/messages.d.ts +136 -0
  39. package/cim/messages.js +215 -0
  40. package/cim/messages.js.map +1 -0
  41. package/cim/messages.test.d.ts +5 -0
  42. package/cim/messages.test.js +408 -0
  43. package/cim/messages.test.js.map +1 -0
  44. package/cim/methods.d.ts +15 -0
  45. package/cim/methods.js +20 -0
  46. package/cim/methods.js.map +1 -0
  47. package/cim/models.d.ts +376 -0
  48. package/cim/models.js +7 -0
  49. package/cim/models.js.map +1 -0
  50. package/cim/types.d.ts +296 -0
  51. package/cim/types.js +7 -0
  52. package/cim/types.js.map +1 -0
  53. package/dist +42 -0
  54. package/index.d.ts +9 -0
  55. package/index.js +49 -0
  56. package/index.js.map +1 -0
  57. package/ips/actions.d.ts +15 -0
  58. package/ips/actions.js +20 -0
  59. package/ips/actions.js.map +1 -0
  60. package/ips/classes.d.ts +12 -0
  61. package/ips/classes.js +17 -0
  62. package/ips/classes.js.map +1 -0
  63. package/ips/index.d.ts +12 -0
  64. package/ips/index.js +16 -0
  65. package/ips/index.js.map +1 -0
  66. package/ips/messages.d.ts +117 -0
  67. package/ips/messages.js +210 -0
  68. package/ips/messages.js.map +1 -0
  69. package/ips/messages.test.d.ts +5 -0
  70. package/ips/messages.test.js +206 -0
  71. package/ips/messages.test.js.map +1 -0
  72. package/ips/methods.d.ts +21 -0
  73. package/ips/methods.js +26 -0
  74. package/ips/methods.js.map +1 -0
  75. package/ips/models.d.ts +59 -0
  76. package/ips/models.js +7 -0
  77. package/ips/models.js.map +1 -0
  78. package/ips/types.d.ts +58 -0
  79. package/ips/types.js +7 -0
  80. package/ips/types.js.map +1 -0
  81. package/models/common.d.ts +104 -0
  82. package/models/common.js +7 -0
  83. package/models/common.js.map +1 -0
  84. package/models/index.d.ts +6 -0
  85. package/models/index.js +43 -0
  86. package/models/index.js.map +1 -0
  87. package/package.json +41 -0
  88. package/wsman.test.d.ts +5 -0
  89. package/wsman.test.js +479 -0
  90. package/wsman.test.js.map +1 -0
@@ -0,0 +1,466 @@
1
+ /*********************************************************************
2
+ * Copyright (c) Intel Corporation 2021
3
+ * SPDX-License-Identifier: Apache-2.0
4
+ **********************************************************************/
5
+ import { CIM } from '../';
6
+ import { Base, WSManMessageCreator } from '../WSMan';
7
+ import { Classes } from './';
8
+ import type { Models, Types } from './';
9
+ import type { IPS } from '../';
10
+ import type { Selector } from '../WSMan';
11
+ declare class AlarmClockService extends Base {
12
+ className: Classes;
13
+ /**
14
+ * This method creates an alarm that would wake the system at a given time.The method receives as input an embedded instance of type IPS_AlarmClockOccurrence, with the following fields set: StartTime, Interval, InstanceID, DeleteOnCompletion. Upon success, the method creates an instance of IPS_AlarmClockOccurrence which is associated with AlarmClockService.The method would fail if 5 instances or more of IPS_AlarmClockOccurrence already exist in the system.
15
+ * @param alarmClockOccurrence IPS.Models.AlarmClockOccurrence Object
16
+ * @returns string
17
+ */
18
+ AddAlarm: (alarmClockOccurrence: IPS.Models.AlarmClockOccurrence) => string;
19
+ /**
20
+ * Changes properties of the selected instance
21
+ * @param alarmClockService An instance of AlarmClockService
22
+ * @returns string
23
+ */
24
+ Put: (alarmClockService: Models.AlarmClockService) => string;
25
+ }
26
+ declare class AuditLog extends Base {
27
+ className: Classes;
28
+ /**
29
+ * Returns a list of consecutive audit log records in chronological order: The first record in the returned array is the oldest record stored in the log. The record entries are returned as an array of base64Binary elements.
30
+ * @param startIndex Identifies the position of the first record to retrieve. An index of 1 indicates the first record in the log. If startIndex isn't provided, defaults to 1.
31
+ * @returns string
32
+ */
33
+ ReadRecords: (startIndex?: number) => string;
34
+ }
35
+ declare class AuthorizationService extends Base {
36
+ className: Classes;
37
+ /**
38
+ * Adds a user entry to the Intel(R) AMT device.
39
+ * @param accessPermission Indicates whether the User is allowed to access Intel(R) AMT from the Network or Local Interfaces. Note: this definition is restricted by the Default Interface Access Permissions of each Realm.
40
+ * @param realms Array of interface names the ACL entry is allowed to access.
41
+ * @param digestUsername Username for access control. Contains 7-bit ASCII characters. String length is limited to 16 characters. Username cannot be an empty string.
42
+ * @param digestPassword An MD5 Hash of these parameters concatenated together (Username + ":" + DigestRealm + ":" + Password). The DigestRealm is a field in AMT_GeneralSettings
43
+ * @param kerberosUserSid Descriptor for user (SID) which is authenticated using the Kerberos Authentication. Byte array, specifying the Security Identifier (SID) according to the Kerberos specification. Current requirements imply that SID should be not smaller than 1 byte length and no longer than 28 bytes. SID length should also be a multiplicand of 4.
44
+ * @returns string
45
+ */
46
+ AddUserAclEntryEx: (accessPermission: Types.AuthorizationService.AccessPermission, realms: Types.AuthorizationService.Realms, digestUsername?: string, digestPassword?: string, kerberosUserSid?: string) => string;
47
+ /**
48
+ * Enumerates entries in the User Access Control List (ACL). Only 50 handles can be returned, so in order to get others startIndex should be bigger than 1.
49
+ * @param startIndex Indicates the first ACL entry to retrieve. if startIndex isn't provided, it will be set to 1
50
+ * @returns string
51
+ */
52
+ EnumerateUserAclEntries: (startIndex?: number) => string;
53
+ /**
54
+ * Gets the state of a user ACL entry (enabled/disabled)
55
+ * @param handle Specifies the ACL entry
56
+ * @returns string
57
+ */
58
+ GetAclEnabledState: (handle: number) => string;
59
+ /**
60
+ * Returns the username attribute of the Admin ACL.
61
+ * @returns string
62
+ */
63
+ GetAdminAclEntry: () => string;
64
+ /**
65
+ * Reads the Admin ACL Entry status from Intel(R) AMT. The return state changes as a function of the admin password. TRUE if the admin ACL entry (admin password) was never changed by the user. Otherwise, the parameter is FALSE.
66
+ * @returns string
67
+ */
68
+ GetAdminAclEntryStatus: () => string;
69
+ /**
70
+ * Reads the remote Admin ACL Entry status from Intel(R) AMT. The return state changes as a function of the remote admin password. TRUE if the admin ACL entry (admin password) was never changed by the user. Otherwise, the parameter is FALSE.
71
+ * @returns string
72
+ */
73
+ GetAdminNetAclEntryStatus: () => string;
74
+ /**
75
+ * Reads a user entry from the Intel(R) AMT device. Note: confidential information, such as password (hash) is omitted or zeroed in the response.
76
+ * @param handle Specifies the ACL entry to fetch.
77
+ * @returns string
78
+ */
79
+ GetUserAclEntryEx: (handle: number) => string;
80
+ /**
81
+ * Removes an entry from the User Access Control List (ACL), given a handle.
82
+ * @param handle Specifies the ACL entry to be removed.
83
+ * @returns string
84
+ */
85
+ RemoveUserAclEntry: (handle: number) => string;
86
+ /**
87
+ * Enables or disables a user ACL entry.Disabling ACL entries is useful when accounts that cannot be removed (system accounts - starting with $$) are required to be disabled.
88
+ * @param handle Specifies the ACL entry to update
89
+ * @param enabled Specifies the state of the ACL entry
90
+ * @returns string
91
+ */
92
+ SetAclEnabledState: (handle: number, enabled: boolean) => string;
93
+ /**
94
+ * Updates an Admin entry in the Intel(R) AMT device.
95
+ * @param username Username for access control. Contains 7-bit ASCII characters. String length is limited to 16 characters. Username cannot be an empty string.
96
+ * @param digestPassword An MD5 Hash of these parameters concatenated together (Username + ":" + DigestRealm + ":" + Password). The DigestRealm is a field in AMT_GeneralSettings.
97
+ * @returns string
98
+ */
99
+ SetAdminACLEntryEx: (username: string, digestPassword: string) => string;
100
+ /**
101
+ * Updates a user entry in the Intel(R) AMT device.
102
+ * @param handle Creation handle to a User ACL entry.
103
+ * @param accessPermission Indicates whether the User is allowed to access Intel(R) AMT from the Network or Local Interfaces. Note: this definition is restricted by the Default Interface Access Permissions of each Realm.
104
+ * @param realms Array of interface names the ACL entry is allowed to access.
105
+ * @param digestUsername Username for access control. Contains 7-bit ASCII characters. String length is limited to 16 characters. Username cannot be an empty string.
106
+ * @param digestPassword An MD5 Hash of these parameters concatenated together (Username + ":" + DigestRealm + ":" + Password). The DigestRealm is a field in AMT_GeneralSettings
107
+ * @param kerberosUserSid Descriptor for user (SID) which is authenticated using the Kerberos Authentication. Byte array, specifying the Security Identifier (SID) according to the Kerberos specification. Current requirements imply that SID should be not smaller than 1 byte length and no longer than 28 bytes. SID length should also be a multiplicand of 4.
108
+ * @returns string
109
+ */
110
+ UpdateUserAclEntryEx: (handle: number, accessPermission: Types.AuthorizationService.AccessPermission, realms: Types.AuthorizationService.Realms, digestUsername?: string, digestPassword?: string, kerberosUserSid?: string) => string;
111
+ }
112
+ declare class BootCapabilities extends Base {
113
+ className: Classes;
114
+ }
115
+ declare class BootSettingData extends Base {
116
+ className: Classes;
117
+ /**
118
+ * Changes properties of BootSettingData.
119
+ * @param bootSettingData BootSettingData Object.
120
+ * @returns string
121
+ */
122
+ Put: (bootSettingData: Models.BootSettingData) => string;
123
+ }
124
+ declare class EnvironmentDetectionSettingData extends Base {
125
+ className: Classes;
126
+ /**
127
+ * Changes properties of EnvironmentDetectionSettingData.
128
+ * @param environmentDetectionSettingData EnvironmentDetectionSettingData Object.
129
+ * @returns string
130
+ */
131
+ Put: (environmentDetectionSettingData: Models.EnvironmentDetectionSettingData) => string;
132
+ }
133
+ declare class EthernetPortSettings extends Base {
134
+ className: Classes;
135
+ /**
136
+ * Changes properties of the EthernetPortSettings.
137
+ * @param ethernetPortObject EthernetPortSettings Object.
138
+ * @returns string
139
+ */
140
+ Put: (ethernetPortObject: Models.EthernetPortSettings) => string;
141
+ }
142
+ declare class GeneralSettings extends Base {
143
+ className: Classes;
144
+ /**
145
+ * Changes properties of GeneralSettings.
146
+ * @param generalSettings GeneralSettings Object.
147
+ * @returns string
148
+ */
149
+ Put: (generalSettings: Models.GeneralSettings) => string;
150
+ }
151
+ declare class IEEE8021xCredentialContext extends Base {
152
+ className: Classes;
153
+ }
154
+ declare class IEEE8021xProfile extends Base {
155
+ className: Classes;
156
+ /**
157
+ * Changes properties of IEEE8021xProfile
158
+ * @param ieee8021xProfile IEEE8021xProfile Object
159
+ * @returns string
160
+ */
161
+ Put: (ieee8021xProfile: Models.IEEE8021xProfile) => string;
162
+ }
163
+ declare class KerberosSettingData extends Base {
164
+ className: Classes;
165
+ /**
166
+ * Gets the current state of the credential caching functionality
167
+ * @returns string
168
+ */
169
+ GetCredentialCacheState: () => string;
170
+ /**
171
+ * Enables/disables the credential caching functionality
172
+ * @param enabled New state of the functionality
173
+ * @returns string
174
+ */
175
+ SetCredentialCacheState: (enabled: boolean) => string;
176
+ }
177
+ declare class ManagementPresenceRemoteSAP extends Base {
178
+ className: Classes;
179
+ /**
180
+ * Deletes an instance
181
+ * @param selector indicates the instance
182
+ * @returns string
183
+ */
184
+ Delete: (selector: Selector) => string;
185
+ }
186
+ declare class MessageLog extends Base {
187
+ className: Classes;
188
+ /**
189
+ * Retrieves multiple records from MessageLog.
190
+ * @param identifier the IterationIdentifier input parameter is a numeric value (starting at 1) which is the position of the first record in the log that should be extracted. If identifier isn't provided, defaults to 1.
191
+ * @returns string
192
+ */
193
+ GetRecords: (identifier?: number) => string;
194
+ /**
195
+ * Requests that an iteration of the MessageLog be established and that the iterator be set to the first entry in the Log. An identifier for the iterator is returned as an output parameter of the method.
196
+ * @returns string
197
+ */
198
+ PositionToFirstRecord: () => string;
199
+ }
200
+ declare class MPSUsernamePassword extends Base {
201
+ className: Classes;
202
+ /**
203
+ * Changes properties of MPSUsernamePassword.
204
+ * @param mpsUsernamePassword MPSUsernamePassword Object.
205
+ * @returns string
206
+ */
207
+ Put: (mpsUsernamePassword: Models.MPSUsernamePassword) => string;
208
+ }
209
+ declare class PublicKeyCertificate extends Base {
210
+ className: Classes;
211
+ /**
212
+ * Deletes an instance
213
+ * @param selector indicates the instance
214
+ * @returns string
215
+ */
216
+ Delete: (selector: Selector) => string;
217
+ /**
218
+ * Changes properties of PublicKeyCertificate.
219
+ * @param publicKeyCertificate Public Key Certificate object
220
+ * @returns string
221
+ */
222
+ Put: (publicKeyCertificate: Models.PublicKeyCertificate) => string;
223
+ }
224
+ declare class PublicKeyManagementService extends Base {
225
+ className: Classes;
226
+ /**
227
+ * This method adds new certificate to the Intel(R) AMT CertStore. A certificate cannot be removed if it is referenced (for example, used by TLS, 802.1X or EAC).
228
+ * @param addCertificate AddCertificate Object
229
+ * @returns string
230
+ */
231
+ AddCertificate: (addCertificate: Models.AddCertificate) => string;
232
+ /**
233
+ * This function adds new certificate key to the Intel(R) AMT CertStore. A key cannot be removed if its corresponding certificate is referenced (for example, used by TLS or 802.1X).
234
+ * @param keyBlob RSA Key encoded as DES PKCS#1
235
+ * @returns string
236
+ */
237
+ AddKey: (keyBlob: string) => string;
238
+ /**
239
+ * This method adds new root certificate to the Intel(R) AMT CertStore. A certificate cannot be removed if it is referenced (for example, used by TLS, 802.1X or EAC).
240
+ * @param addCertificate AddCertificate Object
241
+ * @returns string
242
+ */
243
+ AddTrustedRootCertificate: (addCertificate: Models.AddCertificate) => string;
244
+ /**
245
+ * This method is used to generate a key in the FW.
246
+ * @param keyPairParameters KeyPairParameters Object
247
+ * @returns string
248
+ */
249
+ GenerateKeyPair: (keyPairParameters: Models.GenerateKeyPairParameters) => string;
250
+ /**
251
+ * This method is used to create a PKCS#10 certificate signing request based on a key from the key store.
252
+ * @param pkcs10Request PKCS10Request Object
253
+ * @returns string
254
+ */
255
+ GeneratePKCS10RequestEx: (pkcs10Request: Models.PKCS10Request) => string;
256
+ }
257
+ declare class PublicPrivateKeyPair extends Base {
258
+ className: Classes; /**
259
+ * Deletes an instance
260
+ * @param selector indicates the instance
261
+ * @returns string
262
+ */
263
+ Delete: (selector: Selector) => string;
264
+ }
265
+ declare class RedirectionService extends Base {
266
+ className: Classes;
267
+ /**
268
+ * Changes properties of RedirectionService.
269
+ * @param redirectionService RedirectionService Object.
270
+ * @returns string
271
+ */
272
+ Put: (redirectionService: Models.RedirectionService) => string;
273
+ /**
274
+ * Requests that the state of the element be changed to the value specified in the RequestedState parameter. The supported values in requestedState are 32768-32771.
275
+ * @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'), 3 ('Timeout'), or 4096 (0x1000) ('Job Started'). Refer to the description of the EnabledState and RequestedState properties for the detailed explanations of the RequestedState values.
276
+ * @value_map 32768 = disable IDER and SOL, 32769 = enable IDER and disable SOL, 32770 = enable SOL and disable IDER, 32771 = enable IDER and SOL
277
+ * @returns string
278
+ */
279
+ RequestStateChange: (requestedState: Types.RedirectionService.RequestedState) => string;
280
+ }
281
+ declare class RemoteAccessPolicyAppliesToMPS extends Base {
282
+ className: Classes;
283
+ /**
284
+ * Deletes an instance
285
+ * @param selector indicates the instance
286
+ * @returns string
287
+ */
288
+ Delete: (selector: Selector) => string;
289
+ /**
290
+ * Creates an instance of RemoteAccessPolicyAppliesToMPS
291
+ * @param remoteAccessPolicyAppliesToMPS RemoteAccessPolicyAppliesToMPS Object
292
+ * @returns string
293
+ */
294
+ Create: (remoteAccessPolicyAppliesToMPS: Models.RemoteAccessPolicyAppliesToMPS) => string;
295
+ /**
296
+ * Changes properties of RemoteAccessPolicyAppliesToMPS.
297
+ * @param remoteAccessPolicyAppliesToMPS RemoteAccessPolicyAppliesToMPS Object.
298
+ * @returns string
299
+ */
300
+ Put: (remoteAccessPolicyAppliesToMPS: Models.RemoteAccessPolicyAppliesToMPS) => string;
301
+ }
302
+ declare class RemoteAccessPolicyRule extends Base {
303
+ className: Classes;
304
+ /**
305
+ * Deletes an instance
306
+ * @param selector indicates the instance
307
+ * @returns string
308
+ */
309
+ Delete: (selector: Selector) => string;
310
+ /**
311
+ * Changes properties of RemoteAccessPolicyRule
312
+ * @param remoteAccessPolicyRule Remote Access Policy Rule object
313
+ * @returns string
314
+ */
315
+ Put: (remoteAccessPolicyRule: Models.RemoteAccessPolicyRule) => string;
316
+ }
317
+ declare class RemoteAccessService extends Base {
318
+ className: Classes;
319
+ /**
320
+ * Requires mpServer. Adds a Management Presence Server to the Intel(R) AMT subsystem. Creates an AMT_ManagementPresenceRemoteSAP instance and an AMT_RemoteAccessCredentialContext association to a credential. This credential may be an existing AMT_PublicKeyCertificate instance (if the created MPS is configured to use mutual authentication). If the created MpServer is configured to use username password authentication, an AMT_MPSUsernamePassword instance is created and used as the associated credential.
321
+ * @param mpServer MPServer Object.
322
+ * @returns string
323
+ */
324
+ AddMPS: (mpServer: Models.MPServer) => string;
325
+ /**
326
+ * Requires remoteAccessPolicyRule and selector. Adds a Remote Access policy to the Intel(R) AMT subsystem. The policy defines an event that will trigger an establishment of a tunnel between AMT and a pre-configured MPS. Creates an AMT_RemoteAccessPolicyRule instance and associates it to a given list of AMT_ManagementPresenceRemoteSAP instances with AMT_PolicySetAppliesToElement association instances.
327
+ * @param remoteAccessPolicyRule RemoteAccessPolicyRule Object.
328
+ * @param selector Selector Object.
329
+ * @returns string
330
+ */
331
+ AddRemoteAccessPolicyRule: (remoteAccessPolicyRule: Models.RemoteAccessPolicyRule, selector: Selector) => string;
332
+ }
333
+ declare class SetupAndConfigurationService extends Base {
334
+ className: Classes;
335
+ /**
336
+ * Commits pending configuration commands made to the Intel(R) AMT device. Completes configuration when in "IN-provisioning" state.
337
+ * @returns string
338
+ */
339
+ CommitChanges: () => string;
340
+ /**
341
+ * Pulls instances of SetupAndConfigurationService, following an Enumerate operation.
342
+ * @param enumerationContext string returned from an Enumerate call.
343
+ * @returns string
344
+ */
345
+ GetUuid: () => string;
346
+ /**
347
+ * Requires password. This method sets the ME Bios extension password. It allows a remote caller to change the ME access password for the BIOS extension screen. This call succeeds depending on the password policy rule defined in MEBx (BIOS extension):"Default Password Only" - Method succeeds only when the current password is still the default value and only in PKI provisioning. "During Setup and Configuration" - Method succeeds only during provisioning, regardless of provisioning method or previous password value."ANYTIME" - Method will always succeed. (i.e. even when configured).
348
+ * @param password Password needs to be strong: Contain at least one of: upper-case, lower-case, digit and special character.
349
+ * @remarks Min Length = 8
350
+ * @remarks Max Length = 32
351
+ * @returns string
352
+ */
353
+ SetMEBXPassword: (password: string) => string;
354
+ /**
355
+ * Resets the Intel(R) AMT device to default factory settings. The device will need to be re-provisioned after this command.
356
+ * @param provisioningMode Indicates the provisioning mode (Enterprise , Small Business or Remote Connectivity) the device will enter following successful completion of the command. Starting from Release 6.0 only effective value is ProvisioningModeEnterprise
357
+ * @value_map 0 = ProvisioningModeCurrent, 1 = ProvisioningModeEnterprise, 2 = ProvisioningModeSmallBusiness, 3 = ProvisioningRemoteConnectivity
358
+ * @returns string
359
+ */
360
+ Unprovision: (provisioningMode?: Types.SetupAndConfigurationService.ProvisioningMode_Input) => string;
361
+ /**
362
+ * Changes properties of Setup and Configuration Service
363
+ * @param setupAndConfigurationService SetupAndConfigurationService object
364
+ * @returns string
365
+ */
366
+ Put: (setupAndConfigurationService: Models.SetupAndConfigurationService) => string;
367
+ }
368
+ declare class TimeSynchronizationService extends Base {
369
+ className: Classes;
370
+ /**
371
+ * Requires ta0, tm1, tm2. This method is used to synchronize the Intel(R) AMT device's internal clock with an external clock.
372
+ * @param ta0 The time value received from invoking GetLowAccuracyTimeSynch().
373
+ * @param tm1 The remote client timestamp after getting a response from GetLowAccuracyTimeSynch().
374
+ * @param tm2 The remote client timestamp obtained immediately prior to invoking this method.
375
+ * @returns string
376
+ */
377
+ SetHighAccuracyTimeSynch: (ta0: number, tm1: number, tm2: number) => string;
378
+ /**
379
+ * This method is used for reading the Intel(R) AMT device's internal clock.
380
+ * @returns string
381
+ */
382
+ GetLowAccuracyTimeSynch: () => string;
383
+ }
384
+ declare class TLSCredentialContext extends Base {
385
+ className: Classes;
386
+ /**
387
+ * Deletes an instance
388
+ * @param selector indicates the instance
389
+ * @returns string
390
+ */
391
+ Delete: (selector: Selector) => string;
392
+ /**
393
+ * Requires tlsCredentialContext. Creates a new instance of TLSCredentialContext.
394
+ * @param tlsCredentialContext TLSCredentialContext Object.
395
+ * @returns string
396
+ */
397
+ Create: (certHandle: string) => string;
398
+ }
399
+ declare class TLSSettingData extends Base {
400
+ className: Classes;
401
+ /**
402
+ * Changes properties of TLSSettingData.
403
+ * @param tlsSettingData TLSSettingData Object.
404
+ * @returns string
405
+ */
406
+ Put: (tlsSettingData: Models.TLSSettingData) => string;
407
+ }
408
+ declare class UserInitiatedConnectionService extends Base {
409
+ className: Classes;
410
+ /**
411
+ * Requires requestedState. 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.
412
+ * @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'), 3 ('Timeout'), or 4096 (0x1000) ('Job Started'). Refer to the description of the EnabledState and RequestedState properties for the detailed explanations of the RequestedState values.
413
+ * @value_map 32768 = All Interfaces disabled, 32769 = BIOS Interface enabled, 32770 = OS Interface enabled, 32771 = BIOS and OS Interfaces enabled
414
+ * @returns string
415
+ */
416
+ RequestStateChange: (requestedState: Types.UserInitiatedConnectionService.RequestedState) => string;
417
+ }
418
+ declare class WiFiPortConfigurationService extends Base {
419
+ className: Classes;
420
+ /**
421
+ * Atomically creates an instance of CIM_WifiEndpointSettings from the embedded instance parameter and optionally an instance of CIM_IEEE8021xSettings from the embedded instance parameter (if provided), associates the CIM_WiFiEndpointSettings instance with the referenced instance of CIM_WiFiEndpoint using an instance of CIM_ElementSettingData optionally associates the newly created or referenced by parameter instance of CIM_IEEE8021xSettings with the instance of CIM_WiFiEndpointSettings using an instance of CIM_ConcreteComponent and optionally associates the referenced instance of AMT_PublicKeyCertificate (if provided) with the instance of CIM_IEEE8021xSettings (if provided) using an instance of CIM_CredentialContext.
422
+ * @param wifiEndpointSettings WiFiEndpointSettings Object
423
+ * @param selector Selector Object.
424
+ * @returns string
425
+ */
426
+ AddWiFiSettings: (wifiEndpointSettings: CIM.Models.WiFiEndpointSettings, selector: Selector, ieee8021xSettingsInput?: CIM.Models.IEEE8021xSettings, clientCredential?: string, caCredential?: string) => string;
427
+ /**
428
+ * Changes properties of WiFiEndpointSettings
429
+ * @param wifiEndpointSettings WiFiEndpointSettings Object
430
+ * @param selector Selector Object.
431
+ * @returns string
432
+ */
433
+ Put: (wifiEndpointSettings: Models.WiFiPortConfigurationService, selector?: Selector) => string;
434
+ }
435
+ export declare class Messages {
436
+ readonly resourceUriBase: string;
437
+ wsmanMessageCreator: WSManMessageCreator;
438
+ AlarmClockService: AlarmClockService;
439
+ AuditLog: AuditLog;
440
+ AuthorizationService: AuthorizationService;
441
+ BootCapabilities: BootCapabilities;
442
+ BootSettingData: BootSettingData;
443
+ EnvironmentDetectionSettingData: EnvironmentDetectionSettingData;
444
+ EthernetPortSettings: EthernetPortSettings;
445
+ GeneralSettings: GeneralSettings;
446
+ IEEE8021xCredentialContext: IEEE8021xCredentialContext;
447
+ IEEE8021xProfile: IEEE8021xProfile;
448
+ KerberosSettingData: KerberosSettingData;
449
+ ManagementPresenceRemoteSAP: ManagementPresenceRemoteSAP;
450
+ MessageLog: MessageLog;
451
+ MPSUsernamePassword: MPSUsernamePassword;
452
+ PublicKeyCertificate: PublicKeyCertificate;
453
+ PublicKeyManagementService: PublicKeyManagementService;
454
+ PublicPrivateKeyPair: PublicPrivateKeyPair;
455
+ RedirectionService: RedirectionService;
456
+ RemoteAccessPolicyAppliesToMPS: RemoteAccessPolicyAppliesToMPS;
457
+ RemoteAccessPolicyRule: RemoteAccessPolicyRule;
458
+ RemoteAccessService: RemoteAccessService;
459
+ SetupAndConfigurationService: SetupAndConfigurationService;
460
+ TimeSynchronizationService: TimeSynchronizationService;
461
+ TLSCredentialContext: TLSCredentialContext;
462
+ TLSSettingData: TLSSettingData;
463
+ UserInitiatedConnectionService: UserInitiatedConnectionService;
464
+ WiFiPortConfigurationService: WiFiPortConfigurationService;
465
+ }
466
+ export {};