AnswerFileStatusError
The AnswerFileStatusError data object describes an answer file error and identifies the profile or policy option with which the error is associated.
{
"_typeName": "string",
"userInputPath": {
"_typeName": "string",
"profilePath": "string",
"policyId": "string",
"parameterId": "string",
"policyOptionId": "string"
},
"errMsg": {
"_typeName": "string",
"key": "string",
"arg": [
{
"_typeName": "string",
"key": "string",
"value": {
"_typeName": "string"
}
}
],
"message": "string"
}
}
The ProfilePropertyPath data object represents the path to a profile, policy option, or specific parameter.
If profilePath
, policyId
, and parameterId
are all specified, the combination of the three identifies a particular parameter. If only profilePath
and policyId
are specified, the combination identifies a specific profile policy option. If just the profilePath
is specified, the data object identifies a profile instance.
Message data which is intended to be displayed according to the locale of a client.
A LocalizableMessage contains both a formatted, localized version of the text and the data needed to perform localization in conjunction with localization catalogs.
Clients of the VIM API may use vim.SessionManager.setLocale() to cause the server to emit a localized message, or may perform client-side localization based on message catalogs provided by the server.
- If the substition variable is a string, no further lookup is required.
- If the substitution variable is an integer, value is a lookup key.
- If the variable contains '@', value is a label lookup in another catalog, where {[email protected]} looks up prefix.arg[name].label in CATALOG.
- arg = [("field" = "queued")]
- CATALOG(locmsg, key) = "State is {[email protected]}"
- CATALOG(enum, TaskInfo.State.queued.label) is "Queued"
- ==> message = "State is Queued"