DatacenterFilterSpec

The Datacenter.FilterSpec structure contains fields used to filter the results when listing datacenters (see Datacenter.list). If multiple fields are specified, only datacenters matching all of the fields match the filter.


Properties

array of string
datacenters Optional

Identifiers of datacenters that can match the filter. If unset or empty, datacenters with any identifier match the filter. When clients pass a value of this structure as a parameter, the field must contain identifiers for the resource type: Datacenter. When operations return a value of this structure as a result, the field will contain identifiers for the resource type: Datacenter.


array of string
folders Optional

Folders that must contain the datacenters for the datacenter to match the filter. If unset or empty, datacenters in any folder match the filter. When clients pass a value of this structure as a parameter, the field must contain identifiers for the resource type: Folder. When operations return a value of this structure as a result, the field will contain identifiers for the resource type: Folder.


array of string
names Optional

Names that datacenters must have to match the filter (see Datacenter.Info.name). If unset or empty, datacenters with any name match the filter.

JSON Example

{
	"datacenters": [
		"string"
	],
	"folders": [
		"string"
	],
	"names": [
		"string"
	]
}

Feedback

Was this page helpful?