// Copyright (c) 2005 DMTF. All rights reserved. // Add UmlPackagePath // qualifier values to CIM Schema. // ================================================================== // CIM_InstIndication // ================================================================== [Indication, Abstract, Version ( "2.9.0" ), UMLPackagePath ( "CIM::Event" ), Description ( "CIM_InstIndication is an abstract superclass describing " "changes to instances. Subclasses represent specific types of " "change notifications, such as instance creation, deletion and " "modification.")] class CIM_InstIndication : CIM_Indication { [Required, Description ( "A copy of the instance that changed to generate the " "Indication. SourceInstance contains the current values of " "the properties selected by the Indication Filter's Query. " "In the case of CIM_InstDeletion, the property values are " "copied before the instance is deleted."), EmbeddedObject] string SourceInstance; [Description ( "The Model Path of the SourceInstance. The following format " "MUST be used to encode the Model Path: \n" ":.=\"\", \n" "=\"\", ..."), ModelCorrespondence { "CIM_InstIndication.SourceInstance" }] string SourceInstanceModelPath; [Description ( "The host name or IP address of the SourceInstance."), ModelCorrespondence { "CIM_InstIndication.SourceInstance" }] string SourceInstanceHost; };