Package com.adobe.aio.cloudmanager
Interface TenantApi
-
public interface TenantApi
Tenant APISee the Tenant API documentation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull Tenant
get(@NotNull String tenantId)
Gets the tenant with the specified identifier.@NotNull Collection<Tenant>
list()
List the tenants associated with the IMS Org in the API Context
-
-
-
Method Detail
-
list
@NotNull @NotNull Collection<Tenant> list() throws CloudManagerApiException
List the tenants associated with the IMS Org in the API Context- Returns:
- list of tenants
- Throws:
CloudManagerApiException
- when any error occurs
-
get
@NotNull @NotNull Tenant get(@NotNull @NotNull String tenantId) throws CloudManagerApiException
Gets the tenant with the specified identifier.- Parameters:
tenantId
- the id of the tenant- Returns:
- the tenant
- Throws:
CloudManagerApiException
- when any error occurs
-
-