blob: cb6c347d5640b256d1c99583d46de2bbde0c83b3 [file] [log] [blame]
Ed Tanous118b1c72018-09-13 13:45:51 -07001{
Gunnar Mills262d7d42021-01-20 16:28:41 -06002 "$id": "http://redfish.dmtf.org/schemas/v1/AccountService.v1_8_0.json",
Ed Tanous118b1c72018-09-13 13:45:51 -07003 "$ref": "#/definitions/AccountService",
Ed Tanous530520e2019-01-02 13:41:37 -08004 "$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema-v1.json",
Gunnar Mills844b4152020-06-22 12:44:09 -05005 "copyright": "Copyright 2014-2020 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright",
Ed Tanous118b1c72018-09-13 13:45:51 -07006 "definitions": {
7 "AccountProviderTypes": {
8 "enum": [
9 "RedfishService",
10 "ActiveDirectoryService",
11 "LDAPService",
Gunnar Mills262d7d42021-01-20 16:28:41 -060012 "OEM",
13 "TACACSplus"
Ed Tanous118b1c72018-09-13 13:45:51 -070014 ],
15 "enumDescriptions": {
Ed Tanouscb103132019-10-08 11:34:22 -070016 "ActiveDirectoryService": "An external Active Directory service.",
17 "LDAPService": "A generic external LDAP service.",
18 "OEM": "An OEM-specific external authentication or directory service.",
Gunnar Mills262d7d42021-01-20 16:28:41 -060019 "RedfishService": "An external Redfish service.",
20 "TACACSplus": "An external TACACS+ service."
Ed Tanous118b1c72018-09-13 13:45:51 -070021 },
22 "enumLongDescriptions": {
Gunnar Mills262d7d42021-01-20 16:28:41 -060023 "ActiveDirectoryService": "The external account provider shall be a Microsoft Active Directory Technical Specification-conformant service. The ServiceAddresses format shall contain a set of fully qualified domain names (FQDN) or NetBIOS names that links to the set of domain servers for the Active Directory service.",
Gunnar Mills844b4152020-06-22 12:44:09 -050024 "LDAPService": "The external account provider shall be an RFC4511-conformant service. The ServiceAddresses format shall contain a set of fully qualified domain names (FQDN) that links to the set of LDAP servers for the service.",
Gunnar Mills262d7d42021-01-20 16:28:41 -060025 "RedfishService": "The external account provider shall be a DMTF Redfish Specification-conformant service. The ServiceAddresses format shall contain a set of URIs that correspond to a Redfish account service.",
26 "TACACSplus": "The external account provider shall be an RFC8907-conformant service. The ServiceAddresses format shall contain a set of host:port that correspond to a TACACS+ service and where the format for host and port are defined in RFC3986."
27 },
28 "enumVersionAdded": {
29 "TACACSplus": "v1_8_0"
Ed Tanous118b1c72018-09-13 13:45:51 -070030 },
31 "type": "string"
32 },
33 "AccountService": {
34 "additionalProperties": false,
Gunnar Mills844b4152020-06-22 12:44:09 -050035 "description": "The AccountService schema defines an account service. The properties are common to, and enable management of, all user accounts. The properties include the password requirements and control features, such as account lockout. The schema also contains links to the manager accounts and roles.",
36 "longDescription": "This resource shall represent an account service for a Redfish implementation. The properties are common to, and enable management of, all user accounts. The properties include the password requirements and control features, such as account lockout.",
Ed Tanous118b1c72018-09-13 13:45:51 -070037 "patternProperties": {
Ed Tanouscb103132019-10-08 11:34:22 -070038 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
Ed Tanous118b1c72018-09-13 13:45:51 -070039 "description": "This property shall specify a valid odata or Redfish property.",
40 "type": [
41 "array",
42 "boolean",
Ed Tanous530520e2019-01-02 13:41:37 -080043 "integer",
Ed Tanous118b1c72018-09-13 13:45:51 -070044 "number",
45 "null",
46 "object",
47 "string"
48 ]
49 }
50 },
51 "properties": {
52 "@odata.context": {
Ed Tanouscb103132019-10-08 11:34:22 -070053 "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/context"
Ed Tanous118b1c72018-09-13 13:45:51 -070054 },
55 "@odata.etag": {
Ed Tanouscb103132019-10-08 11:34:22 -070056 "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/etag"
Ed Tanous118b1c72018-09-13 13:45:51 -070057 },
58 "@odata.id": {
Ed Tanouscb103132019-10-08 11:34:22 -070059 "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id"
Ed Tanous118b1c72018-09-13 13:45:51 -070060 },
61 "@odata.type": {
Ed Tanouscb103132019-10-08 11:34:22 -070062 "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/type"
Ed Tanous118b1c72018-09-13 13:45:51 -070063 },
64 "AccountLockoutCounterResetAfter": {
Ed Tanouscb103132019-10-08 11:34:22 -070065 "description": "The period of time, in seconds, between the last failed login attempt and the reset of the lockout threshold counter. This value must be less than or equal to the AccountLockoutDuration value. A reset sets the counter to `0`.",
66 "longDescription": "This property shall contain the period of time, in seconds, from the last failed login attempt when the AccountLockoutThreshold counter, which counts the number of failed login attempts, is reset to `0`. Then, AccountLockoutThreshold failures are required before the account is locked. This value shall be less than or equal to the AccountLockoutDuration value. The threshold counter also resets to `0` after each successful login. If the AccountLockoutCounterResetEnabled value is `false`, this property shall be ignored.",
Ed Tanous118b1c72018-09-13 13:45:51 -070067 "minimum": 0,
68 "readonly": false,
Ed Tanous530520e2019-01-02 13:41:37 -080069 "type": "integer",
Ed Tanous118b1c72018-09-13 13:45:51 -070070 "units": "s"
71 },
Ed Tanouscb103132019-10-08 11:34:22 -070072 "AccountLockoutCounterResetEnabled": {
73 "description": "An indication of whether the threshold counter is reset after AccountLockoutCounterResetAfter expires. If `true`, it is reset. If `false`, only a successful login resets the threshold counter and if the user reaches the AccountLockoutThreshold limit, the account will be locked out indefinitely and only an administrator-issued reset clears the threshold counter. If this property is absent, the default is `true`.",
74 "longDescription": "This property shall indicate whether the threshold counter is reset after the AccountLockoutCounterResetAfter expires. If `true`, it is reset. If `false`, only a successful login resets the threshold counter and if the user reaches the AccountLockoutThreshold limit, the account shall be locked out indefinitely and only an administrator-issued reset clears the threshold counter. If this property is absent, the default is `true`.",
75 "readonly": false,
76 "type": "boolean",
77 "versionAdded": "v1_5_0"
78 },
Ed Tanous118b1c72018-09-13 13:45:51 -070079 "AccountLockoutDuration": {
Ed Tanouscb103132019-10-08 11:34:22 -070080 "description": "The period of time, in seconds, that an account is locked after the number of failed login attempts reaches the account lockout threshold, within the period between the last failed login attempt and the reset of the lockout threshold counter. If this value is `0`, no lockout will occur. If the AccountLockoutCounterResetEnabled value is `false`, this property is ignored.",
Gunnar Mills262d7d42021-01-20 16:28:41 -060081 "longDescription": "This property shall contain the period of time, in seconds, that an account is locked after the number of failed login attempts reaches the AccountLockoutThreshold value, within the AccountLockoutCounterResetAfter window of time. The value shall be greater than or equal to the AccountLockoutCounterResetAfter value. If this value is `0`, no lockout shall occur. If AccountLockoutCounterResetEnabled value is `false`, this property shall be ignored.",
Ed Tanous118b1c72018-09-13 13:45:51 -070082 "minimum": 0,
83 "readonly": false,
84 "type": [
Ed Tanous530520e2019-01-02 13:41:37 -080085 "integer",
Ed Tanous118b1c72018-09-13 13:45:51 -070086 "null"
87 ],
88 "units": "s"
89 },
90 "AccountLockoutThreshold": {
Ed Tanouscb103132019-10-08 11:34:22 -070091 "description": "The number of allowed failed login attempts before a user account is locked for a specified duration. If `0`, the account is never locked.",
92 "longDescription": "This property shall contain the threshold of failed login attempts before a user account is locked. If `0`, the account shall never be locked.",
Ed Tanous118b1c72018-09-13 13:45:51 -070093 "minimum": 0,
94 "readonly": false,
95 "type": [
Ed Tanous530520e2019-01-02 13:41:37 -080096 "integer",
Ed Tanous118b1c72018-09-13 13:45:51 -070097 "null"
98 ]
99 },
100 "Accounts": {
101 "$ref": "http://redfish.dmtf.org/schemas/v1/ManagerAccountCollection.json#/definitions/ManagerAccountCollection",
Ed Tanouscb103132019-10-08 11:34:22 -0700102 "description": "The collection of manager accounts.",
Gunnar Mills844b4152020-06-22 12:44:09 -0500103 "longDescription": "This property shall contain a link to a resource collection of type ManagerAccountCollection.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700104 "readonly": true
105 },
106 "Actions": {
107 "$ref": "#/definitions/Actions",
Gunnar Mills844b4152020-06-22 12:44:09 -0500108 "description": "The available actions for this resource.",
109 "longDescription": "This property shall contain the available actions for this resource.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600110 "versionAdded": "v1_2_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700111 },
112 "ActiveDirectory": {
113 "$ref": "#/definitions/ExternalAccountProvider",
Gunnar Mills844b4152020-06-22 12:44:09 -0500114 "description": "The first Active Directory external account provider that this account service supports.",
115 "longDescription": "This property shall contain the first Active Directory external account provider that this account service supports. If the account service supports one or more Active Directory services as an external account provider, this entity shall be populated by default. This entity shall not be present in the additional external account providers resource collection.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600116 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700117 },
118 "AdditionalExternalAccountProviders": {
119 "$ref": "http://redfish.dmtf.org/schemas/v1/ExternalAccountProviderCollection.json#/definitions/ExternalAccountProviderCollection",
Gunnar Mills844b4152020-06-22 12:44:09 -0500120 "description": "The additional external account providers that this account service uses.",
121 "longDescription": "This property shall contain a link to a resource collection of type ExternalAccountProviderCollection that represents the additional external account providers that this account service uses.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600122 "readonly": true,
123 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700124 },
125 "AuthFailureLoggingThreshold": {
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500126 "description": "The number of authorization failures per account that are allowed before the failed attempt is logged to the manager log.",
127 "longDescription": "This property shall contain the threshold for when an authorization failure is logged. Logging shall occur after every `n` occurrences of an authorization failure on the same account, where `n` represents the value of this property. If the value is `0`, logging of authorization failures shall be disabled.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700128 "minimum": 0,
129 "readonly": false,
Ed Tanous530520e2019-01-02 13:41:37 -0800130 "type": "integer"
Ed Tanous118b1c72018-09-13 13:45:51 -0700131 },
132 "Description": {
133 "anyOf": [
134 {
135 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description"
136 },
137 {
138 "type": "null"
139 }
140 ],
141 "readonly": true
142 },
143 "Id": {
144 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Id",
145 "readonly": true
146 },
147 "LDAP": {
148 "$ref": "#/definitions/ExternalAccountProvider",
Gunnar Mills844b4152020-06-22 12:44:09 -0500149 "description": "The first LDAP external account provider that this account service supports.",
150 "longDescription": "This property shall contain the first LDAP external account provider that this account service supports. If the account service supports one or more LDAP services as an external account provider, this entity shall be populated by default. This entity shall not be present in the additional external account providers resource collection.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600151 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700152 },
153 "LocalAccountAuth": {
154 "$ref": "#/definitions/LocalAccountAuth",
Gunnar Mills844b4152020-06-22 12:44:09 -0500155 "description": "An indication of how the service uses the accounts collection within this account service as part of authentication. The enumerated values describe the details for each mode.",
156 "longDescription": "This property shall govern how the service uses the manager accounts resource collection within this account service as part of authentication. The enumerated values describe the details for each mode.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600157 "readonly": false,
158 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700159 },
160 "MaxPasswordLength": {
Gunnar Mills844b4152020-06-22 12:44:09 -0500161 "description": "The maximum password length for this account service.",
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500162 "longDescription": "This property shall contain the maximum password length that the implementation allows for this account service. This property does not apply to accounts from external account providers.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700163 "minimum": 0,
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500164 "readonly": false,
Ed Tanous530520e2019-01-02 13:41:37 -0800165 "type": "integer"
Ed Tanous118b1c72018-09-13 13:45:51 -0700166 },
167 "MinPasswordLength": {
Gunnar Mills844b4152020-06-22 12:44:09 -0500168 "description": "The minimum password length for this account service.",
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500169 "longDescription": "This property shall contain the minimum password length that the implementation allows for this account service. This property does not apply to accounts from external account providers.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700170 "minimum": 0,
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500171 "readonly": false,
Ed Tanous530520e2019-01-02 13:41:37 -0800172 "type": "integer"
Ed Tanous118b1c72018-09-13 13:45:51 -0700173 },
174 "Name": {
175 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name",
176 "readonly": true
177 },
178 "Oem": {
179 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
Ed Tanouscb103132019-10-08 11:34:22 -0700180 "description": "The OEM extension property.",
181 "longDescription": "This property shall contain the OEM extensions. All values for properties that this object contains shall conform to the Redfish Specification-described requirements."
Ed Tanous118b1c72018-09-13 13:45:51 -0700182 },
183 "PrivilegeMap": {
184 "$ref": "http://redfish.dmtf.org/schemas/v1/PrivilegeRegistry.json#/definitions/PrivilegeRegistry",
Gunnar Mills844b4152020-06-22 12:44:09 -0500185 "description": "The link to the mapping of the privileges required to complete a requested operation on a URI associated with this service.",
186 "longDescription": "This property shall contain a link to a resource of type PrivilegeMapping that contains the privileges that are required for a user context to complete a requested operation on a URI associated with this service.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600187 "readonly": true,
188 "versionAdded": "v1_1_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700189 },
Gunnar Mills262d7d42021-01-20 16:28:41 -0600190 "RestrictedOemPrivileges": {
191 "description": "The set of restricted OEM privileges.",
192 "items": {
193 "type": "string"
194 },
195 "longDescription": "This property shall contain an array of OEM privileges that are restricted by the service.",
196 "readonly": true,
197 "type": "array",
198 "versionAdded": "v1_8_0"
199 },
200 "RestrictedPrivileges": {
201 "description": "The set of restricted Redfish privileges.",
202 "items": {
203 "$ref": "http://redfish.dmtf.org/schemas/v1/Privileges.json#/definitions/PrivilegeType"
204 },
205 "longDescription": "This property shall contain an array of Redfish privileges that are restricted by the service.",
206 "readonly": true,
207 "type": "array",
208 "versionAdded": "v1_8_0"
209 },
Ed Tanous118b1c72018-09-13 13:45:51 -0700210 "Roles": {
211 "$ref": "http://redfish.dmtf.org/schemas/v1/RoleCollection.json#/definitions/RoleCollection",
Gunnar Mills844b4152020-06-22 12:44:09 -0500212 "description": "The collection of Redfish roles.",
213 "longDescription": "This property shall contain a link to a resource collection of type RoleCollection.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700214 "readonly": true
215 },
216 "ServiceEnabled": {
Gunnar Mills844b4152020-06-22 12:44:09 -0500217 "description": "An indication of whether the account service is enabled. If `true`, it is enabled. If `false`, it is disabled and users cannot be created, deleted, or modified, and new sessions cannot be started. However, established sessions might still continue to run. Any service, such as the session service, that attempts to access the disabled account service fails. However, this does not affect HTTP Basic Authentication connections.",
218 "longDescription": "This property shall indicate whether the account service is enabled. If `true`, it is enabled. If `false`, it is disabled and users cannot be created, deleted, or modified, and new sessions cannot be started. However, established sessions might still continue to run. Any service, such as the session service, that attempts to access the disabled account service fails. However, this does not affect HTTP Basic Authentication connections.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700219 "readonly": false,
220 "type": [
221 "boolean",
222 "null"
223 ]
224 },
225 "Status": {
Ed Tanous530520e2019-01-02 13:41:37 -0800226 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status",
Gunnar Mills844b4152020-06-22 12:44:09 -0500227 "description": "The status and health of the resource and its subordinate or dependent resources.",
228 "longDescription": "This property shall contain any status or health properties of the resource."
Gunnar Mills262d7d42021-01-20 16:28:41 -0600229 },
230 "SupportedAccountTypes": {
231 "description": "The account types supported by the service.",
232 "items": {
233 "$ref": "http://redfish.dmtf.org/schemas/v1/ManagerAccount.json#/definitions/AccountTypes"
234 },
235 "longDescription": "This property shall contain an array of the account types supported by the service.",
236 "readonly": true,
237 "type": "array",
238 "versionAdded": "v1_8_0"
239 },
240 "SupportedOEMAccountTypes": {
241 "description": "The OEM account types supported by the service.",
242 "items": {
243 "type": "string"
244 },
245 "longDescription": "This property shall contain an array of the OEM account types supported by the service.",
246 "readonly": true,
247 "type": "array",
248 "versionAdded": "v1_8_0"
249 },
250 "TACACSplus": {
251 "anyOf": [
252 {
253 "$ref": "#/definitions/ExternalAccountProvider"
254 },
255 {
256 "type": "null"
257 }
258 ],
259 "description": "The first TACACS+ external account provider that this account service supports.",
260 "longDescription": "This property shall contain the first TACACS+ external account provider that this account service supports. If the account service supports one or more TACACS+ services as an external account provider, this entity shall be populated by default. This entity shall not be present in the additional external account providers resource collection.",
261 "versionAdded": "v1_8_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700262 }
263 },
264 "required": [
Ed Tanous530520e2019-01-02 13:41:37 -0800265 "@odata.id",
266 "@odata.type",
Ed Tanous118b1c72018-09-13 13:45:51 -0700267 "Id",
268 "Name"
269 ],
270 "type": "object"
271 },
272 "Actions": {
273 "additionalProperties": false,
Gunnar Mills844b4152020-06-22 12:44:09 -0500274 "description": "The available actions for this resource.",
275 "longDescription": "This type shall contain the available actions for this resource.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700276 "patternProperties": {
Ed Tanouscb103132019-10-08 11:34:22 -0700277 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
Ed Tanous118b1c72018-09-13 13:45:51 -0700278 "description": "This property shall specify a valid odata or Redfish property.",
279 "type": [
280 "array",
281 "boolean",
Ed Tanous530520e2019-01-02 13:41:37 -0800282 "integer",
Ed Tanous118b1c72018-09-13 13:45:51 -0700283 "number",
284 "null",
285 "object",
286 "string"
287 ]
288 }
289 },
290 "properties": {
291 "Oem": {
Ed Tanous530520e2019-01-02 13:41:37 -0800292 "$ref": "#/definitions/OemActions",
Gunnar Mills844b4152020-06-22 12:44:09 -0500293 "description": "The available OEM-specific actions for this resource.",
294 "longDescription": "This property shall contain the available OEM-specific actions for this resource.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600295 "versionAdded": "v1_2_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700296 }
297 },
298 "type": "object"
299 },
300 "Authentication": {
301 "additionalProperties": false,
Ed Tanouscb103132019-10-08 11:34:22 -0700302 "description": "The information required to authenticate to the external service.",
303 "longDescription": "This type shall contain the information required to authenticate to the external service.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700304 "patternProperties": {
Ed Tanouscb103132019-10-08 11:34:22 -0700305 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
Ed Tanous118b1c72018-09-13 13:45:51 -0700306 "description": "This property shall specify a valid odata or Redfish property.",
307 "type": [
308 "array",
309 "boolean",
Ed Tanous530520e2019-01-02 13:41:37 -0800310 "integer",
Ed Tanous118b1c72018-09-13 13:45:51 -0700311 "number",
312 "null",
313 "object",
314 "string"
315 ]
316 }
317 },
318 "properties": {
319 "AuthenticationType": {
320 "anyOf": [
321 {
322 "$ref": "#/definitions/AuthenticationTypes"
323 },
324 {
325 "type": "null"
326 }
327 ],
Ed Tanouscb103132019-10-08 11:34:22 -0700328 "description": "The type of authentication used to connect to the external account provider.",
329 "longDescription": "This property shall contain the type of authentication used to connect to the external account provider.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600330 "readonly": false,
331 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700332 },
Gunnar Mills262d7d42021-01-20 16:28:41 -0600333 "EncryptionKey": {
334 "description": "Specifies the encryption key.",
335 "longDescription": "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.",
336 "pattern": "^[0-9a-fA-F]+$",
337 "readonly": false,
338 "type": [
339 "string",
340 "null"
341 ],
342 "versionAdded": "v1_8_0"
343 },
344 "EncryptionKeySet": {
345 "description": "Indicates if the EncryptionKey property is set.",
346 "longDescription": "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.",
347 "readonly": true,
348 "type": [
349 "boolean",
350 "null"
351 ],
352 "versionAdded": "v1_8_0"
353 },
Ed Tanous118b1c72018-09-13 13:45:51 -0700354 "KerberosKeytab": {
Gunnar Mills844b4152020-06-22 12:44:09 -0500355 "description": "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.",
356 "longDescription": "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.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700357 "readonly": false,
358 "type": [
359 "string",
360 "null"
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600361 ],
362 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700363 },
364 "Oem": {
Ed Tanous530520e2019-01-02 13:41:37 -0800365 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
Ed Tanouscb103132019-10-08 11:34:22 -0700366 "description": "The OEM extension property.",
367 "longDescription": "This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600368 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700369 },
370 "Password": {
Gunnar Mills844b4152020-06-22 12:44:09 -0500371 "description": "The password for this service. A PATCH or PUT request writes the password. This property is `null` in responses.",
372 "longDescription": "This property shall contain the password for this service. A PATCH or PUT operation writes the password. The value shall be `null` in responses.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700373 "readonly": false,
374 "type": [
375 "string",
376 "null"
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600377 ],
378 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700379 },
380 "Token": {
Gunnar Mills844b4152020-06-22 12:44:09 -0500381 "description": "The token for this service. A PATCH or PUT operation writes the token. This property is `null` in responses.",
382 "longDescription": "This property shall contain the token for this service. A PATCH or PUT operation writes the token. The value shall be `null` in responses.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700383 "readonly": false,
384 "type": [
385 "string",
386 "null"
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600387 ],
388 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700389 },
390 "Username": {
Gunnar Mills844b4152020-06-22 12:44:09 -0500391 "description": "The user name for the service.",
392 "longDescription": "This property shall contain the user name for this service.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700393 "readonly": false,
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600394 "type": "string",
395 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700396 }
397 },
398 "type": "object"
399 },
400 "AuthenticationTypes": {
401 "enum": [
402 "Token",
403 "KerberosKeytab",
404 "UsernameAndPassword",
405 "OEM"
406 ],
407 "enumDescriptions": {
Ed Tanouscb103132019-10-08 11:34:22 -0700408 "KerberosKeytab": "A Kerberos keytab.",
409 "OEM": "An OEM-specific authentication mechanism.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700410 "Token": "An opaque authentication token.",
Ed Tanouscb103132019-10-08 11:34:22 -0700411 "UsernameAndPassword": "A user name and password combination."
Ed Tanous118b1c72018-09-13 13:45:51 -0700412 },
413 "type": "string"
414 },
415 "ExternalAccountProvider": {
416 "additionalProperties": false,
Ed Tanouscb103132019-10-08 11:34:22 -0700417 "description": "The external account provider services that can provide accounts for this manager to use for authentication.",
418 "longDescription": "This type shall contain properties that represent external account provider services that can provide accounts for this manager to use for authentication.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700419 "patternProperties": {
Ed Tanouscb103132019-10-08 11:34:22 -0700420 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
Ed Tanous118b1c72018-09-13 13:45:51 -0700421 "description": "This property shall specify a valid odata or Redfish property.",
422 "type": [
423 "array",
424 "boolean",
Ed Tanous530520e2019-01-02 13:41:37 -0800425 "integer",
Ed Tanous118b1c72018-09-13 13:45:51 -0700426 "number",
427 "null",
428 "object",
429 "string"
430 ]
431 }
432 },
433 "properties": {
434 "AccountProviderType": {
435 "anyOf": [
436 {
437 "$ref": "#/definitions/AccountProviderTypes"
438 },
439 {
440 "type": "null"
441 }
442 ],
Ed Tanouscb103132019-10-08 11:34:22 -0700443 "deprecated": "This property is deprecated because the account provider type is known when used in the LDAP and ActiveDirectory objects.",
Gunnar Mills844b4152020-06-22 12:44:09 -0500444 "description": "The type of external account provider to which this service connects.",
445 "longDescription": "This property shall contain the type of external account provider to which this service connects.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600446 "readonly": true,
Ed Tanouscb103132019-10-08 11:34:22 -0700447 "versionAdded": "v1_3_0",
448 "versionDeprecated": "v1_5_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700449 },
450 "Authentication": {
Ed Tanouscb103132019-10-08 11:34:22 -0700451 "$ref": "#/definitions/Authentication",
452 "description": "The authentication information for the external account provider.",
453 "longDescription": "This property shall contain the authentication information for the external account provider.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600454 "versionAdded": "v1_3_0"
455 },
456 "Certificates": {
457 "$ref": "http://redfish.dmtf.org/schemas/v1/CertificateCollection.json#/definitions/CertificateCollection",
Ed Tanouscb103132019-10-08 11:34:22 -0700458 "description": "The link to a collection of certificates that the external account provider uses.",
Gunnar Mills844b4152020-06-22 12:44:09 -0500459 "longDescription": "This property shall contain a link to a resource collection of type CertificateCollection that contains certificates the external account provider uses.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600460 "readonly": true,
461 "versionAdded": "v1_4_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700462 },
463 "LDAPService": {
Ed Tanouscb103132019-10-08 11:34:22 -0700464 "$ref": "#/definitions/LDAPService",
465 "description": "The additional mapping information needed to parse a generic LDAP service.",
466 "longDescription": "This property shall contain any additional mapping information needed to parse a generic LDAP service. This property should only be present inside the LDAP property.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600467 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700468 },
Gunnar Mills09b9d452020-02-11 13:27:39 -0600469 "PasswordSet": {
470 "description": "Indicates if the Password property is set.",
471 "longDescription": "This property shall contain `true` if a valid value was provided for the Password property. Otherwise, the property shall contain `false`.",
472 "readonly": true,
473 "type": "boolean",
474 "versionAdded": "v1_7_0"
475 },
Gunnar Mills262d7d42021-01-20 16:28:41 -0600476 "Priority": {
477 "description": "The authentication priority for the external account provider.",
478 "longDescription": "This property shall contain the assigned priority for the specified external account provider. The value `0` value 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.",
479 "minimum": 0,
480 "readonly": false,
481 "type": [
482 "integer",
483 "null"
484 ],
485 "versionAdded": "v1_8_0"
486 },
Ed Tanous118b1c72018-09-13 13:45:51 -0700487 "RemoteRoleMapping": {
Gunnar Mills844b4152020-06-22 12:44:09 -0500488 "description": "The mapping rules to convert the external account providers account information to the local Redfish role.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700489 "items": {
490 "anyOf": [
491 {
492 "$ref": "#/definitions/RoleMapping"
493 },
494 {
495 "type": "null"
496 }
497 ]
498 },
Gunnar Mills844b4152020-06-22 12:44:09 -0500499 "longDescription": "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.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600500 "type": "array",
501 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700502 },
503 "ServiceAddresses": {
Ed Tanouscb103132019-10-08 11:34:22 -0700504 "description": "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.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700505 "items": {
506 "type": [
507 "string",
508 "null"
509 ]
510 },
Gunnar Mills844b4152020-06-22 12:44:09 -0500511 "longDescription": "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.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700512 "readonly": false,
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600513 "type": "array",
514 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700515 },
516 "ServiceEnabled": {
Ed Tanouscb103132019-10-08 11:34:22 -0700517 "description": "An indication of whether this service is enabled.",
518 "longDescription": "This property shall indicate whether this service is enabled.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700519 "readonly": false,
520 "type": [
521 "boolean",
522 "null"
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600523 ],
524 "versionAdded": "v1_3_0"
Gunnar Mills262d7d42021-01-20 16:28:41 -0600525 },
526 "TACACSplusService": {
527 "anyOf": [
528 {
529 "$ref": "#/definitions/TACACSplusService"
530 },
531 {
532 "type": "null"
533 }
534 ],
535 "description": "The additional information needed to parse a TACACS+ services.",
536 "longDescription": "This property shall contain additional information needed to parse a TACACS+ services. This property should only be present inside a TACACSplus property.",
537 "versionAdded": "v1_8_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700538 }
539 },
540 "type": "object"
541 },
542 "LDAPSearchSettings": {
543 "additionalProperties": false,
Ed Tanouscb103132019-10-08 11:34:22 -0700544 "description": "The settings to search a generic LDAP service.",
545 "longDescription": "This type shall contain all required settings to search a generic LDAP service.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700546 "patternProperties": {
Ed Tanouscb103132019-10-08 11:34:22 -0700547 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
Ed Tanous118b1c72018-09-13 13:45:51 -0700548 "description": "This property shall specify a valid odata or Redfish property.",
549 "type": [
550 "array",
551 "boolean",
Ed Tanous530520e2019-01-02 13:41:37 -0800552 "integer",
Ed Tanous118b1c72018-09-13 13:45:51 -0700553 "number",
554 "null",
555 "object",
556 "string"
557 ]
558 }
559 },
560 "properties": {
561 "BaseDistinguishedNames": {
Ed Tanouscb103132019-10-08 11:34:22 -0700562 "description": "The base distinguished names to use to search an external LDAP service.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700563 "items": {
564 "type": [
565 "string",
566 "null"
567 ]
568 },
Ed Tanouscb103132019-10-08 11:34:22 -0700569 "longDescription": "This property shall contain an array of base distinguished names to use to search an external LDAP service.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700570 "readonly": false,
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600571 "type": "array",
572 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700573 },
574 "GroupNameAttribute": {
Ed Tanouscb103132019-10-08 11:34:22 -0700575 "description": "The attribute name that contains the LDAP group name entry.",
576 "longDescription": "This property shall contain the attribute name that contains the LDAP group name.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700577 "readonly": false,
578 "type": [
579 "string",
580 "null"
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600581 ],
582 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700583 },
584 "GroupsAttribute": {
Ed Tanouscb103132019-10-08 11:34:22 -0700585 "description": "The attribute name that contains the groups for a user on the LDAP user entry.",
586 "longDescription": "This property shall contain the attribute name that contains the groups for an LDAP user entry.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700587 "readonly": false,
588 "type": [
589 "string",
590 "null"
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600591 ],
592 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700593 },
594 "UsernameAttribute": {
Ed Tanouscb103132019-10-08 11:34:22 -0700595 "description": "The attribute name that contains the LDAP user name entry.",
596 "longDescription": "This property shall contain the attribute name that contains the LDAP user name.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700597 "readonly": false,
598 "type": [
599 "string",
600 "null"
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600601 ],
602 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700603 }
604 },
605 "type": "object"
606 },
607 "LDAPService": {
608 "additionalProperties": false,
Ed Tanouscb103132019-10-08 11:34:22 -0700609 "description": "The settings required to parse a generic LDAP service.",
610 "longDescription": "This type shall contain all required settings to parse a generic LDAP service.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700611 "patternProperties": {
Ed Tanouscb103132019-10-08 11:34:22 -0700612 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
Ed Tanous118b1c72018-09-13 13:45:51 -0700613 "description": "This property shall specify a valid odata or Redfish property.",
614 "type": [
615 "array",
616 "boolean",
Ed Tanous530520e2019-01-02 13:41:37 -0800617 "integer",
Ed Tanous118b1c72018-09-13 13:45:51 -0700618 "number",
619 "null",
620 "object",
621 "string"
622 ]
623 }
624 },
625 "properties": {
626 "Oem": {
Ed Tanous530520e2019-01-02 13:41:37 -0800627 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
Ed Tanouscb103132019-10-08 11:34:22 -0700628 "description": "The OEM extension property.",
629 "longDescription": "This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600630 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700631 },
632 "SearchSettings": {
Ed Tanouscb103132019-10-08 11:34:22 -0700633 "$ref": "#/definitions/LDAPSearchSettings",
634 "description": "The required settings to search an external LDAP service.",
635 "longDescription": "This property shall contain the required settings to search an external LDAP service.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600636 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700637 }
638 },
639 "type": "object"
640 },
641 "LocalAccountAuth": {
642 "enum": [
643 "Enabled",
644 "Disabled",
Ed Tanouscb103132019-10-08 11:34:22 -0700645 "Fallback",
646 "LocalFirst"
Ed Tanous118b1c72018-09-13 13:45:51 -0700647 ],
648 "enumDescriptions": {
Gunnar Mills844b4152020-06-22 12:44:09 -0500649 "Disabled": "The service never authenticates users based on the account service-defined accounts collection.",
650 "Enabled": "The service authenticates users based on the account service-defined accounts collection.",
651 "Fallback": "The service authenticates users based on the account service-defined accounts collection only if any external account providers are currently unreachable.",
652 "LocalFirst": "The service first authenticates users based on the account service-defined accounts collection. If authentication fails, the service authenticates by using external account providers."
Ed Tanous118b1c72018-09-13 13:45:51 -0700653 },
654 "enumLongDescriptions": {
Gunnar Mills844b4152020-06-22 12:44:09 -0500655 "Disabled": "The service shall never authenticate users based on the account service-defined manager accounts resource collection.",
656 "Enabled": "The service shall authenticate users based on the account service-defined manager accounts resource collection.",
657 "Fallback": "The service shall authenticate users based on the account service-defined manager accounts resource collection only if any external account providers are currently unreachable.",
658 "LocalFirst": "The service shall first authenticate users based on the account service-defined manager accounts resource collection. If authentication fails, the service shall authenticate by using external account providers."
Ed Tanouscb103132019-10-08 11:34:22 -0700659 },
660 "enumVersionAdded": {
661 "LocalFirst": "v1_6_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700662 },
663 "type": "string"
664 },
665 "OemActions": {
666 "additionalProperties": true,
Gunnar Mills844b4152020-06-22 12:44:09 -0500667 "description": "The available OEM-specific actions for this resource.",
668 "longDescription": "This type shall contain the available OEM-specific actions for this resource.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700669 "patternProperties": {
Ed Tanouscb103132019-10-08 11:34:22 -0700670 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
Ed Tanous118b1c72018-09-13 13:45:51 -0700671 "description": "This property shall specify a valid odata or Redfish property.",
672 "type": [
673 "array",
674 "boolean",
Ed Tanous530520e2019-01-02 13:41:37 -0800675 "integer",
Ed Tanous118b1c72018-09-13 13:45:51 -0700676 "number",
677 "null",
678 "object",
679 "string"
680 ]
681 }
682 },
683 "properties": {},
684 "type": "object"
685 },
686 "RoleMapping": {
687 "additionalProperties": false,
Gunnar Mills844b4152020-06-22 12:44:09 -0500688 "description": "The mapping rules that are used to convert the external account providers account information to the local Redfish role.",
689 "longDescription": "This type shall contain mapping rules that are used to convert the external account providers account information to the local Redfish role.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700690 "patternProperties": {
Ed Tanouscb103132019-10-08 11:34:22 -0700691 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
Ed Tanous118b1c72018-09-13 13:45:51 -0700692 "description": "This property shall specify a valid odata or Redfish property.",
693 "type": [
694 "array",
695 "boolean",
Ed Tanous530520e2019-01-02 13:41:37 -0800696 "integer",
Ed Tanous118b1c72018-09-13 13:45:51 -0700697 "number",
698 "null",
699 "object",
700 "string"
701 ]
702 }
703 },
704 "properties": {
705 "LocalRole": {
Gunnar Mills844b4152020-06-22 12:44:09 -0500706 "description": "The name of the local Redfish role to which to map the remote user or group.",
707 "longDescription": "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.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700708 "readonly": false,
709 "type": [
710 "string",
711 "null"
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600712 ],
713 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700714 },
715 "Oem": {
Ed Tanous530520e2019-01-02 13:41:37 -0800716 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
Ed Tanouscb103132019-10-08 11:34:22 -0700717 "description": "The OEM extension property.",
718 "longDescription": "This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600719 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700720 },
721 "RemoteGroup": {
Gunnar Mills844b4152020-06-22 12:44:09 -0500722 "description": "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.",
723 "longDescription": "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.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700724 "readonly": false,
725 "type": [
726 "string",
727 "null"
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600728 ],
729 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700730 },
731 "RemoteUser": {
Gunnar Mills844b4152020-06-22 12:44:09 -0500732 "description": "The name of the remote user that maps to the local Redfish role to which this entity links.",
733 "longDescription": "This property shall contain the name of the remote user that maps to the local Redfish role to which this entity links.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700734 "readonly": false,
735 "type": [
736 "string",
737 "null"
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600738 ],
739 "versionAdded": "v1_3_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700740 }
741 },
742 "type": "object"
Gunnar Mills262d7d42021-01-20 16:28:41 -0600743 },
744 "TACACSplusPasswordExchangeProtocol": {
745 "enum": [
746 "ASCII",
747 "PAP",
748 "CHAP",
749 "MSCHAPv1",
750 "MSCHAPv2"
751 ],
752 "enumDescriptions": {
753 "ASCII": "The ASCII Login method.",
754 "CHAP": "The CHAP Login method.",
755 "MSCHAPv1": "The MS-CHAP v1 Login method.",
756 "MSCHAPv2": "The MS-CHAP v2 Login method.",
757 "PAP": "The PAP Login method."
758 },
759 "enumLongDescriptions": {
760 "ASCII": "This value shall indicate the ASCII Login flow as described under section 5.4.2 of RFC8907.",
761 "CHAP": "This value shall indicate the CHAP Login flow as described under section 5.4.2 of RFC8907.",
762 "MSCHAPv1": "This value shall indicate the MS-CHAP v1 Login flow as described under section 5.4.2 of RFC8907.",
763 "MSCHAPv2": "This value shall indicate the MS-CHAP v2 Login flow as described under section 5.4.2 of RFC8907.",
764 "PAP": "This value shall indicate the PAP Login flow as described under section 5.4.2 of RFC8907."
765 },
766 "type": "string"
767 },
768 "TACACSplusService": {
769 "additionalProperties": false,
770 "description": "Various settings to parse a TACACS+ service.",
771 "longDescription": "This type shall contain settings for parsing a TACACS+ service.",
772 "patternProperties": {
773 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
774 "description": "This property shall specify a valid odata or Redfish property.",
775 "type": [
776 "array",
777 "boolean",
778 "integer",
779 "number",
780 "null",
781 "object",
782 "string"
783 ]
784 }
785 },
786 "properties": {
787 "PasswordExchangeProtocols": {
788 "description": "Indicates the allowed TACACS+ password exchange protocols.",
789 "items": {
790 "anyOf": [
791 {
792 "$ref": "#/definitions/TACACSplusPasswordExchangeProtocol"
793 },
794 {
795 "type": "null"
796 }
797 ]
798 },
799 "longDescription": "This property shall indicate all the allowed TACACS+ password exchange protocol described under section 5.4.2 of RFC8907.",
800 "readonly": false,
801 "type": "array",
802 "versionAdded": "v1_8_0"
803 },
804 "PrivilegeLevelArgument": {
805 "description": "Indicates the name of the TACACS+ argument name in an authorization request.",
806 "longDescription": "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.",
807 "readonly": false,
808 "type": [
809 "string",
810 "null"
811 ],
812 "versionAdded": "v1_8_0"
813 }
814 },
815 "type": "object"
Ed Tanous118b1c72018-09-13 13:45:51 -0700816 }
817 },
818 "owningEntity": "DMTF",
Gunnar Mills262d7d42021-01-20 16:28:41 -0600819 "release": "2020.4",
820 "title": "#AccountService.v1_8_0.AccountService"
Ed Tanous118b1c72018-09-13 13:45:51 -0700821}