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"; //#region src/model/Namespace.d.ts type INamespace = { id: string; storageIsolation: Isolation_default; secretIsolation: Isolation_default; deleted: boolean; description: string; variables: any; /** * :model/PluginDefault>} pluginDefaults */ "": Array; workerGroup: WorkerGroup_default; storageType: string; storageConfiguration: any; secretType: string; secretReadOnly: boolean; secretConfiguration: any; outputsInInternalStorage: boolean; sdkDefaultAuthentication: SDKAuth_default; }; /** * @typedef {Object} INamespace * @property {String} id * @property {Isolation} storageIsolation * @property {Isolation} secretIsolation * @property {Boolean} deleted * @property {String} description * @property {Object.} variables * @property {Array.} pluginDefaults * @property {Array.} allowedNamespaces * @property {WorkerGroup} workerGroup * @property {String} storageType * @property {Object.} storageConfiguration * @property {String} secretType * @property {Boolean} secretReadOnly * @property {Object.} secretConfiguration * @property {Boolean} outputsInInternalStorage * @property {SDKAuth} sdkDefaultAuthentication */ /** * The Namespace model module. * @module model/Namespace * @type {INamespace} */ declare class Namespace { /** * 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, deleted: any): void; /** * Constructs a Namespace 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/Namespace} obj Optional instance to populate. * @return {module:model/Namespace} The populated Namespace instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to Namespace. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to Namespace. */ static validateJSON(data: any): boolean; /** * Constructs a new Namespace. * @alias module:model/Namespace * @implements module:model/NamespaceLight * @param {String} id - * @param {Boolean} deleted - */ constructor(id: string, deleted: boolean); id: string; storageIsolation: Isolation_default; secretIsolation: Isolation_default; deleted: boolean; description: string; variables: any; pluginDefaults: any; allowedNamespaces: any; workerGroup: WorkerGroup_default; storageType: string; storageConfiguration: any; secretType: string; secretReadOnly: boolean; secretConfiguration: any; outputsInInternalStorage: boolean; sdkDefaultAuthentication: SDKAuth_default; } declare namespace Namespace { let RequiredProperties: string[]; } //#endregion export { INamespace, Namespace as default };