summaryrefslogtreecommitdiffstats
path: root/mof
diff options
context:
space:
mode:
authorMichal Minar <miminar@redhat.com>2013-03-27 15:35:08 +0100
committerMichal Minar <miminar@redhat.com>2013-04-11 13:51:56 +0200
commit7c0c3eeb54e177499d164dc9df6b3e1368934a0d (patch)
treeeb592abbc42a8cda563f375811f7935550a9c64e /mof
parentd4e0eafa12c7a2b9a4748021ae7e520845dc5b8c (diff)
downloadopenlmi-providers-7c0c3eeb54e177499d164dc9df6b3e1368934a0d.tar.gz
openlmi-providers-7c0c3eeb54e177499d164dc9df6b3e1368934a0d.tar.xz
openlmi-providers-7c0c3eeb54e177499d164dc9df6b3e1368934a0d.zip
added indication manager to openlmi.common
IndicationManager python module is useful for many providers across OpenLMI project. That's why it's landing in openlmi.common subpackage from openlmi-storage. It supports checking for static filters IndicationManager allows to check and install static filters at broker at runtime - but it should be avoided filters should work also under sfcbd
Diffstat (limited to 'mof')
-rw-r--r--mof/LMI_SoftwareIndicationFilters.mof104
1 files changed, 104 insertions, 0 deletions
diff --git a/mof/LMI_SoftwareIndicationFilters.mof b/mof/LMI_SoftwareIndicationFilters.mof
new file mode 100644
index 0000000..e3af599
--- /dev/null
+++ b/mof/LMI_SoftwareIndicationFilters.mof
@@ -0,0 +1,104 @@
+/*
+ * Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * Authors: Michal Minar <miminar@redhat.com>
+ *
+ * These are static CIM_IndicationFilter instances used by software managent
+ * providers. They should be installed upon providers installation.
+ * They should go to root/interop namespace for sfcb and root/PG_Interop
+ * for pegasus.
+ */
+
+instance of CIM_IndicationFilter {
+ CreationClassName = "CIM_IndicationFilter";
+ SystemCreationClassName = "CIM_ComputerSystem";
+ SystemName = "kvm-fedora18";
+ Name = "LMI:LMI_SoftwareInstallationJob:PercentUpdated";
+ Query = "SELECT * FROM CIM_InstModification WHERE "
+ "SourceInstance ISA LMI_SoftwareInstallationJob AND "
+ "SourceInstance.CIM_ConcreteJob::PercentComplete <> "
+ "PreviousInstance.CIM_ConcreteJob::PercentComplete";
+ /* CIM: prefix required for pegasus */
+ QueryLanguage = "CIM:CQL";
+ Description = "Modification of Percentage Complete for a "
+ "Concrete Job.";
+ /* required for sfcb - but deprecated */
+ SourceNamespace = "root/cimv2";
+ SourceNamespaces = {"root/cimv2"};
+};
+
+instance of CIM_IndicationFilter {
+ CreationClassName = "CIM_IndicationFilter";
+ SystemCreationClassName = "CIM_ComputerSystem";
+ SystemName = "kvm-fedora18";
+ Name = "LMI:LMI_SoftwareInstallationJob:Succeeded";
+ QueryLanguage = "CIM:CQL";
+ Query = "SELECT * FROM CIM_InstModification WHERE "
+ "SourceInstance ISA LMI_SoftwareInstallationJob AND "
+ "SourceInstance.CIM_ConcreteJob::JobState"
+ " = 17"
+ /* This is not supported by sfcb:
+ * " = CIM_ConcreteJob.JobState#'Completed'" */;
+ SourceNamespace = "root/cimv2";
+ SourceNamespaces = {"root/cimv2"};
+};
+
+instance of CIM_IndicationFilter {
+ CreationClassName = "CIM_IndicationFilter";
+ SystemCreationClassName = "CIM_ComputerSystem";
+ SystemName = "kvm-fedora18";
+ Name = "LMI:LMI_SoftwareInstallationJob:Failed";
+ Query = "SELECT * FROM CIM_InstModification WHERE "
+ "SourceInstance ISA LMI_SoftwareInstallationJob AND "
+ "SourceInstance.CIM_ConcreteJob::JobState"
+ " = 10"
+ /* This is not supported by sfcb:
+ * "CIM_ConcreteJob.JobState#'Exception'" */;
+ QueryLanguage = "CIM:CQL";
+ Description = "Modification of Operational Status for a "
+ "Concrete Job to 'Complete' and 'OK'.";
+ SourceNamespace = "root/cimv2";
+ SourceNamespaces = {"root/cimv2"};
+};
+
+instance of CIM_IndicationFilter {
+ CreationClassName = "CIM_IndicationFilter";
+ SystemCreationClassName = "CIM_ComputerSystem";
+ SystemName = "kvm-fedora18";
+ Name = "LMI:LMI_SoftwareInstallationJob:Changed";
+ Query = "SELECT * FROM CIM_InstModification WHERE "
+ "SourceInstance ISA LMI_SoftwareInstallationJob AND "
+ "SourceInstance.CIM_ConcreteJob::JobState <> "
+ "PreviousInstance.CIM_ConcreteJob::JobState";
+ QueryLanguage = "CIM:CQL";
+ Description = "Modification of Job State for a ConcreteJob.";
+ SourceNamespace = "root/cimv2";
+ SourceNamespaces = {"root/cimv2"};
+};
+
+instance of CIM_IndicationFilter {
+ CreationClassName = "CIM_IndicationFilter";
+ SystemCreationClassName = "CIM_ComputerSystem";
+ SystemName = "kvm-fedora18";
+ Name = "LMI:LMI_SoftwareInstallationJob:Created";
+ Query = "SELECT * FROM CIM_InstCreation WHERE"
+ " SourceInstance ISA LMI_SoftwareInstallationJob";
+ QueryLanguage = "CIM:CQL";
+ Description = "Creation of a ConcreteJob.";
+ SourceNamespace = "root/cimv2";
+ SourceNamespaces = {"root/cimv2"};
+};