Class NewRegistryTenantRequest
- java.lang.Object
-
- io.apicurio.multitenant.api.datamodel.NewRegistryTenantRequest
-
@Generated("jsonschema2pojo") public class NewRegistryTenantRequest extends Object
Root Type for NewTenantThe information required when creating a new tenant.
-
-
Constructor Summary
Constructors Constructor Description NewRegistryTenantRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCreatedBy()
User who created the tenantString
getDescription()
An optional description for the tenant.String
getName()
The optional name of the tenant.String
getOrganizationId()
ID of the organization the tenant belongs to (Required)List<TenantResource>
getResources()
The list of resources that this tenant will have at max.String
getTenantId()
Unique identifier of a tenant within a registry deployment (Required)void
setCreatedBy(String createdBy)
User who created the tenantvoid
setDescription(String description)
An optional description for the tenant.void
setName(String name)
The optional name of the tenant.void
setOrganizationId(String organizationId)
ID of the organization the tenant belongs to (Required)void
setResources(List<TenantResource> resources)
The list of resources that this tenant will have at max.void
setTenantId(String tenantId)
Unique identifier of a tenant within a registry deployment (Required)
-
-
-
Method Detail
-
getTenantId
public String getTenantId()
Unique identifier of a tenant within a registry deployment (Required)
-
setTenantId
public void setTenantId(String tenantId)
Unique identifier of a tenant within a registry deployment (Required)
-
getOrganizationId
public String getOrganizationId()
ID of the organization the tenant belongs to (Required)
-
setOrganizationId
public void setOrganizationId(String organizationId)
ID of the organization the tenant belongs to (Required)
-
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.
-
getCreatedBy
public String getCreatedBy()
User who created the tenant
-
setCreatedBy
public void setCreatedBy(String createdBy)
User who created the tenant
-
-