public void CorrectRequestForCreate() {
            var factory = Substitute.For<IConnection>();
            var client = new VpcClient(factory);

            var body = new Models.Requests.Vpc();
            client.Create(body);

            factory.Received().ExecuteRequest<Vpc>("vpcs", null, body, "vpc", Method.POST);
        }