(file) Return to CIM_Events25.mof CVS log (file) (dir) Up to [Pegasus] / pegasus / Schemas / CIM25

  1 karl  1.1 //====================================================================
  2           // Title:      Event MOF Specification 2.5
  3           // Filename:   CIM_Event25f.mof
  4           // Version:    2.5
  5           // Release:    0
  6           // Date:       12/19/2000
  7           // Description: The object classes below are listed in an order that
  8           //              avoids forward references. Required objects, defined 
  9           //		    by other working groups, are omitted. 
 10           // ===================================================================
 11           // Date:    12/18/2000 - Initial release, Version 2.5
 12           // Author:  DMTF Event Working Group
 13           //====================================================================
 14           
 15           
 16           // ===================================================================
 17           // Pragmas
 18           // ===================================================================
 19           #pragma locale ("en_US")
 20           
 21           
 22 karl  1.1 //====================================================================
 23           //  CIM_Indication
 24           //====================================================================
 25              [Indication, Abstract,
 26               Description (
 27                "CIM_Indication is the abstract root class for all notifications "
 28                "about changes in schema, objects and their data, and about "
 29                "events detected by providers and instrumentation. Subclasses "
 30                "represent specific types of notifications. \n"
 31                "\n"
 32                "To receive an Indication, a consumer (or subscriber) must create "
 33                "an instance of CIM_IndicationFilter describing the criteria of "
 34                "the notification, an instance of CIM_IndicationHandler describing "
 35                "the delivery of the notification, and an instance of "
 36                "CIM_IndicationSubscription associating the Filter and Handler.") ]
 37           class CIM_Indication
 38           {
 39               [Description (
 40                 "The time and date of creation of the Indication. The property "
 41                 "may be set to NULL if the entity creating the Indication is "
 42                 "not capable of determing this information. Note that "
 43 karl  1.1       "IndicationTime may be the same for two Indications that are "
 44                 "generated in rapid succession.") ]
 45               datetime IndicationTime;
 46           };
 47           
 48           //====================================================================
 49           //  CIM_ClassIndication
 50           //====================================================================
 51              [Indication, Abstract,
 52               Description (
 53                "CIM_ClassIndication is an abstract superclass describing changes "
 54                "in the definition of the schema. Subclasses represent specific "
 55                "types of change notifications, such as class creation, deletion "
 56                "and modification.") ]
 57           class CIM_ClassIndication : CIM_Indication
 58           {
 59               [EmbeddedObject, Required,  
 60                Description (
 61                 "The current definition of the class that is created, changed "
 62                 "or deleted in the schema. In the case of a CIM_ClassDeletion "
 63                 "Indication, the definition for the class just prior to "
 64 karl  1.1       "deletion should be placed in this property.") ]
 65               string ClassDefinition;
 66           };
 67           
 68           //====================================================================
 69           //  CIM_ClassCreation
 70           //====================================================================
 71              [Indication, 
 72               Description (
 73                "CIM_ClassCreation notifies when a new class is defined in the "
 74                "schema.") ]
 75           class CIM_ClassCreation : CIM_ClassIndication
 76           {
 77           };
 78           
 79           //====================================================================
 80           //  CIM_ClassDeletion
 81           //====================================================================
 82              [Indication,
 83               Description (
 84                "CIM_ClassDeletion notifies when a class is deleted from the "
 85 karl  1.1      "schema.") ]
 86           class CIM_ClassDeletion : CIM_ClassIndication
 87           {
 88           };
 89           
 90           //====================================================================
 91           //  CIM_ClassModification
 92           //====================================================================
 93              [Indication,
 94               Description (
 95                "CIM_ClassModification notifies when a class definition in the "
 96                "schema is modified.") ]
 97           class CIM_ClassModification : CIM_ClassIndication
 98           {
 99               [EmbeddedObject, Required, 
100                Description (
101                 "A copy of the 'previous' class definition whose change "
102                 "generated the Indication. PreviousClassDefinition contains "
103                 "an 'older' copy of the class' information, as compared to "
104                 "what is found in the ClassDefinition property (inherited "
105                 "from ClassIndication).") ]
106 karl  1.1     string PreviousClassDefinition;
107           };
108           
109           //====================================================================
110           //  CIM_InstIndication
111           //====================================================================
112              [Indication, Abstract,
113               Description (
114                "CIM_InstIndication is an abstract superclass describing changes "
115                "to instances. Subclasses represent specific types of change "
116                "notifications, such as instance creation, deletion and "
117                "modification.") ]
118           class CIM_InstIndication : CIM_Indication
119           {
120               [EmbeddedObject, Required, 
121                Description (
122                 "A copy of the instance that changed to generate the "
123                 "Indication. SourceInstance contains the current values of "
124                 "the properties selected by the Indication"
125                 "Filter's Query. In the case of CIM_InstDeletion, "
126                 "the property values are copied before the instance is "
127 karl  1.1       "deleted.") ]
128               string SourceInstance;
129           };
130           
131           //====================================================================
132           //  CIM_InstCreation
133           //====================================================================
134              [Indication,
135               Description (
136                "CIM_InstCreation notifies when a new instance is created.") ]
137           class CIM_InstCreation : CIM_InstIndication
138           {
139           };
140           
141           //====================================================================
142           //  CIM_InstDeletion
143           //====================================================================
144              [Indication,
145               Description (
146                "CIM_InstDeletion notifies when an existing instance is deleted.") ]
147           class CIM_InstDeletion : CIM_InstIndication
148 karl  1.1 {
149           };
150           
151           //====================================================================
152           //  CIM_InstModification
153           //====================================================================
154              [Indication,
155               Description (
156                "CIM_InstModification notifies when an instance is modified.") ]
157           class CIM_InstModification : CIM_InstIndication
158           {
159               [EmbeddedObject, Required, 
160                Description (
161                 "A copy of the 'previous' instance whose change generated the "
162                 "Indication. PreviousInstance contains 'older' values of "
163                 "an instance's properties (as compared to SourceInstance), "
164                 "selected by the IndicationFilter's Query.") ]
165               string PreviousInstance;
166           };
167           
168           //====================================================================
169 karl  1.1 //  CIM_InstMethodCall
170           //====================================================================
171              [Indication,
172               Description (
173                "CIM_InstMethodCall notifies when an instance's method is "
174                "invoked.") ]
175           class CIM_InstMethodCall : CIM_InstIndication
176           {
177               [Required, Description (
178                 "The name of the method invoked.") ]
179               string MethodName;
180           
181               [EmbeddedObject,
182                Description (
183                 "The parameters of the method, formatted as an "
184                 "EmbeddedObject (with a predefined class name of "
185                 "\"__MethodParameters\".") ]
186               string MethodParameters;
187           
188               [Description (
189                 "ReturnValue's data is dependent on the PreCall property. "
190 karl  1.1       "When PreCall is TRUE, this property is NULL describing that "
191                 "there is no method return value (since the method has not yet "
192                 "executed). When PreCall is FALSE, ReturnValue contains a "
193                 "string representation of the method's return value."), 
194                ModelCorrespondence {"CIM_InstMethodCall.PreCall"} ]
195               string ReturnValue;
196           
197               [Required, Description (
198                 "Boolean indicating whether the Indication is sent before "
199                 "the method begins executing (TRUE) or when the method "
200                 "completes (FALSE). When TRUE, the inherited property "
201                 "SourceInstance contains the value of the instance (the "
202                 "properties defined by the Filter's Query clause), "
203                 "before execution of the method. When PreCall is FALSE, "
204                 "SourceInstance embeds the instance as it appears after "
205                 "the completion of the method.") ]
206               boolean PreCall;
207           };
208           
209           //====================================================================
210           //  CIM_InstRead
211 karl  1.1 //====================================================================
212              [Indication,
213               Description (
214                "CIM_InstRead notifies when an instance is read but not "
215                "modified.") ]
216           class CIM_InstRead : CIM_InstIndication
217           {
218           };
219           
220           //====================================================================
221           //  CIM_ProcessIndication
222           //====================================================================
223              [Indication, Abstract,
224               Description (
225                "An abstract superclass for specialized Indication classes, "
226                "addressing specific changes and alerts published by providers "
227                "and instrumentation. Subclasses include AlertIndication (with "
228                "properties such as PerceivedSeverity and ProbableCause), and "
229                "SNMPTrapIndication (which recasts Traps as CIM indications).") ]
230           class CIM_ProcessIndication : CIM_Indication
231           {
232 karl  1.1 };
233           
234           //====================================================================
235           //  CIM_SNMPTrapIndication
236           //====================================================================
237              [Indication,
238               Description (
239                "A concrete  class for mapping an SNMP Trap to CIM based on the "
240                "IETF RFC 1157. The usefulness of this class is to describe "
241                "common trap semantics. But, a complete understanding of any trap "
242                "data received relies on the Indicaton recipient having access to "
243                "the sender's MIB. Understanding can be improved by mapping the "
244                "SNMP domain to CIM, and using CIM LifeCycle and standard "
245                "subclasses of CIM_ProcessIndication.") ]
246           class CIM_SNMPTrapIndication : CIM_ProcessIndication
247           {
248               [Description (
249                 "Type of object generating the trap."),
250                Mappingstrings {"PDU.IETF|RFC1157-TRAP-PDU.enterprise"} ]
251               string Enterprise;
252           
253 karl  1.1     [Description (
254                 "Address of the object generating the trap."),
255                Mappingstrings {"PDU.IETF|RFC1157-TRAP-PDU.agent-addr"} ]
256               string AgentAddress;
257           
258               [Description (
259                 "An enumerated value that describes the generic trap type: \n"
260                 "- The coldStart(0) trap signifies that the sending protocol "
261                 "entity is reinitializing itself such that the agent's "
262                 "configuration or the protocol entity implementation may be "
263                 "altered. \n"
264                 "- The warmStart(1) trap signifies that the sending protocol "
265                 "entity is reinitializing itself such that neither the agent "
266                 "configuration nor the protocol entity implementation is "
267                 "altered. \n"
268                 "- The linkDown(2) trap signifies that the sending protocol "
269                 "recognizes a failure in one of the communication links "
270                 "represented in the agent's configuration. The Trap-PDU of "
271                 "type linkDown contains as the first element of its "
272                 "variable-bindings the name and value of the ifIndex instance "
273                 "for the affected interface. \n"
274 karl  1.1       "- The linkUp(3) trap signifies that the sending protocol "
275                 "entity recognizes that one of the communication links "
276                 "represented in the agent's configuration has come up. The "
277                 "Trap-PDU of type linkUp contains as the first element of its "
278                 "variable-bindings, the name and value of the ifIndex instance "
279                 "for the affected interface. \n"
280                 "- An authenticationFailure(4) trap signifies that the sending "
281                 "protocol entity is the adressee of a protocol message that was "
282                 "not properly authenticated. While implementations of SNMP must "
283                 "be capable of generating this trap, they must also be capable "
284                 "of suppressing the emission of such traps via an implementation-"
285                 "specific mechanism. \n"
286                 "- An egpNeighborLoss(5) trap signifies that an EGP neighbor for "
287                 "whom the sending protocol entity was an EGP peer has been "
288                 "marked as down and the peer relationship no longer pertains. "
289                 "The Trap-PDU of type egpNeighborLoss contains as the first "
290                 "element of its variable-bindings, the name and value of the "
291                 "egpNeighAddr instance for the affected neighbor. \n"
292                 "- An enterpriseSpecific(6) trap signifies that the sending "
293                 "protocol entity recognizes that some enterprise-specific "
294                 "event has occurred. The specific-trap field identifies the "
295 karl  1.1       "particular trap which occurred."), 
296                Values {"Cold Start", "Warm Start", "Link Down", "Link Up", 
297                        "Authentication Failure", "EGP Neighbor Loss", 
298                        "Enterprise Specific"},
299                 Mappingstrings {"PDU.IETF|RFC1157-TRAP-PDU.generic-trap"} ]
300               uint16 GenericTrap;
301           
302               [Description ("Specific trap code."), 
303                Mappingstrings {"PDU.IETF|RFC1157-TRAP-PDU.specific-trap"} ]
304               uint32 SpecificTrap;
305           
306               [Description (
307                 "Time elapsed between the last (re)intialization of the "
308                 "managed entity and the generation of the trap."), 
309                 Mappingstrings {"PDU.IETF|RFC1157-TRAP-PDU.time-stamp"} ]
310               datetime TimeStamp;
311           
312               [Description (
313                 "Object naming information (an OID) from the 'variable "
314                 "binding' portion of the Trap. This array is correlated "
315                 "with the VarBindSyntaxes and VarBindValues arrays. Each "
316 karl  1.1       "entry is related to the entries in the other arrays, "
317                 "that are located at the same index. In this way, the "
318                 "variable binding's name/syntax/value tuple can be "
319                 "constructed."), ArrayType ("Indexed"), 
320                ModelCorrespondence {"CIM_SNMPTrapIndication.VarBindSyntaxes",
321                 "CIM_SNMPTrapIndication.VarBindValues"},
322                Mappingstrings {"PDU.IETF|RFC1157-TRAP-PDU.variable-bindings"} ]
323               string VarBindNames[];
324           
325               [Description (
326                 "Object syntax information (defined as an enumerated value) "
327                 "from the 'variable binding' portion of the Trap. This array "
328                 "is correlated with the VarBindNames and VarBindValues "
329                 "arrays. Each entry is related to the entries in the other "
330                 "arrays, that are located at the same index. In this way, "
331                 "the variable binding's name/syntax/value tuple can be "
332                 "constructed."), ArrayType ("Indexed"), 
333                ValueMap {"1", "2", "3", "4", "5", "6", "7", "8"}, 
334                Values {"Integer", "OctetString", "ObjectIdentifier",
335                        "NetworkAddress", "Counter", "Gauge",
336                        "TimeTicks", "Opaque"}, 
337 karl  1.1      ModelCorrespondence {"CIM_SNMPTrapIndication.VarBindNames",
338                 "CIM_SNMPTrapIndication.VarBindValues"},
339                Mappingstrings {"PDU.IETF|RFC1157-TRAP-PDU.variable-bindings"} ]
340               uint16 VarBindSyntaxes[];
341           
342               [Description (
343                 "An OctetString representing object value information "
344                 "from the 'variable binding' portion of the Trap. This "
345                 "array is correlated with the VarBindNames and "
346                 "VarBindSyntaxes arrays. Each entry is related to the "
347                 "entries in the other arrays, that are located at the "
348                 "same index. In this way, the variable binding's "
349                 "name/syntax/value tuple can be constructed."), 
350                ArrayType ("Indexed"), OctetString,  
351                ModelCorrespondence {"CIM_SNMPTrapIndication.VarBindNames",
352                 "CIM_SNMPTrapIndication.VarBindSyntaxes"},
353                Mappingstrings {"PDU.IETF|RFC1157-TRAP-PDU.variable-bindings"} ]
354               string VarBindValues[];
355           };
356           
357           //====================================================================
358 karl  1.1 //  CIM_AlertIndication
359           //====================================================================
360              [Indication,
361               Description (
362                "A concrete superclass for CIM Alert notifications.  An "
363                "AlertIndication is a specialized type of CIM_Indication that "
364                "contains information about the severity, cause, recommended "
365                "actions and other data of a real world event. This event and its "
366                "data may or may not be modeled in the CIM class hierarchy.") ]
367           class CIM_AlertIndication : CIM_ProcessIndication
368           {
369               [Description (
370                 "A short description of the Indication."), 
371                MappingStrings {"Recommendation.ITU|X733.Additional text"} ]
372               string Description;
373           
374               [Description (
375                 "The identifying information of the entity (ie, the instance) for "
376                 "which this Indication is generated. The property contains the "
377                 "path of an instance, encoded as a string parameter - if the "
378                 "instance is modeled in the CIM Schema. If not a CIM instance, "
379 karl  1.1       "the property contains some identifying string that names the "
380                 "entity for which the Alert is generated.") ]
381               string AlertingManagedElement;
382           
383               [Required, Description (
384                 "Primary classification of the Indication.  The following values "
385                 "are defined: \n"
386                 "1 - Other. The Indication's OtherAlertType property conveys "
387                 "its classification. Use of \"Other\" in an enumeration is a "
388                 "standard CIM convention. It means that the current Indication "
389                 "does not fit into the categories described by this enumeration. \n"
390                 "2 - Communications Alert. An Indication of this type is "
391                 "principally associated with the procedures and/or processes "
392                 "required to convey information from one point to another. \n"
393                 "3 - Quality of Service Alert. An Indication of this type is "
394                 "principally associated with a degradation or errors in the "
395                 "performance or function of an entity. \n"
396           	"4 - Processing Error. An Indication of this type is "
397                 "principally associated with a software or processing fault. \n"
398                 "5 - Device Alert. An Indication of this type is principally "
399                 "associated with an equipment or hardware fault. \n"
400 karl  1.1       "6 - Environmental Alert. An Indication of this type is "
401                 "principally associated with a condition relating to an "
402                 "enclosure in which the hardware resides, or other "
403                 "environmental considerations. \n"
404                 "7 - Model Change. The Indication addresses changes in the "
405                 "Information Model. For example, it may embed a Lifecycle "
406                 "Indication to convey the specific model change being "
407                 "alerted. \n"
408                 "8 - Security Alert. An Indication of this type is associated "
409                 "with security violations, detection of viruses, and similar "
410                 "issues."),
411                ValueMap {"1", "2", "3", "4", "5", "6", "7", "8"},
412                Values {"Other", "Communications Alert", 
413           	       "Quality of Service Alert", "Processing Error", 
414           	       "Device Alert", "Environmental Alert", "Model Change",
415                        "Security Alert"},
416                MappingStrings {"Recommendation.ITU|X733.Event type"} ]
417               uint16 AlertType;
418           
419               [Description (
420                 "A string describing the Alert type - used when the AlertType "
421 karl  1.1       "property is set to 1, \"Other State Change\"."), 
422                ModelCorrespondence {"CIM_AlertIndication.AlertType"} ]
423               string OtherAlertType;
424           
425               [Required, Description (
426                 "An enumerated value that describes the severity of the Alert"
427                 "Indication from the notifier's point of view: \n"
428                 "1 - Other, by CIM convention, is used to indicate that the "
429                 "Severity's value can be found in the OtherSeverity property. \n"
430                 "3 - Degraded/Warning should be used when its appropriate to let "
431                 "the user decide if action is needed.  \n"
432                 "4 - Minor should be used to indicate action is needed, but the "
433                 "situation is not serious at this time.  \n"
434                 "5 - Major should be used to indicate action is needed NOW. \n"
435                 "6 - Critical should be used to indicate action is needed NOW "
436                 "and the scope is broad (perhaps an imminent outage to a critical "
437                 "resource will result). \n"
438                 "7 - Fatal/NonRecoverable should be used to indicate an error "
439                 "occurred, but it's too late to take remedial action. \n"
440                 "2 and 0 - Information and Unknown (respectively) follow common "
441                 "usage. Literally, the AlertIndication is purely informational "
442 karl  1.1       "or its severity is simply unknown."), 
443                Values {"Unknown", "Other", "Information", "Degraded/Warning", 
444                    "Minor", "Major", "Critical", "Fatal/NonRecoverable"},
445                MappingStrings {"Recommendation.ITU|X733.Perceived severity"} ]
446               uint16 PerceivedSeverity;
447           
448               [Description (
449                 "Holds the value of the user defined severity value when "
450                 "'Severity' is 1 (\"Other\")."),
451                ModelCorrespondence {"CIM_AlertIndication.PerceivedSeverity"} ]
452               string OtherSeverity;
453           
454               [Required, Description (
455                 "An enumerated value that describes the probable cause of the "
456                 "situation which resulted in the AlertIndication."),
457                Values {"Unknown", "Other", "Adapter Error", 
458           	   "Application Subsystem Failure", "Bandwidth Reduced", 
459                    "Connection Establishment Error", 
460                    "Communications Protocol Error", 
461                    "Communications Subsystem Failure", 
462                    "Configuration/Customization Error", "Congestion", 
463 karl  1.1          "Corrupt Data", "CPU Cycles Limit Exceeded", 
464                    "Dataset/Modem Error", "Degraded Signal",
465                    "DTE-DCE Interface Error", "Enclosure Door Open", 
466                    "Equipment Malfunction", "Excessive Vibration", 
467                    "File Format Error", "Fire Detected", "Flood Detected", 
468                    "Framing Error", "HVAC Problem", "Humidity Unacceptable", 
469                    "I/O Device Error", "Input Device Error", "LAN Error", 
470                    "Non-Toxic Leak Detected", "Local Node Transmission Error", 
471                    "Loss of Frame", "Loss of Signal", 
472                    "Material Supply Exhausted", "Multiplexer Problem", 
473                    "Out of Memory", "Output Device Error", 
474                    "Performance Degraded", "Power Problem", 
475                    "Pressure Unacceptable", 
476                    "Processor Problem (Internal Machine Error)", 
477                    "Pump Failure", "Queue Size Exceeded", "Receive Failure", 
478                    "Receiver Failure", "Remote Node Transmission Error", 
479                    "Resource at or Nearing Capacity", "Response Time Excessive", 
480                    "Retransmission Rate Excessive", "Software Error", 
481                    "Software Program Abnormally Terminated", 
482                    "Software Program Error (Incorrect Results)", 
483                    "Storage Capacity Problem", "Temperature Unacceptable", 
484 karl  1.1          "Threshold Crossed", "Timing Problem", 
485                    "Toxic Leak Detected", "Transmit Failure", 
486                    "Transmitter Failure", "Underlying Resource Unavailable", 
487                    "Version MisMatch", "Previous Alert Cleared", 
488                    "Login Attempts Failed", "Software Virus Detected", 
489                    "Hardware Security Breached", "Denial of Service Detected", 
490                    "Security Credential MisMatch", 
491                    "Invalid Access of Data Detected"},
492                MappingStrings {"Recommendation.ITU|X733.Probable cause"} ]
493               uint16 ProbableCause;
494           
495               [Description (
496           	"Provides additional information related to the "
497                 "ProbableCause.") ]
498               string ProbableCauseDescription;
499           
500               [Description (
501                 "Provides information on trending - trending up, down or "
502                 "no change."),
503                Values {"Unknown", "Not Applicable", "Trending Up", 
504                    "Trending Down", "No Change"},
505 karl  1.1      MappingStrings {"Recommendation.ITU|X733.TrendIndication"} ]
506               uint16 Trending;  
507           
508               [Description (
509                 "An identifier for the AlertIndication. This property is "
510                 "similar to a key value in that it can be used for "
511                 "identification, when correlating AlertIndications (see "
512                 "the CorrelatedIndications array). Its value should be unique "
513                 "as long as Alert correlations are reported, but may be "
514                 "reused or left NULL if no future AlertIndications will "
515                 "reference it in their CorrelatedIndications array."),
516                MappingStrings {
517                 "Recommendation.ITU|X733.Notification identifier"} ]
518               string IndicationIdentifier;
519           
520               [Description (
521                 "A list of IndicationIdentifiers whose notifications are correlated "
522                 "with (related to) this one."),
523                MappingStrings {
524                 "Recommendation.ITU|X733.Correlated notifications"} ]
525               string CorrelatedIndications[];
526 karl  1.1 
527               [Description (
528                 "Free form descriptions of the recommended actions to take to "
529                 "resolve the cause of the notification."),
530                MappingStrings {
531                 "Recommendation.ITU|X733.Proposed repair actions"} ]
532               string RecommendedActions[];
533           };
534           
535           //====================================================================
536           //  CIM_ThresholdIndication
537           //====================================================================
538              [Indication, 
539               Description (
540                "A subclass of CIM_AlertIndications carrying additional threshold "
541                "information related to the notification. This subclass is used "
542                "when one of the ProbableCauses is set to 53, \"Threshold "
543                "Crossed\".") ]
544           class CIM_ThresholdIndication : CIM_AlertIndication
545           {
546               [Description (
547 karl  1.1       "A string describing the threshold or naming the property that "
548                 "represents the threshold, if modeled in the CIM hierarchy. In "
549                 "the latter case, the value should be written as <schema name>_"
550                 "<class name>.<property name>."), 
551                MappingStrings {"Recommendation.ITU|X733.Threshold information"} ]
552               string ThresholdIdentifier;
553           
554               [Description (
555                 "A string holding the current value of the threshold.  This is "
556                 "modeled as a string for universal mapping, similar to the "
557                 "CIM_Sensor properties in the Device Model."),
558                MappingStrings {"Recommendation.ITU|X733.Threshold information"} ]
559               string ThresholdValue;
560           
561               [Description (
562                 "A string holding the current reading value that exceeds the "
563                 "threshold.  This is modeled as a string for universal mapping, "
564                 "similar to the CIM_Sensor properties in the Device Model."),
565                MappingStrings {"Recommendation.ITU|X733.Threshold information"} ]
566               string ObservedValue;
567           };
568 karl  1.1 
569           //====================================================================
570           //  CIM_AlertInstIndication
571           //====================================================================
572              [Indication,
573               Description (
574                "A subclass of CIM_AlertIndication that embeds a CIM_Inst"
575                "Indication. It is used when adding AlertIndication data to a "
576                "LifeCycle Indication.") ]
577           class CIM_AlertInstIndication : CIM_AlertIndication
578           {
579               [Override ("AlertType"), Description (
580                 "The primary classification of the Indication, defaulted "
581                 "to 7, \"Model Change\", for this class. This is done "
582                 "because: 1) the primary purpose of AlertInstIndication is "
583                 "to add Alert data to a LifeCycle Indication; and 2) LifeCycle "
584                 "Indications deal with 'model changes'.") ]
585               uint16 AlertType = 7;
586           
587               [EmbeddedObject, Required, 
588                Description (
589 karl  1.1       "Embeds the InstIndication that is part of this Alert"
590                 "Indication. Only the properties selected by the Indication"
591                 "Filter's Query are included.") ]
592               string IndObject;
593           };
594           
595           //====================================================================
596           //  CIM_IndicationFilter
597           //====================================================================
598              [Description (
599                "CIM_IndicationFilter defines the criteria for generating an "
600                "Indication and what data should be returned in the Indication. "
601                "It is derived from CIM_ManagedElement to allow modeling the "
602                "dependency of the filter on a specific service.") ]
603           class CIM_IndicationFilter: CIM_ManagedElement
604           {
605               [Key, MaxLen (256), 
606                Description (
607                 "A System's CreationClassName. The Filter is defined in the "
608                 "context of a CIM_System, where it is hosted or to which it "
609                 "applies. In a future release, a weak relationship will be "
610 karl  1.1       "explicitly added to the model. This is not done now to allow "
611                 "further refinement of the Filter definition and its "
612                 "inheritance tree. Keys are defined now to allow the class to "
613                 "be instantiated.") ]
614               string SystemCreationClassName;
615           
616               [Key, MaxLen (256), 
617                Description (
618                 "A System's Name. The Filter is defined in the "
619                 "context of a CIM_System, where it is hosted or to which it "
620                 "applies. In a future release, a weak relationship will be "
621                 "explicitly added to the model. This is not done now to allow "
622                 "further refinement of the Filter definition and its "
623                 "inheritance tree. Keys are defined now to allow the class to "
624                 "be instantiated.") ]
625               string SystemName;
626           
627               [Key, MaxLen (256),
628                Description (
629                 "Indicates the name of the class or the subclass used in the "
630                 "creation of an instance. When used with the other key "
631 karl  1.1       "properties of this class, it allows all instances of this "
632                 "class and its subclasses to be uniquely identified.") ]
633               string CreationClassName;
634           
635               [Key, Description (
636                 "The name of the filter.") ]
637               string Name;
638           
639               [Description (
640                 "The path to a local namespace where the Indications "
641                 "originate. If NULL, the namespace of the Filter registration "
642                 "is assumed.") ]
643               string SourceNamespace;
644           
645               [Required, Description (
646                 "A query expression that defines the condition(s) under which "
647                 "Indications will be generated. For some Indication classes, "
648                 "the query expression may also define the instance properties "
649                 "to be copied to the CIM_InstIndication's SourceInstance and "
650                 "PreviousInstance properties. Query language semantics include "
651                 "projection (e.g., Select), range (e.g., From) and predicate "
652 karl  1.1       "(e.g., Where)."),
653                ModelCorrespondence {"CIM_IndicationFilter.QueryLanguage"} ]
654               string Query;
655           
656               [Required, Description (
657                 "The language in which the query is expressed.") ]
658               string QueryLanguage;
659           };
660           
661           //====================================================================
662           //  CIM_IndicationHandler
663           //====================================================================
664              [Abstract,
665               Description (
666                "CIM_IndicationHandler is an abstract superclass describing how "
667                "an Indication is to be processd/delivered/'handled'. This may "
668                "define a destination and protocol for delivering Indications, "
669                "or it may define a process to invoke. This class is derived "
670                "from CIM_ManagedElement to allow modeling the "
671                "dependency of the Handler on a specific service.") ]
672           class CIM_IndicationHandler: CIM_ManagedElement 
673 karl  1.1 {
674               [Key, MaxLen (256), 
675                Description (
676                 "A System's CreationClassName. The Handler is defined in the "
677                 "context of a CIM_System, where it is hosted or to which it "
678                 "applies. In a future release, a weak relationship will be "
679                 "explicitly added to the model. This is not done now to allow "
680                 "further refinement of the Handler definition and its "
681                 "inheritance tree. Keys are defined now to allow the class to "
682                 "be instantiated.") ]
683               string SystemCreationClassName;
684           
685               [Key, MaxLen (256), 
686                Description (
687                 "A System's Name. The Handler is defined in the "
688                 "context of a CIM_System, where it is hosted or to which it "
689                 "applies. In a future release, a weak relationship will be "
690                 "explicitly added to the model. This is not done now to allow "
691                 "further refinement of the Handler definition and its "
692                 "inheritance tree. Keys are defined now to allow the class to "
693                 "be instantiated.") ]
694 karl  1.1     string SystemName;
695           
696               [Key, MaxLen (256),
697                Description (
698                 "Indicates the name of the class or the subclass used in the "
699                 "creation of an instance. When used with the other key properties "
700                 "of this class, it allows all instances of this class "
701                 "and its subclasses to be uniquely identified.") ]
702               string CreationClassName;
703           
704               [Key, MaxLen (256),
705                Description (
706                 "Indicates the name of this Handler.") ]
707               string Name;
708           
709               [Description (
710                 "The name of the entity that created and/or maintains this "
711                 "Handler.") ]
712               string Owner;
713           };
714           
715 karl  1.1 //====================================================================
716           //  CIM_IndicationHandlerXMLHTTP
717           //====================================================================
718              [Description (
719                "CIM_IndicationHandlerXMLHTTP describes the destination for "
720                "Indications to be delivered via HTTP, using a cimXML "
721                "representation.") ]
722           class CIM_IndicationHandlerXMLHTTP : CIM_IndicationHandler
723           {
724               [Required, Description (
725                 "The destination URL to which HTTP/cimXML Indication messages "
726                 "are to be delivered. The scheme prefix is implied and is not "
727                 "required, but must be 'http:' if specified.") ]
728               string Destination;
729           };
730           
731           //====================================================================
732           //  CIM_IndicationSubscription
733           //====================================================================
734              [Association, 
735               Description (
736 karl  1.1      "CIM_IndicationSubscription describes a flow of Indications. "
737                "The flow is specified by the referenced Filter, and directed to "
738                "the referenced destination or process in the Handler.") ]
739           class CIM_IndicationSubscription
740           {
741               [Key, Description (
742                 "The Filter that defines the criteria and data of the possible "
743                 "Indications of this subscription.") ]
744               CIM_IndicationFilter REF Filter;
745           
746               [Key, Description (
747                 "The Handler addressing delivery of the possible Indications of "
748                 "this subscription.") ]
749               CIM_IndicationHandler REF Handler;
750           
751              
752           };

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2