@pulumi/harness 0.8.0 → 0.8.1

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
@@ -3138,7 +3138,7 @@ export declare namespace platform {
3138
3138
  */
3139
3139
  storageAccountName: pulumi.Input<string>;
3140
3140
  /**
3141
- * Subsription id.
3141
+ * Subsription Id.
3142
3142
  */
3143
3143
  subscriptionId: pulumi.Input<string>;
3144
3144
  }
@@ -3523,6 +3523,29 @@ export declare namespace platform {
3523
3523
  */
3524
3524
  repo?: pulumi.Input<string>;
3525
3525
  }
3526
+ interface DefaultNotificationTemplateSetEventTemplateConfigurationSet {
3527
+ /**
3528
+ * List of notification events like PIPELINE_START
3529
+ */
3530
+ notificationEvents: pulumi.Input<pulumi.Input<string>[]>;
3531
+ /**
3532
+ * Template reference configuration
3533
+ */
3534
+ template: pulumi.Input<inputs.platform.DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplate>;
3535
+ }
3536
+ interface DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplate {
3537
+ templateRef: pulumi.Input<string>;
3538
+ /**
3539
+ * List of variables passed to the template
3540
+ */
3541
+ variables?: pulumi.Input<pulumi.Input<inputs.platform.DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariable>[]>;
3542
+ versionLabel: pulumi.Input<string>;
3543
+ }
3544
+ interface DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariable {
3545
+ name: pulumi.Input<string>;
3546
+ type: pulumi.Input<string>;
3547
+ value: pulumi.Input<string>;
3548
+ }
3526
3549
  interface DockerConnectorCredentials {
3527
3550
  /**
3528
3551
  * The reference to the Harness secret containing the password to use for the docker registry. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
@@ -4027,6 +4050,52 @@ export declare namespace platform {
4027
4050
  */
4028
4051
  rancherUrl: pulumi.Input<string>;
4029
4052
  }
4053
+ interface GetDefaultNotificationTemplateSetEventTemplateConfigurationSet {
4054
+ /**
4055
+ * List of notification events like PIPELINE_START
4056
+ */
4057
+ notificationEvents: string[];
4058
+ /**
4059
+ * Template reference configuration
4060
+ */
4061
+ template: inputs.platform.GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplate;
4062
+ }
4063
+ interface GetDefaultNotificationTemplateSetEventTemplateConfigurationSetArgs {
4064
+ /**
4065
+ * List of notification events like PIPELINE_START
4066
+ */
4067
+ notificationEvents: pulumi.Input<pulumi.Input<string>[]>;
4068
+ /**
4069
+ * Template reference configuration
4070
+ */
4071
+ template: pulumi.Input<inputs.platform.GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgs>;
4072
+ }
4073
+ interface GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplate {
4074
+ templateRef: string;
4075
+ /**
4076
+ * List of variables passed to the template
4077
+ */
4078
+ variables?: inputs.platform.GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariable[];
4079
+ versionLabel: string;
4080
+ }
4081
+ interface GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgs {
4082
+ templateRef: pulumi.Input<string>;
4083
+ /**
4084
+ * List of variables passed to the template
4085
+ */
4086
+ variables?: pulumi.Input<pulumi.Input<inputs.platform.GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgs>[]>;
4087
+ versionLabel: pulumi.Input<string>;
4088
+ }
4089
+ interface GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariable {
4090
+ name: string;
4091
+ type: string;
4092
+ value: string;
4093
+ }
4094
+ interface GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgs {
4095
+ name: pulumi.Input<string>;
4096
+ type: pulumi.Input<string>;
4097
+ value: pulumi.Input<string>;
4098
+ }
4030
4099
  interface GetEnvironmentClustersMappingCluster {
4031
4100
  /**
4032
4101
  * agent identifier of the cluster (include scope prefix)
@@ -6822,6 +6891,10 @@ export declare namespace platform {
6822
6891
  * Enable Go templating for the template field.
6823
6892
  */
6824
6893
  goTemplate?: pulumi.Input<boolean>;
6894
+ /**
6895
+ * Optional list of go templating options, see https://pkg.go.dev/text/template#Template.Optional. This is only relevant if `goTemplate` is true
6896
+ */
6897
+ goTemplateOptions?: pulumi.Input<pulumi.Input<string>[]>;
6825
6898
  /**
6826
6899
  * Application Set ignoreApplicationDifferences
6827
6900
  */
@@ -7240,6 +7313,14 @@ export declare namespace platform {
7240
7313
  commonLabels?: pulumi.Input<{
7241
7314
  [key: string]: pulumi.Input<string>;
7242
7315
  }>;
7316
+ /**
7317
+ * Indicates if to force applying common annotations to resources for kustomize apps.
7318
+ */
7319
+ forceCommonAnnotations?: pulumi.Input<boolean>;
7320
+ /**
7321
+ * Indicates if to force apply common labels to resources for kustomize apps.
7322
+ */
7323
+ forceCommonLabels?: pulumi.Input<boolean>;
7243
7324
  /**
7244
7325
  * List of Kustomize image override specifications.
7245
7326
  */
@@ -7662,6 +7743,14 @@ export declare namespace platform {
7662
7743
  commonLabels?: pulumi.Input<{
7663
7744
  [key: string]: pulumi.Input<string>;
7664
7745
  }>;
7746
+ /**
7747
+ * Indicates if to force applying common annotations to resources for kustomize apps.
7748
+ */
7749
+ forceCommonAnnotations?: pulumi.Input<boolean>;
7750
+ /**
7751
+ * Indicates if to force apply common labels to resources for kustomize apps.
7752
+ */
7753
+ forceCommonLabels?: pulumi.Input<boolean>;
7665
7754
  /**
7666
7755
  * List of Kustomize image override specifications.
7667
7756
  */
@@ -8100,6 +8189,14 @@ export declare namespace platform {
8100
8189
  commonLabels?: pulumi.Input<{
8101
8190
  [key: string]: pulumi.Input<string>;
8102
8191
  }>;
8192
+ /**
8193
+ * Indicates if to force applying common annotations to resources for kustomize apps.
8194
+ */
8195
+ forceCommonAnnotations?: pulumi.Input<boolean>;
8196
+ /**
8197
+ * Indicates if to force apply common labels to resources for kustomize apps.
8198
+ */
8199
+ forceCommonLabels?: pulumi.Input<boolean>;
8103
8200
  /**
8104
8201
  * List of Kustomize image override specifications.
8105
8202
  */
@@ -8508,6 +8605,14 @@ export declare namespace platform {
8508
8605
  commonLabels?: pulumi.Input<{
8509
8606
  [key: string]: pulumi.Input<string>;
8510
8607
  }>;
8608
+ /**
8609
+ * Indicates if to force applying common annotations to resources for kustomize apps.
8610
+ */
8611
+ forceCommonAnnotations?: pulumi.Input<boolean>;
8612
+ /**
8613
+ * Indicates if to force apply common labels to resources for kustomize apps.
8614
+ */
8615
+ forceCommonLabels?: pulumi.Input<boolean>;
8511
8616
  /**
8512
8617
  * List of Kustomize image override specifications.
8513
8618
  */
@@ -9026,6 +9131,14 @@ export declare namespace platform {
9026
9131
  commonLabels?: pulumi.Input<{
9027
9132
  [key: string]: pulumi.Input<string>;
9028
9133
  }>;
9134
+ /**
9135
+ * Indicates if to force applying common annotations to resources for kustomize apps.
9136
+ */
9137
+ forceCommonAnnotations?: pulumi.Input<boolean>;
9138
+ /**
9139
+ * Indicates if to force apply common labels to resources for kustomize apps.
9140
+ */
9141
+ forceCommonLabels?: pulumi.Input<boolean>;
9029
9142
  /**
9030
9143
  * List of Kustomize image override specifications.
9031
9144
  */
@@ -9448,6 +9561,14 @@ export declare namespace platform {
9448
9561
  commonLabels?: pulumi.Input<{
9449
9562
  [key: string]: pulumi.Input<string>;
9450
9563
  }>;
9564
+ /**
9565
+ * Indicates if to force applying common annotations to resources for kustomize apps.
9566
+ */
9567
+ forceCommonAnnotations?: pulumi.Input<boolean>;
9568
+ /**
9569
+ * Indicates if to force apply common labels to resources for kustomize apps.
9570
+ */
9571
+ forceCommonLabels?: pulumi.Input<boolean>;
9451
9572
  /**
9452
9573
  * List of Kustomize image override specifications.
9453
9574
  */
@@ -9886,6 +10007,14 @@ export declare namespace platform {
9886
10007
  commonLabels?: pulumi.Input<{
9887
10008
  [key: string]: pulumi.Input<string>;
9888
10009
  }>;
10010
+ /**
10011
+ * Indicates if to force applying common annotations to resources for kustomize apps.
10012
+ */
10013
+ forceCommonAnnotations?: pulumi.Input<boolean>;
10014
+ /**
10015
+ * Indicates if to force apply common labels to resources for kustomize apps.
10016
+ */
10017
+ forceCommonLabels?: pulumi.Input<boolean>;
9889
10018
  /**
9890
10019
  * List of Kustomize image override specifications.
9891
10020
  */
@@ -10294,6 +10423,14 @@ export declare namespace platform {
10294
10423
  commonLabels?: pulumi.Input<{
10295
10424
  [key: string]: pulumi.Input<string>;
10296
10425
  }>;
10426
+ /**
10427
+ * Indicates if to force applying common annotations to resources for kustomize apps.
10428
+ */
10429
+ forceCommonAnnotations?: pulumi.Input<boolean>;
10430
+ /**
10431
+ * Indicates if to force apply common labels to resources for kustomize apps.
10432
+ */
10433
+ forceCommonLabels?: pulumi.Input<boolean>;
10297
10434
  /**
10298
10435
  * List of Kustomize image override specifications.
10299
10436
  */
@@ -10804,6 +10941,14 @@ export declare namespace platform {
10804
10941
  commonLabels?: pulumi.Input<{
10805
10942
  [key: string]: pulumi.Input<string>;
10806
10943
  }>;
10944
+ /**
10945
+ * Indicates if to force applying common annotations to resources for kustomize apps.
10946
+ */
10947
+ forceCommonAnnotations?: pulumi.Input<boolean>;
10948
+ /**
10949
+ * Indicates if to force apply common labels to resources for kustomize apps.
10950
+ */
10951
+ forceCommonLabels?: pulumi.Input<boolean>;
10807
10952
  /**
10808
10953
  * List of Kustomize image override specifications.
10809
10954
  */
@@ -11226,6 +11371,14 @@ export declare namespace platform {
11226
11371
  commonLabels?: pulumi.Input<{
11227
11372
  [key: string]: pulumi.Input<string>;
11228
11373
  }>;
11374
+ /**
11375
+ * Indicates if to force applying common annotations to resources for kustomize apps.
11376
+ */
11377
+ forceCommonAnnotations?: pulumi.Input<boolean>;
11378
+ /**
11379
+ * Indicates if to force apply common labels to resources for kustomize apps.
11380
+ */
11381
+ forceCommonLabels?: pulumi.Input<boolean>;
11229
11382
  /**
11230
11383
  * List of Kustomize image override specifications.
11231
11384
  */
@@ -11664,6 +11817,14 @@ export declare namespace platform {
11664
11817
  commonLabels?: pulumi.Input<{
11665
11818
  [key: string]: pulumi.Input<string>;
11666
11819
  }>;
11820
+ /**
11821
+ * Indicates if to force applying common annotations to resources for kustomize apps.
11822
+ */
11823
+ forceCommonAnnotations?: pulumi.Input<boolean>;
11824
+ /**
11825
+ * Indicates if to force apply common labels to resources for kustomize apps.
11826
+ */
11827
+ forceCommonLabels?: pulumi.Input<boolean>;
11667
11828
  /**
11668
11829
  * List of Kustomize image override specifications.
11669
11830
  */
@@ -12072,6 +12233,14 @@ export declare namespace platform {
12072
12233
  commonLabels?: pulumi.Input<{
12073
12234
  [key: string]: pulumi.Input<string>;
12074
12235
  }>;
12236
+ /**
12237
+ * Indicates if to force applying common annotations to resources for kustomize apps.
12238
+ */
12239
+ forceCommonAnnotations?: pulumi.Input<boolean>;
12240
+ /**
12241
+ * Indicates if to force apply common labels to resources for kustomize apps.
12242
+ */
12243
+ forceCommonLabels?: pulumi.Input<boolean>;
12075
12244
  /**
12076
12245
  * List of Kustomize image override specifications.
12077
12246
  */
@@ -12642,6 +12811,14 @@ export declare namespace platform {
12642
12811
  commonLabels?: pulumi.Input<{
12643
12812
  [key: string]: pulumi.Input<string>;
12644
12813
  }>;
12814
+ /**
12815
+ * Indicates if to force applying common annotations to resources for kustomize apps.
12816
+ */
12817
+ forceCommonAnnotations?: pulumi.Input<boolean>;
12818
+ /**
12819
+ * Indicates if to force apply common labels to resources for kustomize apps.
12820
+ */
12821
+ forceCommonLabels?: pulumi.Input<boolean>;
12645
12822
  /**
12646
12823
  * List of Kustomize image override specifications.
12647
12824
  */
@@ -13296,6 +13473,14 @@ export declare namespace platform {
13296
13473
  commonLabels?: pulumi.Input<{
13297
13474
  [key: string]: pulumi.Input<string>;
13298
13475
  }>;
13476
+ /**
13477
+ * Indicates if to force applying common annotations to resources for kustomize apps.
13478
+ */
13479
+ forceCommonAnnotations?: pulumi.Input<boolean>;
13480
+ /**
13481
+ * Indicates if to force apply common labels to resources for kustomize apps.
13482
+ */
13483
+ forceCommonLabels?: pulumi.Input<boolean>;
13299
13484
  /**
13300
13485
  * List of Kustomize image override specifications.
13301
13486
  */
@@ -13718,6 +13903,14 @@ export declare namespace platform {
13718
13903
  commonLabels?: pulumi.Input<{
13719
13904
  [key: string]: pulumi.Input<string>;
13720
13905
  }>;
13906
+ /**
13907
+ * Indicates if to force applying common annotations to resources for kustomize apps.
13908
+ */
13909
+ forceCommonAnnotations?: pulumi.Input<boolean>;
13910
+ /**
13911
+ * Indicates if to force apply common labels to resources for kustomize apps.
13912
+ */
13913
+ forceCommonLabels?: pulumi.Input<boolean>;
13721
13914
  /**
13722
13915
  * List of Kustomize image override specifications.
13723
13916
  */
@@ -14232,6 +14425,14 @@ export declare namespace platform {
14232
14425
  commonLabels?: pulumi.Input<{
14233
14426
  [key: string]: pulumi.Input<string>;
14234
14427
  }>;
14428
+ /**
14429
+ * Indicates if to force applying common annotations to resources for kustomize apps.
14430
+ */
14431
+ forceCommonAnnotations?: pulumi.Input<boolean>;
14432
+ /**
14433
+ * Indicates if to force apply common labels to resources for kustomize apps.
14434
+ */
14435
+ forceCommonLabels?: pulumi.Input<boolean>;
14235
14436
  /**
14236
14437
  * List of Kustomize image override specifications.
14237
14438
  */
@@ -14654,6 +14855,14 @@ export declare namespace platform {
14654
14855
  commonLabels?: pulumi.Input<{
14655
14856
  [key: string]: pulumi.Input<string>;
14656
14857
  }>;
14858
+ /**
14859
+ * Indicates if to force applying common annotations to resources for kustomize apps.
14860
+ */
14861
+ forceCommonAnnotations?: pulumi.Input<boolean>;
14862
+ /**
14863
+ * Indicates if to force apply common labels to resources for kustomize apps.
14864
+ */
14865
+ forceCommonLabels?: pulumi.Input<boolean>;
14657
14866
  /**
14658
14867
  * List of Kustomize image override specifications.
14659
14868
  */
@@ -15092,6 +15301,14 @@ export declare namespace platform {
15092
15301
  commonLabels?: pulumi.Input<{
15093
15302
  [key: string]: pulumi.Input<string>;
15094
15303
  }>;
15304
+ /**
15305
+ * Indicates if to force applying common annotations to resources for kustomize apps.
15306
+ */
15307
+ forceCommonAnnotations?: pulumi.Input<boolean>;
15308
+ /**
15309
+ * Indicates if to force apply common labels to resources for kustomize apps.
15310
+ */
15311
+ forceCommonLabels?: pulumi.Input<boolean>;
15095
15312
  /**
15096
15313
  * List of Kustomize image override specifications.
15097
15314
  */
@@ -15500,6 +15717,14 @@ export declare namespace platform {
15500
15717
  commonLabels?: pulumi.Input<{
15501
15718
  [key: string]: pulumi.Input<string>;
15502
15719
  }>;
15720
+ /**
15721
+ * Indicates if to force applying common annotations to resources for kustomize apps.
15722
+ */
15723
+ forceCommonAnnotations?: pulumi.Input<boolean>;
15724
+ /**
15725
+ * Indicates if to force apply common labels to resources for kustomize apps.
15726
+ */
15727
+ forceCommonLabels?: pulumi.Input<boolean>;
15503
15728
  /**
15504
15729
  * List of Kustomize image override specifications.
15505
15730
  */
@@ -16070,6 +16295,14 @@ export declare namespace platform {
16070
16295
  commonLabels?: pulumi.Input<{
16071
16296
  [key: string]: pulumi.Input<string>;
16072
16297
  }>;
16298
+ /**
16299
+ * Indicates if to force applying common annotations to resources for kustomize apps.
16300
+ */
16301
+ forceCommonAnnotations?: pulumi.Input<boolean>;
16302
+ /**
16303
+ * Indicates if to force apply common labels to resources for kustomize apps.
16304
+ */
16305
+ forceCommonLabels?: pulumi.Input<boolean>;
16073
16306
  /**
16074
16307
  * List of Kustomize image override specifications.
16075
16308
  */
@@ -16724,6 +16957,14 @@ export declare namespace platform {
16724
16957
  commonLabels?: pulumi.Input<{
16725
16958
  [key: string]: pulumi.Input<string>;
16726
16959
  }>;
16960
+ /**
16961
+ * Indicates if to force applying common annotations to resources for kustomize apps.
16962
+ */
16963
+ forceCommonAnnotations?: pulumi.Input<boolean>;
16964
+ /**
16965
+ * Indicates if to force apply common labels to resources for kustomize apps.
16966
+ */
16967
+ forceCommonLabels?: pulumi.Input<boolean>;
16727
16968
  /**
16728
16969
  * List of Kustomize image override specifications.
16729
16970
  */
@@ -17146,6 +17387,14 @@ export declare namespace platform {
17146
17387
  commonLabels?: pulumi.Input<{
17147
17388
  [key: string]: pulumi.Input<string>;
17148
17389
  }>;
17390
+ /**
17391
+ * Indicates if to force applying common annotations to resources for kustomize apps.
17392
+ */
17393
+ forceCommonAnnotations?: pulumi.Input<boolean>;
17394
+ /**
17395
+ * Indicates if to force apply common labels to resources for kustomize apps.
17396
+ */
17397
+ forceCommonLabels?: pulumi.Input<boolean>;
17149
17398
  /**
17150
17399
  * List of Kustomize image override specifications.
17151
17400
  */
@@ -17716,6 +17965,14 @@ export declare namespace platform {
17716
17965
  commonLabels?: pulumi.Input<{
17717
17966
  [key: string]: pulumi.Input<string>;
17718
17967
  }>;
17968
+ /**
17969
+ * Indicates if to force applying common annotations to resources for kustomize apps.
17970
+ */
17971
+ forceCommonAnnotations?: pulumi.Input<boolean>;
17972
+ /**
17973
+ * Indicates if to force apply common labels to resources for kustomize apps.
17974
+ */
17975
+ forceCommonLabels?: pulumi.Input<boolean>;
17719
17976
  /**
17720
17977
  * List of Kustomize image override specifications.
17721
17978
  */
@@ -18370,6 +18627,14 @@ export declare namespace platform {
18370
18627
  commonLabels?: pulumi.Input<{
18371
18628
  [key: string]: pulumi.Input<string>;
18372
18629
  }>;
18630
+ /**
18631
+ * Indicates if to force applying common annotations to resources for kustomize apps.
18632
+ */
18633
+ forceCommonAnnotations?: pulumi.Input<boolean>;
18634
+ /**
18635
+ * Indicates if to force apply common labels to resources for kustomize apps.
18636
+ */
18637
+ forceCommonLabels?: pulumi.Input<boolean>;
18373
18638
  /**
18374
18639
  * List of Kustomize image override specifications.
18375
18640
  */
@@ -18792,6 +19057,14 @@ export declare namespace platform {
18792
19057
  commonLabels?: pulumi.Input<{
18793
19058
  [key: string]: pulumi.Input<string>;
18794
19059
  }>;
19060
+ /**
19061
+ * Indicates if to force applying common annotations to resources for kustomize apps.
19062
+ */
19063
+ forceCommonAnnotations?: pulumi.Input<boolean>;
19064
+ /**
19065
+ * Indicates if to force apply common labels to resources for kustomize apps.
19066
+ */
19067
+ forceCommonLabels?: pulumi.Input<boolean>;
18795
19068
  /**
18796
19069
  * List of Kustomize image override specifications.
18797
19070
  */
@@ -19314,6 +19587,14 @@ export declare namespace platform {
19314
19587
  commonLabels?: pulumi.Input<{
19315
19588
  [key: string]: pulumi.Input<string>;
19316
19589
  }>;
19590
+ /**
19591
+ * Indicates if to force applying common annotations to resources for kustomize apps.
19592
+ */
19593
+ forceCommonAnnotations?: pulumi.Input<boolean>;
19594
+ /**
19595
+ * Indicates if to force apply common labels to resources for kustomize apps.
19596
+ */
19597
+ forceCommonLabels?: pulumi.Input<boolean>;
19317
19598
  /**
19318
19599
  * List of Kustomize image override specifications.
19319
19600
  */
@@ -19736,6 +20017,14 @@ export declare namespace platform {
19736
20017
  commonLabels?: pulumi.Input<{
19737
20018
  [key: string]: pulumi.Input<string>;
19738
20019
  }>;
20020
+ /**
20021
+ * Indicates if to force applying common annotations to resources for kustomize apps.
20022
+ */
20023
+ forceCommonAnnotations?: pulumi.Input<boolean>;
20024
+ /**
20025
+ * Indicates if to force apply common labels to resources for kustomize apps.
20026
+ */
20027
+ forceCommonLabels?: pulumi.Input<boolean>;
19739
20028
  /**
19740
20029
  * List of Kustomize image override specifications.
19741
20030
  */
@@ -20174,6 +20463,14 @@ export declare namespace platform {
20174
20463
  commonLabels?: pulumi.Input<{
20175
20464
  [key: string]: pulumi.Input<string>;
20176
20465
  }>;
20466
+ /**
20467
+ * Indicates if to force applying common annotations to resources for kustomize apps.
20468
+ */
20469
+ forceCommonAnnotations?: pulumi.Input<boolean>;
20470
+ /**
20471
+ * Indicates if to force apply common labels to resources for kustomize apps.
20472
+ */
20473
+ forceCommonLabels?: pulumi.Input<boolean>;
20177
20474
  /**
20178
20475
  * List of Kustomize image override specifications.
20179
20476
  */
@@ -20582,6 +20879,14 @@ export declare namespace platform {
20582
20879
  commonLabels?: pulumi.Input<{
20583
20880
  [key: string]: pulumi.Input<string>;
20584
20881
  }>;
20882
+ /**
20883
+ * Indicates if to force applying common annotations to resources for kustomize apps.
20884
+ */
20885
+ forceCommonAnnotations?: pulumi.Input<boolean>;
20886
+ /**
20887
+ * Indicates if to force apply common labels to resources for kustomize apps.
20888
+ */
20889
+ forceCommonLabels?: pulumi.Input<boolean>;
20585
20890
  /**
20586
20891
  * List of Kustomize image override specifications.
20587
20892
  */
@@ -21092,6 +21397,14 @@ export declare namespace platform {
21092
21397
  commonLabels?: pulumi.Input<{
21093
21398
  [key: string]: pulumi.Input<string>;
21094
21399
  }>;
21400
+ /**
21401
+ * Indicates if to force applying common annotations to resources for kustomize apps.
21402
+ */
21403
+ forceCommonAnnotations?: pulumi.Input<boolean>;
21404
+ /**
21405
+ * Indicates if to force apply common labels to resources for kustomize apps.
21406
+ */
21407
+ forceCommonLabels?: pulumi.Input<boolean>;
21095
21408
  /**
21096
21409
  * List of Kustomize image override specifications.
21097
21410
  */
@@ -21514,6 +21827,14 @@ export declare namespace platform {
21514
21827
  commonLabels?: pulumi.Input<{
21515
21828
  [key: string]: pulumi.Input<string>;
21516
21829
  }>;
21830
+ /**
21831
+ * Indicates if to force applying common annotations to resources for kustomize apps.
21832
+ */
21833
+ forceCommonAnnotations?: pulumi.Input<boolean>;
21834
+ /**
21835
+ * Indicates if to force apply common labels to resources for kustomize apps.
21836
+ */
21837
+ forceCommonLabels?: pulumi.Input<boolean>;
21517
21838
  /**
21518
21839
  * List of Kustomize image override specifications.
21519
21840
  */
@@ -21952,6 +22273,14 @@ export declare namespace platform {
21952
22273
  commonLabels?: pulumi.Input<{
21953
22274
  [key: string]: pulumi.Input<string>;
21954
22275
  }>;
22276
+ /**
22277
+ * Indicates if to force applying common annotations to resources for kustomize apps.
22278
+ */
22279
+ forceCommonAnnotations?: pulumi.Input<boolean>;
22280
+ /**
22281
+ * Indicates if to force apply common labels to resources for kustomize apps.
22282
+ */
22283
+ forceCommonLabels?: pulumi.Input<boolean>;
21955
22284
  /**
21956
22285
  * List of Kustomize image override specifications.
21957
22286
  */
@@ -22360,6 +22689,14 @@ export declare namespace platform {
22360
22689
  commonLabels?: pulumi.Input<{
22361
22690
  [key: string]: pulumi.Input<string>;
22362
22691
  }>;
22692
+ /**
22693
+ * Indicates if to force applying common annotations to resources for kustomize apps.
22694
+ */
22695
+ forceCommonAnnotations?: pulumi.Input<boolean>;
22696
+ /**
22697
+ * Indicates if to force apply common labels to resources for kustomize apps.
22698
+ */
22699
+ forceCommonLabels?: pulumi.Input<boolean>;
22363
22700
  /**
22364
22701
  * List of Kustomize image override specifications.
22365
22702
  */
@@ -22930,6 +23267,14 @@ export declare namespace platform {
22930
23267
  commonLabels?: pulumi.Input<{
22931
23268
  [key: string]: pulumi.Input<string>;
22932
23269
  }>;
23270
+ /**
23271
+ * Indicates if to force applying common annotations to resources for kustomize apps.
23272
+ */
23273
+ forceCommonAnnotations?: pulumi.Input<boolean>;
23274
+ /**
23275
+ * Indicates if to force apply common labels to resources for kustomize apps.
23276
+ */
23277
+ forceCommonLabels?: pulumi.Input<boolean>;
22933
23278
  /**
22934
23279
  * List of Kustomize image override specifications.
22935
23280
  */
@@ -23584,6 +23929,14 @@ export declare namespace platform {
23584
23929
  commonLabels?: pulumi.Input<{
23585
23930
  [key: string]: pulumi.Input<string>;
23586
23931
  }>;
23932
+ /**
23933
+ * Indicates if to force applying common annotations to resources for kustomize apps.
23934
+ */
23935
+ forceCommonAnnotations?: pulumi.Input<boolean>;
23936
+ /**
23937
+ * Indicates if to force apply common labels to resources for kustomize apps.
23938
+ */
23939
+ forceCommonLabels?: pulumi.Input<boolean>;
23587
23940
  /**
23588
23941
  * List of Kustomize image override specifications.
23589
23942
  */
@@ -24006,6 +24359,14 @@ export declare namespace platform {
24006
24359
  commonLabels?: pulumi.Input<{
24007
24360
  [key: string]: pulumi.Input<string>;
24008
24361
  }>;
24362
+ /**
24363
+ * Indicates if to force applying common annotations to resources for kustomize apps.
24364
+ */
24365
+ forceCommonAnnotations?: pulumi.Input<boolean>;
24366
+ /**
24367
+ * Indicates if to force apply common labels to resources for kustomize apps.
24368
+ */
24369
+ forceCommonLabels?: pulumi.Input<boolean>;
24009
24370
  /**
24010
24371
  * List of Kustomize image override specifications.
24011
24372
  */
@@ -24520,6 +24881,14 @@ export declare namespace platform {
24520
24881
  commonLabels?: pulumi.Input<{
24521
24882
  [key: string]: pulumi.Input<string>;
24522
24883
  }>;
24884
+ /**
24885
+ * Indicates if to force applying common annotations to resources for kustomize apps.
24886
+ */
24887
+ forceCommonAnnotations?: pulumi.Input<boolean>;
24888
+ /**
24889
+ * Indicates if to force apply common labels to resources for kustomize apps.
24890
+ */
24891
+ forceCommonLabels?: pulumi.Input<boolean>;
24523
24892
  /**
24524
24893
  * List of Kustomize image override specifications.
24525
24894
  */
@@ -24942,6 +25311,14 @@ export declare namespace platform {
24942
25311
  commonLabels?: pulumi.Input<{
24943
25312
  [key: string]: pulumi.Input<string>;
24944
25313
  }>;
25314
+ /**
25315
+ * Indicates if to force applying common annotations to resources for kustomize apps.
25316
+ */
25317
+ forceCommonAnnotations?: pulumi.Input<boolean>;
25318
+ /**
25319
+ * Indicates if to force apply common labels to resources for kustomize apps.
25320
+ */
25321
+ forceCommonLabels?: pulumi.Input<boolean>;
24945
25322
  /**
24946
25323
  * List of Kustomize image override specifications.
24947
25324
  */
@@ -25380,6 +25757,14 @@ export declare namespace platform {
25380
25757
  commonLabels?: pulumi.Input<{
25381
25758
  [key: string]: pulumi.Input<string>;
25382
25759
  }>;
25760
+ /**
25761
+ * Indicates if to force applying common annotations to resources for kustomize apps.
25762
+ */
25763
+ forceCommonAnnotations?: pulumi.Input<boolean>;
25764
+ /**
25765
+ * Indicates if to force apply common labels to resources for kustomize apps.
25766
+ */
25767
+ forceCommonLabels?: pulumi.Input<boolean>;
25383
25768
  /**
25384
25769
  * List of Kustomize image override specifications.
25385
25770
  */
@@ -25788,6 +26173,14 @@ export declare namespace platform {
25788
26173
  commonLabels?: pulumi.Input<{
25789
26174
  [key: string]: pulumi.Input<string>;
25790
26175
  }>;
26176
+ /**
26177
+ * Indicates if to force applying common annotations to resources for kustomize apps.
26178
+ */
26179
+ forceCommonAnnotations?: pulumi.Input<boolean>;
26180
+ /**
26181
+ * Indicates if to force apply common labels to resources for kustomize apps.
26182
+ */
26183
+ forceCommonLabels?: pulumi.Input<boolean>;
25791
26184
  /**
25792
26185
  * List of Kustomize image override specifications.
25793
26186
  */
@@ -26358,6 +26751,14 @@ export declare namespace platform {
26358
26751
  commonLabels?: pulumi.Input<{
26359
26752
  [key: string]: pulumi.Input<string>;
26360
26753
  }>;
26754
+ /**
26755
+ * Indicates if to force applying common annotations to resources for kustomize apps.
26756
+ */
26757
+ forceCommonAnnotations?: pulumi.Input<boolean>;
26758
+ /**
26759
+ * Indicates if to force apply common labels to resources for kustomize apps.
26760
+ */
26761
+ forceCommonLabels?: pulumi.Input<boolean>;
26361
26762
  /**
26362
26763
  * List of Kustomize image override specifications.
26363
26764
  */
@@ -27012,6 +27413,14 @@ export declare namespace platform {
27012
27413
  commonLabels?: pulumi.Input<{
27013
27414
  [key: string]: pulumi.Input<string>;
27014
27415
  }>;
27416
+ /**
27417
+ * Indicates if to force applying common annotations to resources for kustomize apps.
27418
+ */
27419
+ forceCommonAnnotations?: pulumi.Input<boolean>;
27420
+ /**
27421
+ * Indicates if to force apply common labels to resources for kustomize apps.
27422
+ */
27423
+ forceCommonLabels?: pulumi.Input<boolean>;
27015
27424
  /**
27016
27425
  * List of Kustomize image override specifications.
27017
27426
  */
@@ -27434,6 +27843,14 @@ export declare namespace platform {
27434
27843
  commonLabels?: pulumi.Input<{
27435
27844
  [key: string]: pulumi.Input<string>;
27436
27845
  }>;
27846
+ /**
27847
+ * Indicates if to force applying common annotations to resources for kustomize apps.
27848
+ */
27849
+ forceCommonAnnotations?: pulumi.Input<boolean>;
27850
+ /**
27851
+ * Indicates if to force apply common labels to resources for kustomize apps.
27852
+ */
27853
+ forceCommonLabels?: pulumi.Input<boolean>;
27437
27854
  /**
27438
27855
  * List of Kustomize image override specifications.
27439
27856
  */
@@ -28004,6 +28421,14 @@ export declare namespace platform {
28004
28421
  commonLabels?: pulumi.Input<{
28005
28422
  [key: string]: pulumi.Input<string>;
28006
28423
  }>;
28424
+ /**
28425
+ * Indicates if to force applying common annotations to resources for kustomize apps.
28426
+ */
28427
+ forceCommonAnnotations?: pulumi.Input<boolean>;
28428
+ /**
28429
+ * Indicates if to force apply common labels to resources for kustomize apps.
28430
+ */
28431
+ forceCommonLabels?: pulumi.Input<boolean>;
28007
28432
  /**
28008
28433
  * List of Kustomize image override specifications.
28009
28434
  */
@@ -28658,6 +29083,14 @@ export declare namespace platform {
28658
29083
  commonLabels?: pulumi.Input<{
28659
29084
  [key: string]: pulumi.Input<string>;
28660
29085
  }>;
29086
+ /**
29087
+ * Indicates if to force applying common annotations to resources for kustomize apps.
29088
+ */
29089
+ forceCommonAnnotations?: pulumi.Input<boolean>;
29090
+ /**
29091
+ * Indicates if to force apply common labels to resources for kustomize apps.
29092
+ */
29093
+ forceCommonLabels?: pulumi.Input<boolean>;
28661
29094
  /**
28662
29095
  * List of Kustomize image override specifications.
28663
29096
  */
@@ -29080,6 +29513,14 @@ export declare namespace platform {
29080
29513
  commonLabels?: pulumi.Input<{
29081
29514
  [key: string]: pulumi.Input<string>;
29082
29515
  }>;
29516
+ /**
29517
+ * Indicates if to force applying common annotations to resources for kustomize apps.
29518
+ */
29519
+ forceCommonAnnotations?: pulumi.Input<boolean>;
29520
+ /**
29521
+ * Indicates if to force apply common labels to resources for kustomize apps.
29522
+ */
29523
+ forceCommonLabels?: pulumi.Input<boolean>;
29083
29524
  /**
29084
29525
  * List of Kustomize image override specifications.
29085
29526
  */
@@ -29650,6 +30091,14 @@ export declare namespace platform {
29650
30091
  commonLabels?: pulumi.Input<{
29651
30092
  [key: string]: pulumi.Input<string>;
29652
30093
  }>;
30094
+ /**
30095
+ * Indicates if to force applying common annotations to resources for kustomize apps.
30096
+ */
30097
+ forceCommonAnnotations?: pulumi.Input<boolean>;
30098
+ /**
30099
+ * Indicates if to force apply common labels to resources for kustomize apps.
30100
+ */
30101
+ forceCommonLabels?: pulumi.Input<boolean>;
29653
30102
  /**
29654
30103
  * List of Kustomize image override specifications.
29655
30104
  */
@@ -30304,6 +30753,14 @@ export declare namespace platform {
30304
30753
  commonLabels?: pulumi.Input<{
30305
30754
  [key: string]: pulumi.Input<string>;
30306
30755
  }>;
30756
+ /**
30757
+ * Indicates if to force applying common annotations to resources for kustomize apps.
30758
+ */
30759
+ forceCommonAnnotations?: pulumi.Input<boolean>;
30760
+ /**
30761
+ * Indicates if to force apply common labels to resources for kustomize apps.
30762
+ */
30763
+ forceCommonLabels?: pulumi.Input<boolean>;
30307
30764
  /**
30308
30765
  * List of Kustomize image override specifications.
30309
30766
  */
@@ -30790,6 +31247,14 @@ export declare namespace platform {
30790
31247
  commonLabels?: pulumi.Input<{
30791
31248
  [key: string]: pulumi.Input<string>;
30792
31249
  }>;
31250
+ /**
31251
+ * Indicates if to force applying common annotations to resources for kustomize apps.
31252
+ */
31253
+ forceCommonAnnotations?: pulumi.Input<boolean>;
31254
+ /**
31255
+ * Indicates if to force apply common labels to resources for kustomize apps.
31256
+ */
31257
+ forceCommonLabels?: pulumi.Input<boolean>;
30793
31258
  /**
30794
31259
  * List of Kustomize image override specifications.
30795
31260
  */