DSCResources/MSFT_xServiceResource/en-US/MSFT_xServiceResource.schema.mfl

#pragma namespace("\\\\.\\root\\default")
instance of __namespace{ name="MS_409";};
#pragma namespace("\\\\.\\root\\default\\MS_409")
 
[Description("This resource is used to manage services.") : Amended,AMENDMENT, LOCALE(0x0409)]
class MSFT_ServiceResource : OMI_BaseResource
{
  [key,Description("The name for the service") : Amended] string Name;
  [Description("An enumerated value that describes if the service is expected to be running on the machine.\nRunning {default} \nStopped \n") : Amended] string State;
  [Description("An enumerated value that describes the service start type.\nAutomatic \nManual \nDisabled \n") : Amended] string StartupType;
  [Description("An enumerated value that describes the built in account the service runs under.\nLocalSystem \nLocalService \nNetworkService \n") : Amended] string BuiltInAccount;
  [Description("The optional credentials the service runs under") : Amended] string Credential;
  [Description("An enumerated value that describes the service status.\nStart \nStop \nRestart \nPause \nResume \n") : Amended] string Status;
  [Description("The service display name") : Amended] string DisplayName;
  [Description("The sercive description") : Amended] string Description;
  [Description("The path to the service executable file") : Amended] string Path;
  [Description("A list of service dependencies") : Amended] string Dependencies[];
};