VsanPolicySatisfiability

VsanPolicySatisfiability
VsanPolicySatisfiability

PolicySatisfiablity -- Structure to describe whether a policy can be satisfied.

AllOf
This class requires all of the following:
JSON Example
{
    "_typeName": "string",
    "uuid": "string",
    "isSatisfiable": false,
    "reason": {
        "_typeName": "string",
        "key": "string",
        "arg": [
            {
                "_typeName": "string",
                "key": "string",
                "value": {
                    "_typeName": "string"
                }
            }
        ],
        "message": "string"
    },
    "cost": {
        "_typeName": "string",
        "changeDataSize": 0,
        "currentDataSize": 0,
        "tempDataSize": 0,
        "copyDataSize": 0,
        "changeFlashReadCacheSize": 0,
        "currentFlashReadCacheSize": 0,
        "currentDiskSpaceToAddressSpaceRatio": "number",
        "diskSpaceToAddressSpaceRatio": "number"
    }
}
string
uuid
Optional

UUID of the object.

boolean
isSatisfiable
Required

Can the policy be satisfied given the assumptions of the API that queried satisfiability.

See also HostVsanInternalSystem.ReconfigurationSatisfiable.

reason
Optional

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.
    • arg = [("address" = "127.0.0.1")]
    • CATALOG(locmsg, key) = "IP address is {address}"
    • ==> message = "IP address is 127.0.0.1"
  • If the substitution variable is an integer, value is a lookup key.
    • arg = [("1" = "button.cancel"), ("2" = "msg.revert")]
    • CATALOG(locmsg, key) = "Select '{1}' to {2}"
    • CATALOG(locmsg, button.cancel) = "Cancel"
    • CATALOG(locmsg, msg.revert) = "revert"
    • ==> message = "Select 'Cancel' to revert"
  • 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"
cost
Optional

PolicyCost -- Structure to describe the cost of satisfying a policy.