@hpcc-js/comms 2.102.2 → 2.102.3

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 (103) hide show
  1. package/LICENSE +43 -43
  2. package/README.md +50 -50
  3. package/dist/index.es6.js +2 -2
  4. package/dist/index.es6.js.map +1 -1
  5. package/dist/index.js +2 -2
  6. package/dist/index.js.map +1 -1
  7. package/dist/index.min.js +1 -1
  8. package/dist/index.min.js.map +1 -1
  9. package/dist/index.node.js +2 -2
  10. package/dist/index.node.js.map +1 -1
  11. package/dist/index.node.min.js +1 -1
  12. package/dist/index.node.min.js.map +1 -1
  13. package/lib-es6/__package__.js +2 -2
  14. package/package.json +4 -4
  15. package/src/__package__.ts +3 -3
  16. package/src/__tests__/dfuXRef.ts +22 -22
  17. package/src/__tests__/https.ts +69 -69
  18. package/src/__tests__/workunit.ts +35 -35
  19. package/src/clienttools/eclMeta.ts +506 -506
  20. package/src/clienttools/eclcc.ts +628 -628
  21. package/src/connection.ts +295 -295
  22. package/src/ecl/activity.ts +82 -82
  23. package/src/ecl/dfuWorkunit.ts +363 -363
  24. package/src/ecl/graph.ts +196 -196
  25. package/src/ecl/logicalFile.ts +195 -195
  26. package/src/ecl/machine.ts +63 -63
  27. package/src/ecl/query.ts +252 -252
  28. package/src/ecl/queryGraph.ts +813 -813
  29. package/src/ecl/resource.ts +39 -39
  30. package/src/ecl/result.ts +236 -236
  31. package/src/ecl/scope.ts +192 -192
  32. package/src/ecl/sourceFile.ts +34 -34
  33. package/src/ecl/store.ts +154 -154
  34. package/src/ecl/targetCluster.ts +149 -149
  35. package/src/ecl/timer.ts +42 -42
  36. package/src/ecl/topology.ts +131 -131
  37. package/src/ecl/workunit.ts +1314 -1314
  38. package/src/ecl/xsdParser.ts +268 -268
  39. package/src/espConnection.ts +172 -172
  40. package/src/index-common.ts +41 -41
  41. package/src/index.node.ts +68 -68
  42. package/src/index.ts +3 -3
  43. package/src/pem/trustwave.ts +909 -909
  44. package/src/services/fileSpray.ts +48 -48
  45. package/src/services/wsAccess.ts +8 -8
  46. package/src/services/wsAccount.ts +27 -27
  47. package/src/services/wsCloud.ts +73 -73
  48. package/src/services/wsCodesign.ts +94 -94
  49. package/src/services/wsDFU.ts +34 -34
  50. package/src/services/wsDFUXRef.ts +308 -308
  51. package/src/services/wsDali.ts +40 -40
  52. package/src/services/wsEcl.ts +123 -123
  53. package/src/services/wsElk.ts +8 -8
  54. package/src/services/wsLogaccess.ts +263 -263
  55. package/src/services/wsMachine.ts +89 -89
  56. package/src/services/wsPackageProcess.ts +8 -8
  57. package/src/services/wsResources.ts +8 -8
  58. package/src/services/wsSMC.ts +24 -24
  59. package/src/services/wsSasha.ts +7 -7
  60. package/src/services/wsStore.ts +230 -230
  61. package/src/services/wsTopology.ts +45 -45
  62. package/src/services/wsWorkunits.ts +160 -160
  63. package/src/services/wsdl/FileSpray/v1.23/FileSpray.ts +1008 -1008
  64. package/src/services/wsdl/FileSpray/v1.25/FileSpray.ts +1040 -1040
  65. package/src/services/wsdl/FileSpray/v1.26/FileSpray.ts +929 -929
  66. package/src/services/wsdl/WsCloud/v1/WsCloud.ts +38 -38
  67. package/src/services/wsdl/WsCloud/v1.02/WsCloud.ts +77 -77
  68. package/src/services/wsdl/WsDFUXRef/v1.02/WsDFUXRef.ts +224 -224
  69. package/src/services/wsdl/WsDali/v1.04/WsDali.ts +216 -216
  70. package/src/services/wsdl/WsDfu/v1.62/WsDfu.ts +1455 -1455
  71. package/src/services/wsdl/WsDfu/v1.63/WsDfu.ts +1465 -1465
  72. package/src/services/wsdl/WsDfu/v1.65/WsDfu.ts +1244 -1244
  73. package/src/services/wsdl/WsFileIO/v1.01/WsFileIO.ts +107 -107
  74. package/src/services/wsdl/WsPackageProcess/v1.04/WsPackageProcess.ts +519 -519
  75. package/src/services/wsdl/WsResources/v1.01/WsResources.ts +119 -119
  76. package/src/services/wsdl/WsSMC/v1.24/WsSMC.ts +665 -665
  77. package/src/services/wsdl/WsSMC/v1.27/WsSMC.ts +670 -670
  78. package/src/services/wsdl/WsTopology/v1.31/WsTopology.ts +856 -856
  79. package/src/services/wsdl/WsTopology/v1.32/WsTopology.ts +885 -885
  80. package/src/services/wsdl/WsWorkunits/v1.88/WsWorkunits.ts +2944 -2944
  81. package/src/services/wsdl/WsWorkunits/v1.94/WsWorkunits.ts +3072 -3072
  82. package/src/services/wsdl/WsWorkunits/v1.95/WsWorkunits.ts +3073 -3073
  83. package/src/services/wsdl/WsWorkunits/v1.97/WsWorkunits.ts +3134 -3134
  84. package/src/services/wsdl/WsWorkunits/v1.98/WsWorkunits.ts +3182 -3182
  85. package/src/services/wsdl/WsWorkunits/v1.99/WsWorkunits.ts +3162 -3162
  86. package/src/services/wsdl/WsWorkunits/v2/WsWorkunits.ts +3153 -3153
  87. package/src/services/wsdl/WsWorkunits/v2.02/WsWorkunits.ts +3157 -3157
  88. package/src/services/wsdl/ws_access/v1.16/ws_access.ts +1086 -1086
  89. package/src/services/wsdl/ws_access/v1.17/ws_access.ts +1023 -1023
  90. package/src/services/wsdl/ws_account/v1.05/ws_account.ts +111 -111
  91. package/src/services/wsdl/ws_account/v1.06/ws_account.ts +109 -109
  92. package/src/services/wsdl/ws_codesign/v1.1/ws_codesign.ts +100 -100
  93. package/src/services/wsdl/ws_elk/v1/ws_elk.ts +47 -47
  94. package/src/services/wsdl/ws_logaccess/v1/ws_logaccess.ts +83 -83
  95. package/src/services/wsdl/ws_logaccess/v1.02/ws_logaccess.ts +161 -161
  96. package/src/services/wsdl/ws_logaccess/v1.03/ws_logaccess.ts +190 -190
  97. package/src/services/wsdl/ws_logaccess/v1.04/ws_logaccess.ts +215 -215
  98. package/src/services/wsdl/ws_logaccess/v1.05/ws_logaccess.ts +219 -219
  99. package/src/services/wsdl/ws_logaccess/v1.08/ws_logaccess.ts +267 -267
  100. package/src/services/wsdl/ws_machine/v1.17/ws_machine.ts +567 -567
  101. package/src/services/wsdl/wsstore/v1.02/wsstore.ts +250 -250
  102. package/types/__package__.d.ts +2 -2
  103. package/types-3.4/__package__.d.ts +2 -2
@@ -1,670 +1,670 @@
1
- import { IConnection, IOptions } from "../../../../connection";
2
- import { Service } from "../../../../espConnection";
3
-
4
- export namespace WsSMC {
5
-
6
- export type int = number;
7
- export type unsignedInt = number;
8
- export type long = number;
9
-
10
- export enum LockModes {
11
- ALL = "ALL",
12
- READ = "READ",
13
- WRITE = "WRITE",
14
- HOLD = "HOLD",
15
- SUB = "SUB"
16
- }
17
-
18
- export enum RoxieControlCmdType {
19
- Attach = "Attach",
20
- Detach = "Detach",
21
- State = "State",
22
- Reload = "Reload",
23
- ReloadRetry = "ReloadRetry",
24
- MemLock = "MemLock",
25
- MemUnlock = "MemUnlock",
26
- GetMemLocked = "GetMemLocked"
27
- }
28
-
29
- export interface Activity {
30
- ChatURL: string;
31
- BannerContent: string;
32
- BannerColor: string;
33
- BannerSize: string;
34
- BannerScroll: string;
35
- BannerAction: int;
36
- EnableChatURL: boolean;
37
- FromSubmitBtn: boolean;
38
- SortBy: string;
39
- Descending: boolean;
40
- }
41
-
42
- export interface Exception {
43
- Code: string;
44
- Audience: string;
45
- Source: string;
46
- Message: string;
47
- }
48
-
49
- export interface Exceptions {
50
- Source: string;
51
- Exception: Exception[];
52
- }
53
-
54
- export interface TargetCluster {
55
- ClusterName: string;
56
- QueueName: string;
57
- QueueStatus: string;
58
- StatusDetails: string;
59
- Warning: string;
60
- ClusterType: int;
61
- ClusterSize: int;
62
- ClusterStatus: int;
63
- }
64
-
65
- export interface ThorClusterList {
66
- TargetCluster: TargetCluster[];
67
- }
68
-
69
- export interface RoxieClusterList {
70
- TargetCluster: TargetCluster[];
71
- }
72
-
73
- export interface HThorClusterList {
74
- TargetCluster: TargetCluster[];
75
- }
76
-
77
- export interface DFUJob {
78
- TimeStarted: string;
79
- Done: int;
80
- Total: int;
81
- Command: string;
82
- }
83
-
84
- export interface DFUJobs {
85
- DFUJob: DFUJob[];
86
- }
87
-
88
- export interface ActiveWorkunit {
89
- Wuid: string;
90
- State: string;
91
- StateID: int;
92
- Owner: string;
93
- Jobname: string;
94
- Server: string;
95
- Instance: string;
96
- Priority: string;
97
- Extra: string;
98
- GraphName: string;
99
- Duration: string;
100
- GID: string;
101
- QueueName: string;
102
- MemoryBlocked: int;
103
- IsPausing: boolean;
104
- Warning: string;
105
- ClusterName: string;
106
- ClusterType: string;
107
- ClusterQueueName: string;
108
- TargetClusterName: string;
109
- NoAccess: boolean;
110
- }
111
-
112
- export interface Running {
113
- ActiveWorkunit: ActiveWorkunit[];
114
- }
115
-
116
- export interface Queues {
117
- ServerJobQueue: ServerJobQueue[];
118
- }
119
-
120
- export interface ServerJobQueue {
121
- QueueName: string;
122
- Queues: {
123
- ServerJobQueue: ServerJobQueue[];
124
- };
125
- ServerName: string;
126
- ServerType: string;
127
- QueueStatus: string;
128
- StatusDetails: string;
129
- NetworkAddress: string;
130
- Port: int;
131
- }
132
-
133
- export interface ServerJobQueues {
134
- ServerJobQueue: ServerJobQueue[];
135
- }
136
-
137
- export interface ActivityResponse {
138
- Exceptions: {
139
- Source: string;
140
- Exception: Exception[];
141
- };
142
- Build: string;
143
- ThorClusterList: {
144
- TargetCluster: TargetCluster[];
145
- };
146
- RoxieClusterList: {
147
- TargetCluster: TargetCluster[];
148
- };
149
- HThorClusterList: {
150
- TargetCluster: TargetCluster[];
151
- };
152
- DFUJobs: {
153
- DFUJob: DFUJob[];
154
- };
155
- Running: {
156
- ActiveWorkunit: ActiveWorkunit[];
157
- };
158
- BannerContent: string;
159
- BannerColor: string;
160
- BannerSize: string;
161
- BannerScroll: string;
162
- ChatURL: string;
163
- ShowBanner: int;
164
- ShowChatURL: int;
165
- SortBy: string;
166
- Descending: boolean;
167
- SuperUser: boolean;
168
- AccessRight: string;
169
- ServerJobQueues: {
170
- ServerJobQueue: ServerJobQueue[];
171
- };
172
- ActivityTime: string;
173
- DaliDetached: boolean;
174
- }
175
-
176
- export interface BrowseResources {
177
-
178
- }
179
-
180
- export interface HPCCResource {
181
- Name: string;
182
- Description: string;
183
- FileName: string;
184
- Version: string;
185
- }
186
-
187
- export interface HPCCResources {
188
- HPCCResource: HPCCResource[];
189
- }
190
-
191
- export interface HPCCResourceRepository {
192
- Name: string;
193
- Path: string;
194
- HPCCResources: {
195
- HPCCResource: HPCCResource[];
196
- };
197
- }
198
-
199
- export interface HPCCResourceRepositories {
200
- HPCCResourceRepository: HPCCResourceRepository[];
201
- }
202
-
203
- export interface BrowseResourcesResponse {
204
- Exceptions: Exceptions;
205
- PortalURL: string;
206
- ESPInstance: string;
207
- OS: int;
208
- UseResource: boolean;
209
- HPCCResourceRepositories: {
210
- HPCCResourceRepository: HPCCResourceRepository[];
211
- };
212
- }
213
-
214
- export interface ClearQueue {
215
- Cluster: string;
216
- QueueName: string;
217
- Comment: string;
218
- ServerType: string;
219
- NetworkAddress: string;
220
- Port: int;
221
- }
222
-
223
- export interface TargetClusterInfo {
224
- ClusterName: string;
225
- QueueName: string;
226
- QueueStatus: string;
227
- StatusDetails: string;
228
- Warning: string;
229
- ClusterType: int;
230
- ClusterSize: int;
231
- ClusterStatus: int;
232
- }
233
-
234
- export interface ServerInfo {
235
- QueueName: string;
236
- Queues: Queues;
237
- ServerName: string;
238
- ServerType: string;
239
- QueueStatus: string;
240
- StatusDetails: string;
241
- NetworkAddress: string;
242
- Port: int;
243
- }
244
-
245
- export interface Workunits {
246
- ActiveWorkunit: ActiveWorkunit[];
247
- }
248
-
249
- export interface StatusServerInfo {
250
- TargetClusterInfo: {
251
- ClusterName: string;
252
- QueueName: string;
253
- QueueStatus: string;
254
- StatusDetails: string;
255
- Warning: string;
256
- ClusterType: int;
257
- ClusterSize: int;
258
- ClusterStatus: int;
259
- };
260
- ServerInfo: {
261
- QueueName: string;
262
- Queues: Queues;
263
- ServerName: string;
264
- ServerType: string;
265
- QueueStatus: string;
266
- StatusDetails: string;
267
- NetworkAddress: string;
268
- Port: int;
269
- };
270
- Workunits: {
271
- ActiveWorkunit: ActiveWorkunit[];
272
- };
273
- }
274
-
275
- export interface SMCQueueResponse {
276
- Exceptions: Exceptions;
277
- StatusServerInfo: {
278
- TargetClusterInfo: {
279
- ClusterName: string;
280
- QueueName: string;
281
- QueueStatus: string;
282
- StatusDetails: string;
283
- Warning: string;
284
- ClusterType: int;
285
- ClusterSize: int;
286
- ClusterStatus: int;
287
- };
288
- ServerInfo: {
289
- QueueName: string;
290
- Queues: Queues;
291
- ServerName: string;
292
- ServerType: string;
293
- QueueStatus: string;
294
- StatusDetails: string;
295
- NetworkAddress: string;
296
- Port: int;
297
- };
298
- Workunits: {
299
- ActiveWorkunit: ActiveWorkunit[];
300
- };
301
- };
302
- }
303
-
304
- export interface GetBuildInfo {
305
-
306
- }
307
-
308
- export interface NamedValue {
309
- Name: string;
310
- Value: string;
311
- }
312
-
313
- export interface BuildInfo {
314
- NamedValue: NamedValue[];
315
- }
316
-
317
- export interface GetBuildInfoResponse {
318
- Exceptions: Exceptions;
319
- BuildInfo: {
320
- NamedValue: NamedValue[];
321
- };
322
- }
323
-
324
- export interface GetStatusServerInfo {
325
- ServerName: string;
326
- ServerType: string;
327
- NetworkAddress: string;
328
- Port: int;
329
- }
330
-
331
- export interface GetStatusServerInfoResponse {
332
- Exceptions: Exceptions;
333
- StatusServerInfo: StatusServerInfo;
334
- }
335
-
336
- export interface GetThorQueueAvailability {
337
-
338
- }
339
-
340
- export interface ThorCluster {
341
- ClusterName: string;
342
- QueueName: string;
343
- QueueStatus: string;
344
- QueueAvailable: int;
345
- JobsRunning: int;
346
- JobsInQueue: int;
347
- QueueStatus2: int;
348
- ThorLCR: string;
349
- ClusterSize: int;
350
- }
351
-
352
- export interface ThorClusters {
353
- ThorCluster: ThorCluster[];
354
- }
355
-
356
- export interface GetThorQueueAvailabilityResponse {
357
- Exceptions: Exceptions;
358
- ThorClusters: {
359
- ThorCluster: ThorCluster[];
360
- };
361
- }
362
-
363
- export interface Index {
364
-
365
- }
366
-
367
- export interface SMCIndexResponse {
368
- Exceptions: Exceptions;
369
- }
370
-
371
- export interface LockQuery {
372
- EPIP: string;
373
- XPath: string;
374
- DurationMSLow: unsignedInt;
375
- DurationMSHigh: unsignedInt;
376
- TimeLockedLow: string;
377
- TimeLockedHigh: string;
378
- Mode: LockModes;
379
- AllFileLocks: boolean;
380
- }
381
-
382
- export interface ModeNames {
383
- Item: string[];
384
- }
385
-
386
- export interface Lock {
387
- EPIP: string;
388
- XPath: string;
389
- LogicalFile: string;
390
- SessionID: long;
391
- DurationMS: unsignedInt;
392
- TimeLocked: string;
393
- Modes: string;
394
- ModeNames: {
395
- Item: string[];
396
- };
397
- }
398
-
399
- export interface Locks {
400
- Lock: Lock[];
401
- }
402
-
403
- export interface LockQueryResponse {
404
- Exceptions: Exceptions;
405
- Locks: {
406
- Lock: Lock[];
407
- };
408
- NumLocks: int;
409
- }
410
-
411
- export interface MoveJobBack {
412
- ClusterType: int;
413
- Cluster: string;
414
- QueueName: string;
415
- Wuid: string;
416
- }
417
-
418
- export interface SMCJobResponse {
419
- Exceptions: Exceptions;
420
- }
421
-
422
- export interface MoveJobDown {
423
- ClusterType: int;
424
- Cluster: string;
425
- QueueName: string;
426
- Wuid: string;
427
- }
428
-
429
- export interface MoveJobFront {
430
- ClusterType: int;
431
- Cluster: string;
432
- QueueName: string;
433
- Wuid: string;
434
- }
435
-
436
- export interface MoveJobUp {
437
- ClusterType: int;
438
- Cluster: string;
439
- QueueName: string;
440
- Wuid: string;
441
- }
442
-
443
- export interface NotInCommunityEdition {
444
- EEPortal: string;
445
- }
446
-
447
- export interface NotInCommunityEditionResponse {
448
- Exceptions: Exceptions;
449
- }
450
-
451
- export interface PauseQueue {
452
- Cluster: string;
453
- QueueName: string;
454
- Comment: string;
455
- ServerType: string;
456
- NetworkAddress: string;
457
- Port: int;
458
- }
459
-
460
- export interface Ping {
461
-
462
- }
463
-
464
- export interface WsSMCPingResponse {
465
-
466
- }
467
-
468
- export interface RemoveJob {
469
- ClusterType: int;
470
- Cluster: string;
471
- QueueName: string;
472
- Wuid: string;
473
- }
474
-
475
- export interface ResumeQueue {
476
- Cluster: string;
477
- QueueName: string;
478
- Comment: string;
479
- ServerType: string;
480
- NetworkAddress: string;
481
- Port: int;
482
- }
483
-
484
- export interface RoxieControlCmd {
485
- ProcessCluster: string;
486
- TargetCluster: string;
487
- Command: RoxieControlCmdType;
488
- Wait: int;
489
- }
490
-
491
- export interface Endpoint {
492
- Address: string;
493
- Attached: boolean;
494
- StateHash: string;
495
- Status: string;
496
- MemLocked: boolean;
497
- }
498
-
499
- export interface Endpoints {
500
- Endpoint: Endpoint[];
501
- }
502
-
503
- export interface RoxieControlCmdResponse {
504
- Exceptions: Exceptions;
505
- Endpoints: {
506
- Endpoint: Endpoint[];
507
- };
508
- }
509
-
510
- export interface QueryIds {
511
- Item: string[];
512
- }
513
-
514
- export interface RoxieXrefCmd {
515
- RoxieCluster: string;
516
- QueryIds: {
517
- Item: string[];
518
- };
519
- CheckAllNodes: boolean;
520
- Wait: int;
521
- }
522
-
523
- export interface RoxieXrefCmdResponse {
524
- Exceptions: Exceptions;
525
- Result: string;
526
- }
527
-
528
- export interface SetBanner {
529
- ChatURL: string;
530
- BannerContent: string;
531
- BannerColor: string;
532
- BannerSize: string;
533
- BannerScroll: string;
534
- BannerAction: int;
535
- EnableChatURL: boolean;
536
- FromSubmitBtn: boolean;
537
- }
538
-
539
- export interface SetBannerResponse {
540
- Exceptions: Exceptions;
541
- }
542
-
543
- export interface SMCJob {
544
- Wuid: string;
545
- QueueName: string;
546
- }
547
-
548
- export interface SMCJobs {
549
- SMCJob: SMCJob[];
550
- }
551
-
552
- export interface SetJobPriority {
553
- QueueName: string;
554
- Wuid: string;
555
- Priority: string;
556
- SMCJobs: {
557
- SMCJob: SMCJob[];
558
- };
559
- }
560
-
561
- export interface SMCPriorityResponse {
562
- Exceptions: Exceptions;
563
- }
564
-
565
- export interface StopQueue {
566
- Cluster: string;
567
- QueueName: string;
568
- Comment: string;
569
- ServerType: string;
570
- NetworkAddress: string;
571
- Port: int;
572
- }
573
-
574
- }
575
-
576
- export class SMCServiceBase extends Service {
577
-
578
- constructor(optsConnection: IOptions | IConnection) {
579
- super(optsConnection, "WsSMC", "1.27");
580
- }
581
-
582
- Activity(request: WsSMC.Activity): Promise<WsSMC.ActivityResponse> {
583
- return this._connection.send("Activity", request, "json", false, undefined, "ActivityResponse");
584
- }
585
-
586
- BrowseResources(request: WsSMC.BrowseResources): Promise<WsSMC.BrowseResourcesResponse> {
587
- return this._connection.send("BrowseResources", request, "json", false, undefined, "BrowseResourcesResponse");
588
- }
589
-
590
- ClearQueue(request: WsSMC.ClearQueue): Promise<WsSMC.SMCQueueResponse> {
591
- return this._connection.send("ClearQueue", request, "json", false, undefined, "SMCQueueResponse");
592
- }
593
-
594
- GetBuildInfo(request: WsSMC.GetBuildInfo): Promise<WsSMC.GetBuildInfoResponse> {
595
- return this._connection.send("GetBuildInfo", request, "json", false, undefined, "GetBuildInfoResponse");
596
- }
597
-
598
- GetStatusServerInfo(request: WsSMC.GetStatusServerInfo): Promise<WsSMC.GetStatusServerInfoResponse> {
599
- return this._connection.send("GetStatusServerInfo", request, "json", false, undefined, "GetStatusServerInfoResponse");
600
- }
601
-
602
- GetThorQueueAvailability(request: WsSMC.GetThorQueueAvailability): Promise<WsSMC.GetThorQueueAvailabilityResponse> {
603
- return this._connection.send("GetThorQueueAvailability", request, "json", false, undefined, "GetThorQueueAvailabilityResponse");
604
- }
605
-
606
- Index(request: WsSMC.Index): Promise<WsSMC.SMCIndexResponse> {
607
- return this._connection.send("Index", request, "json", false, undefined, "SMCIndexResponse");
608
- }
609
-
610
- LockQuery(request: WsSMC.LockQuery): Promise<WsSMC.LockQueryResponse> {
611
- return this._connection.send("LockQuery", request, "json", false, undefined, "LockQueryResponse");
612
- }
613
-
614
- MoveJobBack(request: WsSMC.MoveJobBack): Promise<WsSMC.SMCJobResponse> {
615
- return this._connection.send("MoveJobBack", request, "json", false, undefined, "SMCJobResponse");
616
- }
617
-
618
- MoveJobDown(request: WsSMC.MoveJobDown): Promise<WsSMC.SMCJobResponse> {
619
- return this._connection.send("MoveJobDown", request, "json", false, undefined, "SMCJobResponse");
620
- }
621
-
622
- MoveJobFront(request: WsSMC.MoveJobFront): Promise<WsSMC.SMCJobResponse> {
623
- return this._connection.send("MoveJobFront", request, "json", false, undefined, "SMCJobResponse");
624
- }
625
-
626
- MoveJobUp(request: WsSMC.MoveJobUp): Promise<WsSMC.SMCJobResponse> {
627
- return this._connection.send("MoveJobUp", request, "json", false, undefined, "SMCJobResponse");
628
- }
629
-
630
- NotInCommunityEdition(request: WsSMC.NotInCommunityEdition): Promise<WsSMC.NotInCommunityEditionResponse> {
631
- return this._connection.send("NotInCommunityEdition", request, "json", false, undefined, "NotInCommunityEditionResponse");
632
- }
633
-
634
- PauseQueue(request: WsSMC.PauseQueue): Promise<WsSMC.SMCQueueResponse> {
635
- return this._connection.send("PauseQueue", request, "json", false, undefined, "SMCQueueResponse");
636
- }
637
-
638
- Ping(request: WsSMC.Ping): Promise<WsSMC.WsSMCPingResponse> {
639
- return this._connection.send("Ping", request, "json", false, undefined, "WsSMCPingResponse");
640
- }
641
-
642
- RemoveJob(request: WsSMC.RemoveJob): Promise<WsSMC.SMCJobResponse> {
643
- return this._connection.send("RemoveJob", request, "json", false, undefined, "SMCJobResponse");
644
- }
645
-
646
- ResumeQueue(request: WsSMC.ResumeQueue): Promise<WsSMC.SMCQueueResponse> {
647
- return this._connection.send("ResumeQueue", request, "json", false, undefined, "SMCQueueResponse");
648
- }
649
-
650
- RoxieControlCmd(request: WsSMC.RoxieControlCmd): Promise<WsSMC.RoxieControlCmdResponse> {
651
- return this._connection.send("RoxieControlCmd", request, "json", false, undefined, "RoxieControlCmdResponse");
652
- }
653
-
654
- RoxieXrefCmd(request: WsSMC.RoxieXrefCmd): Promise<WsSMC.RoxieXrefCmdResponse> {
655
- return this._connection.send("RoxieXrefCmd", request, "json", false, undefined, "RoxieXrefCmdResponse");
656
- }
657
-
658
- SetBanner(request: WsSMC.SetBanner): Promise<WsSMC.SetBannerResponse> {
659
- return this._connection.send("SetBanner", request, "json", false, undefined, "SetBannerResponse");
660
- }
661
-
662
- SetJobPriority(request: WsSMC.SetJobPriority): Promise<WsSMC.SMCPriorityResponse> {
663
- return this._connection.send("SetJobPriority", request, "json", false, undefined, "SMCPriorityResponse");
664
- }
665
-
666
- StopQueue(request: WsSMC.StopQueue): Promise<WsSMC.SMCQueueResponse> {
667
- return this._connection.send("StopQueue", request, "json", false, undefined, "SMCQueueResponse");
668
- }
669
-
670
- }
1
+ import { IConnection, IOptions } from "../../../../connection";
2
+ import { Service } from "../../../../espConnection";
3
+
4
+ export namespace WsSMC {
5
+
6
+ export type int = number;
7
+ export type unsignedInt = number;
8
+ export type long = number;
9
+
10
+ export enum LockModes {
11
+ ALL = "ALL",
12
+ READ = "READ",
13
+ WRITE = "WRITE",
14
+ HOLD = "HOLD",
15
+ SUB = "SUB"
16
+ }
17
+
18
+ export enum RoxieControlCmdType {
19
+ Attach = "Attach",
20
+ Detach = "Detach",
21
+ State = "State",
22
+ Reload = "Reload",
23
+ ReloadRetry = "ReloadRetry",
24
+ MemLock = "MemLock",
25
+ MemUnlock = "MemUnlock",
26
+ GetMemLocked = "GetMemLocked"
27
+ }
28
+
29
+ export interface Activity {
30
+ ChatURL: string;
31
+ BannerContent: string;
32
+ BannerColor: string;
33
+ BannerSize: string;
34
+ BannerScroll: string;
35
+ BannerAction: int;
36
+ EnableChatURL: boolean;
37
+ FromSubmitBtn: boolean;
38
+ SortBy: string;
39
+ Descending: boolean;
40
+ }
41
+
42
+ export interface Exception {
43
+ Code: string;
44
+ Audience: string;
45
+ Source: string;
46
+ Message: string;
47
+ }
48
+
49
+ export interface Exceptions {
50
+ Source: string;
51
+ Exception: Exception[];
52
+ }
53
+
54
+ export interface TargetCluster {
55
+ ClusterName: string;
56
+ QueueName: string;
57
+ QueueStatus: string;
58
+ StatusDetails: string;
59
+ Warning: string;
60
+ ClusterType: int;
61
+ ClusterSize: int;
62
+ ClusterStatus: int;
63
+ }
64
+
65
+ export interface ThorClusterList {
66
+ TargetCluster: TargetCluster[];
67
+ }
68
+
69
+ export interface RoxieClusterList {
70
+ TargetCluster: TargetCluster[];
71
+ }
72
+
73
+ export interface HThorClusterList {
74
+ TargetCluster: TargetCluster[];
75
+ }
76
+
77
+ export interface DFUJob {
78
+ TimeStarted: string;
79
+ Done: int;
80
+ Total: int;
81
+ Command: string;
82
+ }
83
+
84
+ export interface DFUJobs {
85
+ DFUJob: DFUJob[];
86
+ }
87
+
88
+ export interface ActiveWorkunit {
89
+ Wuid: string;
90
+ State: string;
91
+ StateID: int;
92
+ Owner: string;
93
+ Jobname: string;
94
+ Server: string;
95
+ Instance: string;
96
+ Priority: string;
97
+ Extra: string;
98
+ GraphName: string;
99
+ Duration: string;
100
+ GID: string;
101
+ QueueName: string;
102
+ MemoryBlocked: int;
103
+ IsPausing: boolean;
104
+ Warning: string;
105
+ ClusterName: string;
106
+ ClusterType: string;
107
+ ClusterQueueName: string;
108
+ TargetClusterName: string;
109
+ NoAccess: boolean;
110
+ }
111
+
112
+ export interface Running {
113
+ ActiveWorkunit: ActiveWorkunit[];
114
+ }
115
+
116
+ export interface Queues {
117
+ ServerJobQueue: ServerJobQueue[];
118
+ }
119
+
120
+ export interface ServerJobQueue {
121
+ QueueName: string;
122
+ Queues: {
123
+ ServerJobQueue: ServerJobQueue[];
124
+ };
125
+ ServerName: string;
126
+ ServerType: string;
127
+ QueueStatus: string;
128
+ StatusDetails: string;
129
+ NetworkAddress: string;
130
+ Port: int;
131
+ }
132
+
133
+ export interface ServerJobQueues {
134
+ ServerJobQueue: ServerJobQueue[];
135
+ }
136
+
137
+ export interface ActivityResponse {
138
+ Exceptions: {
139
+ Source: string;
140
+ Exception: Exception[];
141
+ };
142
+ Build: string;
143
+ ThorClusterList: {
144
+ TargetCluster: TargetCluster[];
145
+ };
146
+ RoxieClusterList: {
147
+ TargetCluster: TargetCluster[];
148
+ };
149
+ HThorClusterList: {
150
+ TargetCluster: TargetCluster[];
151
+ };
152
+ DFUJobs: {
153
+ DFUJob: DFUJob[];
154
+ };
155
+ Running: {
156
+ ActiveWorkunit: ActiveWorkunit[];
157
+ };
158
+ BannerContent: string;
159
+ BannerColor: string;
160
+ BannerSize: string;
161
+ BannerScroll: string;
162
+ ChatURL: string;
163
+ ShowBanner: int;
164
+ ShowChatURL: int;
165
+ SortBy: string;
166
+ Descending: boolean;
167
+ SuperUser: boolean;
168
+ AccessRight: string;
169
+ ServerJobQueues: {
170
+ ServerJobQueue: ServerJobQueue[];
171
+ };
172
+ ActivityTime: string;
173
+ DaliDetached: boolean;
174
+ }
175
+
176
+ export interface BrowseResources {
177
+
178
+ }
179
+
180
+ export interface HPCCResource {
181
+ Name: string;
182
+ Description: string;
183
+ FileName: string;
184
+ Version: string;
185
+ }
186
+
187
+ export interface HPCCResources {
188
+ HPCCResource: HPCCResource[];
189
+ }
190
+
191
+ export interface HPCCResourceRepository {
192
+ Name: string;
193
+ Path: string;
194
+ HPCCResources: {
195
+ HPCCResource: HPCCResource[];
196
+ };
197
+ }
198
+
199
+ export interface HPCCResourceRepositories {
200
+ HPCCResourceRepository: HPCCResourceRepository[];
201
+ }
202
+
203
+ export interface BrowseResourcesResponse {
204
+ Exceptions: Exceptions;
205
+ PortalURL: string;
206
+ ESPInstance: string;
207
+ OS: int;
208
+ UseResource: boolean;
209
+ HPCCResourceRepositories: {
210
+ HPCCResourceRepository: HPCCResourceRepository[];
211
+ };
212
+ }
213
+
214
+ export interface ClearQueue {
215
+ Cluster: string;
216
+ QueueName: string;
217
+ Comment: string;
218
+ ServerType: string;
219
+ NetworkAddress: string;
220
+ Port: int;
221
+ }
222
+
223
+ export interface TargetClusterInfo {
224
+ ClusterName: string;
225
+ QueueName: string;
226
+ QueueStatus: string;
227
+ StatusDetails: string;
228
+ Warning: string;
229
+ ClusterType: int;
230
+ ClusterSize: int;
231
+ ClusterStatus: int;
232
+ }
233
+
234
+ export interface ServerInfo {
235
+ QueueName: string;
236
+ Queues: Queues;
237
+ ServerName: string;
238
+ ServerType: string;
239
+ QueueStatus: string;
240
+ StatusDetails: string;
241
+ NetworkAddress: string;
242
+ Port: int;
243
+ }
244
+
245
+ export interface Workunits {
246
+ ActiveWorkunit: ActiveWorkunit[];
247
+ }
248
+
249
+ export interface StatusServerInfo {
250
+ TargetClusterInfo: {
251
+ ClusterName: string;
252
+ QueueName: string;
253
+ QueueStatus: string;
254
+ StatusDetails: string;
255
+ Warning: string;
256
+ ClusterType: int;
257
+ ClusterSize: int;
258
+ ClusterStatus: int;
259
+ };
260
+ ServerInfo: {
261
+ QueueName: string;
262
+ Queues: Queues;
263
+ ServerName: string;
264
+ ServerType: string;
265
+ QueueStatus: string;
266
+ StatusDetails: string;
267
+ NetworkAddress: string;
268
+ Port: int;
269
+ };
270
+ Workunits: {
271
+ ActiveWorkunit: ActiveWorkunit[];
272
+ };
273
+ }
274
+
275
+ export interface SMCQueueResponse {
276
+ Exceptions: Exceptions;
277
+ StatusServerInfo: {
278
+ TargetClusterInfo: {
279
+ ClusterName: string;
280
+ QueueName: string;
281
+ QueueStatus: string;
282
+ StatusDetails: string;
283
+ Warning: string;
284
+ ClusterType: int;
285
+ ClusterSize: int;
286
+ ClusterStatus: int;
287
+ };
288
+ ServerInfo: {
289
+ QueueName: string;
290
+ Queues: Queues;
291
+ ServerName: string;
292
+ ServerType: string;
293
+ QueueStatus: string;
294
+ StatusDetails: string;
295
+ NetworkAddress: string;
296
+ Port: int;
297
+ };
298
+ Workunits: {
299
+ ActiveWorkunit: ActiveWorkunit[];
300
+ };
301
+ };
302
+ }
303
+
304
+ export interface GetBuildInfo {
305
+
306
+ }
307
+
308
+ export interface NamedValue {
309
+ Name: string;
310
+ Value: string;
311
+ }
312
+
313
+ export interface BuildInfo {
314
+ NamedValue: NamedValue[];
315
+ }
316
+
317
+ export interface GetBuildInfoResponse {
318
+ Exceptions: Exceptions;
319
+ BuildInfo: {
320
+ NamedValue: NamedValue[];
321
+ };
322
+ }
323
+
324
+ export interface GetStatusServerInfo {
325
+ ServerName: string;
326
+ ServerType: string;
327
+ NetworkAddress: string;
328
+ Port: int;
329
+ }
330
+
331
+ export interface GetStatusServerInfoResponse {
332
+ Exceptions: Exceptions;
333
+ StatusServerInfo: StatusServerInfo;
334
+ }
335
+
336
+ export interface GetThorQueueAvailability {
337
+
338
+ }
339
+
340
+ export interface ThorCluster {
341
+ ClusterName: string;
342
+ QueueName: string;
343
+ QueueStatus: string;
344
+ QueueAvailable: int;
345
+ JobsRunning: int;
346
+ JobsInQueue: int;
347
+ QueueStatus2: int;
348
+ ThorLCR: string;
349
+ ClusterSize: int;
350
+ }
351
+
352
+ export interface ThorClusters {
353
+ ThorCluster: ThorCluster[];
354
+ }
355
+
356
+ export interface GetThorQueueAvailabilityResponse {
357
+ Exceptions: Exceptions;
358
+ ThorClusters: {
359
+ ThorCluster: ThorCluster[];
360
+ };
361
+ }
362
+
363
+ export interface Index {
364
+
365
+ }
366
+
367
+ export interface SMCIndexResponse {
368
+ Exceptions: Exceptions;
369
+ }
370
+
371
+ export interface LockQuery {
372
+ EPIP: string;
373
+ XPath: string;
374
+ DurationMSLow: unsignedInt;
375
+ DurationMSHigh: unsignedInt;
376
+ TimeLockedLow: string;
377
+ TimeLockedHigh: string;
378
+ Mode: LockModes;
379
+ AllFileLocks: boolean;
380
+ }
381
+
382
+ export interface ModeNames {
383
+ Item: string[];
384
+ }
385
+
386
+ export interface Lock {
387
+ EPIP: string;
388
+ XPath: string;
389
+ LogicalFile: string;
390
+ SessionID: long;
391
+ DurationMS: unsignedInt;
392
+ TimeLocked: string;
393
+ Modes: string;
394
+ ModeNames: {
395
+ Item: string[];
396
+ };
397
+ }
398
+
399
+ export interface Locks {
400
+ Lock: Lock[];
401
+ }
402
+
403
+ export interface LockQueryResponse {
404
+ Exceptions: Exceptions;
405
+ Locks: {
406
+ Lock: Lock[];
407
+ };
408
+ NumLocks: int;
409
+ }
410
+
411
+ export interface MoveJobBack {
412
+ ClusterType: int;
413
+ Cluster: string;
414
+ QueueName: string;
415
+ Wuid: string;
416
+ }
417
+
418
+ export interface SMCJobResponse {
419
+ Exceptions: Exceptions;
420
+ }
421
+
422
+ export interface MoveJobDown {
423
+ ClusterType: int;
424
+ Cluster: string;
425
+ QueueName: string;
426
+ Wuid: string;
427
+ }
428
+
429
+ export interface MoveJobFront {
430
+ ClusterType: int;
431
+ Cluster: string;
432
+ QueueName: string;
433
+ Wuid: string;
434
+ }
435
+
436
+ export interface MoveJobUp {
437
+ ClusterType: int;
438
+ Cluster: string;
439
+ QueueName: string;
440
+ Wuid: string;
441
+ }
442
+
443
+ export interface NotInCommunityEdition {
444
+ EEPortal: string;
445
+ }
446
+
447
+ export interface NotInCommunityEditionResponse {
448
+ Exceptions: Exceptions;
449
+ }
450
+
451
+ export interface PauseQueue {
452
+ Cluster: string;
453
+ QueueName: string;
454
+ Comment: string;
455
+ ServerType: string;
456
+ NetworkAddress: string;
457
+ Port: int;
458
+ }
459
+
460
+ export interface Ping {
461
+
462
+ }
463
+
464
+ export interface WsSMCPingResponse {
465
+
466
+ }
467
+
468
+ export interface RemoveJob {
469
+ ClusterType: int;
470
+ Cluster: string;
471
+ QueueName: string;
472
+ Wuid: string;
473
+ }
474
+
475
+ export interface ResumeQueue {
476
+ Cluster: string;
477
+ QueueName: string;
478
+ Comment: string;
479
+ ServerType: string;
480
+ NetworkAddress: string;
481
+ Port: int;
482
+ }
483
+
484
+ export interface RoxieControlCmd {
485
+ ProcessCluster: string;
486
+ TargetCluster: string;
487
+ Command: RoxieControlCmdType;
488
+ Wait: int;
489
+ }
490
+
491
+ export interface Endpoint {
492
+ Address: string;
493
+ Attached: boolean;
494
+ StateHash: string;
495
+ Status: string;
496
+ MemLocked: boolean;
497
+ }
498
+
499
+ export interface Endpoints {
500
+ Endpoint: Endpoint[];
501
+ }
502
+
503
+ export interface RoxieControlCmdResponse {
504
+ Exceptions: Exceptions;
505
+ Endpoints: {
506
+ Endpoint: Endpoint[];
507
+ };
508
+ }
509
+
510
+ export interface QueryIds {
511
+ Item: string[];
512
+ }
513
+
514
+ export interface RoxieXrefCmd {
515
+ RoxieCluster: string;
516
+ QueryIds: {
517
+ Item: string[];
518
+ };
519
+ CheckAllNodes: boolean;
520
+ Wait: int;
521
+ }
522
+
523
+ export interface RoxieXrefCmdResponse {
524
+ Exceptions: Exceptions;
525
+ Result: string;
526
+ }
527
+
528
+ export interface SetBanner {
529
+ ChatURL: string;
530
+ BannerContent: string;
531
+ BannerColor: string;
532
+ BannerSize: string;
533
+ BannerScroll: string;
534
+ BannerAction: int;
535
+ EnableChatURL: boolean;
536
+ FromSubmitBtn: boolean;
537
+ }
538
+
539
+ export interface SetBannerResponse {
540
+ Exceptions: Exceptions;
541
+ }
542
+
543
+ export interface SMCJob {
544
+ Wuid: string;
545
+ QueueName: string;
546
+ }
547
+
548
+ export interface SMCJobs {
549
+ SMCJob: SMCJob[];
550
+ }
551
+
552
+ export interface SetJobPriority {
553
+ QueueName: string;
554
+ Wuid: string;
555
+ Priority: string;
556
+ SMCJobs: {
557
+ SMCJob: SMCJob[];
558
+ };
559
+ }
560
+
561
+ export interface SMCPriorityResponse {
562
+ Exceptions: Exceptions;
563
+ }
564
+
565
+ export interface StopQueue {
566
+ Cluster: string;
567
+ QueueName: string;
568
+ Comment: string;
569
+ ServerType: string;
570
+ NetworkAddress: string;
571
+ Port: int;
572
+ }
573
+
574
+ }
575
+
576
+ export class SMCServiceBase extends Service {
577
+
578
+ constructor(optsConnection: IOptions | IConnection) {
579
+ super(optsConnection, "WsSMC", "1.27");
580
+ }
581
+
582
+ Activity(request: WsSMC.Activity): Promise<WsSMC.ActivityResponse> {
583
+ return this._connection.send("Activity", request, "json", false, undefined, "ActivityResponse");
584
+ }
585
+
586
+ BrowseResources(request: WsSMC.BrowseResources): Promise<WsSMC.BrowseResourcesResponse> {
587
+ return this._connection.send("BrowseResources", request, "json", false, undefined, "BrowseResourcesResponse");
588
+ }
589
+
590
+ ClearQueue(request: WsSMC.ClearQueue): Promise<WsSMC.SMCQueueResponse> {
591
+ return this._connection.send("ClearQueue", request, "json", false, undefined, "SMCQueueResponse");
592
+ }
593
+
594
+ GetBuildInfo(request: WsSMC.GetBuildInfo): Promise<WsSMC.GetBuildInfoResponse> {
595
+ return this._connection.send("GetBuildInfo", request, "json", false, undefined, "GetBuildInfoResponse");
596
+ }
597
+
598
+ GetStatusServerInfo(request: WsSMC.GetStatusServerInfo): Promise<WsSMC.GetStatusServerInfoResponse> {
599
+ return this._connection.send("GetStatusServerInfo", request, "json", false, undefined, "GetStatusServerInfoResponse");
600
+ }
601
+
602
+ GetThorQueueAvailability(request: WsSMC.GetThorQueueAvailability): Promise<WsSMC.GetThorQueueAvailabilityResponse> {
603
+ return this._connection.send("GetThorQueueAvailability", request, "json", false, undefined, "GetThorQueueAvailabilityResponse");
604
+ }
605
+
606
+ Index(request: WsSMC.Index): Promise<WsSMC.SMCIndexResponse> {
607
+ return this._connection.send("Index", request, "json", false, undefined, "SMCIndexResponse");
608
+ }
609
+
610
+ LockQuery(request: WsSMC.LockQuery): Promise<WsSMC.LockQueryResponse> {
611
+ return this._connection.send("LockQuery", request, "json", false, undefined, "LockQueryResponse");
612
+ }
613
+
614
+ MoveJobBack(request: WsSMC.MoveJobBack): Promise<WsSMC.SMCJobResponse> {
615
+ return this._connection.send("MoveJobBack", request, "json", false, undefined, "SMCJobResponse");
616
+ }
617
+
618
+ MoveJobDown(request: WsSMC.MoveJobDown): Promise<WsSMC.SMCJobResponse> {
619
+ return this._connection.send("MoveJobDown", request, "json", false, undefined, "SMCJobResponse");
620
+ }
621
+
622
+ MoveJobFront(request: WsSMC.MoveJobFront): Promise<WsSMC.SMCJobResponse> {
623
+ return this._connection.send("MoveJobFront", request, "json", false, undefined, "SMCJobResponse");
624
+ }
625
+
626
+ MoveJobUp(request: WsSMC.MoveJobUp): Promise<WsSMC.SMCJobResponse> {
627
+ return this._connection.send("MoveJobUp", request, "json", false, undefined, "SMCJobResponse");
628
+ }
629
+
630
+ NotInCommunityEdition(request: WsSMC.NotInCommunityEdition): Promise<WsSMC.NotInCommunityEditionResponse> {
631
+ return this._connection.send("NotInCommunityEdition", request, "json", false, undefined, "NotInCommunityEditionResponse");
632
+ }
633
+
634
+ PauseQueue(request: WsSMC.PauseQueue): Promise<WsSMC.SMCQueueResponse> {
635
+ return this._connection.send("PauseQueue", request, "json", false, undefined, "SMCQueueResponse");
636
+ }
637
+
638
+ Ping(request: WsSMC.Ping): Promise<WsSMC.WsSMCPingResponse> {
639
+ return this._connection.send("Ping", request, "json", false, undefined, "WsSMCPingResponse");
640
+ }
641
+
642
+ RemoveJob(request: WsSMC.RemoveJob): Promise<WsSMC.SMCJobResponse> {
643
+ return this._connection.send("RemoveJob", request, "json", false, undefined, "SMCJobResponse");
644
+ }
645
+
646
+ ResumeQueue(request: WsSMC.ResumeQueue): Promise<WsSMC.SMCQueueResponse> {
647
+ return this._connection.send("ResumeQueue", request, "json", false, undefined, "SMCQueueResponse");
648
+ }
649
+
650
+ RoxieControlCmd(request: WsSMC.RoxieControlCmd): Promise<WsSMC.RoxieControlCmdResponse> {
651
+ return this._connection.send("RoxieControlCmd", request, "json", false, undefined, "RoxieControlCmdResponse");
652
+ }
653
+
654
+ RoxieXrefCmd(request: WsSMC.RoxieXrefCmd): Promise<WsSMC.RoxieXrefCmdResponse> {
655
+ return this._connection.send("RoxieXrefCmd", request, "json", false, undefined, "RoxieXrefCmdResponse");
656
+ }
657
+
658
+ SetBanner(request: WsSMC.SetBanner): Promise<WsSMC.SetBannerResponse> {
659
+ return this._connection.send("SetBanner", request, "json", false, undefined, "SetBannerResponse");
660
+ }
661
+
662
+ SetJobPriority(request: WsSMC.SetJobPriority): Promise<WsSMC.SMCPriorityResponse> {
663
+ return this._connection.send("SetJobPriority", request, "json", false, undefined, "SMCPriorityResponse");
664
+ }
665
+
666
+ StopQueue(request: WsSMC.StopQueue): Promise<WsSMC.SMCQueueResponse> {
667
+ return this._connection.send("StopQueue", request, "json", false, undefined, "SMCQueueResponse");
668
+ }
669
+
670
+ }