📄 cim_service.mof
字号:
// Copyright (c) 2005 DMTF. All rights reserved.// <change cr="SysDevCR00722.000" type ="change">Update of// descriptions based on Tech Edit review.</// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath// qualifier values to CIM Schema.</change>// ==================================================================// CIM_Service// ================================================================== [UMLPackagePath ( "CIM::Core::Service" ), Abstract, Version ( "2.10.0" ), Description ( "A CIM_Service is a Logical Element that contains the " "information that is necessary to represent and manage the " "functionality provided by a Device or a SoftwareFeature, or " "both. A Service is a general-purpose object that is used to " "configure and manage the implementation of functionality. It " "is not the functionality itself.")]class CIM_Service : CIM_EnabledLogicalElement { [Key, Propagated ( "CIM_System.CreationClassName" ), Description ( "The CreationClassName of the scoping System."), MaxLen ( 256 )] string SystemCreationClassName; [Key, Propagated ( "CIM_System.Name" ), Description ( "The Name of the scoping System."), MaxLen ( 256 )] string SystemName; [Key, Description ( "CreationClassName indicates the name of the class or the " "subclass that is 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."), MaxLen ( 256 )] string CreationClassName; [Key, Override ( "Name" ), Description ( "The Name property uniquely identifies the Service and " "provides an indication of the functionality that is " "managed. This functionality is described in more detail in " "the Description property of the object."), MaxLen ( 256 )] string Name; [Write, Description ( "The name of the primary owner for the service, if one is " "defined. The primary owner is the initial support contact " "for the Service."), MaxLen ( 64 ), MappingStrings { "MIF.DMTF|General Information|001.3" }] string PrimaryOwnerName; [Write, Description ( "A string that provides information on how the primary owner " "of the Service can be reached (for example, phone number, " "e-mail address, and so on)."), MaxLen ( 256 ), MappingStrings { "MIF.DMTF|General Information|001.4" }] string PrimaryOwnerContact; [Deprecated { "CIM_Service.EnabledDefault" }, Description ( "Note: The use of this element is deprecated in lieu of the " "EnabledDefault property that is inherited from " "EnabledLogicalElement. The EnabledLogicalElement addresses " "the same semantics. The change to a uint16 data type was " "discussed when CIM V2.0 was defined. However, existing V1.0 " "implementations used the string property. To remain " "compatible with those implementations, StartMode was " "grandfathered into the schema. Use of the deprecated " "qualifier allows the maintenance of the existing property " "but also permits an improved, clarified definition using " "EnabledDefault. \n" "Deprecated description: StartMode is a string value that " "indicates whether the Service is automatically started by a " "System, an Operating System, and so on, or is started only " "upon request."), ValueMap { "Automatic", "Manual" }, MaxLen ( 10 )] string StartMode; [Description ( "Started is a Boolean that indicates whether the Service has " "been started (TRUE), or stopped (FALSE).")] boolean Started; [Description ( "The StartService method places the Service in the started " "state. Note that the function of this method overlaps with " "the RequestedState property. RequestedState was added to " "the model to maintain a record (such as a persisted value) " "of the last state request. Invoking the StartService method " "should set the RequestedState property appropriately. The " "method returns an integer value of 0 if the Service was " "successfully started, 1 if the request is not supported, " "and any other number to indicate an error. In a subclass, " "the set of possible return codes could be specified using a " "ValueMap qualifier on the method. The strings to which the " "ValueMap contents are translated can also be specified in " "the subclass as a Values array qualifier. \n" "\n" "Note: The semantics of this method overlap with the " "RequestStateChange method that is inherited from " "EnabledLogicalElement. This method is maintained because it " "has been widely implemented, and its simple \"start\" " "semantics are convenient to use.")] uint32 StartService(); [Description ( "The StopService method places the Service in the stopped " "state. Note that the function of this method overlaps with " "the RequestedState property. RequestedState was added to " "the model to maintain a record (such as a persisted value) " "of the last state request. Invoking the StopService method " "should set the RequestedState property appropriately. The " "method returns an integer value of 0 if the Service was " "successfully stopped, 1 if the request is not supported, " "and any other number to indicate an error. In a subclass, " "the set of possible return codes could be specified using a " "ValueMap qualifier on the method. The strings to which the " "ValueMap contents are translated can also be specified in " "the subclass as a Values array qualifier. \n" "\n" "Note: The semantics of this method overlap with the " "RequestStateChange method that is inherited from " "EnabledLogicalElement. This method is maintained because it " "has been widely implemented, and its simple \"stop\" " "semantics are convenient to use.")] uint32 StopService(); };
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -