1<?xml version="1.0" encoding="UTF-8"?> 2<!----> 3<!--################################################################################ --> 4<!--# Redfish Schema: ExternalAccountProvider v1.8.0 --> 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 --> 8<!--# Copyright 2014-2024 DMTF. --> 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/CertificateCollection_v1.xml"> 29 <edmx:Include Namespace="CertificateCollection"/> 30 </edmx:Reference> 31 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/AccountService_v1.xml"> 32 <edmx:Include Namespace="AccountService"/> 33 </edmx:Reference> 34 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/ManagerAccount_v1.xml"> 35 <edmx:Include Namespace="ManagerAccount"/> 36 </edmx:Reference> 37 38 <edmx:DataServices> 39 40 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider"> 41 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 42 <Annotation Term="Redfish.Language" String="en"/> 43 44 <EntityType Name="ExternalAccountProvider" BaseType="Resource.v1_0_0.Resource" Abstract="true"> 45 <Annotation Term="OData.Description" String="The `ExternalAccountProvider` schema represents a remote service that provides accounts for this manager to use for authentication."/> 46 <Annotation Term="OData.LongDescription" String="This resource shall represent a remote authentication service in the Redfish Specification."/> 47 <Annotation Term="Capabilities.InsertRestrictions"> 48 <Record> 49 <PropertyValue Property="Insertable" Bool="false"/> 50 </Record> 51 </Annotation> 52 <Annotation Term="Capabilities.UpdateRestrictions"> 53 <Record> 54 <PropertyValue Property="Updatable" Bool="true"/> 55 <Annotation Term="OData.Description" String="Any writable properties, such as `Authentication`, can be updated for external account providers."/> 56 </Record> 57 </Annotation> 58 <Annotation Term="Capabilities.DeleteRestrictions"> 59 <Record> 60 <PropertyValue Property="Deletable" Bool="true"/> 61 <Annotation Term="OData.Description" String="The external account providers can be deleted."/> 62 </Record> 63 </Annotation> 64 <Annotation Term="Redfish.Uris"> 65 <Collection> 66 <String>/redfish/v1/AccountService/ExternalAccountProviders/{ExternalAccountProviderId}</String> 67 <String>/redfish/v1/Managers/{ManagerId}/RemoteAccountService/ExternalAccountProviders/{ExternalAccountProviderId}</String> 68 </Collection> 69 </Annotation> 70 </EntityType> 71 </Schema> 72 73 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_0_0"> 74 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 75 <Annotation Term="Redfish.Release" String="2018.1"/> 76 77 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.ExternalAccountProvider"> 78 <Property Name="AccountProviderType" Type="ExternalAccountProvider.v1_0_0.AccountProviderTypes"> 79 <Annotation Term="Redfish.RequiredOnCreate"/> 80 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 81 <Annotation Term="OData.Description" String="The type of external account provider to which this service connects."/> 82 <Annotation Term="OData.LongDescription" String="This property shall contain the type of external account provider to which this service connects."/> 83 </Property> 84 <Property Name="ServiceEnabled" Type="Edm.Boolean"> 85 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 86 <Annotation Term="OData.Description" String="An indication of whether this service is enabled."/> 87 <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service is enabled."/> 88 </Property> 89 <Property Name="ServiceAddresses" Type="Collection(Edm.String)"> 90 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 91 <Annotation Term="OData.Description" String="The addresses of the user account providers to which this external account provider links. The format of this field depends on the type of external account provider."/> 92 <Annotation Term="OData.LongDescription" String="This property shall contain the addresses of the account providers to which this external account provider links. The format of this field depends on the type of external account provider. Each item in the array shall contain a single address. Services can define their own behavior for managing multiple addresses."/> 93 </Property> 94 <Property Name="Authentication" Type="ExternalAccountProvider.v1_0_0.Authentication" Nullable="false"> 95 <Annotation Term="OData.Description" String="The authentication information for the external account provider."/> 96 <Annotation Term="OData.LongDescription" String="This property shall contain the authentication information for the external account provider."/> 97 </Property> 98 <Property Name="LDAPService" Type="ExternalAccountProvider.v1_0_0.LDAPService" Nullable="false"> 99 <Annotation Term="OData.Description" String="The additional mapping information needed to parse a generic LDAP service."/> 100 <Annotation Term="OData.LongDescription" String="This property shall contain any additional mapping information needed to parse a generic LDAP service. This property should only be present if `AccountProviderType` is `LDAPService`."/> 101 </Property> 102 <Property Name="RemoteRoleMapping" Type="Collection(ExternalAccountProvider.v1_0_0.RoleMapping)"> 103 <Annotation Term="OData.Description" String="The mapping rules to convert the external account providers account information to the local Redfish role."/> 104 <Annotation Term="OData.LongDescription" String="This property shall contain a set of the mapping rules that are used to convert the external account providers account information to the local Redfish role."/> 105 </Property> 106 <Property Name="Links" Type="ExternalAccountProvider.v1_0_0.Links" Nullable="false"> 107 <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/> 108 <Annotation Term="OData.LongDescription" String="This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/> 109 </Property> 110 <Property Name="Actions" Type="ExternalAccountProvider.v1_0_0.Actions" Nullable="false"> 111 <Annotation Term="OData.Description" String="The available actions for this resource."/> 112 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/> 113 </Property> 114 </EntityType> 115 116 <EnumType Name="AccountProviderTypes"> 117 <Member Name="RedfishService"> 118 <Annotation Term="OData.Description" String="An external Redfish service."/> 119 <Annotation Term="OData.LongDescription" String="The external account provider shall be a DMTF Redfish Specification-conformant service. The `ServiceAddresses` property shall contain URIs to `AccountService` resources that correspond to Redfish services. For example, `https://192.168.1.50/redfish/v1/AccountService`."/> 120 </Member> 121 <Member Name="ActiveDirectoryService"> 122 <Annotation Term="OData.Description" String="An external Active Directory service."/> 123 <Annotation Term="OData.LongDescription" String="The external account provider shall be a Microsoft Active Directory Technical Specification-conformant service. The `ServiceAddresses` property shall contain fully qualified domain names (FQDN) or NetBIOS names that link to the domain servers for the Active Directory service."/> 124 </Member> 125 <Member Name="LDAPService"> 126 <Annotation Term="OData.Description" String="A generic external LDAP service."/> 127 <Annotation Term="OData.LongDescription" String="The external account provider shall be an RFC4511-conformant service. The `ServiceAddresses` property shall contain RFC3986-defined URIs in the format `scheme://host:port`, where `scheme://` and `:port` are optional, that link to the LDAP servers for the service. If the scheme is not specified, services shall assume it is `ldaps://`. If the port is not specified, services shall assume it is `636`. For example, `ldaps://contoso.com:636` or `contoso.com`."/> 128 </Member> 129 <Member Name="OEM"> 130 <Annotation Term="OData.Description" String="An OEM-specific external authentication or directory service."/> 131 </Member> 132 <Member Name="TACACSplus"> 133 <Annotation Term="OData.Description" String="An external TACACS+ service."/> 134 <Annotation Term="OData.LongDescription" String="The external account provider shall be an RFC8907-conformant service. The `ServiceAddresses` property shall contain RFC3986-defined URIs in the format `host:port` that correspond to the TACACS+ services."/> 135 <Annotation Term="Redfish.Revisions"> 136 <Collection> 137 <Record> 138 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 139 <PropertyValue Property="Version" String="v1_3_0"/> 140 </Record> 141 </Collection> 142 </Annotation> 143 </Member> 144 <Member Name="OAuth2"> 145 <Annotation Term="OData.Description" String="An external OAuth 2.0 service."/> 146 <Annotation Term="OData.LongDescription" String="The external account provider shall be an RFC6749-conformant service. The `ServiceAddresses` property shall contain RFC3986-defined URIs that correspond to the RFC8414-defined metadata for the OAuth 2.0 service. For example, `https://contoso.org/.well-known/oauth-authorization-server`."/> 147 <Annotation Term="Redfish.Revisions"> 148 <Collection> 149 <Record> 150 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 151 <PropertyValue Property="Version" String="v1_3_0"/> 152 </Record> 153 </Collection> 154 </Annotation> 155 </Member> 156 </EnumType> 157 158 <ComplexType Name="Authentication"> 159 <Annotation Term="OData.Description" String="The information required to authenticate to the external service."/> 160 <Annotation Term="OData.LongDescription" String="This type shall contain the information required to authenticate to the external service."/> 161 <Property Name="AuthenticationType" Type="ExternalAccountProvider.v1_0_0.AuthenticationTypes"> 162 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 163 <Annotation Term="OData.Description" String="The type of authentication used to connect to the external account provider."/> 164 <Annotation Term="OData.LongDescription" String="This property shall contain the type of authentication used to connect to the external account provider."/> 165 </Property> 166 <Property Name="Username" Type="Edm.String" Nullable="false"> 167 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 168 <Annotation Term="OData.Description" String="The username for the service."/> 169 <Annotation Term="OData.LongDescription" String="This property shall contain the username for this service."/> 170 </Property> 171 <Property Name="Password" Type="Edm.String"> 172 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Write"/> 173 <Annotation Term="OData.Description" String="The password for this service. A `PATCH` or `PUT` request writes the password. This property is `null` in responses."/> 174 <Annotation Term="OData.LongDescription" String="This property shall contain the password for this service. A `PATCH` or `PUT` operation writes the password. The value shall be `null` in responses."/> 175 </Property> 176 <Property Name="Token" Type="Edm.String"> 177 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Write"/> 178 <Annotation Term="OData.Description" String="The token for this service. A `PATCH` or `PUT` operation writes the token. This property is `null` in responses."/> 179 <Annotation Term="OData.LongDescription" String="This property shall contain the token for this service. A `PATCH` or `PUT` operation writes the token. The value shall be `null` in responses."/> 180 </Property> 181 <Property Name="KerberosKeytab" Type="Edm.String"> 182 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Write"/> 183 <Annotation Term="OData.Description" String="The Base64-encoded version of the Kerberos keytab for this service. A `PATCH` or `PUT` operation writes the keytab. This property is `null` in responses."/> 184 <Annotation Term="OData.LongDescription" String="This property shall contain a Base64-encoded version of the Kerberos keytab for this service. A `PATCH` or `PUT` operation writes the keytab. The value shall be `null` in responses."/> 185 </Property> 186 <Property Name="Oem" Type="Resource.Oem" Nullable="false"> 187 <Annotation Term="OData.Description" String="The OEM extension property."/> 188 <Annotation Term="OData.LongDescription" String="This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements."/> 189 </Property> 190 </ComplexType> 191 192 <EnumType Name="AuthenticationTypes"> 193 <Member Name="Token"> 194 <Annotation Term="OData.Description" String="An opaque authentication token."/> 195 </Member> 196 <Member Name="KerberosKeytab"> 197 <Annotation Term="OData.Description" String="A Kerberos keytab."/> 198 </Member> 199 <Member Name="UsernameAndPassword"> 200 <Annotation Term="OData.Description" String="A username and password combination."/> 201 </Member> 202 <Member Name="OEM"> 203 <Annotation Term="OData.Description" String="An OEM-specific authentication mechanism."/> 204 </Member> 205 </EnumType> 206 207 <ComplexType Name="LDAPService"> 208 <Annotation Term="OData.Description" String="The settings required to parse a generic LDAP service."/> 209 <Annotation Term="OData.LongDescription" String="This type shall contain all required settings to parse a generic LDAP service."/> 210 <Property Name="SearchSettings" Type="ExternalAccountProvider.v1_0_0.LDAPSearchSettings" Nullable="false"> 211 <Annotation Term="OData.Description" String="The required settings to search an external LDAP service."/> 212 <Annotation Term="OData.LongDescription" String="This property shall contain the required settings to search an external LDAP service."/> 213 </Property> 214 <Property Name="Oem" Type="Resource.Oem" Nullable="false"> 215 <Annotation Term="OData.Description" String="The OEM extension property."/> 216 <Annotation Term="OData.LongDescription" String="This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements."/> 217 </Property> 218 </ComplexType> 219 220 <ComplexType Name="LDAPSearchSettings"> 221 <Annotation Term="OData.Description" String="The settings to search a generic LDAP service."/> 222 <Annotation Term="OData.LongDescription" String="This type shall contain all required settings to search a generic LDAP service."/> 223 <Property Name="BaseDistinguishedNames" Type="Collection(Edm.String)"> 224 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 225 <Annotation Term="OData.Description" String="The base distinguished names to use to search an external LDAP service."/> 226 <Annotation Term="OData.LongDescription" String="This property shall contain an array of base distinguished names to use to search an external LDAP service."/> 227 </Property> 228 <Property Name="UsernameAttribute" Type="Edm.String"> 229 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 230 <Annotation Term="OData.Description" String="The attribute name that contains the LDAP username entry."/> 231 <Annotation Term="OData.LongDescription" String="This property shall contain the attribute name that contains the LDAP username."/> 232 </Property> 233 <Property Name="GroupNameAttribute" Type="Edm.String"> 234 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 235 <Annotation Term="OData.Description" String="The attribute name that contains the LDAP group name entry."/> 236 <Annotation Term="OData.LongDescription" String="This property shall contain the attribute name that contains the LDAP group name."/> 237 </Property> 238 <Property Name="GroupsAttribute" Type="Edm.String"> 239 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 240 <Annotation Term="OData.Description" String="The attribute name that contains the groups for a user on the LDAP user entry."/> 241 <Annotation Term="OData.LongDescription" String="This property shall contain the attribute name that contains the groups for an LDAP user entry."/> 242 </Property> 243 </ComplexType> 244 245 <ComplexType Name="RoleMapping"> 246 <Annotation Term="OData.Description" String="The mapping rules that are used to convert the external account providers account information to the local Redfish role."/> 247 <Annotation Term="OData.LongDescription" String="This type shall contain mapping rules that are used to convert the external account providers account information to the local Redfish role."/> 248 <Property Name="RemoteGroup" Type="Edm.String"> 249 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 250 <Annotation Term="OData.Description" String="The name of the remote group, or the remote role in the case of a Redfish service, that maps to the local Redfish role to which this entity links."/> 251 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the remote group, or the remote role in the case of a Redfish service, that maps to the local Redfish role to which this entity links."/> 252 </Property> 253 <Property Name="RemoteUser" Type="Edm.String"> 254 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 255 <Annotation Term="OData.Description" String="The name of the remote user that maps to the local Redfish role to which this entity links."/> 256 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the remote user that maps to the local Redfish role to which this entity links."/> 257 </Property> 258 <Property Name="LocalRole" Type="Edm.String"> 259 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 260 <Annotation Term="OData.Description" String="The name of the local Redfish role to which to map the remote user or group."/> 261 <Annotation Term="OData.LongDescription" String="This property shall contain the `RoleId` property value within a role resource on this Redfish service to which to map the remote user or group."/> 262 </Property> 263 <Property Name="Oem" Type="Resource.Oem" Nullable="false"> 264 <Annotation Term="OData.Description" String="The OEM extension property."/> 265 <Annotation Term="OData.LongDescription" String="This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements."/> 266 </Property> 267 </ComplexType> 268 269 <ComplexType Name="Links" BaseType="Resource.Links"> 270 <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/> 271 <Annotation Term="OData.LongDescription" String="This Redfish Specification-described type shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/> 272 </ComplexType> 273 274 <ComplexType Name="Actions"> 275 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 276 <Annotation Term="OData.Description" String="The available actions for this resource."/> 277 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/> 278 <Property Name="Oem" Type="ExternalAccountProvider.v1_0_0.OemActions" Nullable="false"> 279 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/> 280 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/> 281 </Property> 282 </ComplexType> 283 284 <ComplexType Name="OemActions"> 285 <Annotation Term="OData.AdditionalProperties" Bool="true"/> 286 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/> 287 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/> 288 </ComplexType> 289 </Schema> 290 291 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_0_1"> 292 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 293 <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."/> 294 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_0_0.ExternalAccountProvider"/> 295 </Schema> 296 297 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_0_2"> 298 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 299 <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, clarifies the `LDAPSearchSettings` property descriptions, and adds a missing term to several properties to disallow them from being `null`."/> 300 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_0_1.ExternalAccountProvider"/> 301 </Schema> 302 303 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_0_3"> 304 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 305 <Annotation Term="OData.Description" String="This version was created to update the descriptions of `Password`, `Token`, and `KerberosKeytab` properties. It was also created to clarify the usage of the `LDAPService` property."/> 306 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_0_2.ExternalAccountProvider"/> 307 </Schema> 308 309 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_0_4"> 310 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 311 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 312 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_0_3.ExternalAccountProvider"/> 313 </Schema> 314 315 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_0_5"> 316 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 317 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 318 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_0_4.ExternalAccountProvider"/> 319 </Schema> 320 321 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_0_6"> 322 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 323 <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/> 324 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_0_5.ExternalAccountProvider"/> 325 </Schema> 326 327 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_0_7"> 328 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 329 <Annotation Term="OData.Description" String="This version was created to clarify the descriptions for the values of `AccountProviderType`. It was also created to expand the `LDAPService` value for `AccountProviderType` to allow for a scheme and port to be specified."/> 330 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_0_6.ExternalAccountProvider"/> 331 </Schema> 332 333 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_0_8"> 334 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 335 <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references. It was also created to correct various typographical errors."/> 336 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_0_7.ExternalAccountProvider"/> 337 </Schema> 338 339 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_1_0"> 340 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 341 <Annotation Term="Redfish.Release" String="2018.3"/> 342 343 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_0_1.ExternalAccountProvider"> 344 <NavigationProperty Name="Certificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false"> 345 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 346 <Annotation Term="OData.Description" String="The link to a collection of certificates that the external account provider uses."/> 347 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type `CertificateCollection` that contains certificates the external account provider uses."/> 348 <Annotation Term="OData.AutoExpandReferences"/> 349 </NavigationProperty> 350 </EntityType> 351 </Schema> 352 353 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_1_1"> 354 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 355 <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, clarifies the `LDAPSearchSettings` property descriptions, and adds a missing term to several properties to disallow them from being `null`."/> 356 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_1_0.ExternalAccountProvider"/> 357 </Schema> 358 359 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_1_2"> 360 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 361 <Annotation Term="OData.Description" String="This version was created to update the descriptions of `Password`, `Token`, and `KerberosKeytab` properties. It was also created to clarify the usage of the `LDAPService` property."/> 362 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_1_1.ExternalAccountProvider"/> 363 </Schema> 364 365 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_1_3"> 366 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 367 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 368 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_1_2.ExternalAccountProvider"/> 369 </Schema> 370 371 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_1_4"> 372 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 373 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 374 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_1_3.ExternalAccountProvider"/> 375 </Schema> 376 377 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_1_5"> 378 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 379 <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/> 380 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_1_4.ExternalAccountProvider"/> 381 </Schema> 382 383 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_1_6"> 384 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 385 <Annotation Term="OData.Description" String="This version was created to clarify the descriptions for the values of `AccountProviderType`. It was also created to expand the `LDAPService` value for `AccountProviderType` to allow for a scheme and port to be specified."/> 386 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_1_5.ExternalAccountProvider"/> 387 </Schema> 388 389 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_1_7"> 390 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 391 <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references. It was also created to correct various typographical errors."/> 392 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_1_6.ExternalAccountProvider"/> 393 </Schema> 394 395 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_2_0"> 396 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 397 <Annotation Term="Redfish.Release" String="2020.4"/> 398 <Annotation Term="OData.Description" String="This version was created to add TACACS+ support."/> 399 400 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_1_4.ExternalAccountProvider"> 401 <Property Name="TACACSplusService" Type="ExternalAccountProvider.v1_2_0.TACACSplusService"> 402 <Annotation Term="OData.Description" String="The additional information needed to parse a TACACS+ services."/> 403 <Annotation Term="OData.LongDescription" String="This property shall contain additional information needed to parse a TACACS+ services. This property should only be present inside a `TACACSplus` property."/> 404 </Property> 405 <Property Name="Priority" Type="Edm.Int64"> 406 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 407 <Annotation Term="OData.Description" String="The authentication priority for the external account provider."/> 408 <Annotation Term="OData.LongDescription" String="This property shall contain the assigned priority for the specified external account provider. The value `0` shall indicate the highest priority. Increasing values shall represent decreasing priority. If an external provider does not have a priority assignment or two or more external providers have the same priority, the behavior shall be determined by the Redfish service. The priority is used to determine the order of authentication and authorization for each external account provider."/> 409 <Annotation Term="Validation.Minimum" Int="0"/> 410 </Property> 411 </EntityType> 412 413 <ComplexType Name="Authentication" BaseType="ExternalAccountProvider.v1_0_0.Authentication"> 414 <Property Name="EncryptionKey" Type="Edm.String"> 415 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Write"/> 416 <Annotation Term="OData.Description" String="Specifies the encryption key."/> 417 <Annotation Term="OData.LongDescription" String="This property shall contain the value of a symmetric encryption key for account services that support some form of encryption, obfuscation, or authentication such as TACACS+. The value shall be `null` in responses. The property shall accept a hexadecimal string whose length depends on the external account service, such as TACACS+. A TACACS+ service shall use this property to specify the secret key as defined in RFC8907."/> 418 <Annotation Term="Validation.Pattern" String="^[0-9a-fA-F]+$"/> 419 </Property> 420 <Property Name="EncryptionKeySet" Type="Edm.Boolean"> 421 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 422 <Annotation Term="OData.Description" String="Indicates if the `EncryptionKey` property is set."/> 423 <Annotation Term="OData.LongDescription" String="This property shall contain `true` if a valid value was provided for the `EncryptionKey` property. Otherwise, the property shall contain `false`. For a TACACS+ service, the value `false` shall indicate data obfuscation, as defined in section 4.5 of RFC8907, is disabled."/> 424 </Property> 425 </ComplexType> 426 427 <ComplexType Name="TACACSplusService"> 428 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 429 <Annotation Term="OData.Description" String="Various settings to parse a TACACS+ service."/> 430 <Annotation Term="OData.LongDescription" String="This type shall contain settings for parsing a TACACS+ service."/> 431 <Property Name="PrivilegeLevelArgument" Type="Edm.String"> 432 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 433 <Annotation Term="OData.Description" String="Indicates the name of the TACACS+ argument name in an authorization request."/> 434 <Annotation Term="OData.LongDescription" String="This property shall specify the name of the argument in a TACACS+ Authorization REPLY packet body, as defined in RFC8907, that contains the user's privilege level."/> 435 </Property> 436 <Property Name="PasswordExchangeProtocols" Type="Collection(ExternalAccountProvider.v1_2_0.TACACSplusPasswordExchangeProtocol)"> 437 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 438 <Annotation Term="OData.Description" String="Indicates the allowed TACACS+ password exchange protocols."/> 439 <Annotation Term="OData.LongDescription" String="This property shall indicate all the allowed TACACS+ password exchange protocol described under section 5.4.2 of RFC8907."/> 440 </Property> 441 </ComplexType> 442 443 <EnumType Name="TACACSplusPasswordExchangeProtocol"> 444 <Member Name="ASCII"> 445 <Annotation Term="OData.Description" String="The ASCII Login method."/> 446 <Annotation Term="OData.LongDescription" String="This value shall indicate the ASCII Login flow as described under section 5.4.2 of RFC8907."/> 447 </Member> 448 <Member Name="PAP"> 449 <Annotation Term="OData.Description" String="The PAP Login method."/> 450 <Annotation Term="OData.LongDescription" String="This value shall indicate the PAP Login flow as described under section 5.4.2 of RFC8907."/> 451 </Member> 452 <Member Name="CHAP"> 453 <Annotation Term="OData.Description" String="The CHAP Login method."/> 454 <Annotation Term="OData.LongDescription" String="This value shall indicate the CHAP Login flow as described under section 5.4.2 of RFC8907."/> 455 </Member> 456 <Member Name="MSCHAPv1"> 457 <Annotation Term="OData.Description" String="The MS-CHAP v1 Login method."/> 458 <Annotation Term="OData.LongDescription" String="This value shall indicate the MS-CHAP v1 Login flow as described under section 5.4.2 of RFC8907."/> 459 </Member> 460 <Member Name="MSCHAPv2"> 461 <Annotation Term="OData.Description" String="The MS-CHAP v2 Login method."/> 462 <Annotation Term="OData.LongDescription" String="This value shall indicate the MS-CHAP v2 Login flow as described under section 5.4.2 of RFC8907."/> 463 </Member> 464 </EnumType> 465 </Schema> 466 467 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_2_1"> 468 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 469 <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/> 470 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_2_0.ExternalAccountProvider"/> 471 </Schema> 472 473 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_2_2"> 474 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 475 <Annotation Term="OData.Description" String="This version was created to clarify the descriptions for the values of `AccountProviderType`. It was also created to expand the `LDAPService` value for `AccountProviderType` to allow for a scheme and port to be specified."/> 476 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_2_1.ExternalAccountProvider"/> 477 </Schema> 478 479 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_2_3"> 480 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 481 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 482 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_2_2.ExternalAccountProvider"/> 483 </Schema> 484 485 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_2_4"> 486 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 487 <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references. It was also created to correct various typographical errors."/> 488 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_2_3.ExternalAccountProvider"/> 489 </Schema> 490 491 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_3_0"> 492 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 493 <Annotation Term="Redfish.Release" String="2021.2"/> 494 495 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_2_0.ExternalAccountProvider"> 496 <Property Name="OAuth2Service" Type="ExternalAccountProvider.v1_3_0.OAuth2Service"> 497 <Annotation Term="OData.Description" String="The additional information needed to parse an OAuth 2.0 service."/> 498 <Annotation Term="OData.LongDescription" String="This property shall contain additional information needed to parse an OAuth 2.0 service. This property should only be present inside an `OAuth2` property."/> 499 </Property> 500 </EntityType> 501 502 <ComplexType Name="OAuth2Service"> 503 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 504 <Annotation Term="OData.Description" String="Various settings to parse an OAuth 2.0 service."/> 505 <Annotation Term="OData.LongDescription" String="This type shall contain settings for parsing an OAuth 2.0 service."/> 506 <Property Name="Mode" Type="ExternalAccountProvider.v1_3_0.OAuth2Mode" Nullable="false"> 507 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 508 <Annotation Term="OData.Description" String="The mode of operation for token validation."/> 509 <Annotation Term="OData.LongDescription" String="This property shall contain the mode of operation for token validation."/> 510 </Property> 511 <Property Name="Issuer" Type="Edm.String"> 512 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 513 <Annotation Term="OData.Description" String="The issuer string of the OAuth 2.0 service. Clients should configure this property if `Mode` contains `Offline`."/> 514 <Annotation Term="OData.LongDescription" String="This property shall contain the RFC8414-defined issuer string of the OAuth 2.0 service. If the `Mode` property contains the value `Discovery`, this property shall contain the value of the `issuer` string from the OAuth 2.0 service's metadata and this property shall be read-only. Clients should configure this property if `Mode` contains `Offline`."/> 515 </Property> 516 <Property Name="Audience" Type="Collection(Edm.String)" Nullable="false"> 517 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 518 <Annotation Term="OData.Description" String="The allowable audience strings of the Redfish service."/> 519 <Annotation Term="OData.LongDescription" String="This property shall contain an array of allowable RFC7519-defined audience strings of the Redfish service. The values shall uniquely identify the Redfish service. For example, a MAC address or UUID for the manager can uniquely identify the service."/> 520 </Property> 521 <Property Name="OAuthServiceSigningKeys" Type="Edm.String"> 522 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 523 <Annotation Term="OData.Description" String="The Base64-encoded signing keys of the issuer of the OAuth 2.0 service. Clients should configure this property if `Mode` contains `Offline`."/> 524 <Annotation Term="OData.LongDescription" String="This property shall contain a Base64-encoded string of the RFC7517-defined signing keys of the issuer of the OAuth 2.0 service. Services shall verify the token provided in the `Authorization` header of the request with the value of this property. If the `Mode` property contains the value `Discovery`, this property shall contain the keys found at the URI specified by the `jwks_uri` string from the OAuth 2.0 service's metadata and this property shall be read-only. Clients should configure this property if `Mode` contains `Offline`."/> 525 </Property> 526 </ComplexType> 527 528 <EnumType Name="OAuth2Mode"> 529 <Member Name="Discovery"> 530 <Annotation Term="OData.Description" String="OAuth 2.0 service information for token validation is downloaded by the service."/> 531 <Annotation Term="OData.LongDescription" String="This value shall indicate the service performs token validation from information found at the URIs specified by the `ServiceAddresses` property. Services shall implement a caching method of this information so it's not necessary to retrieve metadata and key information for every request containing a token."/> 532 </Member> 533 <Member Name="Offline"> 534 <Annotation Term="OData.Description" String="OAuth 2.0 service information for token validation is configured by a client. Clients should configure the `Issuer` and `OAuthServiceSigningKeys` properties for this mode."/> 535 <Annotation Term="OData.LongDescription" String="This value shall indicate the service performs token validation from properties configured by a client. Clients should configure the `Issuer` and `OAuthServiceSigningKeys` properties for this mode."/> 536 </Member> 537 </EnumType> 538 </Schema> 539 540 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_3_1"> 541 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 542 <Annotation Term="OData.Description" String="This version was created to give guidance to clients to describe which properties should be configured if `Mode` in `OAuth2` contains `Offline`."/> 543 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_3_0.ExternalAccountProvider"/> 544 </Schema> 545 546 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_3_2"> 547 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 548 <Annotation Term="OData.Description" String="This version was created to clarify the usage of `OAuthServiceSigningKeys` with token validation."/> 549 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_3_1.ExternalAccountProvider"/> 550 </Schema> 551 552 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_3_3"> 553 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 554 <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/> 555 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_3_2.ExternalAccountProvider"/> 556 </Schema> 557 558 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_3_4"> 559 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 560 <Annotation Term="OData.Description" String="This version was created to clarify the descriptions for the values of `AccountProviderType`. It was also created to expand the `LDAPService` value for `AccountProviderType` to allow for a scheme and port to be specified."/> 561 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_3_3.ExternalAccountProvider"/> 562 </Schema> 563 564 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_3_5"> 565 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 566 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 567 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_3_4.ExternalAccountProvider"/> 568 </Schema> 569 570 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_3_6"> 571 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 572 <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references. It was also created to correct various typographical errors."/> 573 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_3_5.ExternalAccountProvider"/> 574 </Schema> 575 576 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_4_0"> 577 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 578 <Annotation Term="Redfish.Release" String="2022.1"/> 579 580 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_3_0.ExternalAccountProvider"/> 581 582 <ComplexType Name="LDAPSearchSettings" BaseType="ExternalAccountProvider.v1_0_0.LDAPSearchSettings"> 583 <Property Name="SSHKeyAttribute" Type="Edm.String"> 584 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 585 <Annotation Term="OData.Description" String="The attribute name that contains the LDAP user's SSH public key entry."/> 586 <Annotation Term="OData.LongDescription" String="This property shall contain the attribute name that contains the LDAP user's SSH public key."/> 587 </Property> 588 </ComplexType> 589 </Schema> 590 591 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_4_1"> 592 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 593 <Annotation Term="OData.Description" String="This version was created to give guidance to clients to describe which properties should be configured if `Mode` in `OAuth2` contains `Offline`."/> 594 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_4_0.ExternalAccountProvider"/> 595 </Schema> 596 597 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_4_2"> 598 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 599 <Annotation Term="OData.Description" String="This version was created to clarify the usage of `OAuthServiceSigningKeys` with token validation."/> 600 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_4_1.ExternalAccountProvider"/> 601 </Schema> 602 603 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_4_3"> 604 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 605 <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/> 606 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_4_2.ExternalAccountProvider"/> 607 </Schema> 608 609 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_4_4"> 610 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 611 <Annotation Term="OData.Description" String="This version was created to clarify the descriptions for the values of `AccountProviderType`. It was also created to expand the `LDAPService` value for `AccountProviderType` to allow for a scheme and port to be specified."/> 612 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_4_3.ExternalAccountProvider"/> 613 </Schema> 614 615 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_4_5"> 616 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 617 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 618 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_4_4.ExternalAccountProvider"/> 619 </Schema> 620 621 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_4_6"> 622 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 623 <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references. It was also created to correct various typographical errors."/> 624 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_4_5.ExternalAccountProvider"/> 625 </Schema> 626 627 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_5_0"> 628 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 629 <Annotation Term="Redfish.Release" String="2022.3"/> 630 631 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_4_3.ExternalAccountProvider"/> 632 633 <ComplexType Name="RoleMapping" BaseType="ExternalAccountProvider.v1_0_0.RoleMapping"> 634 <Property Name="MFABypass" Type="AccountService.MFABypass"> 635 <Annotation Term="OData.Description" String="The multi-factor authentication bypass settings."/> 636 <Annotation Term="OData.LongDescription" String="This property shall contain the multi-factor authentication bypass settings."/> 637 </Property> 638 </ComplexType> 639 </Schema> 640 641 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_5_1"> 642 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 643 <Annotation Term="OData.Description" String="This version was created to clarify the descriptions for the values of `AccountProviderType`. It was also created to expand the `LDAPService` value for `AccountProviderType` to allow for a scheme and port to be specified."/> 644 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_5_0.ExternalAccountProvider"/> 645 </Schema> 646 647 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_5_2"> 648 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 649 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 650 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_5_1.ExternalAccountProvider"/> 651 </Schema> 652 653 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_5_3"> 654 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 655 <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references. It was also created to correct various typographical errors."/> 656 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_5_2.ExternalAccountProvider"/> 657 </Schema> 658 659 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_6_0"> 660 <Annotation Term="Redfish.Release" String="2023.1"/> 661 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 662 663 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_5_0.ExternalAccountProvider"> 664 <Property Name="Retries" Type="Edm.Int64"> 665 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 666 <Annotation Term="OData.Description" String="The number of times to retry connecting to an address in the `ServiceAddresses` property before attempting the next address in the array."/> 667 <Annotation Term="OData.LongDescription" String="This property shall contain the number of retries to attempt a connection to an address in the `ServiceAddresses` property before attempting a connection to the next address in the array or giving up. If this property is not present, the service has internal policies for handling retries."/> 668 </Property> 669 <Property Name="TimeoutSeconds" Type="Edm.Int64"> 670 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 671 <Annotation Term="OData.Description" String="The period of time, in seconds, this account service will wait for a response from an address of a user account provider before timing out."/> 672 <Annotation Term="OData.LongDescription" String="This property shall contain the period of time, in seconds, this account service will wait for a response from an address of a user account provider before timing out. If this property is not present, the service has internal policies for handling timeouts."/> 673 </Property> 674 </EntityType> 675 676 <ComplexType Name="TACACSplusService" BaseType="ExternalAccountProvider.v1_2_0.TACACSplusService"> 677 <Property Name="AuthorizationService" Type="Edm.String" Nullable="false"> 678 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 679 <Annotation Term="OData.Description" String="The TACACS+ service authorization argument."/> 680 <Annotation Term="OData.LongDescription" String="This property shall contain the TACACS+ service authorization argument as defined by section 8.2 of RFC8907. If this property is not present, the service defines the value to provide to the TACACS+ server."/> 681 </Property> 682 <Property Name="Oem" Type="Resource.Oem" Nullable="false"> 683 <Annotation Term="OData.Description" String="The OEM extension property."/> 684 <Annotation Term="OData.LongDescription" String="This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements."/> 685 </Property> 686 </ComplexType> 687 688 <ComplexType Name="OAuth2Service" BaseType="ExternalAccountProvider.v1_3_0.OAuth2Service"> 689 <Property Name="Oem" Type="Resource.Oem" Nullable="false"> 690 <Annotation Term="OData.Description" String="The OEM extension property."/> 691 <Annotation Term="OData.LongDescription" String="This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements."/> 692 </Property> 693 </ComplexType> 694 </Schema> 695 696 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_6_1"> 697 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 698 <Annotation Term="OData.Description" String="This version was created to clarify the descriptions for the values of `AccountProviderType`. It was also created to expand the `LDAPService` value for `AccountProviderType` to allow for a scheme and port to be specified."/> 699 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_6_0.ExternalAccountProvider"/> 700 </Schema> 701 702 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_6_2"> 703 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 704 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 705 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_6_1.ExternalAccountProvider"/> 706 </Schema> 707 708 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_6_3"> 709 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 710 <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references. It was also created to correct various typographical errors."/> 711 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_6_2.ExternalAccountProvider"/> 712 </Schema> 713 714 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_7_0"> 715 <Annotation Term="Redfish.Release" String="2023.2"/> 716 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 717 718 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_6_1.ExternalAccountProvider"/> 719 720 <ComplexType Name="LDAPSearchSettings" BaseType="ExternalAccountProvider.v1_4_0.LDAPSearchSettings"> 721 <Property Name="EmailAttribute" Type="Edm.String"> 722 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 723 <Annotation Term="OData.Description" String="The attribute name that contains the LDAP user's email address."/> 724 <Annotation Term="OData.LongDescription" String="This property shall contain the attribute name that contains the LDAP user's email address. If this value is not set by the user, or the property is not present, the value shall be `mail`."/> 725 </Property> 726 </ComplexType> 727 </Schema> 728 729 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_7_1"> 730 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 731 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 732 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_7_0.ExternalAccountProvider"/> 733 </Schema> 734 735 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_7_2"> 736 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 737 <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references. It was also created to correct various typographical errors."/> 738 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_7_1.ExternalAccountProvider"/> 739 </Schema> 740 741 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ExternalAccountProvider.v1_8_0"> 742 <Annotation Term="Redfish.Release" String="2024.3"/> 743 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 744 745 <EntityType Name="ExternalAccountProvider" BaseType="ExternalAccountProvider.v1_7_2.ExternalAccountProvider"/> 746 747 <ComplexType Name="RoleMapping" BaseType="ExternalAccountProvider.v1_5_0.RoleMapping"> 748 <Property Name="LocalAccountTypes" Type="Collection(ManagerAccount.AccountTypes)"> 749 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 750 <Annotation Term="OData.Description" String="The list of local services in the manager that the remote user or group is allowed to access."/> 751 <Annotation Term="OData.LongDescription" String="This property shall contain an array of the various local manager services that the remote user or group is allowed to access. This shall not include functionality for receiving events or other notifications. If this property is not supported, the value shall be assumed to be an array that contains the value `Redfish`."/> 752 </Property> 753 <Property Name="LocalOEMAccountTypes" Type="Collection(Edm.String)"> 754 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 755 <Annotation Term="OData.Description" String="The OEM account types for the remote user or group."/> 756 <Annotation Term="OData.LongDescription" String="This property shall contain an array of the OEM account types for the remote user or group when `LocalAccountTypes` contains `OEM`."/> 757 </Property> 758 </ComplexType> 759 </Schema> 760 761 </edmx:DataServices> 762</edmx:Edmx> 763