@pulumi/harness 0.14.1 → 0.14.2

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.
package/types/output.d.ts CHANGED
@@ -3614,6 +3614,114 @@ export declare namespace chaos {
3614
3614
  */
3615
3615
  operator: string;
3616
3616
  }
3617
+ interface GetSecurityGovernanceConditionV3FaultSpec {
3618
+ /**
3619
+ * List of fault specifications
3620
+ */
3621
+ faults: outputs.chaos.GetSecurityGovernanceConditionV3FaultSpecFault[];
3622
+ /**
3623
+ * Operator for comparing faults (EQUAL_TO or NOT_EQUAL_TO)
3624
+ */
3625
+ operator: string;
3626
+ }
3627
+ interface GetSecurityGovernanceConditionV3FaultSpecFault {
3628
+ /**
3629
+ * Type of the fault (FAULT or FAULT_GROUP)
3630
+ */
3631
+ faultType: string;
3632
+ /**
3633
+ * Name of the fault
3634
+ */
3635
+ name: string;
3636
+ }
3637
+ interface GetSecurityGovernanceConditionV3K8sSpec {
3638
+ /**
3639
+ * Application specification
3640
+ */
3641
+ applicationSpecs: outputs.chaos.GetSecurityGovernanceConditionV3K8sSpecApplicationSpec[];
3642
+ /**
3643
+ * Chaos service account specification
3644
+ */
3645
+ chaosServiceAccountSpecs: outputs.chaos.GetSecurityGovernanceConditionV3K8sSpecChaosServiceAccountSpec[];
3646
+ /**
3647
+ * Infrastructure specification
3648
+ */
3649
+ infraSpecs: outputs.chaos.GetSecurityGovernanceConditionV3K8sSpecInfraSpec[];
3650
+ }
3651
+ interface GetSecurityGovernanceConditionV3K8sSpecApplicationSpec {
3652
+ /**
3653
+ * Operator for application matching (EQUAL_TO or NOT_EQUAL_TO)
3654
+ */
3655
+ operator: string;
3656
+ /**
3657
+ * List of workloads to include/exclude
3658
+ */
3659
+ workloads: outputs.chaos.GetSecurityGovernanceConditionV3K8sSpecApplicationSpecWorkload[];
3660
+ }
3661
+ interface GetSecurityGovernanceConditionV3K8sSpecApplicationSpecWorkload {
3662
+ /**
3663
+ * ID for the application map
3664
+ */
3665
+ applicationMapId: string;
3666
+ /**
3667
+ * Kind of the workload (e.g., deployment, statefulset)
3668
+ */
3669
+ kind: string;
3670
+ /**
3671
+ * Label selector for the workload
3672
+ */
3673
+ label: string;
3674
+ /**
3675
+ * Namespace of the workload
3676
+ */
3677
+ namespace: string;
3678
+ /**
3679
+ * Namespace labels to match against, as key-value pairs
3680
+ */
3681
+ namespaceLabels: {
3682
+ [key: string]: string;
3683
+ };
3684
+ /**
3685
+ * List of services associated with the workload
3686
+ */
3687
+ services: string[];
3688
+ }
3689
+ interface GetSecurityGovernanceConditionV3K8sSpecChaosServiceAccountSpec {
3690
+ /**
3691
+ * Operator for service account matching (EQUAL_TO or NOT_EQUAL_TO)
3692
+ */
3693
+ operator: string;
3694
+ /**
3695
+ * List of service accounts to include/exclude
3696
+ */
3697
+ serviceAccounts: string[];
3698
+ }
3699
+ interface GetSecurityGovernanceConditionV3K8sSpecInfraSpec {
3700
+ /**
3701
+ * List of infrastructure IDs to apply the condition to
3702
+ */
3703
+ infraIds: string[];
3704
+ /**
3705
+ * Operator for comparing infrastructure IDs (EQUAL_TO or NOT_EQUAL_TO)
3706
+ */
3707
+ operator: string;
3708
+ }
3709
+ interface GetSecurityGovernanceConditionV3MachineSpec {
3710
+ /**
3711
+ * Infrastructure specification
3712
+ */
3713
+ infraSpecs: outputs.chaos.GetSecurityGovernanceConditionV3MachineSpecInfraSpec[];
3714
+ }
3715
+ interface GetSecurityGovernanceConditionV3MachineSpecInfraSpec {
3716
+ /**
3717
+ * List of infrastructure IDs to apply the condition to
3718
+ */
3719
+ infraIds: string[];
3720
+ /**
3721
+ * Operator for comparing infrastructure IDs (EQUAL_TO or NOT_EQUAL_TO)
3722
+ */
3723
+ operator: string;
3724
+ }
3617
3725
  interface GetSecurityGovernanceRuleTimeWindow {
3618
3726
  /**
3619
3727
  * Duration of the time window (e.g., '30m', '2h').
@@ -3650,6 +3758,42 @@ export declare namespace chaos {
3650
3758
  */
3651
3759
  value: number;
3652
3760
  }
3761
+ interface GetSecurityGovernanceRuleV3TimeWindow {
3762
+ /**
3763
+ * Duration of the window (e.g., 30m, 1h). Computed from endTime when not set.
3764
+ */
3765
+ duration: string;
3766
+ /**
3767
+ * End of the window as a Unix epoch timestamp in milliseconds. Computed from duration when not set.
3768
+ */
3769
+ endTime: number;
3770
+ /**
3771
+ * Recurrence specification for the time window.
3772
+ */
3773
+ recurrences: outputs.chaos.GetSecurityGovernanceRuleV3TimeWindowRecurrence[];
3774
+ /**
3775
+ * Start of the window as a Unix epoch timestamp in milliseconds.
3776
+ */
3777
+ startTime: number;
3778
+ /**
3779
+ * IANA time zone for the window (e.g., UTC, America/New_York).
3780
+ */
3781
+ timeZone: string;
3782
+ }
3783
+ interface GetSecurityGovernanceRuleV3TimeWindowRecurrence {
3784
+ /**
3785
+ * Recurrence type (None, Daily, Weekly, Monthly, Yearly).
3786
+ */
3787
+ type: string;
3788
+ /**
3789
+ * End of the recurrence as a Unix epoch timestamp in milliseconds. Use -1 for no end.
3790
+ */
3791
+ until: number;
3792
+ /**
3793
+ * Day of month for Monthly recurrence. Only used when type is Monthly.
3794
+ */
3795
+ value: number;
3796
+ }
3653
3797
  interface ImageRegistryCustomImage {
3654
3798
  ddcr: string;
3655
3799
  ddcrFault: string;
@@ -4422,6 +4566,114 @@ export declare namespace chaos {
4422
4566
  */
4423
4567
  operator: string;
4424
4568
  }
4569
+ interface SecurityGovernanceConditionV3FaultSpec {
4570
+ /**
4571
+ * List of fault specifications
4572
+ */
4573
+ faults: outputs.chaos.SecurityGovernanceConditionV3FaultSpecFault[];
4574
+ /**
4575
+ * Operator for comparing faults (EQUAL*TO or NOT*EQUAL_TO)
4576
+ */
4577
+ operator: string;
4578
+ }
4579
+ interface SecurityGovernanceConditionV3FaultSpecFault {
4580
+ /**
4581
+ * Type of the fault (FAULT or FAULT_GROUP)
4582
+ */
4583
+ faultType: string;
4584
+ /**
4585
+ * Name of the fault
4586
+ */
4587
+ name: string;
4588
+ }
4589
+ interface SecurityGovernanceConditionV3K8sSpec {
4590
+ /**
4591
+ * Application specification
4592
+ */
4593
+ applicationSpec?: outputs.chaos.SecurityGovernanceConditionV3K8sSpecApplicationSpec;
4594
+ /**
4595
+ * Chaos service account specification
4596
+ */
4597
+ chaosServiceAccountSpec?: outputs.chaos.SecurityGovernanceConditionV3K8sSpecChaosServiceAccountSpec;
4598
+ /**
4599
+ * Infrastructure specification
4600
+ */
4601
+ infraSpec?: outputs.chaos.SecurityGovernanceConditionV3K8sSpecInfraSpec;
4602
+ }
4603
+ interface SecurityGovernanceConditionV3K8sSpecApplicationSpec {
4604
+ /**
4605
+ * Operator for application matching (EQUAL*TO or NOT*EQUAL_TO)
4606
+ */
4607
+ operator: string;
4608
+ /**
4609
+ * List of workloads to include/exclude
4610
+ */
4611
+ workloads?: outputs.chaos.SecurityGovernanceConditionV3K8sSpecApplicationSpecWorkload[];
4612
+ }
4613
+ interface SecurityGovernanceConditionV3K8sSpecApplicationSpecWorkload {
4614
+ /**
4615
+ * ID for the application map
4616
+ */
4617
+ applicationMapId?: string;
4618
+ /**
4619
+ * Kind of the workload (e.g., deployment, statefulset)
4620
+ */
4621
+ kind?: string;
4622
+ /**
4623
+ * Label selector for the workload
4624
+ */
4625
+ label?: string;
4626
+ /**
4627
+ * Namespace of the workload
4628
+ */
4629
+ namespace: string;
4630
+ /**
4631
+ * Namespace labels to match against, as key-value pairs
4632
+ */
4633
+ namespaceLabels?: {
4634
+ [key: string]: string;
4635
+ };
4636
+ /**
4637
+ * List of services associated with the workload
4638
+ */
4639
+ services?: string[];
4640
+ }
4641
+ interface SecurityGovernanceConditionV3K8sSpecChaosServiceAccountSpec {
4642
+ /**
4643
+ * Operator for service account matching (EQUAL*TO or NOT*EQUAL_TO)
4644
+ */
4645
+ operator: string;
4646
+ /**
4647
+ * List of service accounts to include/exclude
4648
+ */
4649
+ serviceAccounts: string[];
4650
+ }
4651
+ interface SecurityGovernanceConditionV3K8sSpecInfraSpec {
4652
+ /**
4653
+ * List of infrastructure IDs to apply the condition to
4654
+ */
4655
+ infraIds: string[];
4656
+ /**
4657
+ * Operator for comparing infrastructure IDs (EQUAL*TO or NOT*EQUAL_TO)
4658
+ */
4659
+ operator: string;
4660
+ }
4661
+ interface SecurityGovernanceConditionV3MachineSpec {
4662
+ /**
4663
+ * Infrastructure specification
4664
+ */
4665
+ infraSpec?: outputs.chaos.SecurityGovernanceConditionV3MachineSpecInfraSpec;
4666
+ }
4667
+ interface SecurityGovernanceConditionV3MachineSpecInfraSpec {
4668
+ /**
4669
+ * List of infrastructure IDs to apply the condition to
4670
+ */
4671
+ infraIds: string[];
4672
+ /**
4673
+ * Operator for comparing infrastructure IDs (EQUAL*TO or NOT*EQUAL_TO)
4674
+ */
4675
+ operator: string;
4676
+ }
4425
4677
  interface SecurityGovernanceRuleTimeWindow {
4426
4678
  duration: string;
4427
4679
  endTime: number;
@@ -4434,6 +4686,42 @@ export declare namespace chaos {
4434
4686
  until: number;
4435
4687
  value?: number;
4436
4688
  }
4689
+ interface SecurityGovernanceRuleV3TimeWindow {
4690
+ /**
4691
+ * Duration of the window (e.g., 30m, 1h). Computed from endTime when not set.
4692
+ */
4693
+ duration: string;
4694
+ /**
4695
+ * End of the window as a Unix epoch timestamp in milliseconds. Computed from duration when not set.
4696
+ */
4697
+ endTime: number;
4698
+ /**
4699
+ * Recurrence specification for the time window.
4700
+ */
4701
+ recurrence?: outputs.chaos.SecurityGovernanceRuleV3TimeWindowRecurrence;
4702
+ /**
4703
+ * Start of the window as a Unix epoch timestamp in milliseconds.
4704
+ */
4705
+ startTime: number;
4706
+ /**
4707
+ * IANA time zone for the window (e.g., UTC, America/New_York).
4708
+ */
4709
+ timeZone: string;
4710
+ }
4711
+ interface SecurityGovernanceRuleV3TimeWindowRecurrence {
4712
+ /**
4713
+ * Recurrence type (None, Daily, Weekly, Monthly, Yearly).
4714
+ */
4715
+ type: string;
4716
+ /**
4717
+ * End of the recurrence as a Unix epoch timestamp in milliseconds. Use -1 for no end.
4718
+ */
4719
+ until: number;
4720
+ /**
4721
+ * Day of month for Monthly recurrence. Only used when type is Monthly.
4722
+ */
4723
+ value?: number;
4724
+ }
4437
4725
  }
4438
4726
  export declare namespace cloudprovider {
4439
4727
  interface AwsAssumeCrossAccountRole {
@@ -7699,6 +7987,10 @@ export declare namespace platform {
7699
7987
  * Suffix appended to resources for kustomize apps.
7700
7988
  */
7701
7989
  nameSuffix?: string;
7990
+ /**
7991
+ * Override the namespace of the Kustomize application.
7992
+ */
7993
+ namespace?: string;
7702
7994
  /**
7703
7995
  * Version of kustomize to use for rendering manifests.
7704
7996
  */
@@ -10524,6 +10816,10 @@ export declare namespace platform {
10524
10816
  * Suffix appended to resources for kustomize apps.
10525
10817
  */
10526
10818
  nameSuffix?: string;
10819
+ /**
10820
+ * Override the namespace of the Kustomize application.
10821
+ */
10822
+ namespace?: string;
10527
10823
  /**
10528
10824
  * Version of kustomize to use for rendering manifests.
10529
10825
  */
@@ -10702,7 +10998,7 @@ export declare namespace platform {
10702
10998
  /**
10703
10999
  * Password of the server of the cluster. Use passwordWo for write-only support (Terraform >= 1.11).
10704
11000
  */
10705
- password?: string;
11001
+ password: string;
10706
11002
  /**
10707
11003
  * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
10708
11004
  * Password of the server of the cluster. Write-only: never stored in state. Requires Terraform >= 1.11.
@@ -12217,6 +12513,10 @@ export declare namespace platform {
12217
12513
  * Suffix appended to resources for Kustomize apps.
12218
12514
  */
12219
12515
  nameSuffix?: string;
12516
+ /**
12517
+ * Override the namespace of the Kustomize application.
12518
+ */
12519
+ namespace?: string;
12220
12520
  /**
12221
12521
  * Version of Kustomize to use for rendering manifests.
12222
12522
  */
@@ -12665,6 +12965,10 @@ export declare namespace platform {
12665
12965
  * Suffix appended to resources for Kustomize apps.
12666
12966
  */
12667
12967
  nameSuffix?: string;
12968
+ /**
12969
+ * Override the namespace of the Kustomize application.
12970
+ */
12971
+ namespace?: string;
12668
12972
  /**
12669
12973
  * Version of Kustomize to use for rendering manifests.
12670
12974
  */
@@ -13129,6 +13433,10 @@ export declare namespace platform {
13129
13433
  * Suffix appended to resources for Kustomize apps.
13130
13434
  */
13131
13435
  nameSuffix?: string;
13436
+ /**
13437
+ * Override the namespace of the Kustomize application.
13438
+ */
13439
+ namespace?: string;
13132
13440
  /**
13133
13441
  * Version of Kustomize to use for rendering manifests.
13134
13442
  */
@@ -13563,6 +13871,10 @@ export declare namespace platform {
13563
13871
  * Suffix appended to resources for Kustomize apps.
13564
13872
  */
13565
13873
  nameSuffix?: string;
13874
+ /**
13875
+ * Override the namespace of the Kustomize application.
13876
+ */
13877
+ namespace?: string;
13566
13878
  /**
13567
13879
  * Version of Kustomize to use for rendering manifests.
13568
13880
  */
@@ -14107,6 +14419,10 @@ export declare namespace platform {
14107
14419
  * Suffix appended to resources for Kustomize apps.
14108
14420
  */
14109
14421
  nameSuffix?: string;
14422
+ /**
14423
+ * Override the namespace of the Kustomize application.
14424
+ */
14425
+ namespace?: string;
14110
14426
  /**
14111
14427
  * Version of Kustomize to use for rendering manifests.
14112
14428
  */
@@ -14555,6 +14871,10 @@ export declare namespace platform {
14555
14871
  * Suffix appended to resources for Kustomize apps.
14556
14872
  */
14557
14873
  nameSuffix?: string;
14874
+ /**
14875
+ * Override the namespace of the Kustomize application.
14876
+ */
14877
+ namespace?: string;
14558
14878
  /**
14559
14879
  * Version of Kustomize to use for rendering manifests.
14560
14880
  */
@@ -15019,6 +15339,10 @@ export declare namespace platform {
15019
15339
  * Suffix appended to resources for Kustomize apps.
15020
15340
  */
15021
15341
  nameSuffix?: string;
15342
+ /**
15343
+ * Override the namespace of the Kustomize application.
15344
+ */
15345
+ namespace?: string;
15022
15346
  /**
15023
15347
  * Version of Kustomize to use for rendering manifests.
15024
15348
  */
@@ -15453,6 +15777,10 @@ export declare namespace platform {
15453
15777
  * Suffix appended to resources for Kustomize apps.
15454
15778
  */
15455
15779
  nameSuffix?: string;
15780
+ /**
15781
+ * Override the namespace of the Kustomize application.
15782
+ */
15783
+ namespace?: string;
15456
15784
  /**
15457
15785
  * Version of Kustomize to use for rendering manifests.
15458
15786
  */
@@ -15989,6 +16317,10 @@ export declare namespace platform {
15989
16317
  * Suffix appended to resources for Kustomize apps.
15990
16318
  */
15991
16319
  nameSuffix?: string;
16320
+ /**
16321
+ * Override the namespace of the Kustomize application.
16322
+ */
16323
+ namespace?: string;
15992
16324
  /**
15993
16325
  * Version of Kustomize to use for rendering manifests.
15994
16326
  */
@@ -16437,6 +16769,10 @@ export declare namespace platform {
16437
16769
  * Suffix appended to resources for Kustomize apps.
16438
16770
  */
16439
16771
  nameSuffix?: string;
16772
+ /**
16773
+ * Override the namespace of the Kustomize application.
16774
+ */
16775
+ namespace?: string;
16440
16776
  /**
16441
16777
  * Version of Kustomize to use for rendering manifests.
16442
16778
  */
@@ -16901,6 +17237,10 @@ export declare namespace platform {
16901
17237
  * Suffix appended to resources for Kustomize apps.
16902
17238
  */
16903
17239
  nameSuffix?: string;
17240
+ /**
17241
+ * Override the namespace of the Kustomize application.
17242
+ */
17243
+ namespace?: string;
16904
17244
  /**
16905
17245
  * Version of Kustomize to use for rendering manifests.
16906
17246
  */
@@ -17335,6 +17675,10 @@ export declare namespace platform {
17335
17675
  * Suffix appended to resources for Kustomize apps.
17336
17676
  */
17337
17677
  nameSuffix?: string;
17678
+ /**
17679
+ * Override the namespace of the Kustomize application.
17680
+ */
17681
+ namespace?: string;
17338
17682
  /**
17339
17683
  * Version of Kustomize to use for rendering manifests.
17340
17684
  */
@@ -17931,6 +18275,10 @@ export declare namespace platform {
17931
18275
  * Suffix appended to resources for Kustomize apps.
17932
18276
  */
17933
18277
  nameSuffix?: string;
18278
+ /**
18279
+ * Override the namespace of the Kustomize application.
18280
+ */
18281
+ namespace?: string;
17934
18282
  /**
17935
18283
  * Version of Kustomize to use for rendering manifests.
17936
18284
  */
@@ -18625,6 +18973,10 @@ export declare namespace platform {
18625
18973
  * Suffix appended to resources for Kustomize apps.
18626
18974
  */
18627
18975
  nameSuffix?: string;
18976
+ /**
18977
+ * Override the namespace of the Kustomize application.
18978
+ */
18979
+ namespace?: string;
18628
18980
  /**
18629
18981
  * Version of Kustomize to use for rendering manifests.
18630
18982
  */
@@ -19073,6 +19425,10 @@ export declare namespace platform {
19073
19425
  * Suffix appended to resources for Kustomize apps.
19074
19426
  */
19075
19427
  nameSuffix?: string;
19428
+ /**
19429
+ * Override the namespace of the Kustomize application.
19430
+ */
19431
+ namespace?: string;
19076
19432
  /**
19077
19433
  * Version of Kustomize to use for rendering manifests.
19078
19434
  */
@@ -19613,6 +19969,10 @@ export declare namespace platform {
19613
19969
  * Suffix appended to resources for Kustomize apps.
19614
19970
  */
19615
19971
  nameSuffix?: string;
19972
+ /**
19973
+ * Override the namespace of the Kustomize application.
19974
+ */
19975
+ namespace?: string;
19616
19976
  /**
19617
19977
  * Version of Kustomize to use for rendering manifests.
19618
19978
  */
@@ -20061,6 +20421,10 @@ export declare namespace platform {
20061
20421
  * Suffix appended to resources for Kustomize apps.
20062
20422
  */
20063
20423
  nameSuffix?: string;
20424
+ /**
20425
+ * Override the namespace of the Kustomize application.
20426
+ */
20427
+ namespace?: string;
20064
20428
  /**
20065
20429
  * Version of Kustomize to use for rendering manifests.
20066
20430
  */
@@ -20525,6 +20889,10 @@ export declare namespace platform {
20525
20889
  * Suffix appended to resources for Kustomize apps.
20526
20890
  */
20527
20891
  nameSuffix?: string;
20892
+ /**
20893
+ * Override the namespace of the Kustomize application.
20894
+ */
20895
+ namespace?: string;
20528
20896
  /**
20529
20897
  * Version of Kustomize to use for rendering manifests.
20530
20898
  */
@@ -20959,6 +21327,10 @@ export declare namespace platform {
20959
21327
  * Suffix appended to resources for Kustomize apps.
20960
21328
  */
20961
21329
  nameSuffix?: string;
21330
+ /**
21331
+ * Override the namespace of the Kustomize application.
21332
+ */
21333
+ namespace?: string;
20962
21334
  /**
20963
21335
  * Version of Kustomize to use for rendering manifests.
20964
21336
  */
@@ -21555,6 +21927,10 @@ export declare namespace platform {
21555
21927
  * Suffix appended to resources for Kustomize apps.
21556
21928
  */
21557
21929
  nameSuffix?: string;
21930
+ /**
21931
+ * Override the namespace of the Kustomize application.
21932
+ */
21933
+ namespace?: string;
21558
21934
  /**
21559
21935
  * Version of Kustomize to use for rendering manifests.
21560
21936
  */
@@ -22249,6 +22625,10 @@ export declare namespace platform {
22249
22625
  * Suffix appended to resources for Kustomize apps.
22250
22626
  */
22251
22627
  nameSuffix?: string;
22628
+ /**
22629
+ * Override the namespace of the Kustomize application.
22630
+ */
22631
+ namespace?: string;
22252
22632
  /**
22253
22633
  * Version of Kustomize to use for rendering manifests.
22254
22634
  */
@@ -22697,6 +23077,10 @@ export declare namespace platform {
22697
23077
  * Suffix appended to resources for Kustomize apps.
22698
23078
  */
22699
23079
  nameSuffix?: string;
23080
+ /**
23081
+ * Override the namespace of the Kustomize application.
23082
+ */
23083
+ namespace?: string;
22700
23084
  /**
22701
23085
  * Version of Kustomize to use for rendering manifests.
22702
23086
  */
@@ -23293,6 +23677,10 @@ export declare namespace platform {
23293
23677
  * Suffix appended to resources for Kustomize apps.
23294
23678
  */
23295
23679
  nameSuffix?: string;
23680
+ /**
23681
+ * Override the namespace of the Kustomize application.
23682
+ */
23683
+ namespace?: string;
23296
23684
  /**
23297
23685
  * Version of Kustomize to use for rendering manifests.
23298
23686
  */
@@ -23987,6 +24375,10 @@ export declare namespace platform {
23987
24375
  * Suffix appended to resources for Kustomize apps.
23988
24376
  */
23989
24377
  nameSuffix?: string;
24378
+ /**
24379
+ * Override the namespace of the Kustomize application.
24380
+ */
24381
+ namespace?: string;
23990
24382
  /**
23991
24383
  * Version of Kustomize to use for rendering manifests.
23992
24384
  */
@@ -24435,6 +24827,10 @@ export declare namespace platform {
24435
24827
  * Suffix appended to resources for Kustomize apps.
24436
24828
  */
24437
24829
  nameSuffix?: string;
24830
+ /**
24831
+ * Override the namespace of the Kustomize application.
24832
+ */
24833
+ namespace?: string;
24438
24834
  /**
24439
24835
  * Version of Kustomize to use for rendering manifests.
24440
24836
  */
@@ -24983,6 +25379,10 @@ export declare namespace platform {
24983
25379
  * Suffix appended to resources for Kustomize apps.
24984
25380
  */
24985
25381
  nameSuffix?: string;
25382
+ /**
25383
+ * Override the namespace of the Kustomize application.
25384
+ */
25385
+ namespace?: string;
24986
25386
  /**
24987
25387
  * Version of Kustomize to use for rendering manifests.
24988
25388
  */
@@ -25431,6 +25831,10 @@ export declare namespace platform {
25431
25831
  * Suffix appended to resources for Kustomize apps.
25432
25832
  */
25433
25833
  nameSuffix?: string;
25834
+ /**
25835
+ * Override the namespace of the Kustomize application.
25836
+ */
25837
+ namespace?: string;
25434
25838
  /**
25435
25839
  * Version of Kustomize to use for rendering manifests.
25436
25840
  */
@@ -25895,6 +26299,10 @@ export declare namespace platform {
25895
26299
  * Suffix appended to resources for Kustomize apps.
25896
26300
  */
25897
26301
  nameSuffix?: string;
26302
+ /**
26303
+ * Override the namespace of the Kustomize application.
26304
+ */
26305
+ namespace?: string;
25898
26306
  /**
25899
26307
  * Version of Kustomize to use for rendering manifests.
25900
26308
  */
@@ -26329,6 +26737,10 @@ export declare namespace platform {
26329
26737
  * Suffix appended to resources for Kustomize apps.
26330
26738
  */
26331
26739
  nameSuffix?: string;
26740
+ /**
26741
+ * Override the namespace of the Kustomize application.
26742
+ */
26743
+ namespace?: string;
26332
26744
  /**
26333
26745
  * Version of Kustomize to use for rendering manifests.
26334
26746
  */
@@ -26865,6 +27277,10 @@ export declare namespace platform {
26865
27277
  * Suffix appended to resources for Kustomize apps.
26866
27278
  */
26867
27279
  nameSuffix?: string;
27280
+ /**
27281
+ * Override the namespace of the Kustomize application.
27282
+ */
27283
+ namespace?: string;
26868
27284
  /**
26869
27285
  * Version of Kustomize to use for rendering manifests.
26870
27286
  */
@@ -27313,6 +27729,10 @@ export declare namespace platform {
27313
27729
  * Suffix appended to resources for Kustomize apps.
27314
27730
  */
27315
27731
  nameSuffix?: string;
27732
+ /**
27733
+ * Override the namespace of the Kustomize application.
27734
+ */
27735
+ namespace?: string;
27316
27736
  /**
27317
27737
  * Version of Kustomize to use for rendering manifests.
27318
27738
  */
@@ -27777,6 +28197,10 @@ export declare namespace platform {
27777
28197
  * Suffix appended to resources for Kustomize apps.
27778
28198
  */
27779
28199
  nameSuffix?: string;
28200
+ /**
28201
+ * Override the namespace of the Kustomize application.
28202
+ */
28203
+ namespace?: string;
27780
28204
  /**
27781
28205
  * Version of Kustomize to use for rendering manifests.
27782
28206
  */
@@ -28211,6 +28635,10 @@ export declare namespace platform {
28211
28635
  * Suffix appended to resources for Kustomize apps.
28212
28636
  */
28213
28637
  nameSuffix?: string;
28638
+ /**
28639
+ * Override the namespace of the Kustomize application.
28640
+ */
28641
+ namespace?: string;
28214
28642
  /**
28215
28643
  * Version of Kustomize to use for rendering manifests.
28216
28644
  */
@@ -28807,6 +29235,10 @@ export declare namespace platform {
28807
29235
  * Suffix appended to resources for Kustomize apps.
28808
29236
  */
28809
29237
  nameSuffix?: string;
29238
+ /**
29239
+ * Override the namespace of the Kustomize application.
29240
+ */
29241
+ namespace?: string;
28810
29242
  /**
28811
29243
  * Version of Kustomize to use for rendering manifests.
28812
29244
  */
@@ -29501,6 +29933,10 @@ export declare namespace platform {
29501
29933
  * Suffix appended to resources for Kustomize apps.
29502
29934
  */
29503
29935
  nameSuffix?: string;
29936
+ /**
29937
+ * Override the namespace of the Kustomize application.
29938
+ */
29939
+ namespace?: string;
29504
29940
  /**
29505
29941
  * Version of Kustomize to use for rendering manifests.
29506
29942
  */
@@ -29949,6 +30385,10 @@ export declare namespace platform {
29949
30385
  * Suffix appended to resources for Kustomize apps.
29950
30386
  */
29951
30387
  nameSuffix?: string;
30388
+ /**
30389
+ * Override the namespace of the Kustomize application.
30390
+ */
30391
+ namespace?: string;
29952
30392
  /**
29953
30393
  * Version of Kustomize to use for rendering manifests.
29954
30394
  */
@@ -30489,6 +30929,10 @@ export declare namespace platform {
30489
30929
  * Suffix appended to resources for Kustomize apps.
30490
30930
  */
30491
30931
  nameSuffix?: string;
30932
+ /**
30933
+ * Override the namespace of the Kustomize application.
30934
+ */
30935
+ namespace?: string;
30492
30936
  /**
30493
30937
  * Version of Kustomize to use for rendering manifests.
30494
30938
  */
@@ -30937,6 +31381,10 @@ export declare namespace platform {
30937
31381
  * Suffix appended to resources for Kustomize apps.
30938
31382
  */
30939
31383
  nameSuffix?: string;
31384
+ /**
31385
+ * Override the namespace of the Kustomize application.
31386
+ */
31387
+ namespace?: string;
30940
31388
  /**
30941
31389
  * Version of Kustomize to use for rendering manifests.
30942
31390
  */
@@ -31401,6 +31849,10 @@ export declare namespace platform {
31401
31849
  * Suffix appended to resources for Kustomize apps.
31402
31850
  */
31403
31851
  nameSuffix?: string;
31852
+ /**
31853
+ * Override the namespace of the Kustomize application.
31854
+ */
31855
+ namespace?: string;
31404
31856
  /**
31405
31857
  * Version of Kustomize to use for rendering manifests.
31406
31858
  */
@@ -31835,6 +32287,10 @@ export declare namespace platform {
31835
32287
  * Suffix appended to resources for Kustomize apps.
31836
32288
  */
31837
32289
  nameSuffix?: string;
32290
+ /**
32291
+ * Override the namespace of the Kustomize application.
32292
+ */
32293
+ namespace?: string;
31838
32294
  /**
31839
32295
  * Version of Kustomize to use for rendering manifests.
31840
32296
  */
@@ -32431,6 +32887,10 @@ export declare namespace platform {
32431
32887
  * Suffix appended to resources for Kustomize apps.
32432
32888
  */
32433
32889
  nameSuffix?: string;
32890
+ /**
32891
+ * Override the namespace of the Kustomize application.
32892
+ */
32893
+ namespace?: string;
32434
32894
  /**
32435
32895
  * Version of Kustomize to use for rendering manifests.
32436
32896
  */
@@ -33125,6 +33585,10 @@ export declare namespace platform {
33125
33585
  * Suffix appended to resources for Kustomize apps.
33126
33586
  */
33127
33587
  nameSuffix?: string;
33588
+ /**
33589
+ * Override the namespace of the Kustomize application.
33590
+ */
33591
+ namespace?: string;
33128
33592
  /**
33129
33593
  * Version of Kustomize to use for rendering manifests.
33130
33594
  */
@@ -33573,6 +34037,10 @@ export declare namespace platform {
33573
34037
  * Suffix appended to resources for Kustomize apps.
33574
34038
  */
33575
34039
  nameSuffix?: string;
34040
+ /**
34041
+ * Override the namespace of the Kustomize application.
34042
+ */
34043
+ namespace?: string;
33576
34044
  /**
33577
34045
  * Version of Kustomize to use for rendering manifests.
33578
34046
  */
@@ -34169,6 +34637,10 @@ export declare namespace platform {
34169
34637
  * Suffix appended to resources for Kustomize apps.
34170
34638
  */
34171
34639
  nameSuffix?: string;
34640
+ /**
34641
+ * Override the namespace of the Kustomize application.
34642
+ */
34643
+ namespace?: string;
34172
34644
  /**
34173
34645
  * Version of Kustomize to use for rendering manifests.
34174
34646
  */
@@ -34863,6 +35335,10 @@ export declare namespace platform {
34863
35335
  * Suffix appended to resources for Kustomize apps.
34864
35336
  */
34865
35337
  nameSuffix?: string;
35338
+ /**
35339
+ * Override the namespace of the Kustomize application.
35340
+ */
35341
+ namespace?: string;
34866
35342
  /**
34867
35343
  * Version of Kustomize to use for rendering manifests.
34868
35344
  */
@@ -35311,6 +35787,10 @@ export declare namespace platform {
35311
35787
  * Suffix appended to resources for Kustomize apps.
35312
35788
  */
35313
35789
  nameSuffix?: string;
35790
+ /**
35791
+ * Override the namespace of the Kustomize application.
35792
+ */
35793
+ namespace?: string;
35314
35794
  /**
35315
35795
  * Version of Kustomize to use for rendering manifests.
35316
35796
  */
@@ -35907,6 +36387,10 @@ export declare namespace platform {
35907
36387
  * Suffix appended to resources for Kustomize apps.
35908
36388
  */
35909
36389
  nameSuffix?: string;
36390
+ /**
36391
+ * Override the namespace of the Kustomize application.
36392
+ */
36393
+ namespace?: string;
35910
36394
  /**
35911
36395
  * Version of Kustomize to use for rendering manifests.
35912
36396
  */
@@ -36601,6 +37085,10 @@ export declare namespace platform {
36601
37085
  * Suffix appended to resources for Kustomize apps.
36602
37086
  */
36603
37087
  nameSuffix?: string;
37088
+ /**
37089
+ * Override the namespace of the Kustomize application.
37090
+ */
37091
+ namespace?: string;
36604
37092
  /**
36605
37093
  * Version of Kustomize to use for rendering manifests.
36606
37094
  */
@@ -37113,6 +37601,10 @@ export declare namespace platform {
37113
37601
  * Suffix appended to resources for Kustomize apps.
37114
37602
  */
37115
37603
  nameSuffix?: string;
37604
+ /**
37605
+ * Override the namespace of the Kustomize application.
37606
+ */
37607
+ namespace?: string;
37116
37608
  /**
37117
37609
  * Version of Kustomize to use for rendering manifests.
37118
37610
  */
@@ -39402,7 +39894,7 @@ export declare namespace platform {
39402
39894
  */
39403
39895
  connectorRef: string;
39404
39896
  /**
39405
- * Type is the connector type of the connector. Supported types: aws, azure, gcp
39897
+ * Type is the connector type of the connector. Supported types: aws, azure, gcp, vault
39406
39898
  */
39407
39899
  type: string;
39408
39900
  }