/** * DTO for creating a ShapeDiver Geometry Backend System */ export interface SdPlatformRequestBackendSystemCreate { /** The endpoint of the ShapeDiver Geometry Backend System */ model_view_url: string; /** Shall this backend system be used by default? */ use_by_default?: boolean; /** Is this a productive backend system? */ is_production?: boolean; /** Maximum allowed value of max_comp_time for models on this system */ max_max_comp_time?: number; /** Maximum allowed value of num_loaded_max for models on this system */ max_num_loaded_max?: number; /** Unique alias of backend system */ alias: string; /** Description of backend system */ description?: string; /** ARN(Amazon Resource Name) which is used to call AWS lambda in order to generate geometry backend token. */ lambda_arn: string; } /** * DTO for patching a ShapeDiver Geometry Backend System */ export interface SdPlatformRequestBackendSystemPatch { /** The endpoint of the ShapeDiver Geometry Backend System */ model_view_url?: string; /** Shall this backend system be used by default? */ use_by_default?: boolean; /** Is this a productive backend system? */ is_production?: boolean; /** Maximum allowed value of max_comp_time for models on this system */ max_max_comp_time?: number; /** Maximum allowed value of num_loaded_max for models on this system */ max_num_loaded_max?: number; /** Unique alias of backend system */ alias?: string; /** Description of backend system */ description?: string; /** ARN(Amazon Resource Name) which is used to call AWS lambda in order to generate geometry backend token. */ lambda_arn?: string; } /** * DTO for creating a token for accessing a ShapeDiver Geometry Backend System */ export interface SdPlatformRequestBackendSystemToken { /** Id of the ShapeDiver Geometry Backend System */ id: string; /** Scopes to create the token for */ scopes: Array; /** The lifetime of a token in seconds, which is only set if lifetime is less then minimum lifetime for a client. */ lifetime?: number; } //# sourceMappingURL=SdPlatformRequestBackendSystem.d.ts.map