func LowPriorityQuotaHasBeenReached()

in pkg/errors/armerrors.go [68:71]


func LowPriorityQuotaHasBeenReached(err error) bool {
	azErr := IsResponseError(err)
	return azErr != nil && azErr.ErrorCode == OperationNotAllowed && strings.Contains(azErr.Error(), LowPriorityQuotaExceededTerm)
}