Class UnableToAllocateResource

  • All Implemented Interfaces:
    StaticStructure, Structure, java.io.Serializable

    public class UnableToAllocateResource
    extends Error
    implements java.io.Serializable, StaticStructure
    The UnableToAllocateResource exception indicates that the method failed because it was unable to allocate or acquire a required resource.

    Examples:

    • Trying to power on a virtual machine when there are not enough licenses to do so.
    • Trying to power on a virtual machine that would violate a resource usage policy.

    Counterexamples:

    • Trying to power off a virtual machine that is in the process of being powered on. A ResourceBusy exception would be used instead.
    • Trying to remove a VMFS datastore when the is a virtual machine registered on any host attached to the datastore. The ResourceInUse exception would be used instead.
    • Trying to add a virtual switch if the physical network adapter being bridged is already in use. The ResourceInUse exception would be used instead.
    • Attempt to invoke some method on a virtual machine when the virtual machine's configuration file is not accessible (for example due to a storage APD condition). The ResourceInaccessible exception would be used instead.
    See Also:
    Serialized Form
    • Constructor Detail

      • UnableToAllocateResource

        public UnableToAllocateResource​(java.util.List<LocalizableMessage> messages,
                                        Structure data)
        This constructor is provided for backwards compatibility purposes only. Please use the Builder class instead.
      • UnableToAllocateResource

        public UnableToAllocateResource()
        Default constructor.
      • UnableToAllocateResource

        protected UnableToAllocateResource​(StructValue __dynamicStructureFields)
      • UnableToAllocateResource

        protected UnableToAllocateResource​(StructValue __dynamicStructureFields,
                                           Error.Type errorType)
    • Method Detail

      • _getType

        public com.vmware.vapi.bindings.type.ErrorType _getType()
        Description copied from interface: StaticStructure
        WARNING: Internal method, subject to change in future versions. Returns StructType instance representing the static bindings type for this Structure.
        Specified by:
        _getType in interface StaticStructure
        Overrides:
        _getType in class Error
        Returns:
        the static bindings StructType
      • _getDataValue

        public StructValue _getDataValue()
        Description copied from interface: Structure
        Returns this Structure represented in the dynamic DataValue model.

        Attempts to change the returned StructValue representation are not required to change the state of this structure. Actually the behavior is implementation dependent and is unspecified. In general the returned value shouldn't be changed.

        Specified by:
        _getDataValue in interface Structure
        Overrides:
        _getDataValue in class Error
        Returns:
        StructValue representing this structure
      • _validate

        public void _validate()
        Description copied from interface: StaticStructure
        Validates the state of the discriminated unions and HasFieldsOf restrictions (if any) in this Java language binding Structure.

        More precisely, for each union: given value of the discriminant/tag field (@UnionTag in the IDL) of an union in this structure, validates that:

      • all fields of the union required for that value of the discriminant are set
      • fields of the union that are not allowed for that value of the discriminant are not set
      • any other fields of the structure (not participating in the union) do not affect the validation result
Specified by:
_validate in interface StaticStructure
Overrides:
_validate in class Error