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