Class Projects

java.lang.Object
api.equinix.javasdk.EquinixClient
api.equinix.javasdk.Projects
All Implemented Interfaces:
Service, Closeable, AutoCloseable

public final class Projects extends EquinixClient implements Service
The primary entry point for accessing Equinix Projects APIs.

Projects provides organizational management for Equinix resources, allowing users to group and manage related infrastructure components under named projects.

All resource accessors use lazy initialization — internal clients are created on first access and reused for subsequent calls.

Quick Start


 BasicEquinixCredentials credentials = new BasicEquinixCredentials("clientId", "clientSecret");
 Projects projects = new Projects(credentials);

 // List all projects
 PaginatedList<Project> projectList = projects.projects().list();
 
Author:
ianjones
See Also: