Returned when a resource type cannot be created as it has reached its limits.

The limits must be adjusted for this resource before sending the request again.
interface MaxResourceLimitExceededError {
    code: "MaxResourceLimitExceeded";
    exceededResource: string;
    message: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

code: "MaxResourceLimitExceeded"
exceededResource: string

Resource type that reached its maximum limit of configured elements (for example, 100 Zones per Project).

message: string

"You have exceeded the limit of $limit resources of type $resourceTypeId."

Generated using TypeDoc