Class UpdateRegistryTenantRequest
- java.lang.Object
-
- io.apicurio.multitenant.api.datamodel.UpdateRegistryTenantRequest
-
@Generated("jsonschema2pojo") public class UpdateRegistryTenantRequest extends Object
Root Type for NewTenantThe information required when creating a new tenant.
-
-
Constructor Summary
Constructors Constructor Description UpdateRegistryTenantRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
An optional description for the tenant.String
getName()
The optional name of the tenant.List<TenantResource>
getResources()
The list of resources that this tenant will have at max.TenantStatusValue
getStatus()
"READY": Tenant status when ready for use.void
setDescription(String description)
An optional description for the tenant.void
setName(String name)
The optional name of the tenant.void
setResources(List<TenantResource> resources)
The list of resources that this tenant will have at max.void
setStatus(TenantStatusValue status)
"READY": Tenant status when ready for use.
-
-
-
Method Detail
-
getResources
public List<TenantResource> getResources()
The list of resources that this tenant will have at max. available
-
setResources
public void setResources(List<TenantResource> resources)
The list of resources that this tenant will have at max. available
-
getName
public String getName()
The optional name of the tenant.
-
setName
public void setName(String name)
The optional name of the tenant.
-
getDescription
public String getDescription()
An optional description for the tenant.
-
setDescription
public void setDescription(String description)
An optional description for the tenant.
-
getStatus
public TenantStatusValue getStatus()
"READY": Tenant status when ready for use. "TO_BE_DELETED": Tenant status when marked to be deleted with all it's data. "DELETED": Tenant status after data deletion is finished.
-
setStatus
public void setStatus(TenantStatusValue status)
"READY": Tenant status when ready for use. "TO_BE_DELETED": Tenant status when marked to be deleted with all it's data. "DELETED": Tenant status after data deletion is finished.
-
-