blob: 15c03970667b4398f88f2aef61c54f8d98310600 [file] [log] [blame]
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Ed Tanouscb103132019-10-08 11:34:22 -07004<!--# Redfish Schema: Privileges v1.0.5 -->
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +02005<!--# -->
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 Millsa778c022020-05-12 12:20:36 -05008<!--# Copyright 2014-2020 DMTF. -->
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +02009<!--# 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://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
18 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
19 </edmx:Reference>
20
21 <edmx:DataServices>
22
23 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Privileges">
24 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
25
26 <EnumType Name="PrivilegeType">
27 <Member Name="Login">
Ed Tanouscb103132019-10-08 11:34:22 -070028 <Annotation Term="OData.Description" String="Can log in to the service and read Resources."/>
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +020029 </Member>
30 <Member Name="ConfigureManager">
Ed Tanouscb103132019-10-08 11:34:22 -070031 <Annotation Term="OData.Description" String="Can configure managers."/>
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +020032 </Member>
33 <Member Name="ConfigureUsers">
Ed Tanouscb103132019-10-08 11:34:22 -070034 <Annotation Term="OData.Description" String="Can configure users and their accounts."/>
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +020035 </Member>
36 <Member Name="ConfigureSelf">
Gunnar Mills6f44b752020-02-06 16:50:51 -060037 <Annotation Term="OData.Description" String="Can change the password for the current user account and log out of their own sessions."/>
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +020038 </Member>
39 <Member Name="ConfigureComponents">
Ed Tanouscb103132019-10-08 11:34:22 -070040 <Annotation Term="OData.Description" String="Can configure components that this service manages."/>
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +020041 </Member>
Gunnar Mills6f44b752020-02-06 16:50:51 -060042 <Member Name="NoAuth">
43 <Annotation Term="OData.Description" String="Authentication is not required."/>
44 <Annotation Term="OData.LongDescription" String="This value shall be used to indicate an operation does not require authentication. This privilege shall not be used in Redfish Roles."/>
45 </Member>
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +020046 </EnumType>
47
48 </Schema>
49
50 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Privileges.v1_0_0">
51 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060052 <Annotation Term="Redfish.Release" String="1.0"/>
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +020053
54 <Term Name="OemGetPrivileges" Type="Collection(Edm.String)" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -070055 <Annotation Term="OData.Description" String="The OEM GET operations privileges may be defined on a Link element to provide read privileges for the linked Resources, or on an individual element to override the privileges for that element."/>
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +020056 </Term>
57 <Term Name="OemPostPrivileges" Type="Collection(Edm.String)" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -070058 <Annotation Term="OData.Description" String="The OEM POST privileges may be defined on a Link element to provide create privileges for the linked Resources, or on an individual element to override the privileges for that element."/>
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +020059 </Term>
60 <Term Name="OemPatchPutPrivileges" Type="Collection(Edm.String)" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -070061 <Annotation Term="OData.Description" String="OEM PatchPut privileges may be defined on a Link element to provide update privileges for the linked Resources, or on an individual element to override the privileges for that element."/>
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +020062 </Term>
63 <Term Name="OemDeletePrivileges" Type="Collection(Edm.String)" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -070064 <Annotation Term="OData.Description" String="OEM Delete privileges may be defined on a Link element to provide update privileges for the linked Resources, or on an individual element to override the privileges for that element."/>
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +020065 </Term>
66
67 </Schema>
68
69 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Privileges.v1_0_2">
70 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -070071 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +020072 </Schema>
73
74 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Privileges.v1_0_3">
75 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -070076 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +020077 </Schema>
78
79 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Privileges.v1_0_4">
80 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -070081 <Annotation Term="OData.Description" String="This version deprecates the versioned PrivilegeType definition to use an unversioned definition."/>
82 </Schema>
83
84 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Privileges.v1_0_5">
85 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
86 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +020087 </Schema>
88
89 </edmx:DataServices>
90</edmx:Edmx>