Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!----> |
| 3 | <!--################################################################################ --> |
Asmitha Karunanithi | c8ccb77 | 2020-09-22 10:56:46 -0500 | [diff] [blame] | 4 | <!--# Redfish Schema: LogService v1.2.0 --> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 5 | <!--# --> |
| 6 | <!--# For a detailed change log, see the README file contained in the DSP8010 bundle, --> |
| 7 | <!--# available at http://www.dmtf.org/standards/redfish --> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 8 | <!--# Copyright 2014-2020 DMTF. --> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 9 | <!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright --> |
| 10 | <!--################################################################################ --> |
| 11 | <!----> |
| 12 | <edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0"> |
| 13 | |
| 14 | <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml"> |
| 15 | <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/> |
| 16 | </edmx:Reference> |
| 17 | <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml"> |
| 18 | <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/> |
| 19 | </edmx:Reference> |
| 20 | <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml"> |
| 21 | <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/> |
| 22 | <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/> |
| 23 | </edmx:Reference> |
| 24 | <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml"> |
| 25 | <edmx:Include Namespace="Resource"/> |
| 26 | <edmx:Include Namespace="Resource.v1_0_0"/> |
| 27 | </edmx:Reference> |
| 28 | <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/LogEntryCollection_v1.xml"> |
| 29 | <edmx:Include Namespace="LogEntryCollection"/> |
| 30 | </edmx:Reference> |
| 31 | |
| 32 | <edmx:DataServices> |
| 33 | |
| 34 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService"> |
| 35 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 36 | |
| 37 | <EntityType Name="LogService" BaseType="Resource.v1_0_0.Resource" Abstract="true"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 38 | <Annotation Term="OData.Description" String="The LogService schema contains properties for monitoring and configuring a Log Service."/> |
| 39 | <Annotation Term="OData.LongDescription" String="This Resource shall represent a Log Service for a Redfish implementation."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 40 | <Annotation Term="Capabilities.InsertRestrictions"> |
| 41 | <Record> |
| 42 | <PropertyValue Property="Insertable" Bool="false"/> |
| 43 | </Record> |
| 44 | </Annotation> |
| 45 | <Annotation Term="Capabilities.UpdateRestrictions"> |
| 46 | <Record> |
| 47 | <PropertyValue Property="Updatable" Bool="true"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 48 | <Annotation Term="OData.Description" String="The date and time properties can be updated for a Log Service."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 49 | </Record> |
| 50 | </Annotation> |
| 51 | <Annotation Term="Capabilities.DeleteRestrictions"> |
| 52 | <Record> |
| 53 | <PropertyValue Property="Deletable" Bool="false"/> |
| 54 | </Record> |
| 55 | </Annotation> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 56 | <Annotation Term="Redfish.Uris"> |
| 57 | <Collection> |
| 58 | <String>/redfish/v1/Managers/{ManagerId}/LogServices/{LogServiceId}</String> |
| 59 | <String>/redfish/v1/Systems/{ComputerSystemId}/LogServices/{LogServiceId}</String> |
| 60 | <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices/{LogServiceId}</String> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 61 | <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices/{LogServiceId}</String> |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 62 | <String>/redfish/v1/Chassis/{ChassisId}/LogServices/{LogServiceId}</String> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 63 | <String>/redfish/v1/JobService/Log</String> |
| 64 | <String>/redfish/v1/TelemetryService/LogService</String> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 65 | </Collection> |
| 66 | </Annotation> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 67 | </EntityType> |
| 68 | |
| 69 | <Action Name="ClearLog" IsBound="true"> |
| 70 | <Parameter Name="LogService" Type="LogService.v1_0_0.Actions"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 71 | <Annotation Term="OData.Description" String="The action to clear the log for this Log Service."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 72 | <Annotation Term="OData.LongDescription" String="This action shall delete all entries found in the Entries collection for this Log Service."/> |
| 73 | </Action> |
| 74 | |
Asmitha Karunanithi | c8ccb77 | 2020-09-22 10:56:46 -0500 | [diff] [blame] | 75 | <Action Name="CollectDiagnosticData" IsBound="true"> |
| 76 | <Annotation Term="OData.Description" String="The action to collect the diagnostic data for the given type."/> |
| 77 | <Annotation Term="OData.LongDescription" String="This action shall collect the diagnostic data for the given type. The `Location` header in the response shall contain a URI to a resource of type LogEntry that contains the diagnostic data."/> |
| 78 | <Parameter Name="LogService" Type="LogService.v1_0_0.Actions"/> |
| 79 | <Parameter Name="DiagnosticDataType" Type="LogService.v1_2_0.LogDiagnosticDataTypes" Nullable="false"> |
| 80 | <Annotation Term="OData.Description" String="The type of diagnostic data to collect."/> |
| 81 | <Annotation Term="OData.LongDescription" String="This parameter shall contain the type of diagnostic data to collect."/> |
| 82 | </Parameter> |
| 83 | <Parameter Name="OEMDiagnosticDataType" Type="Edm.String"> |
| 84 | <Annotation Term="OData.Description" String="The OEM-defined type of diagnostic data to collect."/> |
| 85 | <Annotation Term="OData.LongDescription" String="This parameter shall contain the OEM-defined type of diagnostic data to collect. This parameter shall be required if DiagnosticDataType is `OEM`."/> |
| 86 | </Parameter> |
| 87 | <Annotation Term="Redfish.Revisions"> |
| 88 | <Collection> |
| 89 | <Record> |
| 90 | <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> |
| 91 | <PropertyValue Property="Version" String="v1_2_0"/> |
| 92 | </Record> |
| 93 | </Collection> |
| 94 | </Annotation> |
| 95 | </Action> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 96 | </Schema> |
| 97 | |
| 98 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_0_0"> |
| 99 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 100 | <Annotation Term="Redfish.Release" String="1.0"/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 101 | |
| 102 | <EntityType Name="LogService" BaseType="LogService.LogService"> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 103 | <Property Name="ServiceEnabled" Type="Edm.Boolean"> |
| 104 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 105 | <Annotation Term="OData.Description" String="An indication of whether this service is enabled."/> |
| 106 | <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service is enabled."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 107 | </Property> |
| 108 | <Property Name="MaxNumberOfRecords" Type="Edm.Int64" Nullable="false"> |
| 109 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 110 | <Annotation Term="OData.Description" String="The maximum number of log entries that this service can have."/> |
| 111 | <Annotation Term="OData.LongDescription" String="This property shall contain the maximum number of LogEntry Resources in the Entries collection for this service."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 112 | <Annotation Term="Validation.Minimum" Int="0"/> |
| 113 | </Property> |
| 114 | <Property Name="OverWritePolicy" Type="LogService.v1_0_0.OverWritePolicy" Nullable="false"> |
| 115 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 116 | <Annotation Term="OData.Description" String="The overwrite policy for this service that takes place when the log is full."/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 117 | <Annotation Term="OData.LongDescription" String="This property shall indicate the policy of the Log Service when the MaxNumberOfRecords has been reached."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 118 | </Property> |
| 119 | <Property Name="DateTime" Type="Edm.DateTimeOffset"> |
| 120 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 121 | <Annotation Term="OData.Description" String="The current date and time, with UTC offset, that the Log Service uses to set or read time."/> |
| 122 | <Annotation Term="OData.LongDescription" String="This property shall represent the current DateTime value, with UTC offset, in Redfish Timestamp format that the Log Service uses to set or read time."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 123 | </Property> |
| 124 | <Property Name="DateTimeLocalOffset" Type="Edm.String"> |
| 125 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 126 | <Annotation Term="OData.Description" String="The UTC offset that the current DateTime property value contains in the `+HH:MM` format."/> |
| 127 | <Annotation Term="OData.LongDescription" String="This property shall represent the UTC offset that the current DateTime property value contains."/> |
| 128 | <Annotation Term="Validation.Pattern" String="^([-+][0-1][0-9]:[0-5][0-9])$"/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 129 | </Property> |
| 130 | <NavigationProperty Name="Entries" Type="LogEntryCollection.LogEntryCollection" ContainsTarget="true" Nullable="false"> |
| 131 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 132 | <Annotation Term="OData.Description" String="The link to the log entry collection."/> |
| 133 | <Annotation Term="OData.LongDescription" String="This property shall contain a link to a Resource Collection of type LogEntryCollection."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 134 | <Annotation Term="OData.AutoExpandReferences"/> |
| 135 | </NavigationProperty> |
| 136 | <Property Name="Actions" Type="LogService.v1_0_0.Actions" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 137 | <Annotation Term="OData.Description" String="The available actions for this Resource."/> |
| 138 | <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 139 | </Property> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 140 | <Property Name="Status" Type="Resource.Status" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 141 | <Annotation Term="OData.Description" String="The status and health of the Resource and its subordinate or dependent Resources."/> |
| 142 | <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the Resource."/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 143 | </Property> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 144 | </EntityType> |
| 145 | |
| 146 | <ComplexType Name="Actions"> |
| 147 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 148 | <Annotation Term="OData.Description" String="The available actions for this Resource."/> |
| 149 | <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 150 | <Property Name="Oem" Type="LogService.v1_0_0.OemActions" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 151 | <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/> |
| 152 | <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 153 | </Property> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 154 | </ComplexType> |
| 155 | |
| 156 | <ComplexType Name="OemActions"> |
| 157 | <Annotation Term="OData.AdditionalProperties" Bool="true"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 158 | <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/> |
| 159 | <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this Resource."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 160 | </ComplexType> |
| 161 | |
| 162 | <EnumType Name="OverWritePolicy"> |
| 163 | <Member Name="Unknown"> |
| 164 | <Annotation Term="OData.Description" String="The overwrite policy is not known or is undefined."/> |
| 165 | </Member> |
| 166 | <Member Name="WrapsWhenFull"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 167 | <Annotation Term="OData.Description" String="When full, new entries to the log overwrite earlier entries."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 168 | </Member> |
| 169 | <Member Name="NeverOverWrites"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 170 | <Annotation Term="OData.Description" String="When full, new entries to the log are discarded."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 171 | </Member> |
| 172 | </EnumType> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 173 | </Schema> |
| 174 | |
| 175 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_0_2"> |
| 176 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 177 | <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/> |
| 178 | <EntityType Name="LogService" BaseType="LogService.v1_0_0.LogService"/> |
| 179 | </Schema> |
| 180 | |
| 181 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_0_3"> |
| 182 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 183 | <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/> |
| 184 | <EntityType Name="LogService" BaseType="LogService.v1_0_2.LogService"/> |
| 185 | </Schema> |
| 186 | |
| 187 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_0_4"> |
| 188 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 189 | <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/> |
| 190 | <EntityType Name="LogService" BaseType="LogService.v1_0_3.LogService"/> |
| 191 | </Schema> |
| 192 | |
| 193 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_0_5"> |
| 194 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 195 | <Annotation Term="OData.Description" String="This version was created to correct the short and long descriptions in the defined Actions."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 196 | <EntityType Name="LogService" BaseType="LogService.v1_0_4.LogService"/> |
| 197 | </Schema> |
| 198 | |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 199 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_0_6"> |
| 200 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 201 | <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/> |
| 202 | <EntityType Name="LogService" BaseType="LogService.v1_0_5.LogService"/> |
| 203 | </Schema> |
| 204 | |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 205 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_0_7"> |
| 206 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 207 | <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/> |
| 208 | <EntityType Name="LogService" BaseType="LogService.v1_0_6.LogService"/> |
| 209 | </Schema> |
| 210 | |
| 211 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_0_8"> |
| 212 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 213 | <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> |
| 214 | <EntityType Name="LogService" BaseType="LogService.v1_0_7.LogService"/> |
| 215 | </Schema> |
| 216 | |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 217 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_1_0"> |
| 218 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 219 | <Annotation Term="Redfish.Release" String="2017.3"/> |
Gunnar Mills | 262d7d4 | 2021-01-20 16:28:41 -0600 | [diff] [blame^] | 220 | <Annotation Term="OData.Description" String="This version was created to add LogEntryType property."/> |
Asmitha Karunanithi | c8ccb77 | 2020-09-22 10:56:46 -0500 | [diff] [blame] | 221 | |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 222 | <EntityType Name="LogService" BaseType="LogService.v1_0_5.LogService"> |
| 223 | <Property Name="LogEntryType" Type="LogService.v1_1_0.LogEntryTypes"> |
| 224 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 225 | <Annotation Term="OData.Description" String="The format of the log entries."/> |
| 226 | <Annotation Term="OData.LongDescription" String="This property shall represent the EntryType of all LogEntry Resources contained in the Entries collection. If the service cannot determine or guarantee a single EntryType for all LogEntry Resources, this property's value shall be `Multiple`."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 227 | </Property> |
| 228 | </EntityType> |
| 229 | |
| 230 | <EnumType Name="LogEntryTypes"> |
| 231 | <Member Name="Event"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 232 | <Annotation Term="OData.Description" String="The log contains Redfish-defined messages."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 233 | </Member> |
| 234 | <Member Name="SEL"> |
| 235 | <Annotation Term="OData.Description" String="The log contains legacy IPMI System Event Log (SEL) entries."/> |
| 236 | </Member> |
| 237 | <Member Name="Multiple"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 238 | <Annotation Term="OData.Description" String="The log contains multiple log entry types and, therefore, the Log Service cannot guarantee a single entry type."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 239 | </Member> |
| 240 | <Member Name="OEM"> |
| 241 | <Annotation Term="OData.Description" String="The log contains entries in an OEM-defined format."/> |
| 242 | </Member> |
| 243 | </EnumType> |
| 244 | </Schema> |
| 245 | |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 246 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_1_1"> |
| 247 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 248 | <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/> |
| 249 | <EntityType Name="LogService" BaseType="LogService.v1_1_0.LogService"/> |
| 250 | </Schema> |
| 251 | |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 252 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_1_2"> |
| 253 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 254 | <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/> |
| 255 | <EntityType Name="LogService" BaseType="LogService.v1_1_1.LogService"/> |
| 256 | </Schema> |
| 257 | |
| 258 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_1_3"> |
| 259 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 260 | <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> |
| 261 | <EntityType Name="LogService" BaseType="LogService.v1_1_2.LogService"/> |
| 262 | </Schema> |
| 263 | |
Asmitha Karunanithi | c8ccb77 | 2020-09-22 10:56:46 -0500 | [diff] [blame] | 264 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_2_0"> |
| 265 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 266 | <Annotation Term="Redfish.Release" String="2020.3"/> |
| 267 | <Annotation Term="OData.Description" String="This version was created to add local syslog support and the CollectDiagnosticData action."/> |
| 268 | |
| 269 | <EntityType Name="LogService" BaseType="LogService.v1_1_3.LogService"> |
| 270 | <Property Name="SyslogFilters" Type="Collection(LogService.v1_2_0.SyslogFilter)"> |
| 271 | <Annotation Term="OData.Description" String="A list of syslog message filters to be logged locally."/> |
| 272 | <Annotation Term="OData.LongDescription" String="This property shall describe all desired syslog messages to be logged locally. If this property contains an empty array, all messages shall be logged."/> |
| 273 | </Property> |
| 274 | </EntityType> |
| 275 | |
| 276 | <ComplexType Name="SyslogFilter"> |
| 277 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
| 278 | <Annotation Term="OData.Description" String="A syslog filter."/> |
| 279 | <Annotation Term="OData.LongDescription" String="This type shall contain the filter for a syslog message. The filter shall describe the desired syslog message to be enabled locally."/> |
| 280 | <Property Name="LowestSeverity" Type="LogService.v1_2_0.SyslogSeverity"> |
| 281 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 282 | <Annotation Term="OData.Description" String="The lowest severity level message that will be logged."/> |
| 283 | <Annotation Term="OData.LongDescription" String="This property shall contain the lowest syslog severity level that will be logged. The service shall log all messages equal to or greater than the value in this property. The value `All` shall indicate all severities."/> |
| 284 | </Property> |
| 285 | <Property Name="LogFacilities" Type="Collection(LogService.v1_2_0.SyslogFacility)"> |
| 286 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 287 | <Annotation Term="OData.Description" String="The types of programs that can log messages."/> |
| 288 | <Annotation Term="OData.LongDescription" String="This property shall contain the types of programs that can log messages. If this property contains an empty array or is absent, all facilities shall be indicated."/> |
| 289 | </Property> |
| 290 | </ComplexType> |
| 291 | |
| 292 | <EnumType Name="SyslogSeverity"> |
| 293 | <Annotation Term="OData.Description" String="The syslog severity is an application-specific rating used to describe the urgency of the message."/> |
| 294 | <Annotation Term="OData.LongDescription" String="This type shall specify the syslog severity levels as an application-specific rating used to describe the urgency of the message. `Emergency` should be reserved for messages indicating the system is unusable and `Debug` should only be used when debugging a program. Severity values are described in RFC5424."/> |
| 295 | <Member Name="Emergency"> |
| 296 | <Annotation Term="OData.Description" String="A panic condition."/> |
| 297 | </Member> |
| 298 | <Member Name="Alert"> |
| 299 | <Annotation Term="OData.Description" String="A condition that should be corrected immediately, such as a corrupted system database."/> |
| 300 | </Member> |
| 301 | <Member Name="Critical"> |
| 302 | <Annotation Term="OData.Description" String="Hard device errors."/> |
| 303 | </Member> |
| 304 | <Member Name="Error"> |
| 305 | <Annotation Term="OData.Description" String="An Error."/> |
| 306 | </Member> |
| 307 | <Member Name="Warning"> |
| 308 | <Annotation Term="OData.Description" String="A Warning."/> |
| 309 | </Member> |
| 310 | <Member Name="Notice"> |
| 311 | <Annotation Term="OData.Description" String="Conditions that are not error conditions, but that may require special handling."/> |
| 312 | </Member> |
| 313 | <Member Name="Informational"> |
| 314 | <Annotation Term="OData.Description" String="Informational only."/> |
| 315 | </Member> |
| 316 | <Member Name="Debug"> |
| 317 | <Annotation Term="OData.Description" String="Messages that contain information normally of use only when debugging a program."/> |
| 318 | </Member> |
| 319 | <Member Name="All"> |
| 320 | <Annotation Term="OData.Description" String="A message of any severity."/> |
| 321 | </Member> |
| 322 | </EnumType> |
| 323 | |
| 324 | <EnumType Name="SyslogFacility"> |
| 325 | <Annotation Term="OData.Description" String="The syslog facility code is an enumeration of program types."/> |
| 326 | <Annotation Term="OData.LongDescription" String="This type shall specify the syslog facility codes as program types. Facility values are described in the RFC5424."/> |
| 327 | <Member Name="Kern"> |
| 328 | <Annotation Term="OData.Description" String="Kernel messages."/> |
| 329 | </Member> |
| 330 | <Member Name="User"> |
| 331 | <Annotation Term="OData.Description" String="User-level messages."/> |
| 332 | </Member> |
| 333 | <Member Name="Mail"> |
| 334 | <Annotation Term="OData.Description" String="Mail system."/> |
| 335 | </Member> |
| 336 | <Member Name="Daemon"> |
| 337 | <Annotation Term="OData.Description" String="System daemons."/> |
| 338 | </Member> |
| 339 | <Member Name="Auth"> |
| 340 | <Annotation Term="OData.Description" String="Security/authentication messages."/> |
| 341 | </Member> |
| 342 | <Member Name="Syslog"> |
| 343 | <Annotation Term="OData.Description" String="Messages generated internally by syslogd."/> |
| 344 | </Member> |
| 345 | <Member Name="LPR"> |
| 346 | <Annotation Term="OData.Description" String="Line printer subsystem."/> |
| 347 | </Member> |
| 348 | <Member Name="News"> |
| 349 | <Annotation Term="OData.Description" String="Network news subsystem."/> |
| 350 | </Member> |
| 351 | <Member Name="UUCP"> |
| 352 | <Annotation Term="OData.Description" String="UUCP subsystem."/> |
| 353 | </Member> |
| 354 | <Member Name="Cron"> |
| 355 | <Annotation Term="OData.Description" String="Clock daemon."/> |
| 356 | </Member> |
| 357 | <Member Name="Authpriv"> |
| 358 | <Annotation Term="OData.Description" String="Security/authentication messages."/> |
| 359 | </Member> |
| 360 | <Member Name="FTP"> |
| 361 | <Annotation Term="OData.Description" String="FTP daemon."/> |
| 362 | </Member> |
| 363 | <Member Name="NTP"> |
| 364 | <Annotation Term="OData.Description" String="NTP subsystem."/> |
| 365 | </Member> |
| 366 | <Member Name="Security"> |
| 367 | <Annotation Term="OData.Description" String="Log audit."/> |
| 368 | </Member> |
| 369 | <Member Name="Console"> |
| 370 | <Annotation Term="OData.Description" String="Log alert."/> |
| 371 | </Member> |
| 372 | <Member Name="SolarisCron"> |
| 373 | <Annotation Term="OData.Description" String="Scheduling daemon."/> |
| 374 | </Member> |
| 375 | <Member Name="Local0"> |
| 376 | <Annotation Term="OData.Description" String="Locally used facility 0."/> |
| 377 | </Member> |
| 378 | <Member Name="Local1"> |
| 379 | <Annotation Term="OData.Description" String="Locally used facility 1."/> |
| 380 | </Member> |
| 381 | <Member Name="Local2"> |
| 382 | <Annotation Term="OData.Description" String="Locally used facility 2."/> |
| 383 | </Member> |
| 384 | <Member Name="Local3"> |
| 385 | <Annotation Term="OData.Description" String="Locally used facility 3."/> |
| 386 | </Member> |
| 387 | <Member Name="Local4"> |
| 388 | <Annotation Term="OData.Description" String="Locally used facility 4."/> |
| 389 | </Member> |
| 390 | <Member Name="Local5"> |
| 391 | <Annotation Term="OData.Description" String="Locally used facility 5."/> |
| 392 | </Member> |
| 393 | <Member Name="Local6"> |
| 394 | <Annotation Term="OData.Description" String="Locally used facility 6."/> |
| 395 | </Member> |
| 396 | <Member Name="Local7"> |
| 397 | <Annotation Term="OData.Description" String="Locally used facility 7."/> |
| 398 | </Member> |
| 399 | </EnumType> |
| 400 | |
| 401 | <EnumType Name="LogDiagnosticDataTypes"> |
| 402 | <Member Name="Manager"> |
| 403 | <Annotation Term="OData.Description" String="Manager diagnostic data."/> |
| 404 | </Member> |
| 405 | <Member Name="PreOS"> |
| 406 | <Annotation Term="OData.Description" String="Pre-OS diagnostic data."/> |
| 407 | </Member> |
| 408 | <Member Name="OS"> |
| 409 | <Annotation Term="OData.Description" String="Operating system (OS) diagnostic data."/> |
| 410 | </Member> |
| 411 | <Member Name="OEM"> |
| 412 | <Annotation Term="OData.Description" String="OEM diagnostic data."/> |
| 413 | </Member> |
| 414 | </EnumType> |
| 415 | </Schema> |
| 416 | |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 417 | </edmx:DataServices> |
| 418 | </edmx:Edmx> |