-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCIM_User25.mof
2805 lines (2698 loc) · 118 KB
/
CIM_User25.mof
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
// ===================================================================
// Title: User-Security MOF specification 2.5
// Filename: CIM_UserSec25a.mof
// Version: 2.5
// Release: 0
// Date: 01/23/2001
// Description: These object classes define the user and security
// model for CIM and includes classes needed to represent
// users, groups and organizational entities as well as
// security services and authentication and authorization
// information.
// The object classes below are listed in an order that
// avoids forward references. Required objects, defined
// by other working groups, are omitted.
// ===================================================================
// Author: DMTF User and Security Working Group
//
// 14 Mar 2000 - Version 2.3
//
// 09 Jun 2000 - ERRATA to Version 2.3 creating V2.4
// - CR493a, Correction of Antecedent/Dependent references
// References are reversed from the original 2.3 model
// - CR497: Corrections to antecedent/dependent references
// 1. ElementAsUser should run between an ME and a
// UsersAccess. Both references are ME in the MOF.
// UsersAccess is the Dependent reference.
//
// 2. ManagesAccount should subclass from Dependency.
//
// 3. ServiceUsesSecurityService - antecedent and
// dependent are backwards. SecurityService should
// be the antecedent and Service the dependent.
//
// 4. SecurityServiceForSystem - should subclass from
// ProvidesServiceToElement.
//
// 5. UsersCredentials - The antecedent and dependent
// references are backwards. The UsersAccess is
// dependent on the Credentials - the credentials
// are the antecedent.
//
// 6. The change in UsersCredentials affects
// PublicPrivateKeyPair, since it inherits from
// UsersCredentials.
//
// 7. CAHasPublicCertificate - The antecedent and
// dependent references are backwards. The CA USES
// the public certificate - therefore, it is dependent
// on the certificate.
//
// 8. AuthenticateForUse - The antecedent and
// dependent are backwards. The association "provides
// an AuthenticationService with the
// AuthenticationRequirement it needs to do its job".
// AuthenticationService is Dependent on the
// Requirement.
//
// 9. RequireCredentialsFrom - Antecedent and
// dependent are backwards. The requirement is for
// a specific credential mgmt service - the service
// has no dependencies at all on the requirement.
//
// 10. AuthenticationTarget - Clarification that the
// "target" is dependent on the requirement to protect
// it.
//
// 11. AuthorizedUse - The antecedent and dependent
// are backwards since the description says that the
// association "provides an AuthorizationService
// with the AccessControlInformation it needs to do
// its job". AuthorizationService is Dependent on the
// ACI.
//
// 21 June 2000 - ERRATA to Version 2.3 creating Version 2.4
// - CR515: CIM Account keys. CIM_Account currently has two
// local keys, Name and UserID.
// The intent was to have CreationClassName and Name
// as keys where name could be set to a value equal to
// the UserID or to some other value, e.g., a DN from
// a directory.
//
// 10 Nov 2000 - Changes to Version 2.4 creating V2.5
// - CR544a, Adds classes and properties needed for Network
// IPsec submodel.
// Classes added are:
// CredentialManagementSAP
// LocalCredentialManagementService
// PublicKeyManagementService
// UnsignedPublicKey
// NamedSharedIKESecret
// TrustHierarchy
// LocallyManagedPublicKey
// IKESecretIsNamed
// Properties added are:
// CertificateAuthority.CADistinguishedName
// CertificateAuthority.MaxChainLength
// CertificateAuthority.CRLRefreshFrequency
// - CR560, ERRATA renames KerberosTicket.Type to
// KerberosTicket.TicketType and changes it from an
// array to a scalar property
// 23 Jan 2001 - ERRATA to Version 2.5 creating V2.6
// - CR591, Corrections to PROPAGATE qualifiers on
// Credential Subclasses
//
// ===================================================================
// ===================================================================
// === Pragmas ===
// ===================================================================
#pragma Locale ("en_US")
// ==================================================================
// === Data class definitions ===
// ==================================================================
// ==================================================================
// Group
// ==================================================================
[Description (
"The Group class is used to collect ManagedElements into groups. "
"This class is defined so as to incorporate commonly-used LDAP "
"attributes to permit implementations to easily derive this "
"information from LDAP-accessible directories. This class's "
"properties are a subset of a related class, "
"OtherGroupInformation, which defines all the group properties "
"and in array form for directory compatibility." ) ]
class CIM_Group : CIM_Collection
{
[Key, MaxLen (256), Description (
"CreationClassName indicates the name of the class or the "
"subclass used in the creation of an instance. When used "
"with the other key properties of this class, this property "
"allows all instances of this class and its subclasses to "
"be uniquely identified.")]
string CreationClassName;
[Key, MaxLen (1024), Description (
"The Name property defines the label by which the object is "
"known. In the case of an LDAP-derived instance, the Name "
"property value may be set to the distinguishedName of the "
"LDAP-accessed object instance.")]
string Name;
[MaxLen (128), Description (
"The BusinessCategory property may be used to describe the "
"kind of business activity performed by the members of the "
"group.")]
string BusinessCategory;
[Required, Description (
"A Common Name is a (possibly ambiguous) name by which the "
"group is commonly known in some limited scope (such as an "
"organization) and conforms to the naming conventions of the "
"country or culture with which it is associated.")]
string CommonName;
};
// ==================================================================
// OtherGroupInformation
// ==================================================================
[Description (
"The OtherGroupInformation class provides additional information "
"about an associated Group instance. This class is defined so as "
"to incorporate commonly-used LDAP attributes to permit "
"implementations to easily derive this information from "
"LDAP-accessible directories.") ]
class CIM_OtherGroupInformation : CIM_ManagedElement
{
[Key, MaxLen (256), Description (
"CreationClassName indicates the name of the class or the "
"subclass used in the creation of an instance. When used "
"with the other key properties of this class, this property "
"allows all instances of this class and its subclasses to "
"be uniquely identified.")]
string CreationClassName;
[Key, MaxLen (1024), Description (
"The Name property defines the label by which the object is "
"known. In the case of an LDAP-derived instance, the Name "
"property value may be set to the distinguishedName of the "
"LDAP-accessed object instance.")]
string Name;
[Description (
"In the case of an LDAP-derived instance, the ObjectClass "
"property value(s) may be set to the objectClass attribute "
"values.")]
string ObjectClass[];
[MaxLen (128), Description (
"The BusinessCategory property may be used to describe the "
"kind of business activity performed by the members of the "
"group.")]
string BusinessCategory[];
[Description (
"A Common Name is a (possibly ambiguous) name by which the "
"group is commonly known in some limited scope (such as an "
"organization) and conforms to the naming conventions of the "
"country or culture with which it is associated.")]
string CommonName[];
[MaxLen (1024), Description (
"The Descriptions property values may contain human-readable "
"descriptions of the object. In the case of an LDAP-derived "
"instance, the description attribute may have multiple values "
"that, therefore, cannot be placed in the inherited "
"Description property.")]
string Descriptions[];
[Description (
"The name of an organization related to the group.")]
string OrganizationName[];
[Description (
"The name of an organizational unit related to the group.")]
string OU[];
[Description (
"The Owner property specifies the name of some object that "
"has some responsibility for the group. In the case of an "
"LDAP-derived instance, a property value for Owner may be a "
"distinguishedName of owning persons, groups, roles, etc.")]
string Owner[];
[Description (
"In the case of an LDAP-derived instance, the See Also "
"property specifies distinguishedName of other Directory "
"objects which may be other aspects (in some sense) of the "
"same real world object.")]
string SeeAlso[];
};
// ==================================================================
// Role
// ==================================================================
[Description (
"The Role object class is used to represent a position or set of "
"responsibilities within an organization, organizational unit or "
"system administration scope and is filled by a person or persons "
"(or non-human entities represented by ManagedSystemElement "
"subclasses) that may be explicitly or implicitly members of this "
"collection subclass. The class is defined so as to incorporate "
"commonly-used LDAP attributes to permit implementations to "
"easily derive this information from LDAP-accessible directories. "
"The members of a role are frequently called role occupants. "
"This class's properties are a subset of a related class, "
"OtherRoleInformation, which defines all the group properties "
"and in array form for directory compatibility. ")]
class CIM_Role : CIM_Collection
{
[Key, MaxLen (256), Description (
"CreationClassName indicates the name of the class or the "
"subclass used in the creation of an instance. When used "
"with the other key properties of this class, this property "
"allows all instances of this class and its subclasses to "
"be uniquely identified.")]
string CreationClassName;
[Key, MaxLen (1024),Description (
"The Name property defines the label by which the object is "
"known. In the case of an LDAP-derived instance, the Name "
"property value may be set to the distinguishedName of the "
"LDAP-accessed object instance.")]
string Name;
[MaxLen (128), Description (
"This property may be used to describe the kind of business "
"activity performed by the members (role occupants) in the "
"position or set of responsibilities represented by the Role. "
)]
string BusinessCategory;
[Required, Description (
"A Common Name is a (possibly ambiguous) name by which the "
"role is commonly known in some limited scope (such as an "
"organization) and conforms to the naming conventions of the "
"country or culture with which it is associated.")]
string CommonName;
};
// ==================================================================
// OtherRoleInformation
// ==================================================================
[Description (
"The OtherRoleInformation class is used to provide additional "
"information about an associated Role instance. This class is "
"defined so as to incorporate commonly-used LDAP attributes to "
"permit implementations to easily derive this information from "
"LDAP-accessible directories.") ]
class CIM_OtherRoleInformation : CIM_ManagedElement
{
[Key, MaxLen (256), Description (
"CreationClassName indicates the name of the class or the "
"subclass used in the creation of an instance. When used "
"with the other key properties of this class, this property "
"allows all instances of this class and its subclasses to "
"be uniquely identified.")]
string CreationClassName;
[Key, MaxLen (1024),Description (
"The Name property defines the label by which the object is "
"known. In the case of an LDAP-derived instance, the Name "
"property value may be set to the distinguishedName of the "
"LDAP-accessed object instance.")]
string Name;
[Description (
"In the case of an LDAP-derived instance, the ObjectClass "
"property value(s) may be set to the objectClass attribute "
"values.")]
string ObjectClass[];
[MaxLen (128), Description (
"This property may be used to describe the kind of business "
"activity performed by the members (role occupants) in the "
"position or set of responsibilities represented by the Role. "
)]
string BusinessCategory[];
[Description (
"A Common Name is a (possibly ambiguous) name by which the "
"role is commonly known in some limited scope (such as an "
"organization) and conforms to the naming conventions of the "
"country or culture with which it is associated.")]
string CommonName[];
[MaxLen (1024), Description (
"The Descriptions property values may contain human-readable "
"descriptions of the object. In the case of an LDAP-derived "
"instance, the description attribute may have multiple values "
"that, therefore, cannot be placed in the inherited "
"Description property.")]
string Descriptions[];
[MaxLen (128), Description (
"This property is used for the role occupants' telegram "
"service.")]
string DestinationIndicator[];
[Description (
"The role occupants' facsimile telephone number.")]
string FacsimileTelephoneNumber[];
[MaxLen (16), Description (
"The role occupants' International ISDN number.")]
string InternationaliSDNNumber[];
[Description (
"The name of an organizational unit related to the role.")]
string OU[];
[MaxLen (128), Description (
"The Physical Delivery Office Name property specifies the name "
"of the city, village, etc. where a physical delivery office "
"is situated.")]
string PhysicalDeliveryOfficeName[];
[Description (
"The Postal Address property values specify the address "
"information required for the physical delivery of postal "
"messages by the postal authority to the role occupants.")]
string PostalAddress[];
[MaxLen (40), Description (
"The Postal Code property specifies the postal code for the "
"role occupants. If this value is present it will be part of "
"the object's postal address.")]
string PostalCode[];
[MaxLen (40), Description (
"The Post Office Box property specifies the Post Office Box "
"by which the role occupants will receive physical postal "
"delivery. If present, the property value is part of the "
"object's postal address.")]
string PostOfficeBox[];
[Description (
"The Preferred Delivery Method property specifies the "
"role occupants' preferred method to be used for contacting "
"them in their role.")]
string PreferredDeliveryMethod;
[Description (
"This property specifies a postal address suitable for receipt "
"of telegrams or expedited documents, where it is necessary to "
"have the recipient accept delivery.")]
string RegisteredAddress[];
[Description (
"In the case of an LDAP-derived instance, the See Also "
"property specifies distinguishedName of other Directory "
"objects which may be other aspects (in some sense) of the "
"same real world object.")]
string SeeAlso[];
[Description (
"The State or Province Name property specifies a state or "
"province." )]
string StateOrProvince[];
[MaxLen (128), Description (
"The Street Address property specifies a site for the local "
"distribution and physical delivery in a postal address, i.e. "
"the street name, place, avenue, and the number." )]
string Street[];
[MaxLen (32), Description (
"The Telephone Number property specifies a telephone number of "
"the role occupants, e.g. + 44 582 10101)." )]
string TelephoneNumber[];
[Description (
"The Teletex Terminal Identifier property specifies the "
"Teletex terminal identifier (and, optionally, parameters) for "
"a teletex terminal associated with the role occupants." )]
string TeletexTerminalIdentifier[];
[Description (
"The Telex Number property specifies the telex number, country "
"code, and answerback code of a telex terminal for the "
"role occupants." )]
string TelexNumber[];
[MaxLen (15), Description (
"An X.121 address for the role occupants.")]
string X121Address[];
};
// ==================================================================
// OrganizationalEntity
// ==================================================================
[Abstract, Description (
"OrganizationalEntity is an abstract class from which classes "
"that fit into an organizational structure are derived.") ]
class CIM_OrganizationalEntity : CIM_ManagedElement
{
};
// ==================================================================
// Organization
// ==================================================================
[Description (
"The Organization class is used to represent an organization such "
"as a corporation or other autonomous entity. The class is "
"defined so as to incorporate commonly-used LDAP attributes to "
"permit implementations to easily derive this information from "
"LDAP-accessible directories. This class's properties are a "
"subset of a related class, OtherOrganizationInformation, which "
"defines all the group properties and in array form for "
"directory compatibility.") ]
class CIM_Organization : CIM_OrganizationalEntity
{
[Key, MaxLen (256), Description (
"CreationClassName indicates the name of the class or the "
"subclass used in the creation of an instance. When used "
"with the other key properties of this class, this property "
"allows all instances of this class and its subclasses to "
"be uniquely identified.")]
string CreationClassName;
[Key, MaxLen (1024),Description (
"The Name property defines the label by which the object is "
"known. In the case of an LDAP-derived instance, the Name "
"property value may be set to the distinguishedName of the "
"LDAP-accessed object instance.")]
string Name;
[MaxLen (128), Description (
"This property describes the kind of business performed by an "
"organization.")]
string BusinessCategory;
[Description (
"The organization's facsimile telephone number.")]
string FacsimileTelephoneNumber;
[Description (
"This property contains the name of a locality, such as a "
"city, county or other geographic region.")]
string LocalityName;
[Description (
"Based on RFC1274, the mail box addresses for the organization "
"as defined in RFC822.")]
string Mail;
[Required, Description (
"The name of the organization.")]
string OrganizationName;
[Description (
"The Postal Address property values specify the address "
"information required for the physical delivery of postal "
"messages by the postal authority to the organization.")]
string PostalAddress[];
[MaxLen (40), Description (
"The Postal Code property specifies the postal code of the "
"organization. If this value is present it will be part of "
"the object's postal address.")]
string PostalCode;
[Description (
"The State or Province Name property specifies a state or "
"province." )]
string StateOrProvince;
[MaxLen (32), Description (
"The Telephone Number property specifies a telephone number of "
"the organization, e.g. + 44 582 10101)." )]
string TelephoneNumber;
};
// ==================================================================
// OtherOrganizationInformation
// ==================================================================
[Description (
"The OtherOrganizationInformation class is used to provide "
"additional information about an associated Organization instance. "
"This class is defined so as to incorporate commonly-used LDAP "
"attributes to permit implementations to easily derive this "
"information from LDAP-accessible directories.") ]
class CIM_OtherOrganizationInformation : CIM_ManagedElement
{
[Key, MaxLen (256), Description (
"CreationClassName indicates the name of the class or the "
"subclass used in the creation of an instance. When used "
"with the other key properties of this class, this property "
"allows all instances of this class and its subclasses to "
"be uniquely identified.")]
string CreationClassName;
[Key, MaxLen (1024),Description (
"The Name property defines the label by which the object is "
"known. In the case of an LDAP-derived instance, the Name "
"property value may be set to the distinguishedName of the "
"LDAP-accessed object instance.")]
string Name;
[Description (
"In the case of an LDAP-derived instance, the ObjectClass "
"property value(s) may be set to the objectClass attribute "
"values.")]
string ObjectClass[];
[MaxLen (128), Description (
"This property describes the kind of business performed by an "
"organization.")]
string BusinessCategory[];
[MaxLen (1024), Description (
"The Descriptions property values may contain human-readable "
"descriptions of the object. In the case of an LDAP-derived "
"instance, the description attribute may have multiple values "
"that, therefore, cannot be placed in the inherited "
"Description property.")]
string Descriptions[];
[MaxLen (128), Description (
"This property is used for the organization's telegram "
"service.")]
string DestinationIndicator[];
[Description (
"The organization's facsimile telephone number.")]
string FacsimileTelephoneNumber[];
[MaxLen (16), Description (
"The organization's International ISDN number.")]
string InternationaliSDNNumber[];
[Description (
"Uniform Resource Identifier with optional label as defined in "
"RFC2079.")]
string LabeledURI[];
[Description (
"This property contains the name of a locality, such as a "
"city, county or other geographic region.")]
string LocalityName[];
[Description (
"Based on RFC1274, the mail box addresses for the organization "
"as defined in RFC822.")]
string Mail[];
[Description (
"The manager for the organization. In the case of an "
"LDAP-derived instance, the Manager property value may contain "
"the distinguishedName of the Manager.")]
string Manager[];
[Description (
"The name of the organization.")]
string OrganizationName[];
[Description (
"Based on RFC1274, this property may be used for electronic "
"mail box addresses other than RFC822 and X.400.")]
string OtherMailbox[];
[MaxLen (128), Description (
"The Physical Delivery Office Name property specifies the name "
"of the city, village, etc. where a physical delivery office "
"is situated.")]
string PhysicalDeliveryOfficeName[];
[Description (
"The Postal Address property values specify the address "
"information required for the physical delivery of postal "
"messages by the postal authority to the organization.")]
string PostalAddress[];
[MaxLen (40), Description (
"The Postal Code property specifies the postal code of the "
"organization. If this value is present it will be part of "
"the object's postal address.")]
string PostalCode[];
[MaxLen (40), Description (
"The Post Office Box property specifies the Post Office Box "
"by which the organization will receive physical postal "
"delivery. If present, the property value is part of the "
"object's postal address.")]
string PostOfficeBox[];
[Description (
"The Preferred Delivery Method property specifies the "
"organization's preferred method to be used for communicating "
"with it.")]
string PreferredDeliveryMethod;
[Description (
"This property specifies a postal address suitable for receipt "
"of telegrams or expedited documents, where it is necessary to "
"have the recipient accept delivery.")]
string RegisteredAddress[];
[Description (
"This property value is for use by X.500 clients in "
"constructing search filters.")]
string SearchGuide[];
[Description (
"In the case of an LDAP-derived instance, the See Also "
"property specifies distinguishedName of other Directory "
"objects which may be other aspects (in some sense) of the "
"same real world object.")]
string SeeAlso[];
[Description (
"The State or Province Name property specifies a state or "
"province." )]
string StateOrProvince[];
[MaxLen (128), Description (
"The Street Address property specifies a site for the local "
"distribution and physical delivery in a postal address, i.e. "
"the street name, place, avenue, and the number." )]
string Street[];
[MaxLen (32), Description (
"The Telephone Number property specifies a telephone number of "
"the organization, e.g. + 44 582 10101)." )]
string TelephoneNumber[];
[Description (
"The Teletex Terminal Identifier property specifies the "
"Teletex terminal identifier (and, optionally, parameters) for "
"a teletex terminal associated with the organization." )]
string TeletexTerminalIdentifier[];
[Description (
"The Telex Number property specifies the telex number, country "
"code, and answerback code of a telex terminal for the "
"organization." )]
string TelexNumber[];
[Octetstring, Description (
"An image of the organization logo")]
string ThumbnailLogo[];
[Description (
"A unique identifier that may be assigned in an environment to "
"differentiate between uses of a given named organization "
"instance.")]
string UniqueIdentifier[];
[Octetstring, Description (
"In the case of an LDAP-derived instance, the UserPassword "
"property may contain an encrypted password used to access "
"the organization's resources in a directory." )]
string UserPassword[];
[MaxLen (15), Description (
"An X.121 address for the organization.")]
string X121Address[];
};
// ==================================================================
// OrgUnit
// ==================================================================
[Description (
"The OrgUnit class is used to represent a sub-unit of an "
"organization such a division or department. The class is "
"defined so as to incorporate commonly-used LDAP attributes to "
"permit implementations to easily derive this information from "
"LDAP-accessible directories. This class's properties are a "
"subset of a related class, OtherOrgUnitInformation, which "
"defines all the group properties and in array form for "
"directory compatibility. ") ]
class CIM_OrgUnit : CIM_OrganizationalEntity
{
[Key, MaxLen (256), Description (
"CreationClassName indicates the name of the class or the "
"subclass used in the creation of an instance. When used "
"with the other key properties of this class, this property "
"allows all instances of this class and its subclasses to "
"be uniquely identified.")]
string CreationClassName;
[Key, MaxLen (1024),Description (
"The Name property defines the label by which the object is "
"known. In the case of an LDAP-derived instance, the Name "
"property value may be set to the distinguishedName of the "
"LDAP-accessed object instance.")]
string Name;
[MaxLen (128), Description (
"This property describes the kind of business performed by an "
"organizational unit.")]
string BusinessCategory;
[Description (
"The organizational unit's facsimile telephone number.")]
string FacsimileTelephoneNumber;
[Description (
"This property contains the name of a locality, such as a "
"city, county or other geographic region.")]
string LocalityName;
[Required, Description (
"The name of the organizational unit.")]
string OU;
[Description (
"The Postal Address property values specify the address "
"information required for the physical delivery of postal "
"messages by the postal authority to the organizational unit."
)]
string PostalAddress[];
[MaxLen (40), Description (
"The Postal Code property specifies the postal code of the "
"organizational unit. If this value is present it will be "
"part of the object's postal address.")]
string PostalCode;
[Description (
"The State or Province Name property specifies a state or "
"province." )]
string StateOrProvince;
[MaxLen (32), Description (
"The Telephone Number property specifies a telephone number of "
"the organizational unit, e.g. + 44 582 10101)." )]
string TelephoneNumber;
};
// ==================================================================
// OtherOrgUnitInformation
// ==================================================================
[Description (
"The OtherOrgUnitInformation class is used to provide "
"additional information about an associated OrgUnit instance. "
"This class is defined so as to incorporate commonly-used LDAP "
"attributes to permit implementations to easily derive this "
"information from LDAP-accessible directories.") ]
class CIM_OtherOrgUnitInformation : CIM_ManagedElement
{
[Key, MaxLen (256), Description (
"CreationClassName indicates the name of the class or the "
"subclass used in the creation of an instance. When used "
"with the other key properties of this class, this property "
"allows all instances of this class and its subclasses to "
"be uniquely identified.")]
string CreationClassName;
[Key, MaxLen (1024),Description (
"The Name property defines the label by which the object is "
"known. In the case of an LDAP-derived instance, the Name "
"property value may be set to the distinguishedName of the "
"LDAP-accessed object instance.")]
string Name;
[Description (
"In the case of an LDAP-derived instance, the ObjectClass "
"property value(s) may be set to the objectClass attribute "
"values.")]
string ObjectClass[];
[MaxLen (128), Description (
"This property describes the kind of business performed by an "
"organizational unit.")]
string BusinessCategory[];
[MaxLen (1024), Description (
"The Descriptions property values may contain human-readable "
"descriptions of the object. In the case of an LDAP-derived "
"instance, the description attribute may have multiple values "
"that, therefore, cannot be placed in the inherited "
"Description property.")]
string Descriptions[];
[MaxLen (128), Description (
"This property is used for the organizational unit's telegram "
"service.")]
string DestinationIndicator[];
[Description (
"The organizational unit's facsimile telephone number.")]
string FacsimileTelephoneNumber[];
[MaxLen (16), Description (
"The organizational unit's International ISDN number.")]
string InternationaliSDNNumber[];
[Description (
"This property contains the name of a locality, such as a "
"city, county or other geographic region.")]
string LocalityName[];
[Description (
"The name of the organizational unit.")]
string OU[];
[MaxLen (128), Description (
"The Physical Delivery Office Name property specifies the name "
"of the city, village, etc. where a physical delivery office "
"is situated.")]
string PhysicalDeliveryOfficeName[];
[Description (
"The Postal Address property values specify the address "
"information required for the physical delivery of postal "
"messages by the postal authority to the organizational unit."
)]
string PostalAddress[];
[MaxLen (40), Description (
"The Postal Code property specifies the postal code of the "
"organizational unit. If this value is present it will be "
"part of the object's postal address.")]
string PostalCode[];
[MaxLen (40), Description (
"The Post Office Box property specifies the Post Office Box "
"by which the organizational unit will receive physical "
"postal delivery. If present, the property value is part of "
"the object's postal address.")]
string PostOfficeBox[];
[Description (
"The Preferred Delivery Method property specifies the "
"organizational unit's preferred method to be used for "
"communicating with it.")]
string PreferredDeliveryMethod;
[Description (
"This property value is for use by X.500 clients in "
"constructing search filters.")]
string SearchGuide[];
[Description (
"In the case of an LDAP-derived instance, the See Also "
"property specifies distinguishedName of other Directory "
"objects which may be other aspects (in some sense) of the "
"same real world object.")]
string SeeAlso[];
[Description (
"The State or Province Name property specifies a state or "
"province." )]
string StateOrProvince[];
[MaxLen (128), Description (
"The Street Address property specifies a site for the local "
"distribution and physical delivery in a postal address, i.e. "
"the street name, place, avenue, and the number." )]
string Street[];
[MaxLen (32), Description (
"The Telephone Number property specifies a telephone number of "
"the organizational unit, e.g. + 44 582 10101)." )]
string TelephoneNumber[];
[Description (
"The Teletex Terminal Identifier property specifies the "
"Teletex terminal identifier (and, optionally, parameters) for "
"a teletex terminal associated with the organizational unit."
)]
string TeletexTerminalIdentifier[];
[Description (
"The Telex Number property specifies the telex number, country "
"code, and answerback code of a telex terminal for the "
"organization." )]
string TelexNumber[];
[Octetstring, Description (
"In the case of an LDAP-derived instance, the UserPassword "
"property may contain an encrypted password used to access "
"the organizational unit's resources in a directory." )]
string UserPassword[];
[MaxLen (15), Description (
"An X.121 address for the organization.")]
string X121Address[];
};
// ==================================================================
// UserEntity
// ==================================================================
[Abstract, Description (
"UserEntity is an abstract class that represents users.") ]
class CIM_UserEntity : CIM_OrganizationalEntity
{
};
// ==================================================================
// Person
// ==================================================================
[Description (
"The Person object class is used to represent people. The class "
"is defined so as to incorporate commonly-used LDAP attributes to "
"permit implementations to easily derive this information from "
"LDAP-accessible directories. This class's properties are a "
"subset of a related class, OtherPersonInformation, which "
"defines all the group properties and in array form for "
"directory compatibility. ") ]
class CIM_Person : CIM_UserEntity
{
[Key, MaxLen (256), Description (
"CreationClassName indicates the name of the class or the "
"subclass used in the creation of an instance. When used "
"with the other key properties of this class, this property "
"allows all instances of this class and its subclasses to "
"be uniquely identified.")]
string CreationClassName;
[Key, MaxLen (1024),Description (
"The Name property defines the label by which the object is "
"known. In the case of an LDAP-derived instance, the Name "
"property value may be set to the distinguishedName of the "
"LDAP-accessed object instance.")]
string Name;
[MaxLen (128), Description (
"This property describes the kind of business performed by an "
"organization.")]
string BusinessCategory;
[Required, Description (
"A Common Name is a (possibly ambiguous) name by which the "
"role is commonly known in some limited scope (such as an "
"organization) and conforms to the naming conventions of the "
"country or culture with which it is associated.")]
string CommonName;
[Description (
"Based on inetPrgPerson, the Employee Number property "
"specifies a numeric or an alphanumeric identifier assigned to "
"a person.")]
string EmployeeNumber;
[Description (
"Based on inetOrgPerson, the Employee Type property is used to "
"identify the employer to employee relationship. Typical "
"values used may include 'Contractor', 'Employee', 'Intern', "
"'Temp', 'External', and 'Unknown' but any value may be used."
)]
string EmployeeType;
[Description (
"The person's facsimile telephone number.")]
string FacsimileTelephoneNumber;
[MaxLen (32), Description (
"Based on RFC1274, the Home Phone property specifies a home "
"telephone number for the person, e.g. + 44 582 10101)." )]
string HomePhone;
[Description (
"The Home Postal Address property values specify the home "
"address information required for the physical delivery of "
"postal messages by the postal authority.")]
string HomePostalAddress[];
[Description (
"From inetOrgPerson, the JPEG Phto property values may be used "
"for one or more images of a person using the JPEG File "
"Interchange Format.")]
string JPEGPhoto;
[Description (
"This property contains the name of a locality, such as a "
"city, county or other geographic region.")]
string LocalityName;
[Description (
"Based on RFC1274, the mail box addresses for the person "
"as defined in RFC822.")]
string Mail;
[Description (
"The person's manager within the organization. In the case of "
"an LDAP-derived instance, the Manager property value may "
"contain the distinguishedName of the Manager.")]
string Manager;
[MaxLen (32), Description (
"Based on RFC1274, the Mobile Phone property specifies a "
"mobile telephone number for the person, e.g. + 44 582 10101)."
)]
string Mobile;
[Description (
"The name of an organizational unit related to the person.")]
string OU;
[MaxLen (32), Description (
"Based on RFC1274, the Pager property specifies a pager "
"telephone number for the person, e.g. + 44 582 10101).")]
string Pager;
[Description (
"The Postal Address property values specify the address "
"information required for the physical delivery of postal "
"messages by the postal authority to the person.")]
string PostalAddress[];
[MaxLen (40), Description (
"The Postal Code property specifies the postal code of the "
"organization. If this value is present it will be part of "
"the object's postal address.")]
string PostalCode;
[Description (
"Based on inetOrgPerson, the person's preferred written or "
"spoken language.")]
string PreferredLanguage;
[Description (
"Based on RFC1274, the Secretary property may be used to "
"specify a secretary for the person. In the case of an "
"LDAP-derived object instance, the value may be a "
"distinguishedName.")]
string Secretary;
[Description (
"The State or Province Name property specifies a state or "
"province." )]
string StateOrProvince;
[Required, Description (
"The Surname property specifies the linguistic construct that "
"normally is inherited by an individual from the individual's "
"parent or assumed by marriage, and by which the individual is "
"commonly known.")]
string Surname;
[MaxLen (32), Description (
"The Telephone Number property specifies a telephone number of "
"the organization, e.g. + 44 582 10101)." )]
string TelephoneNumber;
[Description (
"The Title property may be used to specify the person's "
"designated position or function of the object within an "
"organization, e.g., Manager, Vice-President, etc.")]
string Title;
};
// ==================================================================
// OtherPersonInformation
// ==================================================================
[Description (
"The OtherPersonInformation class is used to provide "
"additional information about an associated Person instance. "
"This class is defined so as to incorporate commonly-used LDAP "
"attributes to permit implementations to easily derive this "
"information from LDAP-accessible directories.") ]
class CIM_OtherPersonInformation : CIM_UserEntity
{
[Key, MaxLen (256), Description (
"CreationClassName indicates the name of the class or the "
"subclass used in the creation of an instance. When used "
"with the other key properties of this class, this property "
"allows all instances of this class and its subclasses to "
"be uniquely identified.")]
string CreationClassName;
[Key, MaxLen (1024),Description (
"The Name property defines the label by which the object is "
"known. In the case of an LDAP-derived instance, the Name "
"property value may be set to the distinguishedName of the "
"LDAP-accessed object instance.")]
string Name;
[Description (
"In the case of an LDAP-derived instance, the ObjectClass "
"property value(s) may be set to the objectClass attribute "
"values.")]
string ObjectClass[];
[Octetstring, Description (
"The Audio property may be used to store an audio clip of the "
"person.")]
string Audio[];
[MaxLen (128), Description (
"This property describes the kind of business performed by an "
"organization.")]
string BusinessCategory[];
[MaxLen (128), Description (
"The Car License property is used to record the values of the "
"vehicle license or registration plate associated with an "
"individual.")]
string CarLicense[];
[Description (
"A Common Name is a (possibly ambiguous) name by which the "