Package com.adobe.aio.cloudmanager
Interface TenantApi
-
public interface TenantApiTenant APISee the Tenant API documentation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull Tenantget(@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
-
-