SettingsDepotContentAddOnsFilterSpec
The AddOns.FilterSpec structure contains fields used to filter the results when listing OEM add-ons, see AddOns.list).
Properties
Minimum version of an add-on that can match the filter. If set, only OEM add-ons with version greater than or equal to this will be returned.
Names that an add-on must have to match the filter. If unset or empty, add-ons with any name will match the filter. When clients pass a value of this structure as a parameter, the field must contain identifiers for the resource type: com.vmware.esx.settings.add_on. When operations return a value of this structure as a result, the field will contain identifiers for the resource type: com.vmware.esx.settings.add_on.
Vendors that an add-on must have to match the filter. If unset or empty, add-ons from any vendor will match the filter.
Versions that an add-on must have to match the filter. If unset or empty, add-ons with any version will match the filter.
JSON Example
{
"min_version": "string",
"names": [
"string"
],
"vendors": [
"string"
],
"versions": [
"string"
]
}