Package org.bonitasoft.web.client.api
Interface SystemTenantApi
-
- All Superinterfaces:
ApiClient.Api
@Generated("org.openapitools.codegen.languages.JavaClientCodegen") public interface SystemTenantApi extends ApiClient.Api
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SystemTenantgetSystemTenant(String id)Get the current Tenant Pause and resume tenant services in order to do maintenance on a tenant.ApiResponse<SystemTenant>getSystemTenantWithHttpInfo(String id)Get the current Tenant Similar togetSystemTenantbut it also returns the http response headers .voidupdateSystemTenant(String id, TenantPauseRequest tenantPauseRequest)Update the current Tenant Pause or resume the current tenant.ApiResponse<Void>updateSystemTenantWithHttpInfo(String id, TenantPauseRequest tenantPauseRequest)Update the current Tenant Similar toupdateSystemTenantbut it also returns the http response headers .
-
-
-
Method Detail
-
getSystemTenant
SystemTenant getSystemTenant(String id)
Get the current Tenant Pause and resume tenant services in order to do maintenance on a tenant.- Parameters:
id- ID of the tenant (required)- Returns:
- SystemTenant
-
getSystemTenantWithHttpInfo
ApiResponse<SystemTenant> getSystemTenantWithHttpInfo(String id)
Get the current Tenant Similar togetSystemTenantbut it also returns the http response headers . Pause and resume tenant services in order to do maintenance on a tenant.- Parameters:
id- ID of the tenant (required)- Returns:
- A ApiResponse that wraps the response boyd and the http headers.
-
updateSystemTenant
void updateSystemTenant(String id, TenantPauseRequest tenantPauseRequest)
Update the current Tenant Pause or resume the current tenant.- Parameters:
id- ID of the tenant (required)tenantPauseRequest- Partial SystemTenant description (required)
-
updateSystemTenantWithHttpInfo
ApiResponse<Void> updateSystemTenantWithHttpInfo(String id, TenantPauseRequest tenantPauseRequest)
Update the current Tenant Similar toupdateSystemTenantbut it also returns the http response headers . Pause or resume the current tenant.- Parameters:
id- ID of the tenant (required)tenantPauseRequest- Partial SystemTenant description (required)
-
-