1. An SDP is more complex to solve than an SOCP, so for real problems, you should stay in the SOCP world, i.e. norm(chol(Pz)\zk)<=1
2. Complexity analysis only makes sense when you have varying dimensions. If the length of z is n, then complexity will at least be cubic, as you will have n variables and thus a linear system of size nxn to solve for search directions in every iteration. Theory says you need roughly n^.5 iterations, thus ending up in n^3.5 complexity, but in practice the number of iterations is typically 10-20, menaing practical cubic complexity. Another computational part is compilation of the hessian in every iteration. Not sure what that would be here, but I suspcet it also can be done in cubic time. Compelxity analysis for specific problems is very hard though, as it depends on particular sparsity patterns etc, so all numbers above could be completely off in practice.
Having said that, the particular problem you've posed can be solved analytically.