SettingsDepotContentAddOnsFilterSpec

The AddOns.FilterSpec structure contains fields used to filter the results when listing OEM add-ons, see AddOns.list).


Properties

string
min_version Optional

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.


array of string
names Optional

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.


array of string
vendors Optional

Vendors that an add-on must have to match the filter. If unset or empty, add-ons from any vendor will match the filter.


array of string
versions Optional

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"
	]
}

Feedback

Was this page helpful?