-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_ccmdbapi21.py
More file actions
5858 lines (5857 loc) · 210 KB
/
_ccmdbapi21.py
File metadata and controls
5858 lines (5857 loc) · 210 KB
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
# generated by 'xml2py'
# flags 'cmdb.xml'
from ctypes import Structure, Union, POINTER, c_long, c_ulong, c_uint, c_int, \
c_ushort, c_double, c_ubyte, c_char, c_char_p, c_void_p, \
sizeof, alignment
AR_SERVER_INFO_CACHE_SEG_SIZE = 76 # Variable c_int
ARREF_WS_XML_SCHEMA_LOC = 32828 # Variable c_int
AR_DPROP_ZERO_SIZE_WHEN_HIDDEN = 243 # Variable c_int
# ar.h 2385
class ARExitGuideStruct(Structure):
pass
ARBoolean = c_ubyte
ARExitGuideStruct._fields_ = [
# ar.h 2385
('closeAll', ARBoolean),
]
AR_DPROP_FORMACTION_FLDS_EXCLUDE = 261 # Variable c_int
# cmdb.h 1065
class CMDBAuditInfoStruct(Structure):
pass
# cmdb.h 907
class CMDBQualifierStruct(Structure):
pass
# cmdb.h 910
class N19CMDBQualifierStruct4DOLLAR_41E(Union):
pass
# ar.h 976
class ARQualifierStruct(Structure):
pass
# ar.h 979
class N17ARQualifierStruct3DOLLAR_3E(Union):
pass
# ar.h 981
class N17ARQualifierStruct3DOLLAR_33DOLLAR_4E(Structure):
pass
N17ARQualifierStruct3DOLLAR_33DOLLAR_4E._fields_ = [
# ar.h 981
('operandLeft', POINTER(ARQualifierStruct)),
('operandRight', POINTER(ARQualifierStruct)),
]
# ar.h 956
class ARRelOpStruct(Structure):
pass
ARULong32 = c_ulong
ARInternalId = ARULong32
N17ARQualifierStruct3DOLLAR_3E._fields_ = [
# ar.h 979
('andor', N17ARQualifierStruct3DOLLAR_33DOLLAR_4E),
('notQual', POINTER(ARQualifierStruct)),
('relOp', POINTER(ARRelOpStruct)),
('fieldId', ARInternalId),
]
ARQualifierStruct._fields_ = [
# ar.h 976
('operation', c_uint),
('u', N17ARQualifierStruct3DOLLAR_3E),
]
N19CMDBQualifierStruct4DOLLAR_41E._fields_ = [
# cmdb.h 910
('qualifierString', c_char_p),
('qualifierStruct', ARQualifierStruct),
]
CMDBQualifierStruct._fields_ = [
# cmdb.h 907
('qualifierType', c_uint),
('u', N19CMDBQualifierStruct4DOLLAR_41E),
]
# cmdb.h 1068
class N19CMDBAuditInfoStruct4DOLLAR_43E(Union):
pass
ARNameType = c_char * 255
N19CMDBAuditInfoStruct4DOLLAR_43E._fields_ = [
# cmdb.h 1068
('logForm', ARNameType),
]
CMDBAuditInfoStruct._fields_ = [
# cmdb.h 1065
('type', c_uint),
('qual', CMDBQualifierStruct),
('u', N19CMDBAuditInfoStruct4DOLLAR_43E),
]
AR_RETURN_PROMPT = 5 # Variable c_int
CMDB_MAX_CLASS_NAME_SIZE = 80 # Variable c_int
AR_NO_MATCH_NO_ACTION = 3 # Variable c_int
CMDB_RELATIONSHIP_DIRECTION_IN = 1 # Variable c_int
AR_GOTO_ABSOLUTE_ORDER = 2 # Variable c_int
AR_ARITH_OP_MODULO = 5 # Variable c_int
CMDB_ERROR_SETTING_LEAD_CLASS_REF_DISALLOWED = 120046 # Variable c_int
AR_DEBUG_SERVER_PLUGIN = 131072 # Variable c_int
AR_DPROP_PATH_TO_BKG_IMAGE = 267 # Variable c_int
AR_DVAL_AUTO_FIELD_NAV = 1 # Variable c_int
# ar.h 4773
class ARSignalStruct(Structure):
pass
ARSignalStruct._fields_ = [
# ar.h 4773
('signalType', c_int),
('sigArgument', c_char_p),
]
CMDB_WARNING_REQUESTED_IMPORT_OBJECT_NOT_FOUND = 120136 # Variable c_int
AR_STRUCT_ITEM_XML_ESCALATION = 1073741833 # Variable c_int
# ar.h 2470
class ARMacroParmStruct(Structure):
pass
AR_SERVER_INFO_CURR_PART_DATE_STR = 188 # Variable c_int
AR_SERVER_STAT_DELETE_E_TIME = 25 # Variable c_int
ARGuid = c_char * 40
CMDB_DATA_IMPORT_OPT_MERGE_FOR_DUP = 3 # Variable c_int
_NSTREAM_ = 512 # Variable c_int
_NFILE = _NSTREAM_ # alias
CMDB_RESERV_CLASS_EXPOSURE = 530001900 # Variable c_int
AR_DVAL_COLOR_BG = 'bg' # Variable c_char_p
CMDB_ERROR_OUT_OF_MEMORY = 120149 # Variable c_int
CMDB_RESERV_INDEX_ATTR_CLASS_ID = 490000100 # Variable c_int
CMDB_FEDERATED_ACCESS_TYPE_MANUAL = 4 # Variable c_int
CMDB_MAX_ATTRIBUTE_NAME_SIZE = 80 # Variable c_int
# cmdb.h 722
class CMDBClassRelationship(Structure):
pass
ARREF_APPLICATION_HELP_LABEL2 = 32824 # Variable c_int
CMDB_ATTR_ENTRYMODE_REQUIED = 1 # Variable c_int
CMDBRE_JOB_RUN_STATUS_FAILED = 2 # Variable c_int
# ar.h 2623
class ARActiveLinkActionStruct(Structure):
pass
MB_LEN_MAX = 5 # Variable c_int
AR_SERVER_INFO_ORACLE_TWO_T = 71 # Variable c_int
# ar.h 5278
class ARComplexEntryCreate(Structure):
pass
ARServerNameType = c_char * 65
# ar.h 5271
class ARComplexEntryCreateList(Structure):
pass
ARComplexEntryCreateList._fields_ = [
# ar.h 5271
('numItems', c_uint),
('list', POINTER(ARComplexEntryCreate)),
]
# ar.h 764
class ARFieldValueList(Structure):
pass
# ar.h 756
class ARFieldValueStruct(Structure):
pass
ARFieldValueList._fields_ = [
# ar.h 764
('numItems', c_uint),
('fieldValueList', POINTER(ARFieldValueStruct)),
]
# ar.h 656
class ARValueStruct(Structure):
pass
# ar.h 659
class N13ARValueStruct3DOLLAR_1E(Union):
pass
ARLong32 = c_long
ARTimestamp = ARLong32
ARTime = ARLong32
# ar.h 354
class ARByteList(Structure):
pass
# ar.h 611
class ARAttachStruct(Structure):
pass
# ar.h 578
class ARCoordList(Structure):
pass
# ar.h 637
class ARCurrencyStruct(Structure):
pass
N13ARValueStruct3DOLLAR_1E._fields_ = [
# ar.h 659
('keyNum', c_uint),
('intVal', ARLong32),
('realVal', c_double),
('charVal', c_char_p),
('diaryVal', c_char_p),
('enumVal', ARULong32),
('timeVal', ARTimestamp),
('maskVal', ARULong32),
('timeOfDayVal', ARTime),
('byteListVal', POINTER(ARByteList)),
('decimalVal', c_char_p),
('attachVal', POINTER(ARAttachStruct)),
('ulongVal', ARULong32),
('coordListVal', POINTER(ARCoordList)),
('dateVal', c_int),
('currencyVal', POINTER(ARCurrencyStruct)),
]
ARValueStruct._fields_ = [
# ar.h 656
('dataType', c_uint),
('u', N13ARValueStruct3DOLLAR_1E),
]
ARFieldValueStruct._fields_ = [
# ar.h 756
('fieldId', ARInternalId),
('value', ARValueStruct),
]
AREntryIdType = c_char * 16
ARComplexEntryCreate._fields_ = [
# ar.h 5278
('formName', ARNameType),
('serverName', ARServerNameType),
('foreignKeyFieldId', ARInternalId),
('parent', POINTER(ARComplexEntryCreate)),
('children', ARComplexEntryCreateList),
('fieldValueList', ARFieldValueList),
('primaryKey', ARFieldValueStruct),
('distinguishingKey', ARFieldValueStruct),
('entryId', AREntryIdType),
]
AR_SERVER_INFO_FT_SEARCH_MATCH_OP = 237 # Variable c_int
CMDB_CLASS_CHARAC_DESCRIPTION = 5 # Variable c_int
CMDB_ERROR_NO_SUCH_CLASS = 120002 # Variable c_int
# cmdb.h 1369
class CMDBAuditValueListList(Structure):
pass
# cmdb.h 1361
class CMDBAuditValueList(Structure):
pass
CMDBAuditValueListList._fields_ = [
# cmdb.h 1369
('numItems', c_uint),
('attrAuditValueList', POINTER(CMDBAuditValueList)),
]
# ar.h 4649
class ARContainerOwnerObj(Structure):
pass
# ar.h 2626
class N24ARActiveLinkActionStruct4DOLLAR_10E(Union):
pass
# ar.h 2484
class ARActiveLinkMacroStruct(Structure):
pass
# ar.h 2477
class ARMacroParmList(Structure):
pass
ARMacroParmList._fields_ = [
# ar.h 2477
('numItems', c_uint),
('parms', POINTER(ARMacroParmStruct)),
]
ARActiveLinkMacroStruct._fields_ = [
# ar.h 2484
('macroName', ARNameType),
('macroText', c_char_p),
('macroParms', ARMacroParmList),
]
# ar.h 2337
class ARSetFieldsActionStruct(Structure):
pass
# ar.h 2142
class ARFieldAssignList(Structure):
pass
# ar.h 2134
class ARFieldAssignStruct(Structure):
pass
ARFieldAssignList._fields_ = [
# ar.h 2142
('numItems', c_uint),
('fieldAssignList', POINTER(ARFieldAssignStruct)),
]
ARSetFieldsActionStruct._fields_ = [
# ar.h 2337
('fieldList', ARFieldAssignList),
('sampleServer', ARServerNameType),
('sampleSchema', ARNameType),
]
# ar.h 422
class ARMessageStruct(Structure):
pass
ARMessageStruct._fields_ = [
# ar.h 422
('messageType', c_uint),
('messageNum', ARLong32),
('messageText', c_char_p),
('usePromptingPane', ARBoolean),
]
# ar.h 2502
class ARFieldCharacteristics(Structure):
pass
# ar.h 1176
class ARPropList(Structure):
pass
# ar.h 1168
class ARPropStruct(Structure):
pass
ARPropList._fields_ = [
# ar.h 1176
('numItems', c_uint),
('props', POINTER(ARPropStruct)),
]
ARFieldCharacteristics._fields_ = [
# ar.h 2502
('option', c_uint),
('fieldId', ARInternalId),
('charMenu', c_char_p),
('props', ARPropList),
('focus', c_uint),
('accessOption', c_uint),
]
# ar.h 1999
class ARDDEStruct(Structure):
pass
ARDDEStruct._fields_ = [
# ar.h 1999
('serviceName', c_char_p),
('topic', c_char_p),
('item', c_char_p),
('action', c_uint),
('pathToProgram', c_char_p),
('command', c_char_p),
]
# ar.h 2328
class ARPushFieldsActionStruct(Structure):
pass
# ar.h 2320
class ARPushFieldsList(Structure):
pass
# ar.h 2312
class ARPushFieldsStruct(Structure):
pass
ARPushFieldsList._fields_ = [
# ar.h 2320
('numItems', c_uint),
('pushFieldsList', POINTER(ARPushFieldsStruct)),
]
ARPushFieldsActionStruct._fields_ = [
# ar.h 2328
('pushFieldsList', ARPushFieldsList),
('sampleServer', ARServerNameType),
('sampleSchema', ARNameType),
]
# ar.h 2345
class ARSQLStruct(Structure):
pass
ARSQLStruct._fields_ = [
# ar.h 2345
('server', c_char * 65),
('command', c_char_p),
]
# ar.h 2083
class ARAutomationStruct(Structure):
pass
# ar.h 2075
class ARCOMMethodList(Structure):
pass
# ar.h 2064
class ARCOMMethodStruct(Structure):
pass
ARCOMMethodList._fields_ = [
# ar.h 2075
('numItems', c_uint),
('methodList', POINTER(ARCOMMethodStruct)),
]
ARAutomationStruct._fields_ = [
# ar.h 2083
('autoServerName', c_char_p),
('clsId', c_char_p),
('action', c_char_p),
('isVisible', ARBoolean),
('methodList', ARCOMMethodList),
]
# ar.h 2513
class AROpenDlgStruct(Structure):
pass
# ar.h 1012
class ARSortList(Structure):
pass
# ar.h 1004
class ARSortStruct(Structure):
pass
ARSortList._fields_ = [
# ar.h 1012
('numItems', c_uint),
('sortList', POINTER(ARSortStruct)),
]
AROpenDlgStruct._fields_ = [
# ar.h 2513
('serverName', ARServerNameType),
('schemaName', ARNameType),
('vuiLabel', ARNameType),
('closeBox', ARBoolean),
('inputValueFieldPairs', ARFieldAssignList),
('outputValueFieldPairs', ARFieldAssignList),
('windowMode', c_int),
('targetLocation', c_char_p),
('query', ARQualifierStruct),
('noMatchContinue', ARBoolean),
('suppressEmptyLst', ARBoolean),
('msg', ARMessageStruct),
('pollinginterval', ARULong32),
('reportString', c_char_p),
('sortOrderList', ARSortList),
]
# ar.h 2532
class ARCommitChangesStruct(Structure):
pass
ARCommitChangesStruct._fields_ = [
# ar.h 2532
('schemaName', ARNameType),
]
# ar.h 2538
class ARCloseWndStruct(Structure):
pass
ARCloseWndStruct._fields_ = [
# ar.h 2538
('closeAll', ARBoolean),
]
# ar.h 2365
class ARCallGuideStruct(Structure):
pass
ARCallGuideStruct._fields_ = [
# ar.h 2365
('serverName', ARServerNameType),
('guideName', ARNameType),
('guideMode', c_int),
('guideTableId', ARInternalId),
('inputValueFieldPairs', ARFieldAssignList),
('outputValueFieldPairs', ARFieldAssignList),
('sampleServer', ARServerNameType),
('sampleGuide', ARNameType),
]
# ar.h 2391
class ARGotoGuideLabelStruct(Structure):
pass
ARGotoGuideLabelStruct._fields_ = [
# ar.h 2391
('label', c_char_p),
]
# ar.h 2544
class ARWaitStruct(Structure):
pass
ARWaitStruct._fields_ = [
# ar.h 2544
('continueButtonTitle', c_char_p),
]
# ar.h 2357
class ARGotoActionStruct(Structure):
pass
ARGotoActionStruct._fields_ = [
# ar.h 2357
('tag', c_uint),
('fieldIdOrValue', ARULong32),
]
N24ARActiveLinkActionStruct4DOLLAR_10E._fields_ = [
# ar.h 2626
('macro', ARActiveLinkMacroStruct),
('setFields', ARSetFieldsActionStruct),
('process', c_char_p),
('message', ARMessageStruct),
('characteristics', ARFieldCharacteristics),
('dde', ARDDEStruct),
('pushFields', ARPushFieldsActionStruct),
('sqlCommand', ARSQLStruct),
('automation', ARAutomationStruct),
('openDlg', AROpenDlgStruct),
('commitChanges', ARCommitChangesStruct),
('closeWnd', ARCloseWndStruct),
('callGuide', ARCallGuideStruct),
('exitGuide', ARExitGuideStruct),
('gotoGuide', ARGotoGuideLabelStruct),
('waitAction', ARWaitStruct),
('gotoAction', ARGotoActionStruct),
]
CMDB_ERROR_ATTRIBUTE_CANNOT_BE_SET = 120028 # Variable c_int
AR_SERVER_INFO_AP_RPC_SOCKET = 92 # Variable c_int
# ar.h 591
class ARBufStruct(Structure):
pass
CMDB_ERROR_IMP_INSTANCE_ID_ALREADY_EXISTS = 120137 # Variable c_int
# ar.h 4032
class ARFullTextInfoRequestList(Structure):
pass
ARFullTextInfoRequestList._fields_ = [
# ar.h 4032
('numItems', c_uint),
('requestList', POINTER(c_uint)),
]
AR_DPROP_AUTO_SET_OVERLAP_FIELD = 257 # Variable c_int
# cmdb.h 1432
class CMDBXMLExportItemList(Structure):
pass
# cmdb.h 1406
class CMDBXMLExportItemStruct(Structure):
pass
CMDBXMLExportItemList._fields_ = [
# cmdb.h 1432
('numItems', c_uint),
('exportItemList', POINTER(CMDBXMLExportItemStruct)),
]
# cmdb.h 806
class N18CMDBAttributeLimit4DOLLAR_284DOLLAR_31E(Structure):
pass
N18CMDBAttributeLimit4DOLLAR_284DOLLAR_31E._fields_ = [
# cmdb.h 806
('rangeLow', c_double),
('rangeHigh', c_double),
('precision', c_int),
]
AR_KEYWORD_VUI = 16 # Variable c_int
AR_NO_MAX_LIST_RETRIEVE = 0 # Variable c_int
AR_ATTRIB_NONE = 0 # Variable c_int
AR_ATTRIB_VISIBLE = AR_ATTRIB_NONE # alias
CMDB_RESERV_CLASS_CLASS_NAME = 490001100 # Variable c_int
CMDB_ATTR_ID_REL_DATA_SET_ID_1 = 'OBJSTR_ATTR_ID_REL_DATA_SET_ID_1' # Variable c_char_p
AR_DVAL_SECTOR_NORTH = 2 # Variable c_int
# ar.h 2992
class ARColumnLimitsStruct(Structure):
pass
AR_DDE_POKE = 2 # Variable c_int
AR_LOG_FILE = 'ar.log' # Variable c_char_p
# ar.h 5097
class N13ARXMLInputDoc4DOLLAR_24E(Union):
pass
N13ARXMLInputDoc4DOLLAR_24E._fields_ = [
# ar.h 5097
('charBuffer', c_char_p),
('fileName', c_char_p),
('url', c_char_p),
]
CMDB_RESERV_CLASS_CATEGORIZATION_SUBCLASS = 301045500 # Variable c_int
# ar.h 4161
class ARViewMappingStruct(Structure):
pass
AR_DISPLAY_LABEL_TOP = 2 # Variable c_int
AR_SERVER_INFO_ALERT_OUTBOUND_PORT = 148 # Variable c_int
CMDB_RESERV_FEDERATED_DATA_RESULT7 = 530003040 # Variable c_int
AR_SUBMITTER_MODE_LOCKED = 1 # Variable c_int
AR_SERVER_INFO_SERVERGROUP_MEMBER = 192 # Variable c_int
AR_JOIN_OPTION_OUTER = 1 # Variable c_int
AR_CLIENT_TYPE_ALERT = 21 # Variable c_int
AR_FIELD_TYPE_COLUMN = 64 # Variable c_int
AR_DVAL_IMAGE_CENTER = 0 # Variable c_int
AR_BULK_ENTRY_XMLSET = 6 # Variable c_int
CMDB_RESERV_INSTANCE_Z_TMP_ID_3 = 301205100 # Variable c_int
AR_PATTERN_KEY_LOWER = 106 # Variable c_int
AR_LOCAL_TEXT_FLASHBRD_MESSAGE = 14 # Variable c_int
CMDB_ATTR_ID_Z_TMP_SDEL_OP_FLAG = 'OBJSTR_ATTR_ID_Z_TMP_SDEL_OP_FLAG' # Variable c_char_p
AR_SERVER_INFO_DS_MAPPING = 43 # Variable c_int
CMDB_VER_PATCH = 6 # Variable c_int
AR_REPORT_ATTR_HEADER = 5 # Variable c_long
CMDB_ERROR_INVALID_LIST_FORMAT = 120017 # Variable c_int
AR_DPROP_TABLE_CHUNK_PREV = 5007 # Variable c_int
AR_CASE_SENSITIVE_NO = 1 # Variable c_int
AR_DVAL_VIEWFIELD_SCROLLBARS_ON = 1 # Variable c_int
# ar.h 2762
class ARLicenseNameList(Structure):
pass
ARLicenseNameType = c_char * 51
ARLicenseNameList._fields_ = [
# ar.h 2762
('numItems', c_uint),
('nameList', POINTER(ARLicenseNameType)),
]
CMDB_RESERV_FEDERATED_DATA_RESULT2 = 530002900 # Variable c_int
ARREF_APPLICATION_HELP_LABEL = 32823 # Variable c_int
ARREF_APPLICATION_PRIMARY_FORM = 32777 # Variable c_int
AR_KEYWORD_DATABASE = 12 # Variable c_int
CMDB_ERROR_INVALID_INDEX_LIST = 120070 # Variable c_int
# cmdb.h 715
class CMDBWeakPropagatedAttrsList(Structure):
pass
ARREF_ENCAPSULATED_APP_DATA = 32833 # Variable c_int
ARREF_APPLICATION_HELP_INDEX_FILE4 = 32817 # Variable c_int
AR_SCHEMA_JOIN = 2 # Variable c_int
AR_FULLTEXTINFO_DEBUG = 8 # Variable c_int
AR_IMPORT_OPT_HANDLE_CONFLICT_MASK = 48 # Variable c_int
AR_SVR_EVENT_CHG_GROUPS = 11 # Variable c_int
# def _fileno(_stream): return ((_stream)->_file) # macro
AR_MAX_COM_NAME = 1024 # Variable c_int
# ar.h 4717
class ARReferenceList(Structure):
pass
CMDB_ERROR_ATTR_FIELD_ID_NOT_UNIQUE = 120081 # Variable c_int
# ar.h 2813
class ARLicenseValidList(Structure):
pass
CMDB_ERROR_DATASET_OVERLAY_SOURCE_INVALID = 120152 # Variable c_int
CMDB_RESERV_INSTANCE_Z_TMP_CHAR_1 = 400124600 # Variable c_int
# ar.h 4072
class ARStatusHistoryList(Structure):
pass
# ar.h 1092
class ARArchiveInfoStruct(Structure):
pass
ARREF_CHAR_MENU = 7 # Variable c_int
AR_ORDER_MAX = 1000 # Variable c_int
ARREF_WS_PUBLISHING_LOC = 32802 # Variable c_int
AR_DPROP_ALIAS_ABBREV_SINGULAR = 210 # Variable c_int
# ar.h 3129
class ARCharMenuFileStruct(Structure):
pass
ARCharMenuFileStruct._fields_ = [
# ar.h 3129
('fileLocation', c_uint),
('filename', c_char_p),
]
AR_FIELD_BITOPTION_LOG_KEY3 = 12 # Variable c_int
AR_SERVER_INFO_SG_EMAIL_STATE = 200 # Variable c_int
CMDB_LOC_BUFFER = 2 # Variable c_int
AR_XML_DOC_URL = 3 # Variable c_int
AR_ACTIVE_LINK_ACTION_OPEN_SUBMIT = 2 # Variable c_int
SHRT_MAX = 32767 # Variable c_int
AR_DPROP_LABEL_JUSTIFY = 25 # Variable c_int
ARBufStruct._fields_ = [
# ar.h 591
('bufSize', ARULong32),
('buffer', POINTER(c_ubyte)),
]
CMDB_ATTR_ID_Z_TMP_DEL_CASCADE_RRID = 'OBJSTR_ATTR_ID_Z_TMP_DEL_CASC_RRID' # Variable c_char_p
CMDB_QUALIFIER_TYPE_NONE = 0 # Variable c_int
AR_STAT_HISTORY_USER = 1 # Variable c_int
AR_DVAL_FORMACTION_FLDS_EXCLUDE_OFF = 0 # Variable c_int
AR_XML_VALINFO_PASSWORD = 2 # Variable c_int
AR_MAX_TBLFLD_NUMCOLS = 255 # Variable c_int
AR_MAX_ENCRYPTED_PASSWORD_SIZE = 120 # Variable c_int
AR_FILTER_FIELD_IDS_CHANGED = 3 # Variable c_int
AR_DEBUG_SERVER_NONE = 0 # Variable c_int
AR_DPROP_AUTO_LAYOUT_STYLE_SHEET = 253 # Variable c_int
AR_FULLTEXT_FTS_MATCH_FORCE_T_WILD = 1 # Variable c_int
# cmdb.h 832
class N18CMDBAttributeLimit4DOLLAR_284DOLLAR_36E(Structure):
pass
# ar.h 3041
class ARCurrencyDetailList(Structure):
pass
# ar.h 3033
class ARCurrencyDetailStruct(Structure):
pass
ARCurrencyDetailList._fields_ = [
# ar.h 3041
('numItems', c_uint),
('currencyDetailList', POINTER(ARCurrencyDetailStruct)),
]
N18CMDBAttributeLimit4DOLLAR_284DOLLAR_36E._fields_ = [
# cmdb.h 832
('rangeLow', c_char_p),
('rangeHigh', c_char_p),
('precision', c_int),
('functionalCurrencies', ARCurrencyDetailList),
('allowableCurrencies', ARCurrencyDetailList),
]
CMDB_RESERV_FEDERATED_DATA_RESULT5 = 530003020 # Variable c_int
CMDB_RESERV_INSTANCE_STATIC_REL_CLASS_ID1 = 400126800 # Variable c_int
# ar.h 2254
class ARFilterActionNotifyAdvanced(Structure):
pass
AR_CURRENCY_FLD = 6 # Variable c_int
CMDB_ERROR_ENUM_ID_INVALID = 120114 # Variable c_int
# cmdb.h 985
class CMDBGetObjectStruct(Structure):
pass
AR_SERVER_INFO_DELAYED_CACHE = 82 # Variable c_int
AR_DPROP_ATTACH_DELETE_LABEL = 233 # Variable c_int
AR_SERVER_INFO_ALERT_SCHEMA = 139 # Variable c_int
CMDB_ERROR_CMDB2ASSET_CLASSES_IN_PENDING_STATE = 120401 # Variable c_int
CMDB_ATTR_ID_Z_TMP_INTEGER_3 = 'OBJSTR_ATTR_ID_Z_TMP_INTEGER_3' # Variable c_char_p
_IONBF = 4 # Variable c_int
AR_SVR_EVENT_ARCHIVE_DONE = 14 # Variable c_int
AR_DATA_TYPE_COORDS = 41 # Variable c_int
AR_FILTER_ACTION_GOTOACTION = 8 # Variable c_int
AR_FULL_TEXT_SEARCH_CASE_INSENSITIVE = 1 # Variable c_int
AR_CASE_INSENSITIVE_SEARCH = AR_FULL_TEXT_SEARCH_CASE_INSENSITIVE # alias
AR_ACTIVE_LINK_ACTION_FIELDP = 7 # Variable c_int
AR_EXECUTE_ON_MODIFY = 8 # Variable c_int
ARHostIDType = c_char * 101
CMDB_ATTR_ID_Z_TMP_DEL_OP_FLAG = 'OBJSTR_ATTR_ID_Z_TMP_DEL_OP_FLAG' # Variable c_char_p
ARREF_APPLICATION_HELP_INDEX_EXT2 = 32806 # Variable c_int
CMDB_ROLE_DATA_VIEW_ALL = -1090 # Variable c_int
AR_ARITH_OP_DIVIDE = 4 # Variable c_int
# ar.h 2948
class AREnumLimitsStruct(Structure):
pass
# ar.h 2951
class N18AREnumLimitsStruct4DOLLAR_11E(Union):
pass
# ar.h 290
class ARNameList(Structure):
pass
ARNameList._fields_ = [
# ar.h 290
('numItems', c_uint),
('nameList', POINTER(ARNameType)),
]
# ar.h 2931
class AREnumItemList(Structure):
pass
# ar.h 2924
class AREnumItemStruct(Structure):
pass
AREnumItemList._fields_ = [
# ar.h 2931
('numItems', c_uint),
('enumItemList', POINTER(AREnumItemStruct)),
]
# ar.h 2938
class AREnumQueryStruct(Structure):
pass
AREnumQueryStruct._fields_ = [
# ar.h 2938
('schema', ARNameType),
('server', c_char * 65),
('qualifier', ARQualifierStruct),
('nameField', ARInternalId),
('numberField', ARInternalId),
]
N18AREnumLimitsStruct4DOLLAR_11E._fields_ = [
# ar.h 2951
('regularList', ARNameList),
('customList', AREnumItemList),
('queryList', AREnumQueryStruct),
]
AREnumLimitsStruct._fields_ = [
# ar.h 2948
('listStyle', c_uint),
('u', N18AREnumLimitsStruct4DOLLAR_11E),
]
AR_KEYWORD_FIELDNAME = 37 # Variable c_int
CMDBRE_JOB_RUN_STATUS_PAUSED = 6 # Variable c_int
CMDB_ERROR_CIVIEWER_GRAPH_QUERY_LIMIT_EXCEEDED = 120172 # Variable c_int
# ar.h 2010
class ARAssignSQLStruct(Structure):
pass
ARAssignSQLStruct._fields_ = [
# ar.h 2010
('server', c_char * 65),
('sqlCommand', c_char_p),
('valueIndex', c_uint),
('noMatchOption', c_uint),
('multiMatchOption', c_uint),
]
AR_FUNCTION_RTRIM = 20 # Variable c_int
AR_ENC_DES_SINGLE_KEY_CBC = 1 # Variable c_int
AR_REL_OP_IN = 8 # Variable c_int
# ar.h 4299
class ARViewSchema(Structure):
pass
AR_SVR_STATS_RECMODE_CUMUL_ONLY = 1 # Variable c_int
CMDB_RESERV_ATTR_DECIMAL_PRECISION = 400105900 # Variable c_int
CMDB_ATTR_ID_DATASET_NAME = 'DATASET_NAME' # Variable c_char_p
AR_KEYWORD_APPLICATION = 20 # Variable c_int
AR_ARCHIVE_FORM = 1 # Variable c_int
CMDB_RESERV_INSTANCE_Z_TMP_SDEL_CASCADE_RFORM = 400136500 # Variable c_int
# ar.h 4663
class ARContainerOwnerObjListList(Structure):
pass
AR_DPROP_ENUM_LABELS = 230 # Variable c_int
AR_MAX_LICENSE_KEY_SIZE = 30 # Variable c_int
AR_STRUCT_ITEM_XML_VUI = 1073741838 # Variable c_int
CMDB_PENDING_STATUS_WARNING = 3 # Variable c_int
CMDB_RESERV_INSTANCE_TAB_PAGE_DEBUG = 300036900 # Variable c_int
AR_MULTI_MATCH_MODIFY_ALL = 5 # Variable c_int
AR_DPROP_NAVBAR_INITIAL_SELECTED_ITEM = 5063 # Variable c_int
# ar.h 4065
class ARStatusHistoryStruct(Structure):
pass
ARAccessNameType = c_char * 255
ARStatusHistoryStruct._fields_ = [
# ar.h 4065
('user', ARAccessNameType),
('timeVal', ARTimestamp),
]
AR_MAX_MENU_LEVELS = 15 # Variable c_int
AR_REPORT_ATTR_TYPE = 21 # Variable c_long
_UI16_MAX = 65535 # Variable c_uint
AR_SERVER_STAT_FILTER_CALL_GUIDE = 65 # Variable c_int
CMDB_ATTR_CUSTOM_CHARAC_MAX = 399999 # Variable c_int
CMDB_ATTR_ID_FEDERATED_DATA_AR_ACCESS_METHOD = 'FEDDATA_AR_ACCESS_METHOD' # Variable c_char_p
AR_DATA_TYPE_ULONG = 40 # Variable c_int
AR_OPROP_WINDOW_OPEN_IF_SAMPLE_SERVER_SCHEMA = 60016 # Variable c_int
AR_MAX_MACRO_VALUE = 255 # Variable c_int
AR_PERMISSIONS_NONE = 0 # Variable c_int
AR_SVR_EVENT_CHG_VUI = 8 # Variable c_int
# ar.h 2412
class ARFilterActionStruct(Structure):
pass
# ar.h 2415
class N20ARFilterActionStruct3DOLLAR_9E(Union):
pass
# ar.h 2286
class ARFilterActionNotify(Structure):
pass
# ar.h 266
class ARInternalIdList(Structure):
pass
ARInternalIdList._fields_ = [
# ar.h 266
('numItems', c_uint),
('internalIdList', POINTER(ARInternalId)),
]
ARFilterActionNotify._fields_ = [
# ar.h 2286
('user', c_char_p),
('notifyText', c_char_p),
('notifyPriority', c_uint),
('notifyMechanism', c_uint),
('notifyMechanismXRef', ARInternalId),
('subjectText', c_char_p),
('fieldIdListType', c_uint),
('fieldIdList', ARInternalIdList),
('notifyBehavior', c_uint),
('notifyPermission', c_uint),
('notifyAdvanced', POINTER(ARFilterActionNotifyAdvanced)),
]
# ar.h 2303
class ARFilterStatusStruct(Structure):
pass
ARFilterStatusStruct._fields_ = [
# ar.h 2303
('messageType', c_uint),
('messageNum', ARLong32),
('messageText', c_char_p),
]
N20ARFilterActionStruct3DOLLAR_9E._fields_ = [
# ar.h 2415
('notify', ARFilterActionNotify),
('message', ARFilterStatusStruct),
('logFile', c_char_p),
('setFields', ARSetFieldsActionStruct),
('process', c_char_p),
('pushFields', ARPushFieldsActionStruct),
('sqlCommand', ARSQLStruct),
('gotoAction', ARGotoActionStruct),
('callGuide', ARCallGuideStruct),
('exitGuide', ARExitGuideStruct),
('gotoGuide', ARGotoGuideLabelStruct),
]
ARFilterActionStruct._fields_ = [
# ar.h 2412
('action', c_uint),
('u', N20ARFilterActionStruct3DOLLAR_9E),
]
AR_DVAL_VIEWFIELD_BORDERS_DEFAULT = 0 # Variable c_int
AR_DPROP_ENTRYPOINT_LABEL_DEFAULT_NEW = 5026 # Variable c_int
CMDB_ERROR_CURRENT_API_IS_DEPRECATED = 120095 # Variable c_int
AR_MAX_FULL_FILENAME = 255 # Variable c_int
CMDB_DEPLOYABLE_APP_NAME = 'BMC:Atrium CMDB' # Variable c_char_p
AR_DPROP_TABLE_UNREAD = 5019 # Variable c_int
AR_ARITH_OP_NEGATE = 6 # Variable c_int
AR_SERVER_INFO_USE_ETC_PASSWD = 6 # Variable c_int
AR_SCHEMA_FORCE_DELETE = 2 # Variable c_int
AR_DVAL_PAGE_DISPLAY_NONE = 4 # Variable c_int
AR_LOC_BUFFER = 2 # Variable c_int
CMDB_ERROR_FAILED_TO_RUN_QUALIFICATION = 120134 # Variable c_int
# ar.h 4378
class ARSupportFileInfoStruct(Structure):
pass
ARSupportFileInfoStruct._fields_ = [
# ar.h 4378
('fileType', c_uint),
('fileId', ARInternalId),
('timestamp', ARTimestamp),
('content', c_char_p),
('contentLen', c_uint),
]
# ar.h 319
class ARTextStringList(Structure):
pass
ARTextStringList._fields_ = [
# ar.h 319
('numItems', c_uint),
('stringList', POINTER(c_char_p)),
]
CMDB_FEDERATED_ACCESS_TYPE_PROCESS = 3 # Variable c_int
AR_SVR_EVENT_ARCHIVE_ARX = 5 # Variable c_int
AR_SERVER_INFO_SVR_STATS_REC_MODE = 156 # Variable c_int
AR_DPROP_DATA_ROWS = 60 # Variable c_int
AR_SIGNAL_ALERT_USER_CHANGED = 4 # Variable c_int
AR_SERVER_INFO_DSO_TIMEOUT_NORMAL = 128 # Variable c_int
# ar.h 4404
class ARStatisticsList(Structure):
pass
# ar.h 4398
class ARStatisticsStruct(Structure):
pass
ARStatisticsList._fields_ = [
# ar.h 4404
('numItems', c_uint),
('statisticsList', POINTER(ARStatisticsStruct)),
]
AR_SVR_EVENT_CHG_FILTER = 4 # Variable c_int
CMDB_ERROR_SUPERCLASS_OF_TYPE_ABSTRACT = 120130 # Variable c_int
AR_SERVER_INFO_ESCL_DAEMON = 32 # Variable c_int
AR_DATA_TYPE_MAX_TYPE = 43 # Variable c_int
AR_SERVER_INFO_DEBUG_GROUPID = 113 # Variable c_int
AR_SERVER_INFO_CASE_SENSITIVE = 54 # Variable c_int
AR_SIGNAL_CONFIG_CHANGED = 1 # Variable c_int
# ar.h 2657
class ARActiveLinkActionListList(Structure):
pass
AR_APP_TYPE_DISTRIBUTABLE = 2 # Variable c_int
AR_EXECUTE_ON_COPY_SUBMIT = 131072 # Variable c_int
# ar.h 866
class ARCurrencyPartStruct(Structure):
pass
AR_DVAL_AUTO_FIELD_REGULAR = 0 # Variable c_int
CMDB_FEDERATION_ACTIVATION_LAUNCH = 2 # Variable c_int
CMDB_ALL_OBJECT = 'CMDB_ALL_OBJECT' # Variable c_char_p
AR_SERVER_STAT_CPU = 51 # Variable c_int
AR_FUNCTION_MONTH = 3 # Variable c_int
AR_DVAL_AUTO_FIELD_ALIGN_LEFT = 0 # Variable c_int
AR_APPL_VIOLATION_FILE = 'appl.vio' # Variable c_char_p
# cmdb.h 1379
class CMDBREClassQualList(Structure):
pass
# cmdb.h 1374
class CMDBREClassQualStruct(Structure):
pass
CMDBREClassQualList._fields_ = [
# cmdb.h 1379
('numItems', c_uint),
('classQualList', POINTER(CMDBREClassQualStruct)),
]
AR_DVAL_CNTL_CHOICE = 3 # Variable c_int
CMDB_RESERV_CLASS_SUPERCLASS = 400079600 # Variable c_int
AR_SERVER_STAT_BAD_PASSWORD = 2 # Variable c_int
AR_CLIENT_TYPE_MID_TIER = 9 # Variable c_int
AR_MAX_NAME_SIZE = 254 # Variable c_int
AR_MAX_SVR_EVENT_USED = 15 # Variable c_int
AR_ACTIVE_LINK_ACTION_OPEN_MODIFY_SPLIT = 5 # Variable c_int
AR_DSO_UPDATE_ON_RETURN = 3 # Variable c_int
CMDB_RESERV_INSTANCE_STATIC_SUPERCLASS_ID = 400103900 # Variable c_int
AR_LOCAL_TEXT_LIST_MENU_DEFN = 7 # Variable c_int
AR_FIELD_TYPE_ALL = 511 # Variable c_int
# ar.h 4677
class ARContainerOwnerObjIdList(Structure):
pass
# ar.h 4670
class ARContainerOwnerObjId(Structure):
pass
ARContainerOwnerObjIdList._fields_ = [
# ar.h 4677
('numItems', c_uint),
('ownerObjIdList', POINTER(ARContainerOwnerObjId)),
]
AR_MAX_EMAIL_ADDR = 255 # Variable c_int
AR_SERVER_INFO_SG_ADMIN_SERVER_NAME = 203 # Variable c_int
ARREF_ENTRYPOINT_ORDER = 32829 # Variable c_int
AR_MAX_AUTOMATION_SIZE = 2000 # Variable c_int
AR_SERVER_STAT_WRITE_RESTRICTED_READ = 74 # Variable c_int
AR_DVAL_IMAGE_LEFT = 1 # Variable c_int
AR_PERMISSIONS_VIEW = 1 # Variable c_int
AR_SERVER_INFO_PLUGIN_LOOPBACK_RPC = 207 # Variable c_int
AR_DVAL_CNTL_URL = 16 # Variable c_int
AR_SERVER_STAT_NUM_THREADS = 63 # Variable c_int
CMDB_META_DATA_STATUS_CHANGE_SYNCING = 4 # Variable c_int
AR_LOCAL_TEXT_CONTAINER_LABEL = 9 # Variable c_int
AR_FUNCTION_COLMIN = 30 # Variable c_int
CMDB_ATTR_ID_DATASET_SOURCE_DATASET_ID = 'DATASET_SOURCE_ID' # Variable c_char_p
CMDB_XML_DOC_URL = 3 # Variable c_int
CMDB_RESERV_INSTANCE_DATA_SET_ID = 400127400 # Variable c_int
AR_CURRENCY_CODE_LEN = 3 # Variable c_int
CMDB_RESERV_INSTANCE_STATIC_NAMESPACE_NAME = 400109900 # Variable c_int
AR_CHAR_MENU_NONE = 0 # Variable c_int
# ar.h 4154
class ARJoinMappingStruct(Structure):
pass
ARJoinMappingStruct._fields_ = [
# ar.h 4154
('schemaIndex', c_uint),
('realId', ARInternalId),
]
AR_DVAL_PAGE_DISPLAY_TOP = 0 # Variable c_int
AR_USER_LIST_MYSELF = 0 # Variable c_int
AR_NOTIFY_PRIORITY_MAX = 10 # Variable c_int
CMDB_DATA_IMPORT_OPT_NEWID_FOR_DUP = 2 # Variable c_int
AR_STRUCT_ITEM_XML_FIELD = 1073741839 # Variable c_int
CMDB_RESERV_DEFAULT_ACCT_PERM_ASSIGN_ROWLEVEL_SECURITY = 20052 # Variable c_int
AR_SAVE_LOGIN_ADMIN_SAVE = 1 # Variable c_int
AR_ENC_RC4_KEY_LEN_56 = 5 # Variable c_int
AR_SERVER_INFO_EA_RPC_TIMEOUT = 110 # Variable c_int
AR_VUI_TYPE_WEB_ABS_POS_AUTOGEN = 6 # Variable c_int
# ar.h 4687
class ARExtReferenceStruct(Structure):
pass
ARExtReferenceStruct._fields_ = [
# ar.h 4687
('permittedGroups', ARInternalIdList),
('value', ARValueStruct),
]
# ar.h 2779
class ARLicenseInfoStruct(Structure):
pass
ARLicenseKeyType = c_char * 31
# ar.h 2770
class ARLicenseDateStruct(Structure):
pass
ARLicenseDateStruct._fields_ = [
# ar.h 2770
('month', c_int),
('day', c_int),
('year', c_int),
]
ARLicenseInfoStruct._fields_ = [
# ar.h 2779
('licKey', ARLicenseKeyType),
('licType', ARLicenseNameType),