@mittwald/api-client 4.127.0 → 4.129.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2296,6 +2296,1676 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2296
2296
  [x: string]: unknown;
2297
2297
  }, 429, "application/json">>>;
2298
2298
  };
2299
+ /** The container API allows you to manage your stacks, containers, volumes and registries. */
2300
+ readonly container: {
2301
+ /** List Registries belonging to a Project. */
2302
+ listRegistries: (request: {
2303
+ projectId: string;
2304
+ headers?: {
2305
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2306
+ "x-access-token"?: string | undefined;
2307
+ } | undefined;
2308
+ queryParameters?: {
2309
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2310
+ hasCredentials?: boolean | undefined;
2311
+ limit?: number | undefined;
2312
+ skip?: number | undefined;
2313
+ } | undefined;
2314
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2315
+ headers?: Partial<{
2316
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2317
+ }>;
2318
+ } & {
2319
+ pathParameters: {
2320
+ projectId: string;
2321
+ };
2322
+ } & {
2323
+ queryParameters: {
2324
+ hasCredentials?: boolean | undefined;
2325
+ limit?: number | undefined;
2326
+ skip?: number | undefined;
2327
+ } & Partial<{
2328
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2329
+ }>;
2330
+ } & {
2331
+ headers: {
2332
+ "x-access-token"?: string | undefined;
2333
+ } & Partial<{
2334
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2335
+ }>;
2336
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerRegistry[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2337
+ [x: string]: unknown;
2338
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2339
+ [x: string]: unknown;
2340
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2341
+ [x: string]: unknown;
2342
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2343
+ [x: string]: unknown;
2344
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2345
+ headers?: Partial<{
2346
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2347
+ }>;
2348
+ } & {
2349
+ pathParameters: {
2350
+ projectId: string;
2351
+ };
2352
+ } & {
2353
+ queryParameters: {
2354
+ hasCredentials?: boolean | undefined;
2355
+ limit?: number | undefined;
2356
+ skip?: number | undefined;
2357
+ } & Partial<{
2358
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2359
+ }>;
2360
+ } & {
2361
+ headers: {
2362
+ "x-access-token"?: string | undefined;
2363
+ } & Partial<{
2364
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2365
+ }>;
2366
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerRegistry[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2367
+ [x: string]: unknown;
2368
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2369
+ [x: string]: unknown;
2370
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2371
+ [x: string]: unknown;
2372
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2373
+ [x: string]: unknown;
2374
+ }, 500, "application/json">>>;
2375
+ /** Create a Registry. */
2376
+ createRegistry: (request: {
2377
+ data: {
2378
+ description: string;
2379
+ uri: string;
2380
+ credentials?: {
2381
+ password: string;
2382
+ username: string;
2383
+ } | undefined;
2384
+ };
2385
+ projectId: string;
2386
+ headers?: {
2387
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2388
+ "x-access-token"?: string | undefined;
2389
+ } | undefined;
2390
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2391
+ data: {
2392
+ credentials?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials | undefined;
2393
+ description: string;
2394
+ uri: string;
2395
+ };
2396
+ } & {
2397
+ pathParameters: {
2398
+ projectId: string;
2399
+ };
2400
+ } & {
2401
+ headers?: Partial<{
2402
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2403
+ }>;
2404
+ } & {
2405
+ headers: {
2406
+ "x-access-token"?: string | undefined;
2407
+ } & Partial<{
2408
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2409
+ }>;
2410
+ }, import("@mittwald/api-client-commons").Response<{
2411
+ credentials?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerRegistryCredentials | undefined;
2412
+ description: string;
2413
+ id: string;
2414
+ projectId: string;
2415
+ uri: string;
2416
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
2417
+ [x: string]: unknown;
2418
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2419
+ [x: string]: unknown;
2420
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2421
+ [x: string]: unknown;
2422
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2423
+ [x: string]: unknown;
2424
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
2425
+ [x: string]: unknown;
2426
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
2427
+ [x: string]: unknown;
2428
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2429
+ [x: string]: unknown;
2430
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2431
+ data: {
2432
+ credentials?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials | undefined;
2433
+ description: string;
2434
+ uri: string;
2435
+ };
2436
+ } & {
2437
+ pathParameters: {
2438
+ projectId: string;
2439
+ };
2440
+ } & {
2441
+ headers?: Partial<{
2442
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2443
+ }>;
2444
+ } & {
2445
+ headers: {
2446
+ "x-access-token"?: string | undefined;
2447
+ } & Partial<{
2448
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2449
+ }>;
2450
+ }, import("@mittwald/api-client-commons").Response<{
2451
+ credentials?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerRegistryCredentials | undefined;
2452
+ description: string;
2453
+ id: string;
2454
+ projectId: string;
2455
+ uri: string;
2456
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
2457
+ [x: string]: unknown;
2458
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2459
+ [x: string]: unknown;
2460
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2461
+ [x: string]: unknown;
2462
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2463
+ [x: string]: unknown;
2464
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
2465
+ [x: string]: unknown;
2466
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
2467
+ [x: string]: unknown;
2468
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2469
+ [x: string]: unknown;
2470
+ }, 500, "application/json">>>;
2471
+ /** Get a Stack. */
2472
+ getStack: (request: {
2473
+ stackId: string;
2474
+ headers?: {
2475
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2476
+ "x-access-token"?: string | undefined;
2477
+ } | undefined;
2478
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2479
+ headers?: Partial<{
2480
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2481
+ }>;
2482
+ } & {
2483
+ pathParameters: {
2484
+ stackId: string;
2485
+ };
2486
+ } & {
2487
+ headers: {
2488
+ "x-access-token"?: string | undefined;
2489
+ } & Partial<{
2490
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2491
+ }>;
2492
+ }, import("@mittwald/api-client-commons").Response<{
2493
+ description: string;
2494
+ disabled: boolean;
2495
+ id: string;
2496
+ prefix: string;
2497
+ projectId: string;
2498
+ services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
2499
+ volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
2500
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2501
+ [x: string]: unknown;
2502
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2503
+ [x: string]: unknown;
2504
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2505
+ [x: string]: unknown;
2506
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2507
+ [x: string]: unknown;
2508
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2509
+ headers?: Partial<{
2510
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2511
+ }>;
2512
+ } & {
2513
+ pathParameters: {
2514
+ stackId: string;
2515
+ };
2516
+ } & {
2517
+ headers: {
2518
+ "x-access-token"?: string | undefined;
2519
+ } & Partial<{
2520
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2521
+ }>;
2522
+ }, import("@mittwald/api-client-commons").Response<{
2523
+ description: string;
2524
+ disabled: boolean;
2525
+ id: string;
2526
+ prefix: string;
2527
+ projectId: string;
2528
+ services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
2529
+ volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
2530
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2531
+ [x: string]: unknown;
2532
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2533
+ [x: string]: unknown;
2534
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2535
+ [x: string]: unknown;
2536
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2537
+ [x: string]: unknown;
2538
+ }, 500, "application/json">>>;
2539
+ /** Declaratively create, update or delete Services or Volumes belonging to a Stack. */
2540
+ declareStack: (request: {
2541
+ stackId: string;
2542
+ data?: {
2543
+ services?: {
2544
+ [x: string]: {
2545
+ description: string;
2546
+ image: string;
2547
+ ports: string[];
2548
+ command?: string[] | undefined;
2549
+ entrypoint?: string[] | undefined;
2550
+ envs?: {
2551
+ [x: string]: string;
2552
+ } | undefined;
2553
+ volumes?: string[] | undefined;
2554
+ };
2555
+ } | undefined;
2556
+ volumes?: {
2557
+ [x: string]: {
2558
+ name: string;
2559
+ };
2560
+ } | undefined;
2561
+ } | undefined;
2562
+ headers?: {
2563
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2564
+ "x-access-token"?: string | undefined;
2565
+ } | undefined;
2566
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2567
+ data: {
2568
+ services?: {
2569
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceDeclareRequest;
2570
+ } | undefined;
2571
+ volumes?: {
2572
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeDeclareRequest;
2573
+ } | undefined;
2574
+ };
2575
+ } & {
2576
+ pathParameters: {
2577
+ stackId: string;
2578
+ };
2579
+ } & {
2580
+ headers?: Partial<{
2581
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2582
+ }>;
2583
+ } & {
2584
+ headers: {
2585
+ "x-access-token"?: string | undefined;
2586
+ } & Partial<{
2587
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2588
+ }>;
2589
+ }, import("@mittwald/api-client-commons").Response<{
2590
+ description: string;
2591
+ disabled: boolean;
2592
+ id: string;
2593
+ prefix: string;
2594
+ projectId: string;
2595
+ services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
2596
+ volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
2597
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2598
+ [x: string]: unknown;
2599
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2600
+ [x: string]: unknown;
2601
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2602
+ [x: string]: unknown;
2603
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
2604
+ [x: string]: unknown;
2605
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2606
+ [x: string]: unknown;
2607
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2608
+ data: {
2609
+ services?: {
2610
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceDeclareRequest;
2611
+ } | undefined;
2612
+ volumes?: {
2613
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeDeclareRequest;
2614
+ } | undefined;
2615
+ };
2616
+ } & {
2617
+ pathParameters: {
2618
+ stackId: string;
2619
+ };
2620
+ } & {
2621
+ headers?: Partial<{
2622
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2623
+ }>;
2624
+ } & {
2625
+ headers: {
2626
+ "x-access-token"?: string | undefined;
2627
+ } & Partial<{
2628
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2629
+ }>;
2630
+ }, import("@mittwald/api-client-commons").Response<{
2631
+ description: string;
2632
+ disabled: boolean;
2633
+ id: string;
2634
+ prefix: string;
2635
+ projectId: string;
2636
+ services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
2637
+ volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
2638
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2639
+ [x: string]: unknown;
2640
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2641
+ [x: string]: unknown;
2642
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2643
+ [x: string]: unknown;
2644
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
2645
+ [x: string]: unknown;
2646
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2647
+ [x: string]: unknown;
2648
+ }, 500, "application/json">>>;
2649
+ /** Create, update or delete Services or Volumes belonging to a Stack. */
2650
+ updateStack: (request: {
2651
+ stackId: string;
2652
+ data?: {
2653
+ services?: {
2654
+ [x: string]: {
2655
+ command?: string[] | undefined;
2656
+ description?: string | undefined;
2657
+ entrypoint?: string[] | undefined;
2658
+ envs?: {
2659
+ [x: string]: string;
2660
+ } | undefined;
2661
+ image?: string | undefined;
2662
+ ports?: string[] | undefined;
2663
+ volumes?: string[] | undefined;
2664
+ };
2665
+ } | undefined;
2666
+ volumes?: {
2667
+ [x: string]: {
2668
+ name?: string | undefined;
2669
+ };
2670
+ } | undefined;
2671
+ } | undefined;
2672
+ headers?: {
2673
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2674
+ "x-access-token"?: string | undefined;
2675
+ } | undefined;
2676
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2677
+ data: {
2678
+ services?: {
2679
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceRequest;
2680
+ } | undefined;
2681
+ volumes?: {
2682
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeRequest;
2683
+ } | undefined;
2684
+ };
2685
+ } & {
2686
+ pathParameters: {
2687
+ stackId: string;
2688
+ };
2689
+ } & {
2690
+ headers?: Partial<{
2691
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2692
+ }>;
2693
+ } & {
2694
+ headers: {
2695
+ "x-access-token"?: string | undefined;
2696
+ } & Partial<{
2697
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2698
+ }>;
2699
+ }, import("@mittwald/api-client-commons").Response<{
2700
+ description: string;
2701
+ disabled: boolean;
2702
+ id: string;
2703
+ prefix: string;
2704
+ projectId: string;
2705
+ services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
2706
+ volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
2707
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2708
+ [x: string]: unknown;
2709
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2710
+ [x: string]: unknown;
2711
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2712
+ [x: string]: unknown;
2713
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
2714
+ [x: string]: unknown;
2715
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2716
+ [x: string]: unknown;
2717
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2718
+ data: {
2719
+ services?: {
2720
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceRequest;
2721
+ } | undefined;
2722
+ volumes?: {
2723
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeRequest;
2724
+ } | undefined;
2725
+ };
2726
+ } & {
2727
+ pathParameters: {
2728
+ stackId: string;
2729
+ };
2730
+ } & {
2731
+ headers?: Partial<{
2732
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2733
+ }>;
2734
+ } & {
2735
+ headers: {
2736
+ "x-access-token"?: string | undefined;
2737
+ } & Partial<{
2738
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2739
+ }>;
2740
+ }, import("@mittwald/api-client-commons").Response<{
2741
+ description: string;
2742
+ disabled: boolean;
2743
+ id: string;
2744
+ prefix: string;
2745
+ projectId: string;
2746
+ services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
2747
+ volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
2748
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2749
+ [x: string]: unknown;
2750
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2751
+ [x: string]: unknown;
2752
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2753
+ [x: string]: unknown;
2754
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
2755
+ [x: string]: unknown;
2756
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2757
+ [x: string]: unknown;
2758
+ }, 500, "application/json">>>;
2759
+ /** Get a Registry. */
2760
+ getRegistry: (request: {
2761
+ registryId: string;
2762
+ headers?: {
2763
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2764
+ "x-access-token"?: string | undefined;
2765
+ } | undefined;
2766
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2767
+ headers?: Partial<{
2768
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2769
+ }>;
2770
+ } & {
2771
+ pathParameters: {
2772
+ registryId: string;
2773
+ };
2774
+ } & {
2775
+ headers: {
2776
+ "x-access-token"?: string | undefined;
2777
+ } & Partial<{
2778
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2779
+ }>;
2780
+ }, import("@mittwald/api-client-commons").Response<{
2781
+ credentials?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerRegistryCredentials | undefined;
2782
+ description: string;
2783
+ id: string;
2784
+ projectId: string;
2785
+ uri: string;
2786
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2787
+ [x: string]: unknown;
2788
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2789
+ [x: string]: unknown;
2790
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2791
+ [x: string]: unknown;
2792
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2793
+ [x: string]: unknown;
2794
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2795
+ headers?: Partial<{
2796
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2797
+ }>;
2798
+ } & {
2799
+ pathParameters: {
2800
+ registryId: string;
2801
+ };
2802
+ } & {
2803
+ headers: {
2804
+ "x-access-token"?: string | undefined;
2805
+ } & Partial<{
2806
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2807
+ }>;
2808
+ }, import("@mittwald/api-client-commons").Response<{
2809
+ credentials?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerRegistryCredentials | undefined;
2810
+ description: string;
2811
+ id: string;
2812
+ projectId: string;
2813
+ uri: string;
2814
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2815
+ [x: string]: unknown;
2816
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2817
+ [x: string]: unknown;
2818
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2819
+ [x: string]: unknown;
2820
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2821
+ [x: string]: unknown;
2822
+ }, 500, "application/json">>>;
2823
+ /** Delete a Registry. */
2824
+ deleteRegistry: (request: {
2825
+ registryId: string;
2826
+ headers?: {
2827
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2828
+ "x-access-token"?: string | undefined;
2829
+ } | undefined;
2830
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2831
+ headers?: Partial<{
2832
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2833
+ }>;
2834
+ } & {
2835
+ pathParameters: {
2836
+ registryId: string;
2837
+ };
2838
+ } & {
2839
+ headers: {
2840
+ "x-access-token"?: string | undefined;
2841
+ } & Partial<{
2842
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2843
+ }>;
2844
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
2845
+ [x: string]: unknown;
2846
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2847
+ [x: string]: unknown;
2848
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2849
+ [x: string]: unknown;
2850
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2851
+ [x: string]: unknown;
2852
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2853
+ [x: string]: unknown;
2854
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2855
+ headers?: Partial<{
2856
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2857
+ }>;
2858
+ } & {
2859
+ pathParameters: {
2860
+ registryId: string;
2861
+ };
2862
+ } & {
2863
+ headers: {
2864
+ "x-access-token"?: string | undefined;
2865
+ } & Partial<{
2866
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2867
+ }>;
2868
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
2869
+ [x: string]: unknown;
2870
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2871
+ [x: string]: unknown;
2872
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2873
+ [x: string]: unknown;
2874
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2875
+ [x: string]: unknown;
2876
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2877
+ [x: string]: unknown;
2878
+ }, 500, "application/json">>>;
2879
+ /** Update a Registry. */
2880
+ updateRegistry: (request: {
2881
+ registryId: string;
2882
+ data?: {
2883
+ credentials?: {
2884
+ password: string;
2885
+ username: string;
2886
+ } | undefined;
2887
+ description?: string | undefined;
2888
+ uri?: string | undefined;
2889
+ } | undefined;
2890
+ headers?: {
2891
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2892
+ "x-access-token"?: string | undefined;
2893
+ } | undefined;
2894
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2895
+ data: {
2896
+ credentials?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials | undefined;
2897
+ description?: string | undefined;
2898
+ uri?: string | undefined;
2899
+ };
2900
+ } & {
2901
+ pathParameters: {
2902
+ registryId: string;
2903
+ };
2904
+ } & {
2905
+ headers?: Partial<{
2906
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2907
+ }>;
2908
+ } & {
2909
+ headers: {
2910
+ "x-access-token"?: string | undefined;
2911
+ } & Partial<{
2912
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2913
+ }>;
2914
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
2915
+ [x: string]: unknown;
2916
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2917
+ [x: string]: unknown;
2918
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2919
+ [x: string]: unknown;
2920
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
2921
+ [x: string]: unknown;
2922
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
2923
+ [x: string]: unknown;
2924
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2925
+ [x: string]: unknown;
2926
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2927
+ data: {
2928
+ credentials?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials | undefined;
2929
+ description?: string | undefined;
2930
+ uri?: string | undefined;
2931
+ };
2932
+ } & {
2933
+ pathParameters: {
2934
+ registryId: string;
2935
+ };
2936
+ } & {
2937
+ headers?: Partial<{
2938
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2939
+ }>;
2940
+ } & {
2941
+ headers: {
2942
+ "x-access-token"?: string | undefined;
2943
+ } & Partial<{
2944
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2945
+ }>;
2946
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
2947
+ [x: string]: unknown;
2948
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2949
+ [x: string]: unknown;
2950
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2951
+ [x: string]: unknown;
2952
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
2953
+ [x: string]: unknown;
2954
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
2955
+ [x: string]: unknown;
2956
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
2957
+ [x: string]: unknown;
2958
+ }, 500, "application/json">>>;
2959
+ /** Get a Volume belonging to a Stack. */
2960
+ getVolume: (request: {
2961
+ stackId: string;
2962
+ volumeId: string;
2963
+ headers?: {
2964
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2965
+ "x-access-token"?: string | undefined;
2966
+ } | undefined;
2967
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2968
+ headers?: Partial<{
2969
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2970
+ }>;
2971
+ } & {
2972
+ pathParameters: {
2973
+ stackId: string;
2974
+ volumeId: string;
2975
+ };
2976
+ } & {
2977
+ headers: {
2978
+ "x-access-token"?: string | undefined;
2979
+ } & Partial<{
2980
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2981
+ }>;
2982
+ }, import("@mittwald/api-client-commons").Response<{
2983
+ id: string;
2984
+ name: string;
2985
+ orphaned: boolean;
2986
+ stackId: string;
2987
+ storageUsageInBytes: number;
2988
+ storageUsageInBytesSetAt: string;
2989
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2990
+ [x: string]: unknown;
2991
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2992
+ [x: string]: unknown;
2993
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2994
+ [x: string]: unknown;
2995
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2996
+ [x: string]: unknown;
2997
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
2998
+ [x: string]: unknown;
2999
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3000
+ [x: string]: unknown;
3001
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3002
+ headers?: Partial<{
3003
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3004
+ }>;
3005
+ } & {
3006
+ pathParameters: {
3007
+ stackId: string;
3008
+ volumeId: string;
3009
+ };
3010
+ } & {
3011
+ headers: {
3012
+ "x-access-token"?: string | undefined;
3013
+ } & Partial<{
3014
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3015
+ }>;
3016
+ }, import("@mittwald/api-client-commons").Response<{
3017
+ id: string;
3018
+ name: string;
3019
+ orphaned: boolean;
3020
+ stackId: string;
3021
+ storageUsageInBytes: number;
3022
+ storageUsageInBytesSetAt: string;
3023
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3024
+ [x: string]: unknown;
3025
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3026
+ [x: string]: unknown;
3027
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3028
+ [x: string]: unknown;
3029
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3030
+ [x: string]: unknown;
3031
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3032
+ [x: string]: unknown;
3033
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3034
+ [x: string]: unknown;
3035
+ }, 500, "application/json">>>;
3036
+ /** Delete a Volume belonging to a Stack. */
3037
+ deleteVolume: (request: {
3038
+ stackId: string;
3039
+ volumeId: string;
3040
+ headers?: {
3041
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3042
+ "x-access-token"?: string | undefined;
3043
+ } | undefined;
3044
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3045
+ headers?: Partial<{
3046
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3047
+ }>;
3048
+ } & {
3049
+ pathParameters: {
3050
+ stackId: string;
3051
+ volumeId: string;
3052
+ };
3053
+ } & {
3054
+ headers: {
3055
+ "x-access-token"?: string | undefined;
3056
+ } & Partial<{
3057
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3058
+ }>;
3059
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3060
+ [x: string]: unknown;
3061
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3062
+ [x: string]: unknown;
3063
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3064
+ [x: string]: unknown;
3065
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3066
+ [x: string]: unknown;
3067
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3068
+ [x: string]: unknown;
3069
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3070
+ headers?: Partial<{
3071
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3072
+ }>;
3073
+ } & {
3074
+ pathParameters: {
3075
+ stackId: string;
3076
+ volumeId: string;
3077
+ };
3078
+ } & {
3079
+ headers: {
3080
+ "x-access-token"?: string | undefined;
3081
+ } & Partial<{
3082
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3083
+ }>;
3084
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3085
+ [x: string]: unknown;
3086
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3087
+ [x: string]: unknown;
3088
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3089
+ [x: string]: unknown;
3090
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3091
+ [x: string]: unknown;
3092
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3093
+ [x: string]: unknown;
3094
+ }, 500, "application/json">>>;
3095
+ /** Get a ContainerImageConfig. */
3096
+ getContainerImageConfig: (request: {
3097
+ queryParameters: {
3098
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3099
+ imageReference: string;
3100
+ useCredentialsForProjectId?: string | undefined;
3101
+ useCredentialsForRegistryId?: string | undefined;
3102
+ generateAiData?: boolean | undefined;
3103
+ };
3104
+ headers?: {
3105
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3106
+ "x-access-token"?: string | undefined;
3107
+ } | undefined;
3108
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3109
+ headers?: Partial<{
3110
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3111
+ }>;
3112
+ } & {
3113
+ queryParameters: {
3114
+ imageReference: string;
3115
+ useCredentialsForProjectId?: string | undefined;
3116
+ useCredentialsForRegistryId?: string | undefined;
3117
+ generateAiData?: boolean | undefined;
3118
+ } & Partial<{
3119
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3120
+ }>;
3121
+ } & {
3122
+ headers: {
3123
+ "x-access-token"?: string | undefined;
3124
+ } & Partial<{
3125
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3126
+ }>;
3127
+ }, import("@mittwald/api-client-commons").Response<{
3128
+ command?: string[] | undefined;
3129
+ entrypoint?: string[] | undefined;
3130
+ env?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigEnv[] | undefined;
3131
+ exposedPorts?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigExposedPort[] | undefined;
3132
+ hasAiGeneratedData: boolean;
3133
+ isAiAvailable: boolean;
3134
+ isUserRoot: boolean;
3135
+ overwritingUser?: number | undefined;
3136
+ user: string;
3137
+ userId: number;
3138
+ volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigVolume[] | undefined;
3139
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3140
+ [x: string]: unknown;
3141
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3142
+ [x: string]: unknown;
3143
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3144
+ [x: string]: unknown;
3145
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3146
+ [x: string]: unknown;
3147
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3148
+ headers?: Partial<{
3149
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3150
+ }>;
3151
+ } & {
3152
+ queryParameters: {
3153
+ imageReference: string;
3154
+ useCredentialsForProjectId?: string | undefined;
3155
+ useCredentialsForRegistryId?: string | undefined;
3156
+ generateAiData?: boolean | undefined;
3157
+ } & Partial<{
3158
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3159
+ }>;
3160
+ } & {
3161
+ headers: {
3162
+ "x-access-token"?: string | undefined;
3163
+ } & Partial<{
3164
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3165
+ }>;
3166
+ }, import("@mittwald/api-client-commons").Response<{
3167
+ command?: string[] | undefined;
3168
+ entrypoint?: string[] | undefined;
3169
+ env?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigEnv[] | undefined;
3170
+ exposedPorts?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigExposedPort[] | undefined;
3171
+ hasAiGeneratedData: boolean;
3172
+ isAiAvailable: boolean;
3173
+ isUserRoot: boolean;
3174
+ overwritingUser?: number | undefined;
3175
+ user: string;
3176
+ userId: number;
3177
+ volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigVolume[] | undefined;
3178
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3179
+ [x: string]: unknown;
3180
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3181
+ [x: string]: unknown;
3182
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3183
+ [x: string]: unknown;
3184
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3185
+ [x: string]: unknown;
3186
+ }, 500, "application/json">>>;
3187
+ /** Get logs belonging to a Service. */
3188
+ getServiceLogs: (request: {
3189
+ stackId: string;
3190
+ serviceId: string;
3191
+ headers?: {
3192
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3193
+ "x-access-token"?: string | undefined;
3194
+ } | undefined;
3195
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3196
+ headers?: Partial<{
3197
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3198
+ }>;
3199
+ } & {
3200
+ pathParameters: {
3201
+ stackId: string;
3202
+ serviceId: string;
3203
+ };
3204
+ } & {
3205
+ headers: {
3206
+ "x-access-token"?: string | undefined;
3207
+ } & Partial<{
3208
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3209
+ }>;
3210
+ }, import("@mittwald/api-client-commons").Response<string, 200, "text/plain"> | import("@mittwald/api-client-commons").Response<{
3211
+ [x: string]: unknown;
3212
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3213
+ [x: string]: unknown;
3214
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3215
+ [x: string]: unknown;
3216
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3217
+ [x: string]: unknown;
3218
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
3219
+ [x: string]: unknown;
3220
+ }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3221
+ headers?: Partial<{
3222
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3223
+ }>;
3224
+ } & {
3225
+ pathParameters: {
3226
+ stackId: string;
3227
+ serviceId: string;
3228
+ };
3229
+ } & {
3230
+ headers: {
3231
+ "x-access-token"?: string | undefined;
3232
+ } & Partial<{
3233
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3234
+ }>;
3235
+ }, import("@mittwald/api-client-commons").Response<string, 200, "text/plain"> | import("@mittwald/api-client-commons").Response<{
3236
+ [x: string]: unknown;
3237
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3238
+ [x: string]: unknown;
3239
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3240
+ [x: string]: unknown;
3241
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3242
+ [x: string]: unknown;
3243
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
3244
+ [x: string]: unknown;
3245
+ }, 503, "application/json">>>;
3246
+ /** Get a Service belonging to a Stack. */
3247
+ getService: (request: {
3248
+ stackId: string;
3249
+ serviceId: string;
3250
+ headers?: {
3251
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3252
+ "x-access-token"?: string | undefined;
3253
+ } | undefined;
3254
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3255
+ headers?: Partial<{
3256
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3257
+ }>;
3258
+ } & {
3259
+ pathParameters: {
3260
+ stackId: string;
3261
+ serviceId: string;
3262
+ };
3263
+ } & {
3264
+ headers: {
3265
+ "x-access-token"?: string | undefined;
3266
+ } & Partial<{
3267
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3268
+ }>;
3269
+ }, import("@mittwald/api-client-commons").Response<{
3270
+ deployedState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
3271
+ description: string;
3272
+ id: string;
3273
+ message?: string | undefined;
3274
+ pendingState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
3275
+ projectId: string;
3276
+ serviceName: string;
3277
+ shortId: string;
3278
+ stackId: string;
3279
+ status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
3280
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3281
+ [x: string]: unknown;
3282
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3283
+ [x: string]: unknown;
3284
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3285
+ [x: string]: unknown;
3286
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3287
+ [x: string]: unknown;
3288
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3289
+ [x: string]: unknown;
3290
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3291
+ [x: string]: unknown;
3292
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3293
+ headers?: Partial<{
3294
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3295
+ }>;
3296
+ } & {
3297
+ pathParameters: {
3298
+ stackId: string;
3299
+ serviceId: string;
3300
+ };
3301
+ } & {
3302
+ headers: {
3303
+ "x-access-token"?: string | undefined;
3304
+ } & Partial<{
3305
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3306
+ }>;
3307
+ }, import("@mittwald/api-client-commons").Response<{
3308
+ deployedState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
3309
+ description: string;
3310
+ id: string;
3311
+ message?: string | undefined;
3312
+ pendingState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
3313
+ projectId: string;
3314
+ serviceName: string;
3315
+ shortId: string;
3316
+ stackId: string;
3317
+ status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
3318
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3319
+ [x: string]: unknown;
3320
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3321
+ [x: string]: unknown;
3322
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3323
+ [x: string]: unknown;
3324
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3325
+ [x: string]: unknown;
3326
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3327
+ [x: string]: unknown;
3328
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3329
+ [x: string]: unknown;
3330
+ }, 500, "application/json">>>;
3331
+ /** List Services belonging to a Project. */
3332
+ listServices: (request: {
3333
+ projectId: string;
3334
+ headers?: {
3335
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3336
+ "x-access-token"?: string | undefined;
3337
+ } | undefined;
3338
+ queryParameters?: {
3339
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3340
+ stackId?: string | undefined;
3341
+ } | undefined;
3342
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3343
+ headers?: Partial<{
3344
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3345
+ }>;
3346
+ } & {
3347
+ pathParameters: {
3348
+ projectId: string;
3349
+ };
3350
+ } & {
3351
+ queryParameters: {
3352
+ stackId?: string | undefined;
3353
+ } & Partial<{
3354
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3355
+ }>;
3356
+ } & {
3357
+ headers: {
3358
+ "x-access-token"?: string | undefined;
3359
+ } & Partial<{
3360
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3361
+ }>;
3362
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3363
+ [x: string]: unknown;
3364
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3365
+ [x: string]: unknown;
3366
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3367
+ [x: string]: unknown;
3368
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3369
+ [x: string]: unknown;
3370
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3371
+ [x: string]: unknown;
3372
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3373
+ headers?: Partial<{
3374
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3375
+ }>;
3376
+ } & {
3377
+ pathParameters: {
3378
+ projectId: string;
3379
+ };
3380
+ } & {
3381
+ queryParameters: {
3382
+ stackId?: string | undefined;
3383
+ } & Partial<{
3384
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3385
+ }>;
3386
+ } & {
3387
+ headers: {
3388
+ "x-access-token"?: string | undefined;
3389
+ } & Partial<{
3390
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3391
+ }>;
3392
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3393
+ [x: string]: unknown;
3394
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3395
+ [x: string]: unknown;
3396
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3397
+ [x: string]: unknown;
3398
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3399
+ [x: string]: unknown;
3400
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3401
+ [x: string]: unknown;
3402
+ }, 500, "application/json">>>;
3403
+ /** List Stacks belonging to a Project. */
3404
+ listStacks: (request: {
3405
+ projectId: string;
3406
+ headers?: {
3407
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3408
+ "x-access-token"?: string | undefined;
3409
+ } | undefined;
3410
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3411
+ headers?: Partial<{
3412
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3413
+ }>;
3414
+ } & {
3415
+ pathParameters: {
3416
+ projectId: string;
3417
+ };
3418
+ } & {
3419
+ headers: {
3420
+ "x-access-token"?: string | undefined;
3421
+ } & Partial<{
3422
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3423
+ }>;
3424
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerStackResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3425
+ [x: string]: unknown;
3426
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3427
+ [x: string]: unknown;
3428
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3429
+ [x: string]: unknown;
3430
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3431
+ [x: string]: unknown;
3432
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3433
+ headers?: Partial<{
3434
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3435
+ }>;
3436
+ } & {
3437
+ pathParameters: {
3438
+ projectId: string;
3439
+ };
3440
+ } & {
3441
+ headers: {
3442
+ "x-access-token"?: string | undefined;
3443
+ } & Partial<{
3444
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3445
+ }>;
3446
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerStackResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3447
+ [x: string]: unknown;
3448
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3449
+ [x: string]: unknown;
3450
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3451
+ [x: string]: unknown;
3452
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3453
+ [x: string]: unknown;
3454
+ }, 500, "application/json">>>;
3455
+ /** List Volumes belonging to a Project. */
3456
+ listVolumes: (request: {
3457
+ projectId: string;
3458
+ headers?: {
3459
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3460
+ "x-access-token"?: string | undefined;
3461
+ } | undefined;
3462
+ queryParameters?: {
3463
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3464
+ stackId?: string | undefined;
3465
+ } | undefined;
3466
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3467
+ headers?: Partial<{
3468
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3469
+ }>;
3470
+ } & {
3471
+ pathParameters: {
3472
+ projectId: string;
3473
+ };
3474
+ } & {
3475
+ queryParameters: {
3476
+ stackId?: string | undefined;
3477
+ } & Partial<{
3478
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3479
+ }>;
3480
+ } & {
3481
+ headers: {
3482
+ "x-access-token"?: string | undefined;
3483
+ } & Partial<{
3484
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3485
+ }>;
3486
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3487
+ [x: string]: unknown;
3488
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3489
+ [x: string]: unknown;
3490
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3491
+ [x: string]: unknown;
3492
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3493
+ [x: string]: unknown;
3494
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3495
+ headers?: Partial<{
3496
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3497
+ }>;
3498
+ } & {
3499
+ pathParameters: {
3500
+ projectId: string;
3501
+ };
3502
+ } & {
3503
+ queryParameters: {
3504
+ stackId?: string | undefined;
3505
+ } & Partial<{
3506
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3507
+ }>;
3508
+ } & {
3509
+ headers: {
3510
+ "x-access-token"?: string | undefined;
3511
+ } & Partial<{
3512
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3513
+ }>;
3514
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3515
+ [x: string]: unknown;
3516
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3517
+ [x: string]: unknown;
3518
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3519
+ [x: string]: unknown;
3520
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3521
+ [x: string]: unknown;
3522
+ }, 500, "application/json">>>;
3523
+ /** Pulls the latest version of the Service's image and recreates the Service. */
3524
+ pullImageForService: (request: {
3525
+ stackId: string;
3526
+ serviceId: string;
3527
+ headers?: {
3528
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3529
+ "x-access-token"?: string | undefined;
3530
+ } | undefined;
3531
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3532
+ headers?: Partial<{
3533
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3534
+ }>;
3535
+ } & {
3536
+ pathParameters: {
3537
+ stackId: string;
3538
+ serviceId: string;
3539
+ };
3540
+ } & {
3541
+ headers: {
3542
+ "x-access-token"?: string | undefined;
3543
+ } & Partial<{
3544
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3545
+ }>;
3546
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3547
+ [x: string]: unknown;
3548
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3549
+ [x: string]: unknown;
3550
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3551
+ [x: string]: unknown;
3552
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3553
+ [x: string]: unknown;
3554
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3555
+ [x: string]: unknown;
3556
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3557
+ [x: string]: unknown;
3558
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3559
+ headers?: Partial<{
3560
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3561
+ }>;
3562
+ } & {
3563
+ pathParameters: {
3564
+ stackId: string;
3565
+ serviceId: string;
3566
+ };
3567
+ } & {
3568
+ headers: {
3569
+ "x-access-token"?: string | undefined;
3570
+ } & Partial<{
3571
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3572
+ }>;
3573
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3574
+ [x: string]: unknown;
3575
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3576
+ [x: string]: unknown;
3577
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3578
+ [x: string]: unknown;
3579
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3580
+ [x: string]: unknown;
3581
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3582
+ [x: string]: unknown;
3583
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3584
+ [x: string]: unknown;
3585
+ }, 500, "application/json">>>;
3586
+ /** Recreate a Service. */
3587
+ recreateService: (request: {
3588
+ stackId: string;
3589
+ serviceId: string;
3590
+ headers?: {
3591
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3592
+ "x-access-token"?: string | undefined;
3593
+ } | undefined;
3594
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3595
+ headers?: Partial<{
3596
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3597
+ }>;
3598
+ } & {
3599
+ pathParameters: {
3600
+ stackId: string;
3601
+ serviceId: string;
3602
+ };
3603
+ } & {
3604
+ headers: {
3605
+ "x-access-token"?: string | undefined;
3606
+ } & Partial<{
3607
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3608
+ }>;
3609
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3610
+ [x: string]: unknown;
3611
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3612
+ [x: string]: unknown;
3613
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3614
+ [x: string]: unknown;
3615
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3616
+ [x: string]: unknown;
3617
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3618
+ [x: string]: unknown;
3619
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3620
+ [x: string]: unknown;
3621
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3622
+ headers?: Partial<{
3623
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3624
+ }>;
3625
+ } & {
3626
+ pathParameters: {
3627
+ stackId: string;
3628
+ serviceId: string;
3629
+ };
3630
+ } & {
3631
+ headers: {
3632
+ "x-access-token"?: string | undefined;
3633
+ } & Partial<{
3634
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3635
+ }>;
3636
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3637
+ [x: string]: unknown;
3638
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3639
+ [x: string]: unknown;
3640
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3641
+ [x: string]: unknown;
3642
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3643
+ [x: string]: unknown;
3644
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3645
+ [x: string]: unknown;
3646
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3647
+ [x: string]: unknown;
3648
+ }, 500, "application/json">>>;
3649
+ /** Restart a started Service. */
3650
+ restartService: (request: {
3651
+ stackId: string;
3652
+ serviceId: string;
3653
+ headers?: {
3654
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3655
+ "x-access-token"?: string | undefined;
3656
+ } | undefined;
3657
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3658
+ headers?: Partial<{
3659
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3660
+ }>;
3661
+ } & {
3662
+ pathParameters: {
3663
+ stackId: string;
3664
+ serviceId: string;
3665
+ };
3666
+ } & {
3667
+ headers: {
3668
+ "x-access-token"?: string | undefined;
3669
+ } & Partial<{
3670
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3671
+ }>;
3672
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3673
+ [x: string]: unknown;
3674
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3675
+ [x: string]: unknown;
3676
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3677
+ [x: string]: unknown;
3678
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3679
+ [x: string]: unknown;
3680
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3681
+ [x: string]: unknown;
3682
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3683
+ [x: string]: unknown;
3684
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3685
+ headers?: Partial<{
3686
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3687
+ }>;
3688
+ } & {
3689
+ pathParameters: {
3690
+ stackId: string;
3691
+ serviceId: string;
3692
+ };
3693
+ } & {
3694
+ headers: {
3695
+ "x-access-token"?: string | undefined;
3696
+ } & Partial<{
3697
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3698
+ }>;
3699
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3700
+ [x: string]: unknown;
3701
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3702
+ [x: string]: unknown;
3703
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3704
+ [x: string]: unknown;
3705
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3706
+ [x: string]: unknown;
3707
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3708
+ [x: string]: unknown;
3709
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3710
+ [x: string]: unknown;
3711
+ }, 500, "application/json">>>;
3712
+ /** Start a stopped Service. */
3713
+ startService: (request: {
3714
+ stackId: string;
3715
+ serviceId: string;
3716
+ headers?: {
3717
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3718
+ "x-access-token"?: string | undefined;
3719
+ } | undefined;
3720
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3721
+ headers?: Partial<{
3722
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3723
+ }>;
3724
+ } & {
3725
+ pathParameters: {
3726
+ stackId: string;
3727
+ serviceId: string;
3728
+ };
3729
+ } & {
3730
+ headers: {
3731
+ "x-access-token"?: string | undefined;
3732
+ } & Partial<{
3733
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3734
+ }>;
3735
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3736
+ [x: string]: unknown;
3737
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3738
+ [x: string]: unknown;
3739
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3740
+ [x: string]: unknown;
3741
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3742
+ [x: string]: unknown;
3743
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3744
+ [x: string]: unknown;
3745
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3746
+ [x: string]: unknown;
3747
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3748
+ headers?: Partial<{
3749
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3750
+ }>;
3751
+ } & {
3752
+ pathParameters: {
3753
+ stackId: string;
3754
+ serviceId: string;
3755
+ };
3756
+ } & {
3757
+ headers: {
3758
+ "x-access-token"?: string | undefined;
3759
+ } & Partial<{
3760
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3761
+ }>;
3762
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3763
+ [x: string]: unknown;
3764
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3765
+ [x: string]: unknown;
3766
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3767
+ [x: string]: unknown;
3768
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3769
+ [x: string]: unknown;
3770
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3771
+ [x: string]: unknown;
3772
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3773
+ [x: string]: unknown;
3774
+ }, 500, "application/json">>>;
3775
+ /** Stop a started Service. */
3776
+ stopService: (request: {
3777
+ stackId: string;
3778
+ serviceId: string;
3779
+ headers?: {
3780
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3781
+ "x-access-token"?: string | undefined;
3782
+ } | undefined;
3783
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3784
+ headers?: Partial<{
3785
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3786
+ }>;
3787
+ } & {
3788
+ pathParameters: {
3789
+ stackId: string;
3790
+ serviceId: string;
3791
+ };
3792
+ } & {
3793
+ headers: {
3794
+ "x-access-token"?: string | undefined;
3795
+ } & Partial<{
3796
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3797
+ }>;
3798
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3799
+ [x: string]: unknown;
3800
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3801
+ [x: string]: unknown;
3802
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3803
+ [x: string]: unknown;
3804
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3805
+ [x: string]: unknown;
3806
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3807
+ [x: string]: unknown;
3808
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3809
+ [x: string]: unknown;
3810
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3811
+ headers?: Partial<{
3812
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3813
+ }>;
3814
+ } & {
3815
+ pathParameters: {
3816
+ stackId: string;
3817
+ serviceId: string;
3818
+ };
3819
+ } & {
3820
+ headers: {
3821
+ "x-access-token"?: string | undefined;
3822
+ } & Partial<{
3823
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3824
+ }>;
3825
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3826
+ [x: string]: unknown;
3827
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3828
+ [x: string]: unknown;
3829
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3830
+ [x: string]: unknown;
3831
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3832
+ [x: string]: unknown;
3833
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3834
+ [x: string]: unknown;
3835
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3836
+ [x: string]: unknown;
3837
+ }, 500, "application/json">>>;
3838
+ /** Validate a Registries' URI. */
3839
+ validateContainerRegistryUri: (request: {
3840
+ data: {
3841
+ registryUri: string;
3842
+ };
3843
+ headers?: {
3844
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3845
+ "x-access-token"?: string | undefined;
3846
+ } | undefined;
3847
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3848
+ data: {
3849
+ registryUri: string;
3850
+ };
3851
+ } & {
3852
+ headers?: Partial<{
3853
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3854
+ }>;
3855
+ } & {
3856
+ headers: {
3857
+ "x-access-token"?: string | undefined;
3858
+ } & Partial<{
3859
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3860
+ }>;
3861
+ }, import("@mittwald/api-client-commons").Response<{
3862
+ valid: boolean;
3863
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3864
+ [x: string]: unknown;
3865
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3866
+ [x: string]: unknown;
3867
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3868
+ [x: string]: unknown;
3869
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3870
+ [x: string]: unknown;
3871
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3872
+ [x: string]: unknown;
3873
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3874
+ [x: string]: unknown;
3875
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3876
+ data: {
3877
+ registryUri: string;
3878
+ };
3879
+ } & {
3880
+ headers?: Partial<{
3881
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3882
+ }>;
3883
+ } & {
3884
+ headers: {
3885
+ "x-access-token"?: string | undefined;
3886
+ } & Partial<{
3887
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3888
+ }>;
3889
+ }, import("@mittwald/api-client-commons").Response<{
3890
+ valid: boolean;
3891
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3892
+ [x: string]: unknown;
3893
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3894
+ [x: string]: unknown;
3895
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3896
+ [x: string]: unknown;
3897
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3898
+ [x: string]: unknown;
3899
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3900
+ [x: string]: unknown;
3901
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3902
+ [x: string]: unknown;
3903
+ }, 500, "application/json">>>;
3904
+ /** Validate a Registries' credentials. */
3905
+ validateRegistryCredentials: (request: {
3906
+ registryId: string;
3907
+ headers?: {
3908
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3909
+ "x-access-token"?: string | undefined;
3910
+ } | undefined;
3911
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3912
+ headers?: Partial<{
3913
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3914
+ }>;
3915
+ } & {
3916
+ pathParameters: {
3917
+ registryId: string;
3918
+ };
3919
+ } & {
3920
+ headers: {
3921
+ "x-access-token"?: string | undefined;
3922
+ } & Partial<{
3923
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3924
+ }>;
3925
+ }, import("@mittwald/api-client-commons").Response<{
3926
+ valid: boolean;
3927
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3928
+ [x: string]: unknown;
3929
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3930
+ [x: string]: unknown;
3931
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3932
+ [x: string]: unknown;
3933
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3934
+ [x: string]: unknown;
3935
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3936
+ [x: string]: unknown;
3937
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3938
+ [x: string]: unknown;
3939
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3940
+ headers?: Partial<{
3941
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3942
+ }>;
3943
+ } & {
3944
+ pathParameters: {
3945
+ registryId: string;
3946
+ };
3947
+ } & {
3948
+ headers: {
3949
+ "x-access-token"?: string | undefined;
3950
+ } & Partial<{
3951
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3952
+ }>;
3953
+ }, import("@mittwald/api-client-commons").Response<{
3954
+ valid: boolean;
3955
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3956
+ [x: string]: unknown;
3957
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3958
+ [x: string]: unknown;
3959
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3960
+ [x: string]: unknown;
3961
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3962
+ [x: string]: unknown;
3963
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
3964
+ [x: string]: unknown;
3965
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3966
+ [x: string]: unknown;
3967
+ }, 500, "application/json">>>;
3968
+ };
2299
3969
  /** The contract API allows you to manage your contracts and orders */
2300
3970
  readonly contract: {
2301
3971
  /** Schedule the Termination of a ContractItem. */
@@ -4792,7 +6462,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4792
6462
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4793
6463
  [x: string]: unknown;
4794
6464
  }, 429, "application/json">>>;
4795
- /** Delete an ExtensionInstance. */
6465
+ /** Delete a free ExtensionInstance. If the Extension is chargable the contract must be terminated instead. */
4796
6466
  extensionDeleteExtensionInstance: (request: {
4797
6467
  extensionInstanceId: string;
4798
6468
  headers?: {
@@ -4819,6 +6489,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4819
6489
  [x: string]: unknown;
4820
6490
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4821
6491
  [x: string]: unknown;
6492
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
6493
+ [x: string]: unknown;
4822
6494
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4823
6495
  headers?: Partial<{
4824
6496
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -4839,6 +6511,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4839
6511
  [x: string]: unknown;
4840
6512
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4841
6513
  [x: string]: unknown;
6514
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
6515
+ [x: string]: unknown;
4842
6516
  }, 429, "application/json">>>;
4843
6517
  /** Get Extension of own contributor. */
4844
6518
  extensionGetOwnExtension: (request: {
@@ -4882,6 +6556,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4882
6556
  id: string;
4883
6557
  logoRefId?: string | undefined;
4884
6558
  name: string;
6559
+ pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | undefined;
4885
6560
  published: boolean;
4886
6561
  requestedChanges?: {
4887
6562
  context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
@@ -4936,6 +6611,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4936
6611
  id: string;
4937
6612
  logoRefId?: string | undefined;
4938
6613
  name: string;
6614
+ pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | undefined;
4939
6615
  published: boolean;
4940
6616
  requestedChanges?: {
4941
6617
  context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
@@ -5125,6 +6801,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5125
6801
  id: string;
5126
6802
  logoRefId?: string | undefined;
5127
6803
  name: string;
6804
+ pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | undefined;
5128
6805
  published: boolean;
5129
6806
  requestedChanges?: {
5130
6807
  context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
@@ -5199,6 +6876,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5199
6876
  id: string;
5200
6877
  logoRefId?: string | undefined;
5201
6878
  name: string;
6879
+ pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | undefined;
5202
6880
  published: boolean;
5203
6881
  requestedChanges?: {
5204
6882
  context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
@@ -5700,6 +7378,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5700
7378
  id: string;
5701
7379
  logoRefId: string;
5702
7380
  name: string;
7381
+ pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | undefined;
5703
7382
  published: boolean;
5704
7383
  scopes: string[];
5705
7384
  state: "enabled" | "blocked" | "disabled";
@@ -5736,6 +7415,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5736
7415
  id: string;
5737
7416
  logoRefId: string;
5738
7417
  name: string;
7418
+ pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | undefined;
5739
7419
  published: boolean;
5740
7420
  scopes: string[];
5741
7421
  state: "enabled" | "blocked" | "disabled";