blob: 9216abe730f934563aa90f1a9f4101fef8da498c [file] [log] [blame]
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Ed Tanouscb103132019-10-08 11:34:22 -07004<!--# Redfish Schema: Certificate v1.1.1 -->
Marri Devender Raod45d2d02019-01-21 10:11:34 -06005<!--# -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle, -->
7<!--# available at http://www.dmtf.org/standards/redfish -->
Ed Tanouscb103132019-10-08 11:34:22 -07008<!--# Copyright 2014-2019 DMTF. -->
Marri Devender Raod45d2d02019-01-21 10:11:34 -06009<!--# 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/Resource_v1.xml">
21 <edmx:Include Namespace="Resource.v1_0_0"/>
22 </edmx:Reference>
23 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
24 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
25 </edmx:Reference>
26
27 <edmx:DataServices>
28
29 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Certificate">
30 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
31
32 <EntityType Name="Certificate" BaseType="Resource.v1_0_0.Resource" Abstract="true">
Ed Tanouscb103132019-10-08 11:34:22 -070033 <Annotation Term="OData.Description" String="The Certificate schema describes a certificate that proves the identify of a component, account, or service."/>
34 <Annotation Term="OData.LongDescription" String="This Resource contains a certificate for a Redfish implementation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060035 <Annotation Term="Capabilities.InsertRestrictions">
36 <Record>
37 <PropertyValue Property="Insertable" Bool="false"/>
38 </Record>
39 </Annotation>
40 <Annotation Term="Capabilities.UpdateRestrictions">
41 <Record>
42 <PropertyValue Property="Updatable" Bool="false"/>
43 </Record>
44 </Annotation>
45 <Annotation Term="Capabilities.DeleteRestrictions">
46 <Record>
47 <PropertyValue Property="Deletable" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -070048 <Annotation Term="OData.Description" String="Use the DELETE operation to remove certificates."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060049 </Record>
50 </Annotation>
51 <Annotation Term="Redfish.Uris">
52 <Collection>
53 <String>/redfish/v1/AccountService/Accounts/{ManagerAccountId}/Certificates/{CertificateId}</String>
54 <String>/redfish/v1/AccountService/ActiveDirectory/Certificates/{CertificateId}</String>
55 <String>/redfish/v1/AccountService/LDAP/Certificates/{CertificateId}</String>
56 <String>/redfish/v1/AccountService/ExternalAccountProviders/{ExternalAccountProviderId}/Certificates/{CertificateId}</String>
57 <String>/redfish/v1/Managers/{ManagerId}/RemoteAccountService/Accounts/{ManagerAccountId}/Certificates/{CertificateId}</String>
58 <String>/redfish/v1/Managers/{ManagerId}/RemoteAccountService/ActiveDirectory/Certificates/{CertificateId}</String>
59 <String>/redfish/v1/Managers/{ManagerId}/RemoteAccountService/LDAP/Certificates/{CertificateId}</String>
60 <String>/redfish/v1/Managers/{ManagerId}/RemoteAccountService/ExternalAccountProviders/{ExternalAccountProviderId}/Certificates/{CertificateId}</String>
61 <String>/redfish/v1/Managers/{ManagerId}/NetworkProtocol/HTTPS/Certificates/{CertificateId}</String>
Ed Tanouscb103132019-10-08 11:34:22 -070062 <String>/redfish/v1/Systems/{ComputerSystemId}/Boot/Certificates/{CertificateId}</String>
63 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Boot/Certificates/{CertificateId}</String>
64 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Boot/Certificates/{CertificateId}</String>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060065 </Collection>
66 </Annotation>
67 </EntityType>
68
69 <EnumType Name="CertificateType">
70 <Member Name="PEM">
Ed Tanouscb103132019-10-08 11:34:22 -070071 <Annotation Term="OData.Description" String="A Privacy Enhanced Mail (PEM)-encoded certificate."/>
72 <Annotation Term="OData.LongDescription" String="The format of the certificate shall contain a Privacy Enhanced Mail (PEM)-encoded string, containing RFC5280-defined structures."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060073 </Member>
74 <Member Name="PKCS7">
Ed Tanouscb103132019-10-08 11:34:22 -070075 <Annotation Term="OData.Description" String="A Privacy Enhanced Mail (PEM)-encoded PKCS7 certificate."/>
76 <Annotation Term="OData.LongDescription" String="The format of the certificate shall contain a Privacy Enhanced Mail (PEM)-encoded string, containing RFC5280- and RFC2315-defined structures. The Service may discard additional certificates or other data in the structure."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060077 </Member>
78 </EnumType>
79
80 <EnumType Name="KeyUsage">
81 <Annotation Term="OData.Description" String="The usages of a key contained within a certificate."/>
Ed Tanouscb103132019-10-08 11:34:22 -070082 <Annotation Term="OData.LongDescription" String="This type shall describe the usages of a key within a certificate, as specified by the 'Key Usage' and 'Extended Key Usage' definitions in RFC5280."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060083 <Member Name="DigitalSignature">
Ed Tanouscb103132019-10-08 11:34:22 -070084 <Annotation Term="OData.Description" String="Verifies digital signatures, other than signatures on certificates and CRLs."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060085 </Member>
86 <Member Name="NonRepudiation">
Ed Tanouscb103132019-10-08 11:34:22 -070087 <Annotation Term="OData.Description" String="Verifies digital signatures, other than signatures on certificates and CRLs, and provides a non-repudiation service that protects against the signing entity falsely denying some action."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060088 </Member>
89 <Member Name="KeyEncipherment">
Ed Tanouscb103132019-10-08 11:34:22 -070090 <Annotation Term="OData.Description" String="Enciphers private or secret keys."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060091 </Member>
92 <Member Name="DataEncipherment">
Ed Tanouscb103132019-10-08 11:34:22 -070093 <Annotation Term="OData.Description" String="Directly enciphers raw user data without an intermediate symmetric cipher."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060094 </Member>
95 <Member Name="KeyAgreement">
Ed Tanouscb103132019-10-08 11:34:22 -070096 <Annotation Term="OData.Description" String="Key agreement."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060097 </Member>
98 <Member Name="KeyCertSign">
Ed Tanouscb103132019-10-08 11:34:22 -070099 <Annotation Term="OData.Description" String="Verifies signatures on public key certificates."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600100 </Member>
101 <Member Name="CRLSigning">
Ed Tanouscb103132019-10-08 11:34:22 -0700102 <Annotation Term="OData.Description" String="Verifies signatures on certificate revocation lists (CLRs)."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600103 </Member>
104 <Member Name="EncipherOnly">
Ed Tanouscb103132019-10-08 11:34:22 -0700105 <Annotation Term="OData.Description" String="Enciphers data while performing a key agreement."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600106 </Member>
107 <Member Name="DecipherOnly">
Ed Tanouscb103132019-10-08 11:34:22 -0700108 <Annotation Term="OData.Description" String="Deciphers data while performing a key agreement."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600109 </Member>
110 <Member Name="ServerAuthentication">
Ed Tanouscb103132019-10-08 11:34:22 -0700111 <Annotation Term="OData.Description" String="TLS WWW server authentication."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600112 </Member>
113 <Member Name="ClientAuthentication">
Ed Tanouscb103132019-10-08 11:34:22 -0700114 <Annotation Term="OData.Description" String="TLS WWW client authentication."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600115 </Member>
116 <Member Name="CodeSigning">
Ed Tanouscb103132019-10-08 11:34:22 -0700117 <Annotation Term="OData.Description" String="Signs downloadable executable code."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600118 </Member>
119 <Member Name="EmailProtection">
Ed Tanouscb103132019-10-08 11:34:22 -0700120 <Annotation Term="OData.Description" String="Email protection."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600121 </Member>
122 <Member Name="Timestamping">
Ed Tanouscb103132019-10-08 11:34:22 -0700123 <Annotation Term="OData.Description" String="Binds the hash of an object to a time."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600124 </Member>
125 <Member Name="OCSPSigning">
Ed Tanouscb103132019-10-08 11:34:22 -0700126 <Annotation Term="OData.Description" String="Signs OCSP responses."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600127 </Member>
128 </EnumType>
Ed Tanouscb103132019-10-08 11:34:22 -0700129
130 <Action Name="Rekey" IsBound="true">
131 <Parameter Name="Certificate" Type="Certificate.v1_0_0.Actions"/>
132 <Parameter Name="KeyPairAlgorithm" Type="Edm.String">
133 <Annotation Term="OData.Description" String="The type of key-pair for use with signing algorithms."/>
134 <Annotation Term="OData.LongDescription" String="This parameter shall contain the type of key-pair for use with signing algorithms. The allowable values for this parameter shall be the strings in the 'Algorithm Name' field of the 'TPM_ALG_ID Constants' table within the 'Trusted Computing Group Algorithm Registry'."/>
135 </Parameter>
136 <Parameter Name="KeyBitLength" Type="Edm.Int64">
137 <Annotation Term="OData.Description" String="The length of the key, in bits, if needed based on the KeyPairAlgorithm parameter value."/>
138 <Annotation Term="OData.LongDescription" String="This parameter shall contain the length of the key, in bits, if needed based on the KeyPairAlgorithm parameter value."/>
139 </Parameter>
140 <Parameter Name="KeyCurveId" Type="Edm.String">
141 <Annotation Term="OData.Description" String="The curve ID to use with the key, if needed based on the KeyPairAlgorithm parameter value."/>
142 <Annotation Term="OData.LongDescription" String="This parameter shall contain the curve ID to use with the key, if needed based on the KeyPairAlgorithm parameter value. The allowable values for this parameter shall be the strings in the 'Name' field of the 'TPM_ECC_CURVE Constants' table within the 'Trusted Computing Group Algorithm Registry'."/>
143 </Parameter>
144 <Parameter Name="ChallengePassword" Type="Edm.String">
145 <Annotation Term="OData.Description" String="The challenge password to apply to the certificate for revocation requests."/>
146 <Annotation Term="OData.LongDescription" String="This property shall contain the challenge password to apply to the certificate for revocation requests as defined by the RFC2985 'challengePassword' attribute."/>
147 </Parameter>
148 <ReturnType Type="Certificate.v1_1_0.RekeyResponse" Nullable="false"/>
149 <Annotation Term="OData.Description" String="This action generates a new key-pair for a certificate and produces a certificate signing request."/>
150 <Annotation Term="OData.LongDescription" String="This action shall use the certificate data to generate a new key-pair for a certificate. The response shall contain a signing request that a certificate authority (CA) must sign. The Service should retain the private key that generated this request for installation of the certificate. The private key should not be part of the response. The private key should not be part of the response."/>
151 <Annotation Term="Redfish.Revisions">
152 <Collection>
153 <Record>
154 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
155 <PropertyValue Property="Version" String="v1_1_0"/>
156 </Record>
157 </Collection>
158 </Annotation>
159 </Action>
160
161 <Action Name="Renew" IsBound="true">
162 <Parameter Name="Certificate" Type="Certificate.v1_0_0.Actions"/>
163 <Parameter Name="ChallengePassword" Type="Edm.String">
164 <Annotation Term="OData.Description" String="The challenge password to apply to the certificate for revocation requests."/>
165 <Annotation Term="OData.LongDescription" String="This property shall contain the challenge password to apply to the certificate for revocation requests as defined by the RFC2985 'challengePassword' attribute."/>
166 </Parameter>
167 <ReturnType Type="Certificate.v1_1_0.RenewResponse" Nullable="false"/>
168 <Annotation Term="OData.Description" String="This action generates a certificate signing request by using the existing information and key-pair of the certificate."/>
169 <Annotation Term="OData.LongDescription" String="This action shall generate a certificate signing request using the existing information and key-pair of the certificate. The response shall contain a signing request that a certificate authority (CA) must sign. The Service should retain the private key that this request generates for when the certificate is installed. The private key should not be part of the response."/>
170 <Annotation Term="Redfish.Revisions">
171 <Collection>
172 <Record>
173 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
174 <PropertyValue Property="Version" String="v1_1_0"/>
175 </Record>
176 </Collection>
177 </Annotation>
178 </Action>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600179 </Schema>
180
181 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Certificate.v1_0_0">
182 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
183 <Annotation Term="Redfish.Release" String="2018.3"/>
184
185 <EntityType Name="Certificate" BaseType="Certificate.Certificate">
186 <Property Name="CertificateString" Type="Edm.String">
187 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
188 <Annotation Term="OData.Description" String="The string for the certificate."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700189 <Annotation Term="OData.LongDescription" String="This property shall contain the certificate, and the format shall follow the requirements specified by the CertificateType property value. If the certificate contains any private keys, they shall be removed from the string in responses. If the service does not know the private key for the certificate and is needed to use the certificate, the client shall provide the private key as part of the string in the POST request."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600190 <Annotation Term="Redfish.RequiredOnCreate"/>
191 </Property>
192 <Property Name="CertificateType" Type="Certificate.CertificateType">
193 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
194 <Annotation Term="OData.Description" String="The format of the certificate."/>
195 <Annotation Term="OData.LongDescription" String="This property shall contain the format type for the certificate."/>
196 <Annotation Term="Redfish.RequiredOnCreate"/>
197 </Property>
198 <Property Name="Issuer" Type="Certificate.v1_0_0.Identifier" Nullable="false">
199 <Annotation Term="OData.Description" String="The issuer of the certificate."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700200 <Annotation Term="OData.LongDescription" String="This property shall contain an object containing information about the issuer of the certificate."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600201 </Property>
202 <Property Name="Subject" Type="Certificate.v1_0_0.Identifier" Nullable="false">
203 <Annotation Term="OData.Description" String="The subject of the certificate."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700204 <Annotation Term="OData.LongDescription" String="This property shall contain an object containing information about the subject of the certificate."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600205 </Property>
206 <Property Name="ValidNotBefore" Type="Edm.DateTimeOffset" Nullable="false">
207 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
208 <Annotation Term="OData.Description" String="The date when the certificate becomes valid."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700209 <Annotation Term="OData.LongDescription" String="This property shall contain the date when the certificate validity period begins."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600210 </Property>
211 <Property Name="ValidNotAfter" Type="Edm.DateTimeOffset" Nullable="false">
212 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
213 <Annotation Term="OData.Description" String="The date when the certificate is no longer valid."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700214 <Annotation Term="OData.LongDescription" String="This property shall contain the date when the certificate validity period ends."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600215 </Property>
216 <Property Name="KeyUsage" Type="Collection(Certificate.KeyUsage)">
217 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700218 <Annotation Term="OData.Description" String="The key usage extension, which defines the purpose of the public keys in this certificate."/>
219 <Annotation Term="OData.LongDescription" String="This property shall contain the key usage extension, which defines the purpose of the public keys in this certificate."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600220 </Property>
221
222 <Property Name="Actions" Type="Certificate.v1_0_0.Actions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700223 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
224 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600225 </Property>
226 </EntityType>
227
228 <ComplexType Name="Identifier">
229 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
230 <Annotation Term="OData.Description" String="The identifier information about a certificate."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700231 <Annotation Term="OData.LongDescription" String="This type shall contain the properties that identifies the issuer or subject of a certificate."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600232 <Property Name="CommonName" Type="Edm.String" Nullable="false">
233 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
234 <Annotation Term="OData.Description" String="The fully qualified domain name of the entity."/>
235 <Annotation Term="OData.LongDescription" String="This property shall contain the fully qualified domain name of the entity."/>
236 </Property>
237 <Property Name="Organization" Type="Edm.String" Nullable="false">
238 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
239 <Annotation Term="OData.Description" String="The name of the organization of the entity."/>
240 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the organization of the entity."/>
241 </Property>
242 <Property Name="OrganizationalUnit" Type="Edm.String" Nullable="false">
243 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
244 <Annotation Term="OData.Description" String="The name of the unit or division of the organization of the entity."/>
245 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the unit or division of the organization of the entity."/>
246 </Property>
247 <Property Name="City" Type="Edm.String" Nullable="false">
248 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
249 <Annotation Term="OData.Description" String="The city or locality of the organization of the entity."/>
250 <Annotation Term="OData.LongDescription" String="This property shall contain the city or locality of the organization of the entity."/>
251 </Property>
252 <Property Name="State" Type="Edm.String" Nullable="false">
253 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
254 <Annotation Term="OData.Description" String="The state, province, or region of the organization of the entity."/>
255 <Annotation Term="OData.LongDescription" String="This property shall contain the state, province, or region of the organization of the entity."/>
256 </Property>
257 <Property Name="Country" Type="Edm.String" Nullable="false">
258 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
259 <Annotation Term="OData.Description" String="The country of the organization of the entity."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700260 <Annotation Term="OData.LongDescription" String="This property shall contain the two-letter ISO code for the country of the organization of the entity."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600261 </Property>
262 <Property Name="Email" Type="Edm.String">
263 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
264 <Annotation Term="OData.Description" String="The email address of the contact within the organization of the entity."/>
265 <Annotation Term="OData.LongDescription" String="This property shall contain the email address of the contact within the organization of the entity."/>
266 </Property>
267 </ComplexType>
268
269 <ComplexType Name="Actions">
270 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700271 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
272 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600273 <Property Name="Oem" Type="Certificate.v1_0_0.OemActions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700274 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
275 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600276 </Property>
277 </ComplexType>
278
279 <ComplexType Name="OemActions">
280 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700281 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
282 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this Resource."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600283 </ComplexType>
284 </Schema>
285
Ed Tanouscb103132019-10-08 11:34:22 -0700286 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Certificate.v1_0_1">
287 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
288 <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."/>
289 <EntityType Name="Certificate" BaseType="Certificate.v1_0_0.Certificate"/>
290 </Schema>
291
292 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Certificate.v1_0_2">
293 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
294 <Annotation Term="OData.Description" String="This version was created to update the CertificateString description. It was also created to update descriptions that this schema defines."/>
295 <EntityType Name="Certificate" BaseType="Certificate.v1_0_1.Certificate"/>
296 </Schema>
297
298 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Certificate.v1_1_0">
299 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
300 <Annotation Term="Redfish.Release" String="2019.1"/>
301 <Annotation Term="OData.Description" String="This version was created to add the Renew and Rekey actions."/>
302 <EntityType Name="Certificate" BaseType="Certificate.v1_0_1.Certificate"/>
303
304 <ComplexType Name="RekeyResponse">
305 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
306 <Annotation Term="OData.Description" String="The response body for the Rekey action."/>
307 <Annotation Term="OData.LongDescription" String="This type shall contain the properties found in the response body for the Rekey action."/>
308 <NavigationProperty Name="Certificate" Type="Certificate.Certificate" Nullable="false">
309 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
310 <Annotation Term="OData.Description" String="The link to the certificate being rekeyed."/>
311 <Annotation Term="OData.LongDescription" String="This property shall contain the URI of the Certificate Resource that is replaced after the certificate authority (CA) signs the certificate."/>
312 <Annotation Term="Redfish.Required"/>
313 </NavigationProperty>
314 <Property Name="CSRString" Type="Edm.String" Nullable="false">
315 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
316 <Annotation Term="OData.Description" String="The string for the certificate signing request."/>
317 <Annotation Term="OData.LongDescription" String="This property shall contain the certificate signing request as a PEM-encoded string, containing structures specified by RFC2986. The private key should not be part of the string."/>
318 <Annotation Term="Redfish.Required"/>
319 </Property>
320 </ComplexType>
321
322 <ComplexType Name="RenewResponse">
323 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
324 <Annotation Term="OData.Description" String="The response body for the Renew action."/>
325 <Annotation Term="OData.LongDescription" String="This type shall contain the properties found in the response body for the Renew action."/>
326 <NavigationProperty Name="Certificate" Type="Certificate.Certificate" Nullable="false">
327 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
328 <Annotation Term="OData.Description" String="The link to the certificate being renewed."/>
329 <Annotation Term="OData.LongDescription" String="This property shall contain the URI of the Certificate Resource that is replaced after the certificate authority (CA) signs the certificate."/>
330 <Annotation Term="Redfish.Required"/>
331 </NavigationProperty>
332 <Property Name="CSRString" Type="Edm.String" Nullable="false">
333 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
334 <Annotation Term="OData.Description" String="The string for the certificate signing request."/>
335 <Annotation Term="OData.LongDescription" String="This property shall contain the certificate signing request as a PEM-encoded string, containing structures specified by RFC2986. The private key should not be part of the string."/>
336 <Annotation Term="Redfish.Required"/>
337 </Property>
338 </ComplexType>
339 </Schema>
340
341 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Certificate.v1_1_1">
342 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
343 <Annotation Term="OData.Description" String="This version was created to update the CertificateString description. It was also created to update descriptions that this schema defines."/>
344 <EntityType Name="Certificate" BaseType="Certificate.v1_1_0.Certificate"/>
345 </Schema>
346
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600347 </edmx:DataServices>
348</edmx:Edmx>