Initial commit: VMware vSphere API simulator scaffold.

Add the FastAPI app, PostgreSQL migrations, Docker/Helm packaging, API
contracts, docs, client examples, and the unit/integration/compatibility
test suite for local client and tooling labs without a real vCenter.
This commit is contained in:
2026-07-18 04:42:11 +03:00
commit f8d3cbdd59
422 changed files with 361335 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
**Language / Язык:** [English](java.md) | [Русский](../ru/examples/java.md)
# Java
Java 11+ `HttpClient` cookbook using a Basic-auth session
(`vmware-api-session-id`) against `https://localhost`. No third-party
JSON library — responses are inspected with a small string-based field
extractor suitable for a lab smoke.
```bash
cd examples/java
javac Cookbook.java && java Cookbook
```
Override defaults with `VSPHERE_BASE`, `VSPHERE_USER`, `VSPHERE_PASSWORD`,
`VSPHERE_VM_NAME` environment variables. See
[`Cookbook.java`](../../examples/java/Cookbook.java) for the session →
create → power → wait-task → delete flow.
The client installs a trust-all `SSLContext` for the local self-signed
development gateway certificate only — do not reuse it against a real
vCenter.