-
Notifications
You must be signed in to change notification settings - Fork 11
/
_generated_soap_wsdl.go
4753 lines (3286 loc) · 154 KB
/
_generated_soap_wsdl.go
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Code generated by gowsdl DO NOT EDIT.
package soap
import (
"context"
"encoding/xml"
"github.com/hooklift/gowsdl/soap"
"time"
)
// against "unused imports"
var _ time.Time
var _ xml.Name
type AnyType struct {
InnerXML string `xml:",innerxml"`
}
type AnyURI string
type NCName string
type STATECOLOR string
const (
STATECOLORSAPControlGRAY STATECOLOR = "SAPControl-GRAY"
STATECOLORSAPControlGREEN STATECOLOR = "SAPControl-GREEN"
STATECOLORSAPControlYELLOW STATECOLOR = "SAPControl-YELLOW"
STATECOLORSAPControlRED STATECOLOR = "SAPControl-RED"
)
type VISIBLELEVEL string
const (
VISIBLELEVELSAPControlUNKNOWN VISIBLELEVEL = "SAPControl-UNKNOWN"
VISIBLELEVELSAPControlOPERATOR VISIBLELEVEL = "SAPControl-OPERATOR"
VISIBLELEVELSAPControlEXPERT VISIBLELEVEL = "SAPControl-EXPERT"
VISIBLELEVELSAPControlDEVELOPER VISIBLELEVEL = "SAPControl-DEVELOPER"
)
type J2EEPSTATE string
const (
J2EEPSTATESAPControlJ2EESTOPPED J2EEPSTATE = "SAPControl-J2EE-STOPPED"
J2EEPSTATESAPControlJ2EESTARTING J2EEPSTATE = "SAPControl-J2EE-STARTING"
J2EEPSTATESAPControlJ2EECORERUNNING J2EEPSTATE = "SAPControl-J2EE-CORE-RUNNING"
J2EEPSTATESAPControlJ2EERUNNING J2EEPSTATE = "SAPControl-J2EE-RUNNING"
J2EEPSTATESAPControlJ2EESTOPPING J2EEPSTATE = "SAPControl-J2EE-STOPPING"
J2EEPSTATESAPControlJ2EEMAINTENANCE J2EEPSTATE = "SAPControl-J2EE-MAINTENANCE"
J2EEPSTATESAPControlJ2EEUNKNOWN J2EEPSTATE = "SAPControl-J2EE-UNKNOWN"
)
type StartStopOption string
const (
StartStopOptionSAPControlALLINSTANCES StartStopOption = "SAPControl-ALL-INSTANCES"
StartStopOptionSAPControlSCSINSTANCES StartStopOption = "SAPControl-SCS-INSTANCES"
StartStopOptionSAPControlDIALOGINSTANCES StartStopOption = "SAPControl-DIALOG-INSTANCES"
StartStopOptionSAPControlABAPINSTANCES StartStopOption = "SAPControl-ABAP-INSTANCES"
StartStopOptionSAPControlJ2EEINSTANCES StartStopOption = "SAPControl-J2EE-INSTANCES"
StartStopOptionSAPControlPRIORITYLEVEL StartStopOption = "SAPControl-PRIORITY-LEVEL"
StartStopOptionSAPControlTREXINSTANCES StartStopOption = "SAPControl-TREX-INSTANCES"
StartStopOptionSAPControlENQREPINSTANCES StartStopOption = "SAPControl-ENQREP-INSTANCES"
StartStopOptionSAPControlHDBINSTANCES StartStopOption = "SAPControl-HDB-INSTANCES"
StartStopOptionSAPControlALLNOHDBINSTANCES StartStopOption = "SAPControl-ALLNOHDB-INSTANCES"
)
type LogFileConfigOperation string
const (
LogFileConfigOperationSAPControlSETLOGFILES LogFileConfigOperation = "SAPControl-SET-LOGFILES"
LogFileConfigOperationSAPControlADDLOGFILES LogFileConfigOperation = "SAPControl-ADD-LOGFILES"
LogFileConfigOperationSAPControlREMOVELOGFILES LogFileConfigOperation = "SAPControl-REMOVE-LOGFILES"
)
type RESTRICTIONTYPE string
const (
RESTRICTIONTYPESAPControlRESTRICTNONE RESTRICTIONTYPE = "SAPControl-RESTRICT-NONE"
RESTRICTIONTYPESAPControlRESTRICTINT RESTRICTIONTYPE = "SAPControl-RESTRICT-INT"
RESTRICTIONTYPESAPControlRESTRICTFLOAT RESTRICTIONTYPE = "SAPControl-RESTRICT-FLOAT"
RESTRICTIONTYPESAPControlRESTRICTINTRANGE RESTRICTIONTYPE = "SAPControl-RESTRICT-INTRANGE"
RESTRICTIONTYPESAPControlRESTRICTFLOATRANGE RESTRICTIONTYPE = "SAPControl-RESTRICT-FLOATRANGE"
RESTRICTIONTYPESAPControlRESTRICTENUM RESTRICTIONTYPE = "SAPControl-RESTRICT-ENUM"
RESTRICTIONTYPESAPControlRESTRICTBOOL RESTRICTIONTYPE = "SAPControl-RESTRICT-BOOL"
)
type PERSISTENCETYPE string
const (
PERSISTENCETYPESAPControlDYNAMIC PERSISTENCETYPE = "SAPControl-DYNAMIC"
PERSISTENCETYPESAPControlPERSIST PERSISTENCETYPE = "SAPControl-PERSIST"
PERSISTENCETYPESAPControlDYNAMICPERSIST PERSISTENCETYPE = "SAPControl-DYNAMIC-PERSIST"
)
type HAVerificationState string
const (
HAVerificationStateSAPControlHASUCCESS HAVerificationState = "SAPControl-HA-SUCCESS"
HAVerificationStateSAPControlHAWARNING HAVerificationState = "SAPControl-HA-WARNING"
HAVerificationStateSAPControlHAERROR HAVerificationState = "SAPControl-HA-ERROR"
)
type HACheckCategory string
const (
HACheckCategorySAPControlSAPCONFIGURATION HACheckCategory = "SAPControl-SAP-CONFIGURATION"
HACheckCategorySAPControlSAPSTATE HACheckCategory = "SAPControl-SAP-STATE"
HACheckCategorySAPControlHACONFIGURATION HACheckCategory = "SAPControl-HA-CONFIGURATION"
HACheckCategorySAPControlHASTATE HACheckCategory = "SAPControl-HA-STATE"
)
type SnapshotZip []byte
type Start struct {
XMLName xml.Name `xml:"urn:SAPControl Start"`
Runlevel string `xml:"runlevel,omitempty" json:"runlevel,omitempty"`
}
type StartResponse struct {
XMLName xml.Name `xml:"urn:SAPControl StartResponse"`
}
type InstanceStart struct {
XMLName xml.Name `xml:"urn:SAPControl InstanceStart"`
Host string `xml:"host,omitempty" json:"host,omitempty"`
Nr int32 `xml:"nr,omitempty" json:"nr,omitempty"`
Runlevel string `xml:"runlevel,omitempty" json:"runlevel,omitempty"`
}
type InstanceStartResponse struct {
XMLName xml.Name `xml:"urn:SAPControl InstanceStartResponse"`
}
type Bootstrap struct {
XMLName xml.Name `xml:"urn:SAPControl Bootstrap"`
Host string `xml:"host,omitempty" json:"host,omitempty"`
Nr int32 `xml:"nr,omitempty" json:"nr,omitempty"`
}
type BootstrapResponse struct {
XMLName xml.Name `xml:"urn:SAPControl BootstrapResponse"`
}
type Stop struct {
XMLName xml.Name `xml:"urn:SAPControl Stop"`
Softtimeout int32 `xml:"softtimeout,omitempty" json:"softtimeout,omitempty"`
IsSystemStop int32 `xml:"IsSystemStop,omitempty" json:"IsSystemStop,omitempty"`
}
type StopResponse struct {
XMLName xml.Name `xml:"urn:SAPControl StopResponse"`
}
type InstanceStop struct {
XMLName xml.Name `xml:"urn:SAPControl InstanceStop"`
Host string `xml:"host,omitempty" json:"host,omitempty"`
Nr int32 `xml:"nr,omitempty" json:"nr,omitempty"`
Softtimeout int32 `xml:"softtimeout,omitempty" json:"softtimeout,omitempty"`
}
type InstanceStopResponse struct {
XMLName xml.Name `xml:"urn:SAPControl InstanceStopResponse"`
}
type Shutdown struct {
XMLName xml.Name `xml:"urn:SAPControl Shutdown"`
IsSystemStop int32 `xml:"IsSystemStop,omitempty" json:"IsSystemStop,omitempty"`
}
type ShutdownResponse struct {
XMLName xml.Name `xml:"urn:SAPControl ShutdownResponse"`
}
type ParameterValue struct {
XMLName xml.Name `xml:"urn:SAPControl ParameterValue"`
Parameter string `xml:"parameter,omitempty" json:"parameter,omitempty"`
}
type ParameterValueResponse struct {
XMLName xml.Name `xml:"urn:SAPControl ParameterValueResponse"`
Value string `xml:"value,omitempty" json:"value,omitempty"`
}
type GetProcessList struct {
XMLName xml.Name `xml:"urn:SAPControl GetProcessList"`
}
type GetProcessListResponse struct {
XMLName xml.Name `xml:"urn:SAPControl GetProcessListResponse"`
Process *ArrayOfOSProcess `xml:"process,omitempty" json:"process,omitempty"`
}
type GetStartProfile struct {
XMLName xml.Name `xml:"urn:SAPControl GetStartProfile"`
}
type GetStartProfileResponse struct {
XMLName xml.Name `xml:"urn:SAPControl GetStartProfileResponse"`
Name string `xml:"name,omitempty" json:"name,omitempty"`
Lines *ArrayOfString `xml:"lines,omitempty" json:"lines,omitempty"`
}
type GetTraceFile struct {
XMLName xml.Name `xml:"urn:SAPControl GetTraceFile"`
}
type GetTraceFileResponse struct {
XMLName xml.Name `xml:"urn:SAPControl GetTraceFileResponse"`
Name string `xml:"name,omitempty" json:"name,omitempty"`
Lines *ArrayOfString `xml:"lines,omitempty" json:"lines,omitempty"`
}
type GetAlertTree struct {
XMLName xml.Name `xml:"urn:SAPControl GetAlertTree"`
}
type GetAlertTreeResponse struct {
XMLName xml.Name `xml:"urn:SAPControl GetAlertTreeResponse"`
Tree *ArrayOfAlertNode `xml:"tree,omitempty" json:"tree,omitempty"`
}
type GetAlerts struct {
XMLName xml.Name `xml:"urn:SAPControl GetAlerts"`
RootTid string `xml:"RootTid,omitempty" json:"RootTid,omitempty"`
}
type GetAlertsResponse struct {
XMLName xml.Name `xml:"urn:SAPControl GetAlertsResponse"`
RootTidName string `xml:"RootTidName,omitempty" json:"RootTidName,omitempty"`
Alert *ArrayOfAlert `xml:"alert,omitempty" json:"alert,omitempty"`
}
type RestartService struct {
XMLName xml.Name `xml:"urn:SAPControl RestartService"`
}
type RestartServiceResponse struct {
XMLName xml.Name `xml:"urn:SAPControl RestartServiceResponse"`
}
type StopService struct {
XMLName xml.Name `xml:"urn:SAPControl StopService"`
}
type StopServiceResponse struct {
XMLName xml.Name `xml:"urn:SAPControl StopServiceResponse"`
}
type GetEnvironment struct {
XMLName xml.Name `xml:"urn:SAPControl GetEnvironment"`
}
type GetEnvironmentResponse struct {
XMLName xml.Name `xml:"urn:SAPControl GetEnvironmentResponse"`
Env *ArrayOfString `xml:"env,omitempty" json:"env,omitempty"`
}
type ListDeveloperTraces struct {
XMLName xml.Name `xml:"urn:SAPControl ListDeveloperTraces"`
}
type ListDeveloperTracesResponse struct {
XMLName xml.Name `xml:"urn:SAPControl ListDeveloperTracesResponse"`
File *ArrayOfDirEntry `xml:"file,omitempty" json:"file,omitempty"`
}
type ReadDeveloperTrace struct {
XMLName xml.Name `xml:"urn:SAPControl ReadDeveloperTrace"`
Filename string `xml:"filename,omitempty" json:"filename,omitempty"`
Size int32 `xml:"size,omitempty" json:"size,omitempty"`
}
type ReadDeveloperTraceResponse struct {
XMLName xml.Name `xml:"urn:SAPControl ReadDeveloperTraceResponse"`
Name string `xml:"name,omitempty" json:"name,omitempty"`
Lines *ArrayOfString `xml:"lines,omitempty" json:"lines,omitempty"`
}
type RestartInstance struct {
XMLName xml.Name `xml:"urn:SAPControl RestartInstance"`
Softtimeout int32 `xml:"softtimeout,omitempty" json:"softtimeout,omitempty"`
Runlevel string `xml:"runlevel,omitempty" json:"runlevel,omitempty"`
}
type RestartInstanceResponse struct {
XMLName xml.Name `xml:"urn:SAPControl RestartInstanceResponse"`
}
type SendSignal struct {
XMLName xml.Name `xml:"urn:SAPControl SendSignal"`
Pid int32 `xml:"pid,omitempty" json:"pid,omitempty"`
Signal string `xml:"signal,omitempty" json:"signal,omitempty"`
}
type SendSignalResponse struct {
XMLName xml.Name `xml:"urn:SAPControl SendSignalResponse"`
}
type GetVersionInfo struct {
XMLName xml.Name `xml:"urn:SAPControl GetVersionInfo"`
}
type GetVersionInfoResponse struct {
XMLName xml.Name `xml:"urn:SAPControl GetVersionInfoResponse"`
Version *ArrayOfInstanceVersionInfo `xml:"version,omitempty" json:"version,omitempty"`
}
type GetQueueStatistic struct {
XMLName xml.Name `xml:"urn:SAPControl GetQueueStatistic"`
}
type GetQueueStatisticResponse struct {
XMLName xml.Name `xml:"urn:SAPControl GetQueueStatisticResponse"`
Queue *ArrayOfTaskHandlerQueue `xml:"queue,omitempty" json:"queue,omitempty"`
}
type GetInstanceProperties struct {
XMLName xml.Name `xml:"urn:SAPControl GetInstanceProperties"`
}
type GetInstancePropertiesResponse struct {
XMLName xml.Name `xml:"urn:SAPControl GetInstancePropertiesResponse"`
Properties *ArrayOfInstanceProperties `xml:"properties,omitempty" json:"properties,omitempty"`
}
type OSExecute struct {
XMLName xml.Name `xml:"urn:SAPControl OSExecute"`
Command string `xml:"command,omitempty" json:"command,omitempty"`
Async int32 `xml:"async,omitempty" json:"async,omitempty"`
Timeout int32 `xml:"timeout,omitempty" json:"timeout,omitempty"`
Protocolfile string `xml:"protocolfile,omitempty" json:"protocolfile,omitempty"`
}
type OSExecuteResponse struct {
XMLName xml.Name `xml:"urn:SAPControl OSExecuteResponse"`
Exitcode int32 `xml:"exitcode,omitempty" json:"exitcode,omitempty"`
Pid int32 `xml:"pid,omitempty" json:"pid,omitempty"`
Lines *ArrayOfString `xml:"lines,omitempty" json:"lines,omitempty"`
}
type ReadLogFile struct {
XMLName xml.Name `xml:"urn:SAPControl ReadLogFile"`
Filename string `xml:"filename,omitempty" json:"filename,omitempty"`
Filter string `xml:"filter,omitempty" json:"filter,omitempty"`
Language string `xml:"language,omitempty" json:"language,omitempty"`
Maxentries int32 `xml:"maxentries,omitempty" json:"maxentries,omitempty"`
Statecookie string `xml:"statecookie,omitempty" json:"statecookie,omitempty"`
}
type ReadLogFileResponse struct {
XMLName xml.Name `xml:"urn:SAPControl ReadLogFileResponse"`
Format string `xml:"format,omitempty" json:"format,omitempty"`
Startcookie string `xml:"startcookie,omitempty" json:"startcookie,omitempty"`
Endcookie string `xml:"endcookie,omitempty" json:"endcookie,omitempty"`
Fields *ArrayOfString `xml:"fields,omitempty" json:"fields,omitempty"`
}
type ListLogFiles struct {
XMLName xml.Name `xml:"urn:SAPControl ListLogFiles"`
}
type ListLogFilesResponse struct {
XMLName xml.Name `xml:"urn:SAPControl ListLogFilesResponse"`
File *ArrayOfLogFile `xml:"file,omitempty" json:"file,omitempty"`
}
type AnalyseLogFiles struct {
XMLName xml.Name `xml:"urn:SAPControl AnalyseLogFiles"`
Starttime string `xml:"starttime,omitempty" json:"starttime,omitempty"`
Endtime string `xml:"endtime,omitempty" json:"endtime,omitempty"`
Severitylevel int32 `xml:"severity-level,omitempty" json:"severity-level,omitempty"`
Maxentries int32 `xml:"maxentries,omitempty" json:"maxentries,omitempty"`
}
type AnalyseLogFilesResponse struct {
XMLName xml.Name `xml:"urn:SAPControl AnalyseLogFilesResponse"`
Format string `xml:"format,omitempty" json:"format,omitempty"`
Fields *ArrayOfString `xml:"fields,omitempty" json:"fields,omitempty"`
}
type GetAccessPointList struct {
XMLName xml.Name `xml:"urn:SAPControl GetAccessPointList"`
}
type GetAccessPointListResponse struct {
XMLName xml.Name `xml:"urn:SAPControl GetAccessPointListResponse"`
Accesspoint *ArrayOfAccessPoint `xml:"accesspoint,omitempty" json:"accesspoint,omitempty"`
}
type GetSystemInstanceList struct {
XMLName xml.Name `xml:"urn:SAPControl GetSystemInstanceList"`
Timeout int32 `xml:"timeout,omitempty" json:"timeout,omitempty"`
}
type GetSystemInstanceListResponse struct {
XMLName xml.Name `xml:"urn:SAPControl GetSystemInstanceListResponse"`
Instance *ArrayOfSAPInstance `xml:"instance,omitempty" json:"instance,omitempty"`
}
type GetSystemUpdateList struct {
XMLName xml.Name `xml:"urn:SAPControl GetSystemUpdateList"`
}
type GetSystemUpdateListResponse struct {
XMLName xml.Name `xml:"urn:SAPControl GetSystemUpdateListResponse"`
Instance *ArrayOfUpdateInstance `xml:"instance,omitempty" json:"instance,omitempty"`
}
type StartSystem struct {
XMLName xml.Name `xml:"urn:SAPControl StartSystem"`
Options *StartStopOption `xml:"options,omitempty" json:"options,omitempty"`
Prioritylevel string `xml:"prioritylevel,omitempty" json:"prioritylevel,omitempty"`
Waittimeout int32 `xml:"waittimeout,omitempty" json:"waittimeout,omitempty"`
Runlevel string `xml:"runlevel,omitempty" json:"runlevel,omitempty"`
}
type StartSystemResponse struct {
XMLName xml.Name `xml:"urn:SAPControl StartSystemResponse"`
}
type StopSystem struct {
XMLName xml.Name `xml:"urn:SAPControl StopSystem"`
Options *StartStopOption `xml:"options,omitempty" json:"options,omitempty"`
Prioritylevel string `xml:"prioritylevel,omitempty" json:"prioritylevel,omitempty"`
Softtimeout int32 `xml:"softtimeout,omitempty" json:"softtimeout,omitempty"`
Waittimeout int32 `xml:"waittimeout,omitempty" json:"waittimeout,omitempty"`
}
type StopSystemResponse struct {
XMLName xml.Name `xml:"urn:SAPControl StopSystemResponse"`
}
type RestartSystem struct {
XMLName xml.Name `xml:"urn:SAPControl RestartSystem"`
Options *StartStopOption `xml:"options,omitempty" json:"options,omitempty"`
Prioritylevel string `xml:"prioritylevel,omitempty" json:"prioritylevel,omitempty"`
Softtimeout int32 `xml:"softtimeout,omitempty" json:"softtimeout,omitempty"`
Waittimeout int32 `xml:"waittimeout,omitempty" json:"waittimeout,omitempty"`
Runlevel string `xml:"runlevel,omitempty" json:"runlevel,omitempty"`
}
type RestartSystemResponse struct {
XMLName xml.Name `xml:"urn:SAPControl RestartSystemResponse"`
}
type UpdateSystem struct {
XMLName xml.Name `xml:"urn:SAPControl UpdateSystem"`
Softtimeout int32 `xml:"softtimeout,omitempty" json:"softtimeout,omitempty"`
Waittimeout int32 `xml:"waittimeout,omitempty" json:"waittimeout,omitempty"`
Force bool `xml:"force,omitempty" json:"force,omitempty"`
}
type UpdateSystemResponse struct {
XMLName xml.Name `xml:"urn:SAPControl UpdateSystemResponse"`
}
type UpdateSCSInstance struct {
XMLName xml.Name `xml:"urn:SAPControl UpdateSCSInstance"`
}
type UpdateSCSInstanceResponse struct {
XMLName xml.Name `xml:"urn:SAPControl UpdateSCSInstanceResponse"`
}
type CheckUpdateSystem struct {
XMLName xml.Name `xml:"urn:SAPControl CheckUpdateSystem"`
}
type CheckUpdateSystemResponse struct {
XMLName xml.Name `xml:"urn:SAPControl CheckUpdateSystemResponse"`
}
type AccessCheck struct {
XMLName xml.Name `xml:"urn:SAPControl AccessCheck"`
Function string `xml:"function,omitempty" json:"function,omitempty"`
}
type AccessCheckResponse struct {
XMLName xml.Name `xml:"urn:SAPControl AccessCheckResponse"`
}
type GetProcessParameter struct {
XMLName xml.Name `xml:"urn:SAPControl GetProcessParameter"`
Processtype string `xml:"processtype,omitempty" json:"processtype,omitempty"`
Pid int32 `xml:"pid,omitempty" json:"pid,omitempty"`
}
type GetProcessParameterResponse struct {
XMLName xml.Name `xml:"urn:SAPControl GetProcessParameterResponse"`
Parameter *ArrayOfProfileParameter `xml:"parameter,omitempty" json:"parameter,omitempty"`
}
type SetProcessParameter struct {
XMLName xml.Name `xml:"urn:SAPControl SetProcessParameter"`
Processtype string `xml:"processtype,omitempty" json:"processtype,omitempty"`
Pid int32 `xml:"pid,omitempty" json:"pid,omitempty"`
Parameter *ArrayOfSetProfileParameter `xml:"parameter,omitempty" json:"parameter,omitempty"`
}
type SetProcessParameterResponse struct {
XMLName xml.Name `xml:"urn:SAPControl SetProcessParameterResponse"`
}
type SetProcessParameter2 struct {
XMLName xml.Name `xml:"urn:SAPControl SetProcessParameter2"`
Processtype string `xml:"processtype,omitempty" json:"processtype,omitempty"`
Pid int32 `xml:"pid,omitempty" json:"pid,omitempty"`
Persistence *PERSISTENCETYPE `xml:"persistence,omitempty" json:"persistence,omitempty"`
Parameter *ArrayOfSetProfileParameter `xml:"parameter,omitempty" json:"parameter,omitempty"`
}
type SetProcessParameter2Response struct {
XMLName xml.Name `xml:"urn:SAPControl SetProcessParameter2Response"`
}
type ShmDetach struct {
XMLName xml.Name `xml:"urn:SAPControl ShmDetach"`
}
type ShmDetachResponse struct {
XMLName xml.Name `xml:"urn:SAPControl ShmDetachResponse"`
}
type GetSecNetworkId struct {
XMLName xml.Name `xml:"urn:SAPControl GetSecNetworkId"`
Serviceip string `xml:"service-ip,omitempty" json:"service-ip,omitempty"`
Serviceport int32 `xml:"service-port,omitempty" json:"service-port,omitempty"`
Version int32 `xml:"version,omitempty" json:"version,omitempty"`
Challenge string `xml:"challenge,omitempty" json:"challenge,omitempty"`
}
type GetSecNetworkIdResponse struct {
XMLName xml.Name `xml:"urn:SAPControl GetSecNetworkIdResponse"`
Key string `xml:"key,omitempty" json:"key,omitempty"`
Proof string `xml:"proof,omitempty" json:"proof,omitempty"`
}
type GetNetworkId struct {
XMLName xml.Name `xml:"urn:SAPControl GetNetworkId"`
Serviceip string `xml:"service-ip,omitempty" json:"service-ip,omitempty"`
Serviceport int32 `xml:"service-port,omitempty" json:"service-port,omitempty"`
Version int32 `xml:"version,omitempty" json:"version,omitempty"`
}
type GetNetworkIdResponse struct {
XMLName xml.Name `xml:"urn:SAPControl GetNetworkIdResponse"`
Key string `xml:"key,omitempty" json:"key,omitempty"`
}
type CreateSnapshot struct {
XMLName xml.Name `xml:"urn:SAPControl CreateSnapshot"`
Description string `xml:"description,omitempty" json:"description,omitempty"`
Datcolparam string `xml:"datcol-param,omitempty" json:"datcol-param,omitempty"`
Analyseseveritylevel int32 `xml:"analyse-severity-level,omitempty" json:"analyse-severity-level,omitempty"`
Analysestarttime string `xml:"analyse-starttime,omitempty" json:"analyse-starttime,omitempty"`
Analyseendtime string `xml:"analyse-endtime,omitempty" json:"analyse-endtime,omitempty"`
Analyzemaxentries int32 `xml:"analyze-maxentries,omitempty" json:"analyze-maxentries,omitempty"`
Maxentries int32 `xml:"maxentries,omitempty" json:"maxentries,omitempty"`
Logfiles *ArrayOfString `xml:"logfiles,omitempty" json:"logfiles,omitempty"`
}
type CreateSnapshotResponse struct {
XMLName xml.Name `xml:"urn:SAPControl CreateSnapshotResponse"`
Filename string `xml:"filename,omitempty" json:"filename,omitempty"`
}
type ReadSnapshot struct {
XMLName xml.Name `xml:"urn:SAPControl ReadSnapshot"`
Filename string `xml:"filename,omitempty" json:"filename,omitempty"`
}
type ReadSnapshotResponse struct {
XMLName xml.Name `xml:"urn:SAPControl ReadSnapshotResponse"`
Snapshot *SnapshotZip `xml:"snapshot,omitempty" json:"snapshot,omitempty"`
}
type ListSnapshots struct {
XMLName xml.Name `xml:"urn:SAPControl ListSnapshots"`
}
type ListSnapshotsResponse struct {
XMLName xml.Name `xml:"urn:SAPControl ListSnapshotsResponse"`
Snapshots *ArrayOfSnapshotInfo `xml:"snapshots,omitempty" json:"snapshots,omitempty"`
}
type DeleteSnapshots struct {
XMLName xml.Name `xml:"urn:SAPControl DeleteSnapshots"`
Snapshots *ArrayOfString `xml:"snapshots,omitempty" json:"snapshots,omitempty"`
}
type DeleteSnapshotsResponse struct {
XMLName xml.Name `xml:"urn:SAPControl DeleteSnapshotsResponse"`
}
type ABAPReadSyslog struct {
XMLName xml.Name `xml:"urn:SAPControl ABAPReadSyslog"`
}
type ABAPReadSyslogResponse struct {
XMLName xml.Name `xml:"urn:SAPControl ABAPReadSyslogResponse"`
Log *ArrayOfSyslogEntry `xml:"log,omitempty" json:"log,omitempty"`
}
type ABAPReadRawSyslog struct {
XMLName xml.Name `xml:"urn:SAPControl ABAPReadRawSyslog"`
}
type ABAPReadRawSyslogResponse struct {
XMLName xml.Name `xml:"urn:SAPControl ABAPReadRawSyslogResponse"`
Log *ArrayOfRawSyslogEntry `xml:"log,omitempty" json:"log,omitempty"`
}
type ABAPGetWPTable struct {
XMLName xml.Name `xml:"urn:SAPControl ABAPGetWPTable"`
}
type ABAPGetWPTableResponse struct {
XMLName xml.Name `xml:"urn:SAPControl ABAPGetWPTableResponse"`
Workprocess *ArrayOfWorkProcess `xml:"workprocess,omitempty" json:"workprocess,omitempty"`
}
type ABAPAcknowledgeAlerts struct {
XMLName xml.Name `xml:"urn:SAPControl ABAPAcknowledgeAlerts"`
R3Client string `xml:"R3Client,omitempty" json:"R3Client,omitempty"`
R3User string `xml:"R3User,omitempty" json:"R3User,omitempty"`
R3Password string `xml:"R3Password,omitempty" json:"R3Password,omitempty"`
Aid *ArrayOfString `xml:"Aid,omitempty" json:"Aid,omitempty"`
}
type ABAPAcknowledgeAlertsResponse struct {
XMLName xml.Name `xml:"urn:SAPControl ABAPAcknowledgeAlertsResponse"`
Alert *ArrayOfInt `xml:"alert,omitempty" json:"alert,omitempty"`
}
type ABAPGetComponentList struct {
XMLName xml.Name `xml:"urn:SAPControl ABAPGetComponentList"`
}
type ABAPGetComponentListResponse struct {
XMLName xml.Name `xml:"urn:SAPControl ABAPGetComponentListResponse"`
Component *ArrayOfABAPComponent `xml:"component,omitempty" json:"component,omitempty"`
}
type ABAPCheckRFCDestinations struct {
XMLName xml.Name `xml:"urn:SAPControl ABAPCheckRFCDestinations"`
}
type ABAPCheckRFCDestinationsResponse struct {
XMLName xml.Name `xml:"urn:SAPControl ABAPCheckRFCDestinationsResponse"`
Destination *ArrayOfString `xml:"destination,omitempty" json:"destination,omitempty"`
}
type ABAPGetSystemWPTable struct {
XMLName xml.Name `xml:"urn:SAPControl ABAPGetSystemWPTable"`
Activeonly bool `xml:"activeonly,omitempty" json:"activeonly,omitempty"`
}
type ABAPGetSystemWPTableResponse struct {
XMLName xml.Name `xml:"urn:SAPControl ABAPGetSystemWPTableResponse"`
Workprocess *ArrayOfSystemWorkProcess `xml:"workprocess,omitempty" json:"workprocess,omitempty"`
}
type RequestTicket struct {
XMLName xml.Name `xml:"urn:SAPControl RequestTicket"`
Host string `xml:"host,omitempty" json:"host,omitempty"`
Nr int32 `xml:"nr,omitempty" json:"nr,omitempty"`
Challenge string `xml:"challenge,omitempty" json:"challenge,omitempty"`
}
type RequestTicketResponse struct {
XMLName xml.Name `xml:"urn:SAPControl RequestTicketResponse"`
}
type SendTicket struct {
XMLName xml.Name `xml:"urn:SAPControl SendTicket"`
Proof string `xml:"proof,omitempty" json:"proof,omitempty"`
Challenge string `xml:"challenge,omitempty" json:"challenge,omitempty"`
}
type SendTicketResponse struct {
XMLName xml.Name `xml:"urn:SAPControl SendTicketResponse"`
}
type ConfigureLogFileList struct {
XMLName xml.Name `xml:"urn:SAPControl ConfigureLogFileList"`
Operation *LogFileConfigOperation `xml:"operation,omitempty" json:"operation,omitempty"`
Logfiles *ArrayOfString `xml:"logfiles,omitempty" json:"logfiles,omitempty"`
}
type ConfigureLogFileListResponse struct {
XMLName xml.Name `xml:"urn:SAPControl ConfigureLogFileListResponse"`
}
type GetLogFileList struct {
XMLName xml.Name `xml:"urn:SAPControl GetLogFileList"`
}
type GetLogFileListResponse struct {
XMLName xml.Name `xml:"urn:SAPControl GetLogFileListResponse"`
Logfiles *ArrayOfString `xml:"logfiles,omitempty" json:"logfiles,omitempty"`
}
type RequestLogonFile struct {
XMLName xml.Name `xml:"urn:SAPControl RequestLogonFile"`
User string `xml:"user,omitempty" json:"user,omitempty"`
}
type RequestLogonFileResponse struct {
XMLName xml.Name `xml:"urn:SAPControl RequestLogonFileResponse"`
Filename string `xml:"filename,omitempty" json:"filename,omitempty"`
}
type UpdateSystemPKI struct {
XMLName xml.Name `xml:"urn:SAPControl UpdateSystemPKI"`
Force bool `xml:"force,omitempty" json:"force,omitempty"`
}
type UpdateSystemPKIResponse struct {
XMLName xml.Name `xml:"urn:SAPControl UpdateSystemPKIResponse"`
}
type UpdateInstancePSE struct {
XMLName xml.Name `xml:"urn:SAPControl UpdateInstancePSE"`
Force bool `xml:"force,omitempty" json:"force,omitempty"`
}
type UpdateInstancePSEResponse struct {
XMLName xml.Name `xml:"urn:SAPControl UpdateInstancePSEResponse"`
}
type HACheckConfig struct {
XMLName xml.Name `xml:"urn:SAPControl HACheckConfig"`
}
type HACheckConfigResponse struct {
XMLName xml.Name `xml:"urn:SAPControl HACheckConfigResponse"`
Check *ArrayOfHACheck `xml:"check,omitempty" json:"check,omitempty"`
}
type HACheckFailoverConfig struct {
XMLName xml.Name `xml:"urn:SAPControl HACheckFailoverConfig"`
}
type HACheckFailoverConfigResponse struct {
XMLName xml.Name `xml:"urn:SAPControl HACheckFailoverConfigResponse"`
Check *ArrayOfHACheck `xml:"check,omitempty" json:"check,omitempty"`
}
type HAGetFailoverConfig struct {
XMLName xml.Name `xml:"urn:SAPControl HAGetFailoverConfig"`
}
type HAGetFailoverConfigResponse struct {
XMLName xml.Name `xml:"urn:SAPControl HAGetFailoverConfigResponse"`
HAActive bool `xml:"HAActive,omitempty" json:"HAActive,omitempty"`
HAProductVersion string `xml:"HAProductVersion,omitempty" json:"HAProductVersion,omitempty"`
HASAPInterfaceVersion string `xml:"HASAPInterfaceVersion,omitempty" json:"HASAPInterfaceVersion,omitempty"`
HADocumentation string `xml:"HADocumentation,omitempty" json:"HADocumentation,omitempty"`
HAActiveNode string `xml:"HAActiveNode,omitempty" json:"HAActiveNode,omitempty"`
HANodes *ArrayOfString `xml:"HANodes,omitempty" json:"HANodes,omitempty"`
}
type HAFailoverToNode struct {
XMLName xml.Name `xml:"urn:SAPControl HAFailoverToNode"`
Node string `xml:"node,omitempty" json:"node,omitempty"`
}
type HAFailoverToNodeResponse struct {
XMLName xml.Name `xml:"urn:SAPControl HAFailoverToNodeResponse"`
}
type StartBypassHA struct {
XMLName xml.Name `xml:"urn:SAPControl StartBypassHA"`
Runlevel string `xml:"runlevel,omitempty" json:"runlevel,omitempty"`
}
type StartBypassHAResponse struct {
XMLName xml.Name `xml:"urn:SAPControl StartBypassHAResponse"`
}
type StopBypassHA struct {
XMLName xml.Name `xml:"urn:SAPControl StopBypassHA"`
Softtimeout int32 `xml:"softtimeout,omitempty" json:"softtimeout,omitempty"`
IsSystemStop int32 `xml:"IsSystemStop,omitempty" json:"IsSystemStop,omitempty"`
}
type StopBypassHAResponse struct {
XMLName xml.Name `xml:"urn:SAPControl StopBypassHAResponse"`
}
type GetCallstack struct {
XMLName xml.Name `xml:"urn:SAPControl GetCallstack"`
Pid int32 `xml:"pid,omitempty" json:"pid,omitempty"`
}
type GetCallstackResponse struct {
XMLName xml.Name `xml:"urn:SAPControl GetCallstackResponse"`
Lines *ArrayOfString `xml:"lines,omitempty" json:"lines,omitempty"`
}
type J2EEGetProcessList struct {
XMLName xml.Name `xml:"urn:SAPControl J2EEGetProcessList"`
}
type J2EEGetProcessListResponse struct {
XMLName xml.Name `xml:"urn:SAPControl J2EEGetProcessListResponse"`
Process *ArrayOfJ2EEProcess `xml:"process,omitempty" json:"process,omitempty"`
}
type J2EEGetProcessList2 struct {