vcenter ovf export flag: list

Returns information about the supported export flags by the server.

The supported flags are:

PRESERVE_MAC
Include MAC addresses for network adapters.
EXTRA_CONFIG
Include extra configuration in OVF export.

Future server versions might support additional flags.

Request:

HTTP request

GET https://{server}/rest/com/vmware/vcenter/ovf/export-flag
No request parameters

Response:

HTTP Status Code: 200

Representation:

{
    "value"[
        {
            "description"{
                "args"[
                    "string",
                    "string"
                ],
                "default_message""string",
                "id""string"
            },
            "option""string"
        },
        {
            "description"{
                "args"[
                    "string",
                    "string"
                ],
                "default_message""string",
                "id""string"
            },
            "option""string"
        }
    ]
}

Response Type:

Name Type Description
bold = required
value info[] A array of supported export flags.
value[].option string The name of the export flag that is supported by the server.

value[].description localizable_message Localizable description of the export flag.

value[].description.id string Unique identifier of the localizable string or message template.

This identifier is typically used to retrieve a locale-specific string or message template from a message catalog.

value[].description.default_message string The value of this localizable string or message template in the en_US (English) locale. If vapi.std.localizable_message.id refers to a message template, the default message will contain the substituted arguments. This value can be used by clients that do not need to display strings and messages in the native language of the user. It could also be used as a fallback if a client is unable to access the appropriate message catalog.

value[].description.args string[] Arguments to be substituted into a message template.

Errors:

None