@platzio/sdk 0.5.0-beta.12 → 0.5.0-beta.14

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.
Files changed (3) hide show
  1. package/api.ts +2134 -767
  2. package/openapi.yaml +675 -9
  3. package/package.json +1 -1
package/openapi.yaml CHANGED
@@ -278,7 +278,8 @@ paths:
278
278
  type: string
279
279
  key:
280
280
  type: string
281
- spec: {}
281
+ spec:
282
+ $ref: '#/components/schemas/ChartExtResourceTypeV1Beta1Spec'
282
283
  num_total:
283
284
  type: integer
284
285
  format: int64
@@ -718,7 +719,6 @@ paths:
718
719
  - cluster_id
719
720
  - enabled
720
721
  - status
721
- - reported_status
722
722
  - helm_chart_id
723
723
  - config
724
724
  properties:
@@ -750,7 +750,9 @@ paths:
750
750
  format: uuid
751
751
  nullable: true
752
752
  reported_status:
753
- $ref: '#/components/schemas/DeploymentReportedStatus'
753
+ allOf:
754
+ - $ref: '#/components/schemas/DeploymentReportedStatus'
755
+ nullable: true
754
756
  helm_chart_id:
755
757
  type: string
756
758
  format: uuid
@@ -1224,12 +1226,20 @@ paths:
1224
1226
  available:
1225
1227
  type: boolean
1226
1228
  values_ui:
1229
+ allOf:
1230
+ - $ref: '#/components/schemas/UiSchema'
1227
1231
  nullable: true
1228
1232
  actions_schema:
1233
+ allOf:
1234
+ - $ref: '#/components/schemas/ChartExtActions'
1229
1235
  nullable: true
1230
1236
  features:
1237
+ allOf:
1238
+ - $ref: '#/components/schemas/ChartExtFeatures'
1231
1239
  nullable: true
1232
1240
  resource_types:
1241
+ allOf:
1242
+ - $ref: '#/components/schemas/ChartExtResourceTypes'
1233
1243
  nullable: true
1234
1244
  error:
1235
1245
  type: string
@@ -2318,6 +2328,410 @@ paths:
2318
2328
  - user_token: []
2319
2329
  components:
2320
2330
  schemas:
2331
+ ChartExt:
2332
+ type: object
2333
+ properties:
2334
+ metadata:
2335
+ allOf:
2336
+ - $ref: '#/components/schemas/ChartMetadata'
2337
+ nullable: true
2338
+ ui_schema:
2339
+ allOf:
2340
+ - $ref: '#/components/schemas/UiSchema'
2341
+ nullable: true
2342
+ actions:
2343
+ allOf:
2344
+ - $ref: '#/components/schemas/ChartExtActions'
2345
+ nullable: true
2346
+ features:
2347
+ allOf:
2348
+ - $ref: '#/components/schemas/ChartExtFeatures'
2349
+ nullable: true
2350
+ resource_types:
2351
+ allOf:
2352
+ - $ref: '#/components/schemas/ChartExtResourceTypes'
2353
+ nullable: true
2354
+ error:
2355
+ type: string
2356
+ nullable: true
2357
+ ChartExtActionEndpoint:
2358
+ type: string
2359
+ enum:
2360
+ - standard_ingress
2361
+ ChartExtActionMethod:
2362
+ type: string
2363
+ enum:
2364
+ - GET
2365
+ - POST
2366
+ - PUT
2367
+ - PATCH
2368
+ - DELETE
2369
+ ChartExtActionTarget:
2370
+ type: object
2371
+ required:
2372
+ - endpoint
2373
+ - path
2374
+ - method
2375
+ properties:
2376
+ endpoint:
2377
+ $ref: '#/components/schemas/ChartExtActionEndpoint'
2378
+ path:
2379
+ type: string
2380
+ method:
2381
+ $ref: '#/components/schemas/ChartExtActionMethod'
2382
+ ChartExtActionUserDeploymentRole:
2383
+ type: string
2384
+ enum:
2385
+ - Owner
2386
+ - Maintainer
2387
+ ChartExtActionV0:
2388
+ allOf:
2389
+ - $ref: '#/components/schemas/ChartExtActionTarget'
2390
+ - type: object
2391
+ required:
2392
+ - id
2393
+ - allowed_role
2394
+ - title
2395
+ - description
2396
+ - dangerous
2397
+ properties:
2398
+ id:
2399
+ type: string
2400
+ allowed_role:
2401
+ $ref: '#/components/schemas/ChartExtActionUserDeploymentRole'
2402
+ title:
2403
+ type: string
2404
+ fontawesome_icon:
2405
+ type: string
2406
+ nullable: true
2407
+ description:
2408
+ type: string
2409
+ dangerous:
2410
+ type: boolean
2411
+ ui_schema:
2412
+ allOf:
2413
+ - $ref: '#/components/schemas/UiSchema'
2414
+ nullable: true
2415
+ ChartExtActionV1Beta1:
2416
+ type: object
2417
+ required:
2418
+ - apiVersion
2419
+ - kind
2420
+ - spec
2421
+ properties:
2422
+ apiVersion:
2423
+ $ref: '#/components/schemas/ChartExtVersionV1Beta1'
2424
+ kind:
2425
+ $ref: '#/components/schemas/ChartExtKindAction'
2426
+ spec:
2427
+ $ref: '#/components/schemas/ChartExtActionV0'
2428
+ ChartExtActions:
2429
+ oneOf:
2430
+ - $ref: '#/components/schemas/ChartExtActionsV1Beta1'
2431
+ - $ref: '#/components/schemas/ChartExtActionsV0'
2432
+ ChartExtActionsV0:
2433
+ type: object
2434
+ required:
2435
+ - schema_version
2436
+ - actions
2437
+ properties:
2438
+ schema_version:
2439
+ type: integer
2440
+ format: int64
2441
+ minimum: 0.0
2442
+ actions:
2443
+ type: array
2444
+ items:
2445
+ $ref: '#/components/schemas/ChartExtActionV0'
2446
+ ChartExtActionsV1Beta1:
2447
+ type: array
2448
+ items:
2449
+ $ref: '#/components/schemas/ChartExtActionV1Beta1'
2450
+ ChartExtCardinality:
2451
+ type: string
2452
+ enum:
2453
+ - Many
2454
+ - OnePerCluster
2455
+ ChartExtDeploymentDisplay:
2456
+ type: object
2457
+ properties:
2458
+ name:
2459
+ allOf:
2460
+ - $ref: '#/components/schemas/ChartExtDeploymentDisplayName'
2461
+ nullable: true
2462
+ icon:
2463
+ allOf:
2464
+ - $ref: '#/components/schemas/ChartExtDeploymentDisplayIcon'
2465
+ nullable: true
2466
+ ChartExtDeploymentDisplayIcon:
2467
+ type: object
2468
+ required:
2469
+ - font_awesome
2470
+ properties:
2471
+ font_awesome:
2472
+ type: string
2473
+ ChartExtDeploymentDisplayName:
2474
+ oneOf:
2475
+ - type: string
2476
+ enum:
2477
+ - DeploymentName
2478
+ - type: object
2479
+ required:
2480
+ - InputField
2481
+ properties:
2482
+ InputField:
2483
+ $ref: '#/components/schemas/ChartExtDeploymentDisplayNameInputField'
2484
+ ChartExtDeploymentDisplayNameInputField:
2485
+ type: object
2486
+ required:
2487
+ - name
2488
+ properties:
2489
+ name:
2490
+ type: string
2491
+ ChartExtFeatures:
2492
+ oneOf:
2493
+ - $ref: '#/components/schemas/ChartExtFeaturesV1Beta2'
2494
+ - $ref: '#/components/schemas/ChartExtFeaturesV1Beta1'
2495
+ - $ref: '#/components/schemas/ChartExtFeaturesV0'
2496
+ ChartExtFeaturesSpec:
2497
+ type: object
2498
+ properties:
2499
+ ingress:
2500
+ $ref: '#/components/schemas/ChartExtIngress'
2501
+ status:
2502
+ allOf:
2503
+ - $ref: '#/components/schemas/ChartExtStatusFeature'
2504
+ nullable: true
2505
+ cardinality:
2506
+ $ref: '#/components/schemas/ChartExtCardinality'
2507
+ reinstall_dependencies:
2508
+ type: boolean
2509
+ description: |-
2510
+ Should dependent deployments be reinstalled when this deployment
2511
+ config/values are updated. This doesn't apply to renames or
2512
+ moving between clusters which always reinstalls dependencies.
2513
+ node_selector_paths:
2514
+ type: array
2515
+ items:
2516
+ type: array
2517
+ items:
2518
+ type: string
2519
+ description: |-
2520
+ Paths to inject the node selector to. Node selector is always
2521
+ added at the values top level `nodeSelector`.
2522
+ tolerations_paths:
2523
+ type: array
2524
+ items:
2525
+ type: array
2526
+ items:
2527
+ type: string
2528
+ description: Same for tolerations
2529
+ display:
2530
+ $ref: '#/components/schemas/ChartExtDeploymentDisplay'
2531
+ ChartExtFeaturesV0:
2532
+ type: object
2533
+ properties:
2534
+ standard_ingress:
2535
+ type: boolean
2536
+ description: |-
2537
+ When true, values.yaml is injected with an `ingress` section
2538
+ that matches the structure generated by `helm create`. This
2539
+ generates the hostname and sets TLS correctly.
2540
+ status:
2541
+ allOf:
2542
+ - $ref: '#/components/schemas/ChartExtStatusFeature'
2543
+ nullable: true
2544
+ cardinality:
2545
+ $ref: '#/components/schemas/ChartExtCardinality'
2546
+ reinstall_dependencies:
2547
+ type: boolean
2548
+ description: |-
2549
+ Should dependent deployments be reinstalled when this deployment
2550
+ config/values are updated. This doesn't apply to renames or
2551
+ moving between clusters which always reinstalls dependencies.
2552
+ node_selector_paths:
2553
+ type: array
2554
+ items:
2555
+ type: array
2556
+ items:
2557
+ type: string
2558
+ description: |-
2559
+ Paths to inject the node selector to. Node selector is always
2560
+ added at the values top level `nodeSelector`.
2561
+ tolerations_paths:
2562
+ type: array
2563
+ items:
2564
+ type: array
2565
+ items:
2566
+ type: string
2567
+ description: Same for tolerations
2568
+ ChartExtFeaturesV1Beta1:
2569
+ type: object
2570
+ required:
2571
+ - apiVersion
2572
+ - kind
2573
+ - spec
2574
+ properties:
2575
+ apiVersion:
2576
+ $ref: '#/components/schemas/ChartExtVersionV1Beta1'
2577
+ kind:
2578
+ $ref: '#/components/schemas/ChartExtKindFeatures'
2579
+ spec:
2580
+ $ref: '#/components/schemas/ChartExtFeaturesV0'
2581
+ ChartExtFeaturesV1Beta2:
2582
+ type: object
2583
+ required:
2584
+ - apiVersion
2585
+ - kind
2586
+ - spec
2587
+ properties:
2588
+ apiVersion:
2589
+ $ref: '#/components/schemas/ChartExtVersionV1Beta2'
2590
+ kind:
2591
+ $ref: '#/components/schemas/ChartExtKindFeatures'
2592
+ spec:
2593
+ $ref: '#/components/schemas/ChartExtFeaturesSpec'
2594
+ ChartExtIngress:
2595
+ type: object
2596
+ required:
2597
+ - enabled
2598
+ properties:
2599
+ enabled:
2600
+ type: boolean
2601
+ hostname_format:
2602
+ $ref: '#/components/schemas/ChartExtIngressHostnameFormat'
2603
+ ChartExtIngressHostnameFormat:
2604
+ type: string
2605
+ enum:
2606
+ - Name
2607
+ - KindAndName
2608
+ ChartExtKindAction:
2609
+ type: string
2610
+ enum:
2611
+ - Action
2612
+ ChartExtKindFeatures:
2613
+ type: string
2614
+ enum:
2615
+ - Features
2616
+ ChartExtKindResourceType:
2617
+ type: string
2618
+ enum:
2619
+ - ResourceType
2620
+ ChartExtKindValuesUi:
2621
+ type: string
2622
+ enum:
2623
+ - ValuesUi
2624
+ ChartExtResourceLifecycleActionV1Beta1:
2625
+ type: object
2626
+ properties:
2627
+ allowed_role:
2628
+ allOf:
2629
+ - $ref: '#/components/schemas/ChartExtActionUserDeploymentRole'
2630
+ nullable: true
2631
+ target:
2632
+ allOf:
2633
+ - $ref: '#/components/schemas/ChartExtActionTarget'
2634
+ nullable: true
2635
+ ChartExtResourceLifecycleV1Beta1:
2636
+ type: object
2637
+ properties:
2638
+ create:
2639
+ allOf:
2640
+ - $ref: '#/components/schemas/ChartExtResourceLifecycleActionV1Beta1'
2641
+ nullable: true
2642
+ update:
2643
+ allOf:
2644
+ - $ref: '#/components/schemas/ChartExtResourceLifecycleActionV1Beta1'
2645
+ nullable: true
2646
+ delete:
2647
+ allOf:
2648
+ - $ref: '#/components/schemas/ChartExtResourceLifecycleActionV1Beta1'
2649
+ nullable: true
2650
+ ChartExtResourceType:
2651
+ oneOf:
2652
+ - $ref: '#/components/schemas/ChartExtResourceTypeV1Beta1'
2653
+ ChartExtResourceTypeV1Beta1:
2654
+ type: object
2655
+ required:
2656
+ - apiVersion
2657
+ - kind
2658
+ - key
2659
+ - spec
2660
+ properties:
2661
+ apiVersion:
2662
+ $ref: '#/components/schemas/ChartExtVersionV1Beta1'
2663
+ kind:
2664
+ $ref: '#/components/schemas/ChartExtKindResourceType'
2665
+ key:
2666
+ type: string
2667
+ spec:
2668
+ $ref: '#/components/schemas/ChartExtResourceTypeV1Beta1Spec'
2669
+ ChartExtResourceTypeV1Beta1Spec:
2670
+ type: object
2671
+ required:
2672
+ - name_singular
2673
+ - name_plural
2674
+ - fontawesome_icon
2675
+ - values_ui
2676
+ properties:
2677
+ name_singular:
2678
+ type: string
2679
+ name_plural:
2680
+ type: string
2681
+ fontawesome_icon:
2682
+ type: string
2683
+ global:
2684
+ type: boolean
2685
+ values_ui:
2686
+ $ref: '#/components/schemas/UiSchemaV0'
2687
+ lifecycle:
2688
+ $ref: '#/components/schemas/ChartExtResourceLifecycleV1Beta1'
2689
+ ChartExtResourceTypes:
2690
+ type: array
2691
+ items:
2692
+ $ref: '#/components/schemas/ChartExtResourceType'
2693
+ ChartExtStatusFeature:
2694
+ type: object
2695
+ required:
2696
+ - endpoint
2697
+ - path
2698
+ - refresh_interval_secs
2699
+ properties:
2700
+ endpoint:
2701
+ $ref: '#/components/schemas/ChartExtActionEndpoint'
2702
+ path:
2703
+ type: string
2704
+ refresh_interval_secs:
2705
+ type: integer
2706
+ format: int64
2707
+ minimum: 0.0
2708
+ ChartExtVersionV1Beta1:
2709
+ type: string
2710
+ enum:
2711
+ - platz.io/v1beta1
2712
+ ChartExtVersionV1Beta2:
2713
+ type: string
2714
+ enum:
2715
+ - platz.io/v1beta2
2716
+ ChartMetadata:
2717
+ type: object
2718
+ required:
2719
+ - version
2720
+ properties:
2721
+ version:
2722
+ type: string
2723
+ git_commit:
2724
+ type: string
2725
+ nullable: true
2726
+ git_branch:
2727
+ type: string
2728
+ nullable: true
2729
+ git_repo:
2730
+ type: string
2731
+ nullable: true
2732
+ git_provider:
2733
+ type: string
2734
+ nullable: true
2321
2735
  CreateDeploymentTask:
2322
2736
  type: object
2323
2737
  required:
@@ -2336,6 +2750,37 @@ components:
2336
2750
  type: string
2337
2751
  format: uuid
2338
2752
  nullable: true
2753
+ DbTable:
2754
+ type: string
2755
+ enum:
2756
+ - deployment_configs
2757
+ - deployment_resources
2758
+ - deployment_resource_types
2759
+ - deployments
2760
+ - deployment_tasks
2761
+ - deployment_permissions
2762
+ - envs
2763
+ - env_user_permissions
2764
+ - helm_registries
2765
+ - helm_charts
2766
+ - helm_tag_formats
2767
+ - k8s_clusters
2768
+ - k8s_resources
2769
+ - secrets
2770
+ - users
2771
+ DbTableOrDeploymentResource:
2772
+ oneOf:
2773
+ - $ref: '#/components/schemas/DbTable'
2774
+ - type: object
2775
+ required:
2776
+ - deployment
2777
+ - type
2778
+ properties:
2779
+ deployment:
2780
+ type: string
2781
+ type:
2782
+ type: string
2783
+ - type: string
2339
2784
  Deployment:
2340
2785
  type: object
2341
2786
  required:
@@ -2346,7 +2791,6 @@ components:
2346
2791
  - cluster_id
2347
2792
  - enabled
2348
2793
  - status
2349
- - reported_status
2350
2794
  - helm_chart_id
2351
2795
  - config
2352
2796
  properties:
@@ -2378,7 +2822,9 @@ components:
2378
2822
  format: uuid
2379
2823
  nullable: true
2380
2824
  reported_status:
2381
- $ref: '#/components/schemas/DeploymentReportedStatus'
2825
+ allOf:
2826
+ - $ref: '#/components/schemas/DeploymentReportedStatus'
2827
+ nullable: true
2382
2828
  helm_chart_id:
2383
2829
  type: string
2384
2830
  format: uuid
@@ -2461,7 +2907,7 @@ components:
2461
2907
  properties:
2462
2908
  reason:
2463
2909
  type: string
2464
- DeploymentRepootedMetric:
2910
+ DeploymentReportedMetric:
2465
2911
  type: object
2466
2912
  required:
2467
2913
  - value
@@ -2530,12 +2976,12 @@ components:
2530
2976
  $ref: '#/components/schemas/DeploymentReportedStatusSummary'
2531
2977
  primary_metric:
2532
2978
  allOf:
2533
- - $ref: '#/components/schemas/DeploymentRepootedMetric'
2979
+ - $ref: '#/components/schemas/DeploymentReportedMetric'
2534
2980
  nullable: true
2535
2981
  metrics:
2536
2982
  type: array
2537
2983
  items:
2538
- $ref: '#/components/schemas/DeploymentRepootedMetric'
2984
+ $ref: '#/components/schemas/DeploymentReportedMetric'
2539
2985
  nullable: true
2540
2986
  notices:
2541
2987
  type: array
@@ -2616,7 +3062,8 @@ components:
2616
3062
  type: string
2617
3063
  key:
2618
3064
  type: string
2619
- spec: {}
3065
+ spec:
3066
+ $ref: '#/components/schemas/ChartExtResourceTypeV1Beta1Spec'
2620
3067
  DeploymentRestartK8sResourceTask:
2621
3068
  type: object
2622
3069
  required:
@@ -2844,12 +3291,20 @@ components:
2844
3291
  available:
2845
3292
  type: boolean
2846
3293
  values_ui:
3294
+ allOf:
3295
+ - $ref: '#/components/schemas/UiSchema'
2847
3296
  nullable: true
2848
3297
  actions_schema:
3298
+ allOf:
3299
+ - $ref: '#/components/schemas/ChartExtActions'
2849
3300
  nullable: true
2850
3301
  features:
3302
+ allOf:
3303
+ - $ref: '#/components/schemas/ChartExtFeatures'
2851
3304
  nullable: true
2852
3305
  resource_types:
3306
+ allOf:
3307
+ - $ref: '#/components/schemas/ChartExtResourceTypes'
2853
3308
  nullable: true
2854
3309
  error:
2855
3310
  type: string
@@ -3174,6 +3629,18 @@ components:
3174
3629
  type: string
3175
3630
  name:
3176
3631
  type: string
3632
+ SerializedUiSchemaInputType:
3633
+ type: object
3634
+ required:
3635
+ - type
3636
+ properties:
3637
+ type:
3638
+ type: string
3639
+ itemType:
3640
+ type: string
3641
+ nullable: true
3642
+ collection:
3643
+ nullable: true
3177
3644
  ServerInfo:
3178
3645
  type: object
3179
3646
  required:
@@ -3188,6 +3655,205 @@ components:
3188
3655
  properties:
3189
3656
  redirect_url:
3190
3657
  type: string
3658
+ UiSchema:
3659
+ oneOf:
3660
+ - $ref: '#/components/schemas/UiSchemaV1Beta1'
3661
+ - $ref: '#/components/schemas/UiSchemaV0'
3662
+ UiSchemaFieldValuePair:
3663
+ type: object
3664
+ required:
3665
+ - field
3666
+ - value
3667
+ properties:
3668
+ field:
3669
+ type: string
3670
+ value: {}
3671
+ UiSchemaInput:
3672
+ allOf:
3673
+ - $ref: '#/components/schemas/UiSchemaInputType'
3674
+ - type: object
3675
+ required:
3676
+ - id
3677
+ - label
3678
+ properties:
3679
+ id:
3680
+ type: string
3681
+ label:
3682
+ type: string
3683
+ initialValue:
3684
+ nullable: true
3685
+ helpText:
3686
+ type: string
3687
+ nullable: true
3688
+ required:
3689
+ type: boolean
3690
+ sensitive:
3691
+ type: boolean
3692
+ options:
3693
+ type: array
3694
+ items:
3695
+ $ref: '#/components/schemas/UiSchemaInputFieldOption'
3696
+ nullable: true
3697
+ showIfAll:
3698
+ type: array
3699
+ items:
3700
+ $ref: '#/components/schemas/UiSchemaFieldValuePair'
3701
+ nullable: true
3702
+ filters:
3703
+ type: array
3704
+ items:
3705
+ $ref: '#/components/schemas/UiSchemaInputFieldValue'
3706
+ nullable: true
3707
+ minimum:
3708
+ type: string
3709
+ nullable: true
3710
+ maximum:
3711
+ type: string
3712
+ nullable: true
3713
+ step:
3714
+ type: string
3715
+ nullable: true
3716
+ UiSchemaInputFieldOption:
3717
+ type: object
3718
+ required:
3719
+ - value
3720
+ properties:
3721
+ value: {}
3722
+ label:
3723
+ type: string
3724
+ nullable: true
3725
+ helpText:
3726
+ type: string
3727
+ nullable: true
3728
+ UiSchemaInputFieldValue:
3729
+ type: object
3730
+ required:
3731
+ - field
3732
+ - value
3733
+ properties:
3734
+ field:
3735
+ type: string
3736
+ value: {}
3737
+ UiSchemaInputRef:
3738
+ oneOf:
3739
+ - type: object
3740
+ required:
3741
+ - FieldValue
3742
+ properties:
3743
+ FieldValue:
3744
+ $ref: '#/components/schemas/UiSchemaInputRefField'
3745
+ - type: object
3746
+ required:
3747
+ - FieldProperty
3748
+ properties:
3749
+ FieldProperty:
3750
+ $ref: '#/components/schemas/UiSchemaInputRefProperty'
3751
+ UiSchemaInputRefField:
3752
+ type: object
3753
+ required:
3754
+ - input
3755
+ properties:
3756
+ input:
3757
+ type: string
3758
+ UiSchemaInputRefProperty:
3759
+ type: object
3760
+ required:
3761
+ - input
3762
+ - property
3763
+ properties:
3764
+ input:
3765
+ type: string
3766
+ property:
3767
+ type: string
3768
+ UiSchemaInputSingleType:
3769
+ oneOf:
3770
+ - type: string
3771
+ enum:
3772
+ - text
3773
+ - type: string
3774
+ enum:
3775
+ - number
3776
+ - type: object
3777
+ required:
3778
+ - CollectionSelect
3779
+ properties:
3780
+ CollectionSelect:
3781
+ type: object
3782
+ required:
3783
+ - collection
3784
+ properties:
3785
+ collection: {}
3786
+ - type: string
3787
+ enum:
3788
+ - RadioSelect
3789
+ - type: string
3790
+ enum:
3791
+ - DaysAndHour
3792
+ - type: string
3793
+ enum:
3794
+ - Checkbox
3795
+ UiSchemaInputType:
3796
+ type: object
3797
+ required:
3798
+ - single_type
3799
+ - is_array
3800
+ properties:
3801
+ single_type:
3802
+ $ref: '#/components/schemas/UiSchemaInputSingleType'
3803
+ is_array:
3804
+ type: boolean
3805
+ UiSchemaOutputSecrets:
3806
+ type: object
3807
+ additionalProperties:
3808
+ type: object
3809
+ additionalProperties:
3810
+ $ref: '#/components/schemas/UiSchemaInputRef'
3811
+ UiSchemaOutputValue:
3812
+ type: object
3813
+ required:
3814
+ - path
3815
+ - value
3816
+ properties:
3817
+ path:
3818
+ type: array
3819
+ items:
3820
+ type: string
3821
+ value:
3822
+ $ref: '#/components/schemas/UiSchemaInputRef'
3823
+ UiSchemaOutputs:
3824
+ type: object
3825
+ required:
3826
+ - values
3827
+ properties:
3828
+ values:
3829
+ type: array
3830
+ items:
3831
+ $ref: '#/components/schemas/UiSchemaOutputValue'
3832
+ secrets:
3833
+ $ref: '#/components/schemas/UiSchemaOutputSecrets'
3834
+ UiSchemaV0:
3835
+ type: object
3836
+ required:
3837
+ - inputs
3838
+ properties:
3839
+ inputs:
3840
+ type: array
3841
+ items:
3842
+ $ref: '#/components/schemas/UiSchemaInput'
3843
+ outputs:
3844
+ $ref: '#/components/schemas/UiSchemaOutputs'
3845
+ UiSchemaV1Beta1:
3846
+ allOf:
3847
+ - $ref: '#/components/schemas/UiSchemaV0'
3848
+ - type: object
3849
+ required:
3850
+ - apiVersion
3851
+ - kind
3852
+ properties:
3853
+ apiVersion:
3854
+ $ref: '#/components/schemas/ChartExtVersionV1Beta1'
3855
+ kind:
3856
+ $ref: '#/components/schemas/ChartExtKindValuesUi'
3191
3857
  UpdateDeployment:
3192
3858
  type: object
3193
3859
  properties: