/** * A ShapeDiver Geometry Backend System */ export interface SdPlatformResponseBackendSystem { /** Id of the geometry backend system */ readonly id: string; /** The endpoint of the ShapeDiver Geometry Backend System */ readonly model_view_url: string; /** Unique alias of a backend system */ readonly alias?: string; /** The description of a backend system */ readonly description?: string; } /** * A ShapeDiver Geometry Backend System - admin access level */ export interface SdPlatformResponseBackendSystemAdmin extends SdPlatformResponseBackendSystem { /** Shall this backend system be used by default? */ readonly use_by_default: boolean; /** Is this a productive backend system? */ readonly is_production: boolean; /** Maximum allowed value of max_comp_time for models on this system */ readonly max_max_comp_time?: number; /** Maximum allowed value of num_loaded_max for models on this system */ readonly max_num_loaded_max?: number; /** epoch timestamp */ readonly created_at: string; /** epoch timestamp */ readonly updated_at: string; /** epoch timestamp */ readonly deleted_at?: string; /** ARN(Amazon Resource Name) which is used to call AWS lambda in order to generate geometry backend token. */ readonly lambda_arn: string; } /** * A token and access point for accessing a ShapeDiver Geometry Backend System */ export interface SdPlatformResponseBackendSystemToken { /** Bearer token */ readonly access_token: string; /** The endpoint of the ShapeDiver Geometry Backend System */ readonly model_view_url: string; /** The endpoint of the ShapeDiver Geometry Backend System. Obsolete, will be phased out */ readonly model_mgmt_url: string; } //# sourceMappingURL=SdPlatformResponseBackendSystem.d.ts.map