OvfScaleOutParams

The ScaleOutParams structure contains information about the scale-out groups described in the OVF package. When deploying an OVF package, a deployment specific instance count can be specified (see ScaleOutGroup.instance-count.

This is based on the ovf2:ScaleOutSection.

See LibraryItem.deploy and LibraryItem.filter.


Properties

array of OvfScaleOutGroup
groups Optional

The list of scale-out groups. This field is optional in the input parameters when deploying an OVF package. If unset there are no scale-out groups. This field will always be present in the result when retrieving information about an OVF package.


string
type Optional

Unique identifier describing the type of the OVF parameters. The value is the name of the OVF parameters structure. This field must be provided in the input parameters when deploying an OVF package. This field will always be present in the result when retrieving information about an OVF package.

JSON Example

{
	"groups": [
		{
			"description": "string",
			"id": "string",
			"instance_count": 0,
			"maximum_instance_count": 0,
			"minimum_instance_count": 0
		}
	],
	"type": "string"
}

Feedback

Was this page helpful?