@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/input.d.ts CHANGED
@@ -4789,6 +4789,114 @@ export declare namespace chaos {
4789
4789
  */
4790
4790
  operator: pulumi.Input<string>;
4791
4791
  }
4792
+ interface SecurityGovernanceConditionV3FaultSpec {
4793
+ /**
4794
+ * List of fault specifications
4795
+ */
4796
+ faults: pulumi.Input<pulumi.Input<inputs.chaos.SecurityGovernanceConditionV3FaultSpecFault>[]>;
4797
+ /**
4798
+ * Operator for comparing faults (EQUAL*TO or NOT*EQUAL_TO)
4799
+ */
4800
+ operator: pulumi.Input<string>;
4801
+ }
4802
+ interface SecurityGovernanceConditionV3FaultSpecFault {
4803
+ /**
4804
+ * Type of the fault (FAULT or FAULT_GROUP)
4805
+ */
4806
+ faultType: pulumi.Input<string>;
4807
+ /**
4808
+ * Name of the fault
4809
+ */
4810
+ name: pulumi.Input<string>;
4811
+ }
4812
+ interface SecurityGovernanceConditionV3K8sSpec {
4813
+ /**
4814
+ * Application specification
4815
+ */
4816
+ applicationSpec?: pulumi.Input<inputs.chaos.SecurityGovernanceConditionV3K8sSpecApplicationSpec | undefined>;
4817
+ /**
4818
+ * Chaos service account specification
4819
+ */
4820
+ chaosServiceAccountSpec?: pulumi.Input<inputs.chaos.SecurityGovernanceConditionV3K8sSpecChaosServiceAccountSpec | undefined>;
4821
+ /**
4822
+ * Infrastructure specification
4823
+ */
4824
+ infraSpec?: pulumi.Input<inputs.chaos.SecurityGovernanceConditionV3K8sSpecInfraSpec | undefined>;
4825
+ }
4826
+ interface SecurityGovernanceConditionV3K8sSpecApplicationSpec {
4827
+ /**
4828
+ * Operator for application matching (EQUAL*TO or NOT*EQUAL_TO)
4829
+ */
4830
+ operator: pulumi.Input<string>;
4831
+ /**
4832
+ * List of workloads to include/exclude
4833
+ */
4834
+ workloads?: pulumi.Input<pulumi.Input<inputs.chaos.SecurityGovernanceConditionV3K8sSpecApplicationSpecWorkload>[] | undefined>;
4835
+ }
4836
+ interface SecurityGovernanceConditionV3K8sSpecApplicationSpecWorkload {
4837
+ /**
4838
+ * ID for the application map
4839
+ */
4840
+ applicationMapId?: pulumi.Input<string | undefined>;
4841
+ /**
4842
+ * Kind of the workload (e.g., deployment, statefulset)
4843
+ */
4844
+ kind?: pulumi.Input<string | undefined>;
4845
+ /**
4846
+ * Label selector for the workload
4847
+ */
4848
+ label?: pulumi.Input<string | undefined>;
4849
+ /**
4850
+ * Namespace of the workload
4851
+ */
4852
+ namespace: pulumi.Input<string>;
4853
+ /**
4854
+ * Namespace labels to match against, as key-value pairs
4855
+ */
4856
+ namespaceLabels?: pulumi.Input<{
4857
+ [key: string]: pulumi.Input<string>;
4858
+ } | undefined>;
4859
+ /**
4860
+ * List of services associated with the workload
4861
+ */
4862
+ services?: pulumi.Input<pulumi.Input<string>[] | undefined>;
4863
+ }
4864
+ interface SecurityGovernanceConditionV3K8sSpecChaosServiceAccountSpec {
4865
+ /**
4866
+ * Operator for service account matching (EQUAL*TO or NOT*EQUAL_TO)
4867
+ */
4868
+ operator: pulumi.Input<string>;
4869
+ /**
4870
+ * List of service accounts to include/exclude
4871
+ */
4872
+ serviceAccounts: pulumi.Input<pulumi.Input<string>[]>;
4873
+ }
4874
+ interface SecurityGovernanceConditionV3K8sSpecInfraSpec {
4875
+ /**
4876
+ * List of infrastructure IDs to apply the condition to
4877
+ */
4878
+ infraIds: pulumi.Input<pulumi.Input<string>[]>;
4879
+ /**
4880
+ * Operator for comparing infrastructure IDs (EQUAL*TO or NOT*EQUAL_TO)
4881
+ */
4882
+ operator: pulumi.Input<string>;
4883
+ }
4884
+ interface SecurityGovernanceConditionV3MachineSpec {
4885
+ /**
4886
+ * Infrastructure specification
4887
+ */
4888
+ infraSpec?: pulumi.Input<inputs.chaos.SecurityGovernanceConditionV3MachineSpecInfraSpec | undefined>;
4889
+ }
4890
+ interface SecurityGovernanceConditionV3MachineSpecInfraSpec {
4891
+ /**
4892
+ * List of infrastructure IDs to apply the condition to
4893
+ */
4894
+ infraIds: pulumi.Input<pulumi.Input<string>[]>;
4895
+ /**
4896
+ * Operator for comparing infrastructure IDs (EQUAL*TO or NOT*EQUAL_TO)
4897
+ */
4898
+ operator: pulumi.Input<string>;
4899
+ }
4792
4900
  interface SecurityGovernanceRuleTimeWindow {
4793
4901
  duration?: pulumi.Input<string | undefined>;
4794
4902
  endTime?: pulumi.Input<number | undefined>;
@@ -4801,6 +4909,42 @@ export declare namespace chaos {
4801
4909
  until: pulumi.Input<number>;
4802
4910
  value?: pulumi.Input<number | undefined>;
4803
4911
  }
4912
+ interface SecurityGovernanceRuleV3TimeWindow {
4913
+ /**
4914
+ * Duration of the window (e.g., 30m, 1h). Computed from endTime when not set.
4915
+ */
4916
+ duration?: pulumi.Input<string | undefined>;
4917
+ /**
4918
+ * End of the window as a Unix epoch timestamp in milliseconds. Computed from duration when not set.
4919
+ */
4920
+ endTime?: pulumi.Input<number | undefined>;
4921
+ /**
4922
+ * Recurrence specification for the time window.
4923
+ */
4924
+ recurrence?: pulumi.Input<inputs.chaos.SecurityGovernanceRuleV3TimeWindowRecurrence | undefined>;
4925
+ /**
4926
+ * Start of the window as a Unix epoch timestamp in milliseconds.
4927
+ */
4928
+ startTime: pulumi.Input<number>;
4929
+ /**
4930
+ * IANA time zone for the window (e.g., UTC, America/New_York).
4931
+ */
4932
+ timeZone: pulumi.Input<string>;
4933
+ }
4934
+ interface SecurityGovernanceRuleV3TimeWindowRecurrence {
4935
+ /**
4936
+ * Recurrence type (None, Daily, Weekly, Monthly, Yearly).
4937
+ */
4938
+ type: pulumi.Input<string>;
4939
+ /**
4940
+ * End of the recurrence as a Unix epoch timestamp in milliseconds. Use -1 for no end.
4941
+ */
4942
+ until: pulumi.Input<number>;
4943
+ /**
4944
+ * Day of month for Monthly recurrence. Only used when type is Monthly.
4945
+ */
4946
+ value?: pulumi.Input<number | undefined>;
4947
+ }
4804
4948
  }
4805
4949
  export declare namespace cloudprovider {
4806
4950
  interface AwsAssumeCrossAccountRole {
@@ -8767,6 +8911,10 @@ export declare namespace platform {
8767
8911
  * Suffix appended to resources for kustomize apps.
8768
8912
  */
8769
8913
  nameSuffix?: pulumi.Input<string | undefined>;
8914
+ /**
8915
+ * Override the namespace of the Kustomize application.
8916
+ */
8917
+ namespace?: pulumi.Input<string | undefined>;
8770
8918
  /**
8771
8919
  * Version of kustomize to use for rendering manifests.
8772
8920
  */
@@ -10460,6 +10608,10 @@ export declare namespace platform {
10460
10608
  * Suffix appended to resources for Kustomize apps.
10461
10609
  */
10462
10610
  nameSuffix?: pulumi.Input<string | undefined>;
10611
+ /**
10612
+ * Override the namespace of the Kustomize application.
10613
+ */
10614
+ namespace?: pulumi.Input<string | undefined>;
10463
10615
  /**
10464
10616
  * Version of Kustomize to use for rendering manifests.
10465
10617
  */
@@ -10908,6 +11060,10 @@ export declare namespace platform {
10908
11060
  * Suffix appended to resources for Kustomize apps.
10909
11061
  */
10910
11062
  nameSuffix?: pulumi.Input<string | undefined>;
11063
+ /**
11064
+ * Override the namespace of the Kustomize application.
11065
+ */
11066
+ namespace?: pulumi.Input<string | undefined>;
10911
11067
  /**
10912
11068
  * Version of Kustomize to use for rendering manifests.
10913
11069
  */
@@ -11372,6 +11528,10 @@ export declare namespace platform {
11372
11528
  * Suffix appended to resources for Kustomize apps.
11373
11529
  */
11374
11530
  nameSuffix?: pulumi.Input<string | undefined>;
11531
+ /**
11532
+ * Override the namespace of the Kustomize application.
11533
+ */
11534
+ namespace?: pulumi.Input<string | undefined>;
11375
11535
  /**
11376
11536
  * Version of Kustomize to use for rendering manifests.
11377
11537
  */
@@ -11806,6 +11966,10 @@ export declare namespace platform {
11806
11966
  * Suffix appended to resources for Kustomize apps.
11807
11967
  */
11808
11968
  nameSuffix?: pulumi.Input<string | undefined>;
11969
+ /**
11970
+ * Override the namespace of the Kustomize application.
11971
+ */
11972
+ namespace?: pulumi.Input<string | undefined>;
11809
11973
  /**
11810
11974
  * Version of Kustomize to use for rendering manifests.
11811
11975
  */
@@ -12350,6 +12514,10 @@ export declare namespace platform {
12350
12514
  * Suffix appended to resources for Kustomize apps.
12351
12515
  */
12352
12516
  nameSuffix?: pulumi.Input<string | undefined>;
12517
+ /**
12518
+ * Override the namespace of the Kustomize application.
12519
+ */
12520
+ namespace?: pulumi.Input<string | undefined>;
12353
12521
  /**
12354
12522
  * Version of Kustomize to use for rendering manifests.
12355
12523
  */
@@ -12798,6 +12966,10 @@ export declare namespace platform {
12798
12966
  * Suffix appended to resources for Kustomize apps.
12799
12967
  */
12800
12968
  nameSuffix?: pulumi.Input<string | undefined>;
12969
+ /**
12970
+ * Override the namespace of the Kustomize application.
12971
+ */
12972
+ namespace?: pulumi.Input<string | undefined>;
12801
12973
  /**
12802
12974
  * Version of Kustomize to use for rendering manifests.
12803
12975
  */
@@ -13262,6 +13434,10 @@ export declare namespace platform {
13262
13434
  * Suffix appended to resources for Kustomize apps.
13263
13435
  */
13264
13436
  nameSuffix?: pulumi.Input<string | undefined>;
13437
+ /**
13438
+ * Override the namespace of the Kustomize application.
13439
+ */
13440
+ namespace?: pulumi.Input<string | undefined>;
13265
13441
  /**
13266
13442
  * Version of Kustomize to use for rendering manifests.
13267
13443
  */
@@ -13696,6 +13872,10 @@ export declare namespace platform {
13696
13872
  * Suffix appended to resources for Kustomize apps.
13697
13873
  */
13698
13874
  nameSuffix?: pulumi.Input<string | undefined>;
13875
+ /**
13876
+ * Override the namespace of the Kustomize application.
13877
+ */
13878
+ namespace?: pulumi.Input<string | undefined>;
13699
13879
  /**
13700
13880
  * Version of Kustomize to use for rendering manifests.
13701
13881
  */
@@ -14232,6 +14412,10 @@ export declare namespace platform {
14232
14412
  * Suffix appended to resources for Kustomize apps.
14233
14413
  */
14234
14414
  nameSuffix?: pulumi.Input<string | undefined>;
14415
+ /**
14416
+ * Override the namespace of the Kustomize application.
14417
+ */
14418
+ namespace?: pulumi.Input<string | undefined>;
14235
14419
  /**
14236
14420
  * Version of Kustomize to use for rendering manifests.
14237
14421
  */
@@ -14680,6 +14864,10 @@ export declare namespace platform {
14680
14864
  * Suffix appended to resources for Kustomize apps.
14681
14865
  */
14682
14866
  nameSuffix?: pulumi.Input<string | undefined>;
14867
+ /**
14868
+ * Override the namespace of the Kustomize application.
14869
+ */
14870
+ namespace?: pulumi.Input<string | undefined>;
14683
14871
  /**
14684
14872
  * Version of Kustomize to use for rendering manifests.
14685
14873
  */
@@ -15144,6 +15332,10 @@ export declare namespace platform {
15144
15332
  * Suffix appended to resources for Kustomize apps.
15145
15333
  */
15146
15334
  nameSuffix?: pulumi.Input<string | undefined>;
15335
+ /**
15336
+ * Override the namespace of the Kustomize application.
15337
+ */
15338
+ namespace?: pulumi.Input<string | undefined>;
15147
15339
  /**
15148
15340
  * Version of Kustomize to use for rendering manifests.
15149
15341
  */
@@ -15578,6 +15770,10 @@ export declare namespace platform {
15578
15770
  * Suffix appended to resources for Kustomize apps.
15579
15771
  */
15580
15772
  nameSuffix?: pulumi.Input<string | undefined>;
15773
+ /**
15774
+ * Override the namespace of the Kustomize application.
15775
+ */
15776
+ namespace?: pulumi.Input<string | undefined>;
15581
15777
  /**
15582
15778
  * Version of Kustomize to use for rendering manifests.
15583
15779
  */
@@ -16174,6 +16370,10 @@ export declare namespace platform {
16174
16370
  * Suffix appended to resources for Kustomize apps.
16175
16371
  */
16176
16372
  nameSuffix?: pulumi.Input<string | undefined>;
16373
+ /**
16374
+ * Override the namespace of the Kustomize application.
16375
+ */
16376
+ namespace?: pulumi.Input<string | undefined>;
16177
16377
  /**
16178
16378
  * Version of Kustomize to use for rendering manifests.
16179
16379
  */
@@ -16868,6 +17068,10 @@ export declare namespace platform {
16868
17068
  * Suffix appended to resources for Kustomize apps.
16869
17069
  */
16870
17070
  nameSuffix?: pulumi.Input<string | undefined>;
17071
+ /**
17072
+ * Override the namespace of the Kustomize application.
17073
+ */
17074
+ namespace?: pulumi.Input<string | undefined>;
16871
17075
  /**
16872
17076
  * Version of Kustomize to use for rendering manifests.
16873
17077
  */
@@ -17316,6 +17520,10 @@ export declare namespace platform {
17316
17520
  * Suffix appended to resources for Kustomize apps.
17317
17521
  */
17318
17522
  nameSuffix?: pulumi.Input<string | undefined>;
17523
+ /**
17524
+ * Override the namespace of the Kustomize application.
17525
+ */
17526
+ namespace?: pulumi.Input<string | undefined>;
17319
17527
  /**
17320
17528
  * Version of Kustomize to use for rendering manifests.
17321
17529
  */
@@ -17856,6 +18064,10 @@ export declare namespace platform {
17856
18064
  * Suffix appended to resources for Kustomize apps.
17857
18065
  */
17858
18066
  nameSuffix?: pulumi.Input<string | undefined>;
18067
+ /**
18068
+ * Override the namespace of the Kustomize application.
18069
+ */
18070
+ namespace?: pulumi.Input<string | undefined>;
17859
18071
  /**
17860
18072
  * Version of Kustomize to use for rendering manifests.
17861
18073
  */
@@ -18304,6 +18516,10 @@ export declare namespace platform {
18304
18516
  * Suffix appended to resources for Kustomize apps.
18305
18517
  */
18306
18518
  nameSuffix?: pulumi.Input<string | undefined>;
18519
+ /**
18520
+ * Override the namespace of the Kustomize application.
18521
+ */
18522
+ namespace?: pulumi.Input<string | undefined>;
18307
18523
  /**
18308
18524
  * Version of Kustomize to use for rendering manifests.
18309
18525
  */
@@ -18768,6 +18984,10 @@ export declare namespace platform {
18768
18984
  * Suffix appended to resources for Kustomize apps.
18769
18985
  */
18770
18986
  nameSuffix?: pulumi.Input<string | undefined>;
18987
+ /**
18988
+ * Override the namespace of the Kustomize application.
18989
+ */
18990
+ namespace?: pulumi.Input<string | undefined>;
18771
18991
  /**
18772
18992
  * Version of Kustomize to use for rendering manifests.
18773
18993
  */
@@ -19202,6 +19422,10 @@ export declare namespace platform {
19202
19422
  * Suffix appended to resources for Kustomize apps.
19203
19423
  */
19204
19424
  nameSuffix?: pulumi.Input<string | undefined>;
19425
+ /**
19426
+ * Override the namespace of the Kustomize application.
19427
+ */
19428
+ namespace?: pulumi.Input<string | undefined>;
19205
19429
  /**
19206
19430
  * Version of Kustomize to use for rendering manifests.
19207
19431
  */
@@ -19798,6 +20022,10 @@ export declare namespace platform {
19798
20022
  * Suffix appended to resources for Kustomize apps.
19799
20023
  */
19800
20024
  nameSuffix?: pulumi.Input<string | undefined>;
20025
+ /**
20026
+ * Override the namespace of the Kustomize application.
20027
+ */
20028
+ namespace?: pulumi.Input<string | undefined>;
19801
20029
  /**
19802
20030
  * Version of Kustomize to use for rendering manifests.
19803
20031
  */
@@ -20492,6 +20720,10 @@ export declare namespace platform {
20492
20720
  * Suffix appended to resources for Kustomize apps.
20493
20721
  */
20494
20722
  nameSuffix?: pulumi.Input<string | undefined>;
20723
+ /**
20724
+ * Override the namespace of the Kustomize application.
20725
+ */
20726
+ namespace?: pulumi.Input<string | undefined>;
20495
20727
  /**
20496
20728
  * Version of Kustomize to use for rendering manifests.
20497
20729
  */
@@ -20940,6 +21172,10 @@ export declare namespace platform {
20940
21172
  * Suffix appended to resources for Kustomize apps.
20941
21173
  */
20942
21174
  nameSuffix?: pulumi.Input<string | undefined>;
21175
+ /**
21176
+ * Override the namespace of the Kustomize application.
21177
+ */
21178
+ namespace?: pulumi.Input<string | undefined>;
20943
21179
  /**
20944
21180
  * Version of Kustomize to use for rendering manifests.
20945
21181
  */
@@ -21536,6 +21772,10 @@ export declare namespace platform {
21536
21772
  * Suffix appended to resources for Kustomize apps.
21537
21773
  */
21538
21774
  nameSuffix?: pulumi.Input<string | undefined>;
21775
+ /**
21776
+ * Override the namespace of the Kustomize application.
21777
+ */
21778
+ namespace?: pulumi.Input<string | undefined>;
21539
21779
  /**
21540
21780
  * Version of Kustomize to use for rendering manifests.
21541
21781
  */
@@ -22230,6 +22470,10 @@ export declare namespace platform {
22230
22470
  * Suffix appended to resources for Kustomize apps.
22231
22471
  */
22232
22472
  nameSuffix?: pulumi.Input<string | undefined>;
22473
+ /**
22474
+ * Override the namespace of the Kustomize application.
22475
+ */
22476
+ namespace?: pulumi.Input<string | undefined>;
22233
22477
  /**
22234
22478
  * Version of Kustomize to use for rendering manifests.
22235
22479
  */
@@ -22678,6 +22922,10 @@ export declare namespace platform {
22678
22922
  * Suffix appended to resources for Kustomize apps.
22679
22923
  */
22680
22924
  nameSuffix?: pulumi.Input<string | undefined>;
22925
+ /**
22926
+ * Override the namespace of the Kustomize application.
22927
+ */
22928
+ namespace?: pulumi.Input<string | undefined>;
22681
22929
  /**
22682
22930
  * Version of Kustomize to use for rendering manifests.
22683
22931
  */
@@ -23226,6 +23474,10 @@ export declare namespace platform {
23226
23474
  * Suffix appended to resources for Kustomize apps.
23227
23475
  */
23228
23476
  nameSuffix?: pulumi.Input<string | undefined>;
23477
+ /**
23478
+ * Override the namespace of the Kustomize application.
23479
+ */
23480
+ namespace?: pulumi.Input<string | undefined>;
23229
23481
  /**
23230
23482
  * Version of Kustomize to use for rendering manifests.
23231
23483
  */
@@ -23674,6 +23926,10 @@ export declare namespace platform {
23674
23926
  * Suffix appended to resources for Kustomize apps.
23675
23927
  */
23676
23928
  nameSuffix?: pulumi.Input<string | undefined>;
23929
+ /**
23930
+ * Override the namespace of the Kustomize application.
23931
+ */
23932
+ namespace?: pulumi.Input<string | undefined>;
23677
23933
  /**
23678
23934
  * Version of Kustomize to use for rendering manifests.
23679
23935
  */
@@ -24138,6 +24394,10 @@ export declare namespace platform {
24138
24394
  * Suffix appended to resources for Kustomize apps.
24139
24395
  */
24140
24396
  nameSuffix?: pulumi.Input<string | undefined>;
24397
+ /**
24398
+ * Override the namespace of the Kustomize application.
24399
+ */
24400
+ namespace?: pulumi.Input<string | undefined>;
24141
24401
  /**
24142
24402
  * Version of Kustomize to use for rendering manifests.
24143
24403
  */
@@ -24572,6 +24832,10 @@ export declare namespace platform {
24572
24832
  * Suffix appended to resources for Kustomize apps.
24573
24833
  */
24574
24834
  nameSuffix?: pulumi.Input<string | undefined>;
24835
+ /**
24836
+ * Override the namespace of the Kustomize application.
24837
+ */
24838
+ namespace?: pulumi.Input<string | undefined>;
24575
24839
  /**
24576
24840
  * Version of Kustomize to use for rendering manifests.
24577
24841
  */
@@ -25108,6 +25372,10 @@ export declare namespace platform {
25108
25372
  * Suffix appended to resources for Kustomize apps.
25109
25373
  */
25110
25374
  nameSuffix?: pulumi.Input<string | undefined>;
25375
+ /**
25376
+ * Override the namespace of the Kustomize application.
25377
+ */
25378
+ namespace?: pulumi.Input<string | undefined>;
25111
25379
  /**
25112
25380
  * Version of Kustomize to use for rendering manifests.
25113
25381
  */
@@ -25556,6 +25824,10 @@ export declare namespace platform {
25556
25824
  * Suffix appended to resources for Kustomize apps.
25557
25825
  */
25558
25826
  nameSuffix?: pulumi.Input<string | undefined>;
25827
+ /**
25828
+ * Override the namespace of the Kustomize application.
25829
+ */
25830
+ namespace?: pulumi.Input<string | undefined>;
25559
25831
  /**
25560
25832
  * Version of Kustomize to use for rendering manifests.
25561
25833
  */
@@ -26020,6 +26292,10 @@ export declare namespace platform {
26020
26292
  * Suffix appended to resources for Kustomize apps.
26021
26293
  */
26022
26294
  nameSuffix?: pulumi.Input<string | undefined>;
26295
+ /**
26296
+ * Override the namespace of the Kustomize application.
26297
+ */
26298
+ namespace?: pulumi.Input<string | undefined>;
26023
26299
  /**
26024
26300
  * Version of Kustomize to use for rendering manifests.
26025
26301
  */
@@ -26454,6 +26730,10 @@ export declare namespace platform {
26454
26730
  * Suffix appended to resources for Kustomize apps.
26455
26731
  */
26456
26732
  nameSuffix?: pulumi.Input<string | undefined>;
26733
+ /**
26734
+ * Override the namespace of the Kustomize application.
26735
+ */
26736
+ namespace?: pulumi.Input<string | undefined>;
26457
26737
  /**
26458
26738
  * Version of Kustomize to use for rendering manifests.
26459
26739
  */
@@ -27050,6 +27330,10 @@ export declare namespace platform {
27050
27330
  * Suffix appended to resources for Kustomize apps.
27051
27331
  */
27052
27332
  nameSuffix?: pulumi.Input<string | undefined>;
27333
+ /**
27334
+ * Override the namespace of the Kustomize application.
27335
+ */
27336
+ namespace?: pulumi.Input<string | undefined>;
27053
27337
  /**
27054
27338
  * Version of Kustomize to use for rendering manifests.
27055
27339
  */
@@ -27744,6 +28028,10 @@ export declare namespace platform {
27744
28028
  * Suffix appended to resources for Kustomize apps.
27745
28029
  */
27746
28030
  nameSuffix?: pulumi.Input<string | undefined>;
28031
+ /**
28032
+ * Override the namespace of the Kustomize application.
28033
+ */
28034
+ namespace?: pulumi.Input<string | undefined>;
27747
28035
  /**
27748
28036
  * Version of Kustomize to use for rendering manifests.
27749
28037
  */
@@ -28192,6 +28480,10 @@ export declare namespace platform {
28192
28480
  * Suffix appended to resources for Kustomize apps.
28193
28481
  */
28194
28482
  nameSuffix?: pulumi.Input<string | undefined>;
28483
+ /**
28484
+ * Override the namespace of the Kustomize application.
28485
+ */
28486
+ namespace?: pulumi.Input<string | undefined>;
28195
28487
  /**
28196
28488
  * Version of Kustomize to use for rendering manifests.
28197
28489
  */
@@ -28732,6 +29024,10 @@ export declare namespace platform {
28732
29024
  * Suffix appended to resources for Kustomize apps.
28733
29025
  */
28734
29026
  nameSuffix?: pulumi.Input<string | undefined>;
29027
+ /**
29028
+ * Override the namespace of the Kustomize application.
29029
+ */
29030
+ namespace?: pulumi.Input<string | undefined>;
28735
29031
  /**
28736
29032
  * Version of Kustomize to use for rendering manifests.
28737
29033
  */
@@ -29180,6 +29476,10 @@ export declare namespace platform {
29180
29476
  * Suffix appended to resources for Kustomize apps.
29181
29477
  */
29182
29478
  nameSuffix?: pulumi.Input<string | undefined>;
29479
+ /**
29480
+ * Override the namespace of the Kustomize application.
29481
+ */
29482
+ namespace?: pulumi.Input<string | undefined>;
29183
29483
  /**
29184
29484
  * Version of Kustomize to use for rendering manifests.
29185
29485
  */
@@ -29644,6 +29944,10 @@ export declare namespace platform {
29644
29944
  * Suffix appended to resources for Kustomize apps.
29645
29945
  */
29646
29946
  nameSuffix?: pulumi.Input<string | undefined>;
29947
+ /**
29948
+ * Override the namespace of the Kustomize application.
29949
+ */
29950
+ namespace?: pulumi.Input<string | undefined>;
29647
29951
  /**
29648
29952
  * Version of Kustomize to use for rendering manifests.
29649
29953
  */
@@ -30078,6 +30382,10 @@ export declare namespace platform {
30078
30382
  * Suffix appended to resources for Kustomize apps.
30079
30383
  */
30080
30384
  nameSuffix?: pulumi.Input<string | undefined>;
30385
+ /**
30386
+ * Override the namespace of the Kustomize application.
30387
+ */
30388
+ namespace?: pulumi.Input<string | undefined>;
30081
30389
  /**
30082
30390
  * Version of Kustomize to use for rendering manifests.
30083
30391
  */
@@ -30674,6 +30982,10 @@ export declare namespace platform {
30674
30982
  * Suffix appended to resources for Kustomize apps.
30675
30983
  */
30676
30984
  nameSuffix?: pulumi.Input<string | undefined>;
30985
+ /**
30986
+ * Override the namespace of the Kustomize application.
30987
+ */
30988
+ namespace?: pulumi.Input<string | undefined>;
30677
30989
  /**
30678
30990
  * Version of Kustomize to use for rendering manifests.
30679
30991
  */
@@ -31368,6 +31680,10 @@ export declare namespace platform {
31368
31680
  * Suffix appended to resources for Kustomize apps.
31369
31681
  */
31370
31682
  nameSuffix?: pulumi.Input<string | undefined>;
31683
+ /**
31684
+ * Override the namespace of the Kustomize application.
31685
+ */
31686
+ namespace?: pulumi.Input<string | undefined>;
31371
31687
  /**
31372
31688
  * Version of Kustomize to use for rendering manifests.
31373
31689
  */
@@ -31816,6 +32132,10 @@ export declare namespace platform {
31816
32132
  * Suffix appended to resources for Kustomize apps.
31817
32133
  */
31818
32134
  nameSuffix?: pulumi.Input<string | undefined>;
32135
+ /**
32136
+ * Override the namespace of the Kustomize application.
32137
+ */
32138
+ namespace?: pulumi.Input<string | undefined>;
31819
32139
  /**
31820
32140
  * Version of Kustomize to use for rendering manifests.
31821
32141
  */
@@ -32412,6 +32732,10 @@ export declare namespace platform {
32412
32732
  * Suffix appended to resources for Kustomize apps.
32413
32733
  */
32414
32734
  nameSuffix?: pulumi.Input<string | undefined>;
32735
+ /**
32736
+ * Override the namespace of the Kustomize application.
32737
+ */
32738
+ namespace?: pulumi.Input<string | undefined>;
32415
32739
  /**
32416
32740
  * Version of Kustomize to use for rendering manifests.
32417
32741
  */
@@ -33106,6 +33430,10 @@ export declare namespace platform {
33106
33430
  * Suffix appended to resources for Kustomize apps.
33107
33431
  */
33108
33432
  nameSuffix?: pulumi.Input<string | undefined>;
33433
+ /**
33434
+ * Override the namespace of the Kustomize application.
33435
+ */
33436
+ namespace?: pulumi.Input<string | undefined>;
33109
33437
  /**
33110
33438
  * Version of Kustomize to use for rendering manifests.
33111
33439
  */
@@ -33554,6 +33882,10 @@ export declare namespace platform {
33554
33882
  * Suffix appended to resources for Kustomize apps.
33555
33883
  */
33556
33884
  nameSuffix?: pulumi.Input<string | undefined>;
33885
+ /**
33886
+ * Override the namespace of the Kustomize application.
33887
+ */
33888
+ namespace?: pulumi.Input<string | undefined>;
33557
33889
  /**
33558
33890
  * Version of Kustomize to use for rendering manifests.
33559
33891
  */
@@ -34150,6 +34482,10 @@ export declare namespace platform {
34150
34482
  * Suffix appended to resources for Kustomize apps.
34151
34483
  */
34152
34484
  nameSuffix?: pulumi.Input<string | undefined>;
34485
+ /**
34486
+ * Override the namespace of the Kustomize application.
34487
+ */
34488
+ namespace?: pulumi.Input<string | undefined>;
34153
34489
  /**
34154
34490
  * Version of Kustomize to use for rendering manifests.
34155
34491
  */
@@ -34844,6 +35180,10 @@ export declare namespace platform {
34844
35180
  * Suffix appended to resources for Kustomize apps.
34845
35181
  */
34846
35182
  nameSuffix?: pulumi.Input<string | undefined>;
35183
+ /**
35184
+ * Override the namespace of the Kustomize application.
35185
+ */
35186
+ namespace?: pulumi.Input<string | undefined>;
34847
35187
  /**
34848
35188
  * Version of Kustomize to use for rendering manifests.
34849
35189
  */
@@ -35356,6 +35696,10 @@ export declare namespace platform {
35356
35696
  * Suffix appended to resources for Kustomize apps.
35357
35697
  */
35358
35698
  nameSuffix?: pulumi.Input<string | undefined>;
35699
+ /**
35700
+ * Override the namespace of the Kustomize application.
35701
+ */
35702
+ namespace?: pulumi.Input<string | undefined>;
35359
35703
  /**
35360
35704
  * Version of Kustomize to use for rendering manifests.
35361
35705
  */
@@ -37645,7 +37989,7 @@ export declare namespace platform {
37645
37989
  */
37646
37990
  connectorRef: pulumi.Input<string>;
37647
37991
  /**
37648
- * Type is the connector type of the connector. Supported types: aws, azure, gcp
37992
+ * Type is the connector type of the connector. Supported types: aws, azure, gcp, vault
37649
37993
  */
37650
37994
  type: pulumi.Input<string>;
37651
37995
  }