import "../ApiClient-fBZ10h6n.mjs"; import "../WorkerGroupFallback-B6jAaIQG.mjs"; import { t as WorkerGroup_default } from "../WorkerGroup-COoO34xB.mjs"; import "../ServiceType-aIzMRT54.mjs"; import { t as Isolation_default } from "../Isolation-LwSzTA0F.mjs"; import { t as SDKAuth_default } from "../SDKAuth-B50OQGF_.mjs"; import { t as TenantAppCatalogConfig_default } from "../TenantAppCatalogConfig-Ifpyz0HN.mjs"; //#region src/model/Tenant.d.ts type ITenant = { storageIsolation: Isolation_default; secretIsolation: Isolation_default; id: string; name: string; deleted: boolean; workerGroup: WorkerGroup_default; storageType: string; storageConfiguration: any; secretType: string; secretReadOnly: boolean; secretConfiguration: any; requireExistingNamespace: boolean; outputsInInternalStorage: boolean; appCatalogConfig: TenantAppCatalogConfig_default; sdkDefaultAuthentication: SDKAuth_default; }; /** * @typedef {Object} ITenant * @property {Isolation} storageIsolation * @property {Isolation} secretIsolation * @property {String} id * @property {String} name * @property {Boolean} deleted * @property {WorkerGroup} workerGroup * @property {String} storageType * @property {Object.} storageConfiguration * @property {String} secretType * @property {Boolean} secretReadOnly * @property {Object.} secretConfiguration * @property {Boolean} requireExistingNamespace * @property {Boolean} outputsInInternalStorage * @property {TenantAppCatalogConfig} appCatalogConfig * @property {SDKAuth} sdkDefaultAuthentication */ /** * The Tenant model module. * @module model/Tenant * @type {ITenant} */ declare class Tenant { /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj: any, id: any, name: any, deleted: any): void; /** * Constructs a Tenant from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/Tenant} obj Optional instance to populate. * @return {module:model/Tenant} The populated Tenant instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to Tenant. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to Tenant. */ static validateJSON(data: any): boolean; /** * Constructs a new Tenant. * @alias module:model/Tenant * @param {String} id - * @param {String} name - * @param {Boolean} deleted - */ constructor(id: string, name: string, deleted: boolean); storageIsolation: Isolation_default; secretIsolation: Isolation_default; id: string; name: string; deleted: boolean; workerGroup: WorkerGroup_default; storageType: string; storageConfiguration: any; secretType: string; secretReadOnly: boolean; secretConfiguration: any; requireExistingNamespace: boolean; outputsInInternalStorage: boolean; appCatalogConfig: TenantAppCatalogConfig_default; sdkDefaultAuthentication: SDKAuth_default; } declare namespace Tenant { let RequiredProperties: string[]; } //#endregion export { ITenant, Tenant as default };