pulumi-harness 0.9.0a1755842147__py3-none-any.whl → 0.9.0a1756324571__py3-none-any.whl

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.

Potentially problematic release.


This version of pulumi-harness might be problematic. Click here for more details.

@@ -75,6 +75,9 @@ __all__ = [
75
75
  'ConnectorRancherBearerToken',
76
76
  'DbSchemaChangelogScript',
77
77
  'DbSchemaSchemaSource',
78
+ 'DefaultNotificationTemplateSetEventTemplateConfigurationSet',
79
+ 'DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplate',
80
+ 'DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariable',
78
81
  'DockerConnectorCredentials',
79
82
  'ElasticsearchConnectorApiToken',
80
83
  'ElasticsearchConnectorNoAuthentication',
@@ -1690,6 +1693,9 @@ __all__ = [
1690
1693
  'GetConnectorRancherBearerTokenResult',
1691
1694
  'GetDbSchemaChangelogScriptResult',
1692
1695
  'GetDbSchemaSchemaSourceResult',
1696
+ 'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetResult',
1697
+ 'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateResult',
1698
+ 'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableResult',
1693
1699
  'GetDockerConnectorCredentialResult',
1694
1700
  'GetElasticsearchConnectorApiTokenResult',
1695
1701
  'GetElasticsearchConnectorUsernamePasswordResult',
@@ -3023,7 +3029,7 @@ class AzureCloudCostConnectorBillingExportSpec2(dict):
3023
3029
  :param _builtins.str directory_name: Name of the directory.
3024
3030
  :param _builtins.str report_name: Name of the report.
3025
3031
  :param _builtins.str storage_account_name: Name of the storage account.
3026
- :param _builtins.str subscription_id: Subsription id.
3032
+ :param _builtins.str subscription_id: Subsription Id.
3027
3033
  """
3028
3034
  pulumi.set(__self__, "billing_type", billing_type)
3029
3035
  pulumi.set(__self__, "container_name", container_name)
@@ -3076,7 +3082,7 @@ class AzureCloudCostConnectorBillingExportSpec2(dict):
3076
3082
  @pulumi.getter(name="subscriptionId")
3077
3083
  def subscription_id(self) -> _builtins.str:
3078
3084
  """
3079
- Subsription id.
3085
+ Subsription Id.
3080
3086
  """
3081
3087
  return pulumi.get(self, "subscription_id")
3082
3088
 
@@ -4989,6 +4995,130 @@ class DbSchemaSchemaSource(dict):
4989
4995
  return pulumi.get(self, "repo")
4990
4996
 
4991
4997
 
4998
+ @pulumi.output_type
4999
+ class DefaultNotificationTemplateSetEventTemplateConfigurationSet(dict):
5000
+ @staticmethod
5001
+ def __key_warning(key: str):
5002
+ suggest = None
5003
+ if key == "notificationEvents":
5004
+ suggest = "notification_events"
5005
+
5006
+ if suggest:
5007
+ pulumi.log.warn(f"Key '{key}' not found in DefaultNotificationTemplateSetEventTemplateConfigurationSet. Access the value via the '{suggest}' property getter instead.")
5008
+
5009
+ def __getitem__(self, key: str) -> Any:
5010
+ DefaultNotificationTemplateSetEventTemplateConfigurationSet.__key_warning(key)
5011
+ return super().__getitem__(key)
5012
+
5013
+ def get(self, key: str, default = None) -> Any:
5014
+ DefaultNotificationTemplateSetEventTemplateConfigurationSet.__key_warning(key)
5015
+ return super().get(key, default)
5016
+
5017
+ def __init__(__self__, *,
5018
+ notification_events: Sequence[_builtins.str],
5019
+ template: 'outputs.DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplate'):
5020
+ """
5021
+ :param Sequence[_builtins.str] notification_events: List of notification events like PIPELINE_START
5022
+ :param 'DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgs' template: Template reference configuration
5023
+ """
5024
+ pulumi.set(__self__, "notification_events", notification_events)
5025
+ pulumi.set(__self__, "template", template)
5026
+
5027
+ @_builtins.property
5028
+ @pulumi.getter(name="notificationEvents")
5029
+ def notification_events(self) -> Sequence[_builtins.str]:
5030
+ """
5031
+ List of notification events like PIPELINE_START
5032
+ """
5033
+ return pulumi.get(self, "notification_events")
5034
+
5035
+ @_builtins.property
5036
+ @pulumi.getter
5037
+ def template(self) -> 'outputs.DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplate':
5038
+ """
5039
+ Template reference configuration
5040
+ """
5041
+ return pulumi.get(self, "template")
5042
+
5043
+
5044
+ @pulumi.output_type
5045
+ class DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplate(dict):
5046
+ @staticmethod
5047
+ def __key_warning(key: str):
5048
+ suggest = None
5049
+ if key == "templateRef":
5050
+ suggest = "template_ref"
5051
+ elif key == "versionLabel":
5052
+ suggest = "version_label"
5053
+
5054
+ if suggest:
5055
+ pulumi.log.warn(f"Key '{key}' not found in DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplate. Access the value via the '{suggest}' property getter instead.")
5056
+
5057
+ def __getitem__(self, key: str) -> Any:
5058
+ DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplate.__key_warning(key)
5059
+ return super().__getitem__(key)
5060
+
5061
+ def get(self, key: str, default = None) -> Any:
5062
+ DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplate.__key_warning(key)
5063
+ return super().get(key, default)
5064
+
5065
+ def __init__(__self__, *,
5066
+ template_ref: _builtins.str,
5067
+ version_label: _builtins.str,
5068
+ variables: Optional[Sequence['outputs.DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariable']] = None):
5069
+ """
5070
+ :param Sequence['DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgs'] variables: List of variables passed to the template
5071
+ """
5072
+ pulumi.set(__self__, "template_ref", template_ref)
5073
+ pulumi.set(__self__, "version_label", version_label)
5074
+ if variables is not None:
5075
+ pulumi.set(__self__, "variables", variables)
5076
+
5077
+ @_builtins.property
5078
+ @pulumi.getter(name="templateRef")
5079
+ def template_ref(self) -> _builtins.str:
5080
+ return pulumi.get(self, "template_ref")
5081
+
5082
+ @_builtins.property
5083
+ @pulumi.getter(name="versionLabel")
5084
+ def version_label(self) -> _builtins.str:
5085
+ return pulumi.get(self, "version_label")
5086
+
5087
+ @_builtins.property
5088
+ @pulumi.getter
5089
+ def variables(self) -> Optional[Sequence['outputs.DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariable']]:
5090
+ """
5091
+ List of variables passed to the template
5092
+ """
5093
+ return pulumi.get(self, "variables")
5094
+
5095
+
5096
+ @pulumi.output_type
5097
+ class DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariable(dict):
5098
+ def __init__(__self__, *,
5099
+ name: _builtins.str,
5100
+ type: _builtins.str,
5101
+ value: _builtins.str):
5102
+ pulumi.set(__self__, "name", name)
5103
+ pulumi.set(__self__, "type", type)
5104
+ pulumi.set(__self__, "value", value)
5105
+
5106
+ @_builtins.property
5107
+ @pulumi.getter
5108
+ def name(self) -> _builtins.str:
5109
+ return pulumi.get(self, "name")
5110
+
5111
+ @_builtins.property
5112
+ @pulumi.getter
5113
+ def type(self) -> _builtins.str:
5114
+ return pulumi.get(self, "type")
5115
+
5116
+ @_builtins.property
5117
+ @pulumi.getter
5118
+ def value(self) -> _builtins.str:
5119
+ return pulumi.get(self, "value")
5120
+
5121
+
4992
5122
  @pulumi.output_type
4993
5123
  class DockerConnectorCredentials(dict):
4994
5124
  @staticmethod
@@ -11584,6 +11714,8 @@ class GitopsApplicationsetApplicationsetSpec(dict):
11584
11714
  suggest = None
11585
11715
  if key == "goTemplate":
11586
11716
  suggest = "go_template"
11717
+ elif key == "goTemplateOptions":
11718
+ suggest = "go_template_options"
11587
11719
  elif key == "ignoreApplicationDifferences":
11588
11720
  suggest = "ignore_application_differences"
11589
11721
  elif key == "syncPolicy":
@@ -11604,6 +11736,7 @@ class GitopsApplicationsetApplicationsetSpec(dict):
11604
11736
  generators: Sequence['outputs.GitopsApplicationsetApplicationsetSpecGenerator'],
11605
11737
  template: 'outputs.GitopsApplicationsetApplicationsetSpecTemplate',
11606
11738
  go_template: Optional[_builtins.bool] = None,
11739
+ go_template_options: Optional[Sequence[_builtins.str]] = None,
11607
11740
  ignore_application_differences: Optional[Sequence['outputs.GitopsApplicationsetApplicationsetSpecIgnoreApplicationDifference']] = None,
11608
11741
  strategy: Optional['outputs.GitopsApplicationsetApplicationsetSpecStrategy'] = None,
11609
11742
  sync_policy: Optional['outputs.GitopsApplicationsetApplicationsetSpecSyncPolicy'] = None):
@@ -11611,6 +11744,7 @@ class GitopsApplicationsetApplicationsetSpec(dict):
11611
11744
  :param Sequence['GitopsApplicationsetApplicationsetSpecGeneratorArgs'] generators: Application set generators are responsible for generation of params, which are then rendered into the template: fields of the ApplicationSet resource.
11612
11745
  :param 'GitopsApplicationsetApplicationsetSpecTemplateArgs' template: Application Set template. The template fields of the ApplicationSet spec are used to generate Gitops Applications.
11613
11746
  :param _builtins.bool go_template: Enable Go templating for the template field.
11747
+ :param Sequence[_builtins.str] go_template_options: Optional list of go templating options, see https://pkg.go.dev/text/template#Template.Optional. This is only relevant if `goTemplate` is true
11614
11748
  :param Sequence['GitopsApplicationsetApplicationsetSpecIgnoreApplicationDifferenceArgs'] ignore_application_differences: Application Set ignoreApplicationDifferences
11615
11749
  :param 'GitopsApplicationsetApplicationsetSpecStrategyArgs' strategy: [Progressive Sync](https://argo-cd.readthedocs.io/en/stable/operator-manual/applicationset/Progressive-Syncs/) strategy
11616
11750
  :param 'GitopsApplicationsetApplicationsetSpecSyncPolicyArgs' sync_policy: Application Set sync policy
@@ -11619,6 +11753,8 @@ class GitopsApplicationsetApplicationsetSpec(dict):
11619
11753
  pulumi.set(__self__, "template", template)
11620
11754
  if go_template is not None:
11621
11755
  pulumi.set(__self__, "go_template", go_template)
11756
+ if go_template_options is not None:
11757
+ pulumi.set(__self__, "go_template_options", go_template_options)
11622
11758
  if ignore_application_differences is not None:
11623
11759
  pulumi.set(__self__, "ignore_application_differences", ignore_application_differences)
11624
11760
  if strategy is not None:
@@ -11650,6 +11786,14 @@ class GitopsApplicationsetApplicationsetSpec(dict):
11650
11786
  """
11651
11787
  return pulumi.get(self, "go_template")
11652
11788
 
11789
+ @_builtins.property
11790
+ @pulumi.getter(name="goTemplateOptions")
11791
+ def go_template_options(self) -> Optional[Sequence[_builtins.str]]:
11792
+ """
11793
+ Optional list of go templating options, see https://pkg.go.dev/text/template#Template.Optional. This is only relevant if `goTemplate` is true
11794
+ """
11795
+ return pulumi.get(self, "go_template_options")
11796
+
11653
11797
  @_builtins.property
11654
11798
  @pulumi.getter(name="ignoreApplicationDifferences")
11655
11799
  def ignore_application_differences(self) -> Optional[Sequence['outputs.GitopsApplicationsetApplicationsetSpecIgnoreApplicationDifference']]:
@@ -13014,6 +13158,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorClusterDecisionResourceTemp
13014
13158
  suggest = "common_annotations"
13015
13159
  elif key == "commonLabels":
13016
13160
  suggest = "common_labels"
13161
+ elif key == "forceCommonAnnotations":
13162
+ suggest = "force_common_annotations"
13163
+ elif key == "forceCommonLabels":
13164
+ suggest = "force_common_labels"
13017
13165
  elif key == "namePrefix":
13018
13166
  suggest = "name_prefix"
13019
13167
  elif key == "nameSuffix":
@@ -13033,6 +13181,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorClusterDecisionResourceTemp
13033
13181
  def __init__(__self__, *,
13034
13182
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
13035
13183
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
13184
+ force_common_annotations: Optional[_builtins.bool] = None,
13185
+ force_common_labels: Optional[_builtins.bool] = None,
13036
13186
  images: Optional[Sequence[_builtins.str]] = None,
13037
13187
  name_prefix: Optional[_builtins.str] = None,
13038
13188
  name_suffix: Optional[_builtins.str] = None,
@@ -13040,6 +13190,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorClusterDecisionResourceTemp
13040
13190
  """
13041
13191
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
13042
13192
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
13193
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
13194
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
13043
13195
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
13044
13196
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
13045
13197
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -13049,6 +13201,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorClusterDecisionResourceTemp
13049
13201
  pulumi.set(__self__, "common_annotations", common_annotations)
13050
13202
  if common_labels is not None:
13051
13203
  pulumi.set(__self__, "common_labels", common_labels)
13204
+ if force_common_annotations is not None:
13205
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
13206
+ if force_common_labels is not None:
13207
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
13052
13208
  if images is not None:
13053
13209
  pulumi.set(__self__, "images", images)
13054
13210
  if name_prefix is not None:
@@ -13074,6 +13230,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorClusterDecisionResourceTemp
13074
13230
  """
13075
13231
  return pulumi.get(self, "common_labels")
13076
13232
 
13233
+ @_builtins.property
13234
+ @pulumi.getter(name="forceCommonAnnotations")
13235
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
13236
+ """
13237
+ Indicates if to force applying common annotations to resources for kustomize apps.
13238
+ """
13239
+ return pulumi.get(self, "force_common_annotations")
13240
+
13241
+ @_builtins.property
13242
+ @pulumi.getter(name="forceCommonLabels")
13243
+ def force_common_labels(self) -> Optional[_builtins.bool]:
13244
+ """
13245
+ Indicates if to force apply common labels to resources for kustomize apps.
13246
+ """
13247
+ return pulumi.get(self, "force_common_labels")
13248
+
13077
13249
  @_builtins.property
13078
13250
  @pulumi.getter
13079
13251
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -14477,6 +14649,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorClusterTemplateSpecSourceKu
14477
14649
  suggest = "common_annotations"
14478
14650
  elif key == "commonLabels":
14479
14651
  suggest = "common_labels"
14652
+ elif key == "forceCommonAnnotations":
14653
+ suggest = "force_common_annotations"
14654
+ elif key == "forceCommonLabels":
14655
+ suggest = "force_common_labels"
14480
14656
  elif key == "namePrefix":
14481
14657
  suggest = "name_prefix"
14482
14658
  elif key == "nameSuffix":
@@ -14496,6 +14672,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorClusterTemplateSpecSourceKu
14496
14672
  def __init__(__self__, *,
14497
14673
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
14498
14674
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
14675
+ force_common_annotations: Optional[_builtins.bool] = None,
14676
+ force_common_labels: Optional[_builtins.bool] = None,
14499
14677
  images: Optional[Sequence[_builtins.str]] = None,
14500
14678
  name_prefix: Optional[_builtins.str] = None,
14501
14679
  name_suffix: Optional[_builtins.str] = None,
@@ -14503,6 +14681,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorClusterTemplateSpecSourceKu
14503
14681
  """
14504
14682
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
14505
14683
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
14684
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
14685
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
14506
14686
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
14507
14687
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
14508
14688
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -14512,6 +14692,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorClusterTemplateSpecSourceKu
14512
14692
  pulumi.set(__self__, "common_annotations", common_annotations)
14513
14693
  if common_labels is not None:
14514
14694
  pulumi.set(__self__, "common_labels", common_labels)
14695
+ if force_common_annotations is not None:
14696
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
14697
+ if force_common_labels is not None:
14698
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
14515
14699
  if images is not None:
14516
14700
  pulumi.set(__self__, "images", images)
14517
14701
  if name_prefix is not None:
@@ -14537,6 +14721,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorClusterTemplateSpecSourceKu
14537
14721
  """
14538
14722
  return pulumi.get(self, "common_labels")
14539
14723
 
14724
+ @_builtins.property
14725
+ @pulumi.getter(name="forceCommonAnnotations")
14726
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
14727
+ """
14728
+ Indicates if to force applying common annotations to resources for kustomize apps.
14729
+ """
14730
+ return pulumi.get(self, "force_common_annotations")
14731
+
14732
+ @_builtins.property
14733
+ @pulumi.getter(name="forceCommonLabels")
14734
+ def force_common_labels(self) -> Optional[_builtins.bool]:
14735
+ """
14736
+ Indicates if to force apply common labels to resources for kustomize apps.
14737
+ """
14738
+ return pulumi.get(self, "force_common_labels")
14739
+
14540
14740
  @_builtins.property
14541
14741
  @pulumi.getter
14542
14742
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -15992,6 +16192,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorGitTemplateSpecSourceKustom
15992
16192
  suggest = "common_annotations"
15993
16193
  elif key == "commonLabels":
15994
16194
  suggest = "common_labels"
16195
+ elif key == "forceCommonAnnotations":
16196
+ suggest = "force_common_annotations"
16197
+ elif key == "forceCommonLabels":
16198
+ suggest = "force_common_labels"
15995
16199
  elif key == "namePrefix":
15996
16200
  suggest = "name_prefix"
15997
16201
  elif key == "nameSuffix":
@@ -16011,6 +16215,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorGitTemplateSpecSourceKustom
16011
16215
  def __init__(__self__, *,
16012
16216
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
16013
16217
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
16218
+ force_common_annotations: Optional[_builtins.bool] = None,
16219
+ force_common_labels: Optional[_builtins.bool] = None,
16014
16220
  images: Optional[Sequence[_builtins.str]] = None,
16015
16221
  name_prefix: Optional[_builtins.str] = None,
16016
16222
  name_suffix: Optional[_builtins.str] = None,
@@ -16018,6 +16224,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorGitTemplateSpecSourceKustom
16018
16224
  """
16019
16225
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
16020
16226
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
16227
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
16228
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
16021
16229
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
16022
16230
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
16023
16231
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -16027,6 +16235,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorGitTemplateSpecSourceKustom
16027
16235
  pulumi.set(__self__, "common_annotations", common_annotations)
16028
16236
  if common_labels is not None:
16029
16237
  pulumi.set(__self__, "common_labels", common_labels)
16238
+ if force_common_annotations is not None:
16239
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
16240
+ if force_common_labels is not None:
16241
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
16030
16242
  if images is not None:
16031
16243
  pulumi.set(__self__, "images", images)
16032
16244
  if name_prefix is not None:
@@ -16052,6 +16264,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorGitTemplateSpecSourceKustom
16052
16264
  """
16053
16265
  return pulumi.get(self, "common_labels")
16054
16266
 
16267
+ @_builtins.property
16268
+ @pulumi.getter(name="forceCommonAnnotations")
16269
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
16270
+ """
16271
+ Indicates if to force applying common annotations to resources for kustomize apps.
16272
+ """
16273
+ return pulumi.get(self, "force_common_annotations")
16274
+
16275
+ @_builtins.property
16276
+ @pulumi.getter(name="forceCommonLabels")
16277
+ def force_common_labels(self) -> Optional[_builtins.bool]:
16278
+ """
16279
+ Indicates if to force apply common labels to resources for kustomize apps.
16280
+ """
16281
+ return pulumi.get(self, "force_common_labels")
16282
+
16055
16283
  @_builtins.property
16056
16284
  @pulumi.getter
16057
16285
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -17392,6 +17620,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorListTemplateSpecSourceKusto
17392
17620
  suggest = "common_annotations"
17393
17621
  elif key == "commonLabels":
17394
17622
  suggest = "common_labels"
17623
+ elif key == "forceCommonAnnotations":
17624
+ suggest = "force_common_annotations"
17625
+ elif key == "forceCommonLabels":
17626
+ suggest = "force_common_labels"
17395
17627
  elif key == "namePrefix":
17396
17628
  suggest = "name_prefix"
17397
17629
  elif key == "nameSuffix":
@@ -17411,6 +17643,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorListTemplateSpecSourceKusto
17411
17643
  def __init__(__self__, *,
17412
17644
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
17413
17645
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
17646
+ force_common_annotations: Optional[_builtins.bool] = None,
17647
+ force_common_labels: Optional[_builtins.bool] = None,
17414
17648
  images: Optional[Sequence[_builtins.str]] = None,
17415
17649
  name_prefix: Optional[_builtins.str] = None,
17416
17650
  name_suffix: Optional[_builtins.str] = None,
@@ -17418,6 +17652,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorListTemplateSpecSourceKusto
17418
17652
  """
17419
17653
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
17420
17654
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
17655
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
17656
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
17421
17657
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
17422
17658
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
17423
17659
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -17427,6 +17663,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorListTemplateSpecSourceKusto
17427
17663
  pulumi.set(__self__, "common_annotations", common_annotations)
17428
17664
  if common_labels is not None:
17429
17665
  pulumi.set(__self__, "common_labels", common_labels)
17666
+ if force_common_annotations is not None:
17667
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
17668
+ if force_common_labels is not None:
17669
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
17430
17670
  if images is not None:
17431
17671
  pulumi.set(__self__, "images", images)
17432
17672
  if name_prefix is not None:
@@ -17452,6 +17692,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorListTemplateSpecSourceKusto
17452
17692
  """
17453
17693
  return pulumi.get(self, "common_labels")
17454
17694
 
17695
+ @_builtins.property
17696
+ @pulumi.getter(name="forceCommonAnnotations")
17697
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
17698
+ """
17699
+ Indicates if to force applying common annotations to resources for kustomize apps.
17700
+ """
17701
+ return pulumi.get(self, "force_common_annotations")
17702
+
17703
+ @_builtins.property
17704
+ @pulumi.getter(name="forceCommonLabels")
17705
+ def force_common_labels(self) -> Optional[_builtins.bool]:
17706
+ """
17707
+ Indicates if to force apply common labels to resources for kustomize apps.
17708
+ """
17709
+ return pulumi.get(self, "force_common_labels")
17710
+
17455
17711
  @_builtins.property
17456
17712
  @pulumi.getter
17457
17713
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -19174,6 +19430,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterDecis
19174
19430
  suggest = "common_annotations"
19175
19431
  elif key == "commonLabels":
19176
19432
  suggest = "common_labels"
19433
+ elif key == "forceCommonAnnotations":
19434
+ suggest = "force_common_annotations"
19435
+ elif key == "forceCommonLabels":
19436
+ suggest = "force_common_labels"
19177
19437
  elif key == "namePrefix":
19178
19438
  suggest = "name_prefix"
19179
19439
  elif key == "nameSuffix":
@@ -19193,6 +19453,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterDecis
19193
19453
  def __init__(__self__, *,
19194
19454
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
19195
19455
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
19456
+ force_common_annotations: Optional[_builtins.bool] = None,
19457
+ force_common_labels: Optional[_builtins.bool] = None,
19196
19458
  images: Optional[Sequence[_builtins.str]] = None,
19197
19459
  name_prefix: Optional[_builtins.str] = None,
19198
19460
  name_suffix: Optional[_builtins.str] = None,
@@ -19200,6 +19462,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterDecis
19200
19462
  """
19201
19463
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
19202
19464
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
19465
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
19466
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
19203
19467
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
19204
19468
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
19205
19469
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -19209,6 +19473,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterDecis
19209
19473
  pulumi.set(__self__, "common_annotations", common_annotations)
19210
19474
  if common_labels is not None:
19211
19475
  pulumi.set(__self__, "common_labels", common_labels)
19476
+ if force_common_annotations is not None:
19477
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
19478
+ if force_common_labels is not None:
19479
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
19212
19480
  if images is not None:
19213
19481
  pulumi.set(__self__, "images", images)
19214
19482
  if name_prefix is not None:
@@ -19234,6 +19502,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterDecis
19234
19502
  """
19235
19503
  return pulumi.get(self, "common_labels")
19236
19504
 
19505
+ @_builtins.property
19506
+ @pulumi.getter(name="forceCommonAnnotations")
19507
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
19508
+ """
19509
+ Indicates if to force applying common annotations to resources for kustomize apps.
19510
+ """
19511
+ return pulumi.get(self, "force_common_annotations")
19512
+
19513
+ @_builtins.property
19514
+ @pulumi.getter(name="forceCommonLabels")
19515
+ def force_common_labels(self) -> Optional[_builtins.bool]:
19516
+ """
19517
+ Indicates if to force apply common labels to resources for kustomize apps.
19518
+ """
19519
+ return pulumi.get(self, "force_common_labels")
19520
+
19237
19521
  @_builtins.property
19238
19522
  @pulumi.getter
19239
19523
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -20637,6 +20921,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterTempl
20637
20921
  suggest = "common_annotations"
20638
20922
  elif key == "commonLabels":
20639
20923
  suggest = "common_labels"
20924
+ elif key == "forceCommonAnnotations":
20925
+ suggest = "force_common_annotations"
20926
+ elif key == "forceCommonLabels":
20927
+ suggest = "force_common_labels"
20640
20928
  elif key == "namePrefix":
20641
20929
  suggest = "name_prefix"
20642
20930
  elif key == "nameSuffix":
@@ -20656,6 +20944,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterTempl
20656
20944
  def __init__(__self__, *,
20657
20945
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
20658
20946
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
20947
+ force_common_annotations: Optional[_builtins.bool] = None,
20948
+ force_common_labels: Optional[_builtins.bool] = None,
20659
20949
  images: Optional[Sequence[_builtins.str]] = None,
20660
20950
  name_prefix: Optional[_builtins.str] = None,
20661
20951
  name_suffix: Optional[_builtins.str] = None,
@@ -20663,6 +20953,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterTempl
20663
20953
  """
20664
20954
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
20665
20955
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
20956
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
20957
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
20666
20958
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
20667
20959
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
20668
20960
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -20672,6 +20964,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterTempl
20672
20964
  pulumi.set(__self__, "common_annotations", common_annotations)
20673
20965
  if common_labels is not None:
20674
20966
  pulumi.set(__self__, "common_labels", common_labels)
20967
+ if force_common_annotations is not None:
20968
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
20969
+ if force_common_labels is not None:
20970
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
20675
20971
  if images is not None:
20676
20972
  pulumi.set(__self__, "images", images)
20677
20973
  if name_prefix is not None:
@@ -20697,6 +20993,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterTempl
20697
20993
  """
20698
20994
  return pulumi.get(self, "common_labels")
20699
20995
 
20996
+ @_builtins.property
20997
+ @pulumi.getter(name="forceCommonAnnotations")
20998
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
20999
+ """
21000
+ Indicates if to force applying common annotations to resources for kustomize apps.
21001
+ """
21002
+ return pulumi.get(self, "force_common_annotations")
21003
+
21004
+ @_builtins.property
21005
+ @pulumi.getter(name="forceCommonLabels")
21006
+ def force_common_labels(self) -> Optional[_builtins.bool]:
21007
+ """
21008
+ Indicates if to force apply common labels to resources for kustomize apps.
21009
+ """
21010
+ return pulumi.get(self, "force_common_labels")
21011
+
20700
21012
  @_builtins.property
20701
21013
  @pulumi.getter
20702
21014
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -22152,6 +22464,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorGitTemplateS
22152
22464
  suggest = "common_annotations"
22153
22465
  elif key == "commonLabels":
22154
22466
  suggest = "common_labels"
22467
+ elif key == "forceCommonAnnotations":
22468
+ suggest = "force_common_annotations"
22469
+ elif key == "forceCommonLabels":
22470
+ suggest = "force_common_labels"
22155
22471
  elif key == "namePrefix":
22156
22472
  suggest = "name_prefix"
22157
22473
  elif key == "nameSuffix":
@@ -22171,6 +22487,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorGitTemplateS
22171
22487
  def __init__(__self__, *,
22172
22488
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
22173
22489
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
22490
+ force_common_annotations: Optional[_builtins.bool] = None,
22491
+ force_common_labels: Optional[_builtins.bool] = None,
22174
22492
  images: Optional[Sequence[_builtins.str]] = None,
22175
22493
  name_prefix: Optional[_builtins.str] = None,
22176
22494
  name_suffix: Optional[_builtins.str] = None,
@@ -22178,6 +22496,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorGitTemplateS
22178
22496
  """
22179
22497
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
22180
22498
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
22499
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
22500
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
22181
22501
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
22182
22502
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
22183
22503
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -22187,6 +22507,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorGitTemplateS
22187
22507
  pulumi.set(__self__, "common_annotations", common_annotations)
22188
22508
  if common_labels is not None:
22189
22509
  pulumi.set(__self__, "common_labels", common_labels)
22510
+ if force_common_annotations is not None:
22511
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
22512
+ if force_common_labels is not None:
22513
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
22190
22514
  if images is not None:
22191
22515
  pulumi.set(__self__, "images", images)
22192
22516
  if name_prefix is not None:
@@ -22212,6 +22536,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorGitTemplateS
22212
22536
  """
22213
22537
  return pulumi.get(self, "common_labels")
22214
22538
 
22539
+ @_builtins.property
22540
+ @pulumi.getter(name="forceCommonAnnotations")
22541
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
22542
+ """
22543
+ Indicates if to force applying common annotations to resources for kustomize apps.
22544
+ """
22545
+ return pulumi.get(self, "force_common_annotations")
22546
+
22547
+ @_builtins.property
22548
+ @pulumi.getter(name="forceCommonLabels")
22549
+ def force_common_labels(self) -> Optional[_builtins.bool]:
22550
+ """
22551
+ Indicates if to force apply common labels to resources for kustomize apps.
22552
+ """
22553
+ return pulumi.get(self, "force_common_labels")
22554
+
22215
22555
  @_builtins.property
22216
22556
  @pulumi.getter
22217
22557
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -23552,6 +23892,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorListTemplate
23552
23892
  suggest = "common_annotations"
23553
23893
  elif key == "commonLabels":
23554
23894
  suggest = "common_labels"
23895
+ elif key == "forceCommonAnnotations":
23896
+ suggest = "force_common_annotations"
23897
+ elif key == "forceCommonLabels":
23898
+ suggest = "force_common_labels"
23555
23899
  elif key == "namePrefix":
23556
23900
  suggest = "name_prefix"
23557
23901
  elif key == "nameSuffix":
@@ -23571,6 +23915,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorListTemplate
23571
23915
  def __init__(__self__, *,
23572
23916
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
23573
23917
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
23918
+ force_common_annotations: Optional[_builtins.bool] = None,
23919
+ force_common_labels: Optional[_builtins.bool] = None,
23574
23920
  images: Optional[Sequence[_builtins.str]] = None,
23575
23921
  name_prefix: Optional[_builtins.str] = None,
23576
23922
  name_suffix: Optional[_builtins.str] = None,
@@ -23578,6 +23924,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorListTemplate
23578
23924
  """
23579
23925
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
23580
23926
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
23927
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
23928
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
23581
23929
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
23582
23930
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
23583
23931
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -23587,6 +23935,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorListTemplate
23587
23935
  pulumi.set(__self__, "common_annotations", common_annotations)
23588
23936
  if common_labels is not None:
23589
23937
  pulumi.set(__self__, "common_labels", common_labels)
23938
+ if force_common_annotations is not None:
23939
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
23940
+ if force_common_labels is not None:
23941
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
23590
23942
  if images is not None:
23591
23943
  pulumi.set(__self__, "images", images)
23592
23944
  if name_prefix is not None:
@@ -23612,6 +23964,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorListTemplate
23612
23964
  """
23613
23965
  return pulumi.get(self, "common_labels")
23614
23966
 
23967
+ @_builtins.property
23968
+ @pulumi.getter(name="forceCommonAnnotations")
23969
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
23970
+ """
23971
+ Indicates if to force applying common annotations to resources for kustomize apps.
23972
+ """
23973
+ return pulumi.get(self, "force_common_annotations")
23974
+
23975
+ @_builtins.property
23976
+ @pulumi.getter(name="forceCommonLabels")
23977
+ def force_common_labels(self) -> Optional[_builtins.bool]:
23978
+ """
23979
+ Indicates if to force apply common labels to resources for kustomize apps.
23980
+ """
23981
+ return pulumi.get(self, "force_common_labels")
23982
+
23615
23983
  @_builtins.property
23616
23984
  @pulumi.getter
23617
23985
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -25310,6 +25678,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
25310
25678
  suggest = "common_annotations"
25311
25679
  elif key == "commonLabels":
25312
25680
  suggest = "common_labels"
25681
+ elif key == "forceCommonAnnotations":
25682
+ suggest = "force_common_annotations"
25683
+ elif key == "forceCommonLabels":
25684
+ suggest = "force_common_labels"
25313
25685
  elif key == "namePrefix":
25314
25686
  suggest = "name_prefix"
25315
25687
  elif key == "nameSuffix":
@@ -25329,6 +25701,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
25329
25701
  def __init__(__self__, *,
25330
25702
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
25331
25703
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
25704
+ force_common_annotations: Optional[_builtins.bool] = None,
25705
+ force_common_labels: Optional[_builtins.bool] = None,
25332
25706
  images: Optional[Sequence[_builtins.str]] = None,
25333
25707
  name_prefix: Optional[_builtins.str] = None,
25334
25708
  name_suffix: Optional[_builtins.str] = None,
@@ -25336,6 +25710,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
25336
25710
  """
25337
25711
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
25338
25712
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
25713
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
25714
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
25339
25715
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
25340
25716
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
25341
25717
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -25345,6 +25721,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
25345
25721
  pulumi.set(__self__, "common_annotations", common_annotations)
25346
25722
  if common_labels is not None:
25347
25723
  pulumi.set(__self__, "common_labels", common_labels)
25724
+ if force_common_annotations is not None:
25725
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
25726
+ if force_common_labels is not None:
25727
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
25348
25728
  if images is not None:
25349
25729
  pulumi.set(__self__, "images", images)
25350
25730
  if name_prefix is not None:
@@ -25370,6 +25750,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
25370
25750
  """
25371
25751
  return pulumi.get(self, "common_labels")
25372
25752
 
25753
+ @_builtins.property
25754
+ @pulumi.getter(name="forceCommonAnnotations")
25755
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
25756
+ """
25757
+ Indicates if to force applying common annotations to resources for kustomize apps.
25758
+ """
25759
+ return pulumi.get(self, "force_common_annotations")
25760
+
25761
+ @_builtins.property
25762
+ @pulumi.getter(name="forceCommonLabels")
25763
+ def force_common_labels(self) -> Optional[_builtins.bool]:
25764
+ """
25765
+ Indicates if to force apply common labels to resources for kustomize apps.
25766
+ """
25767
+ return pulumi.get(self, "force_common_labels")
25768
+
25373
25769
  @_builtins.property
25374
25770
  @pulumi.getter
25375
25771
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -26773,6 +27169,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
26773
27169
  suggest = "common_annotations"
26774
27170
  elif key == "commonLabels":
26775
27171
  suggest = "common_labels"
27172
+ elif key == "forceCommonAnnotations":
27173
+ suggest = "force_common_annotations"
27174
+ elif key == "forceCommonLabels":
27175
+ suggest = "force_common_labels"
26776
27176
  elif key == "namePrefix":
26777
27177
  suggest = "name_prefix"
26778
27178
  elif key == "nameSuffix":
@@ -26792,6 +27192,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
26792
27192
  def __init__(__self__, *,
26793
27193
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
26794
27194
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
27195
+ force_common_annotations: Optional[_builtins.bool] = None,
27196
+ force_common_labels: Optional[_builtins.bool] = None,
26795
27197
  images: Optional[Sequence[_builtins.str]] = None,
26796
27198
  name_prefix: Optional[_builtins.str] = None,
26797
27199
  name_suffix: Optional[_builtins.str] = None,
@@ -26799,6 +27201,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
26799
27201
  """
26800
27202
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
26801
27203
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
27204
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
27205
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
26802
27206
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
26803
27207
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
26804
27208
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -26808,6 +27212,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
26808
27212
  pulumi.set(__self__, "common_annotations", common_annotations)
26809
27213
  if common_labels is not None:
26810
27214
  pulumi.set(__self__, "common_labels", common_labels)
27215
+ if force_common_annotations is not None:
27216
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
27217
+ if force_common_labels is not None:
27218
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
26811
27219
  if images is not None:
26812
27220
  pulumi.set(__self__, "images", images)
26813
27221
  if name_prefix is not None:
@@ -26833,6 +27241,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
26833
27241
  """
26834
27242
  return pulumi.get(self, "common_labels")
26835
27243
 
27244
+ @_builtins.property
27245
+ @pulumi.getter(name="forceCommonAnnotations")
27246
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
27247
+ """
27248
+ Indicates if to force applying common annotations to resources for kustomize apps.
27249
+ """
27250
+ return pulumi.get(self, "force_common_annotations")
27251
+
27252
+ @_builtins.property
27253
+ @pulumi.getter(name="forceCommonLabels")
27254
+ def force_common_labels(self) -> Optional[_builtins.bool]:
27255
+ """
27256
+ Indicates if to force apply common labels to resources for kustomize apps.
27257
+ """
27258
+ return pulumi.get(self, "force_common_labels")
27259
+
26836
27260
  @_builtins.property
26837
27261
  @pulumi.getter
26838
27262
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -28288,6 +28712,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
28288
28712
  suggest = "common_annotations"
28289
28713
  elif key == "commonLabels":
28290
28714
  suggest = "common_labels"
28715
+ elif key == "forceCommonAnnotations":
28716
+ suggest = "force_common_annotations"
28717
+ elif key == "forceCommonLabels":
28718
+ suggest = "force_common_labels"
28291
28719
  elif key == "namePrefix":
28292
28720
  suggest = "name_prefix"
28293
28721
  elif key == "nameSuffix":
@@ -28307,6 +28735,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
28307
28735
  def __init__(__self__, *,
28308
28736
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
28309
28737
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
28738
+ force_common_annotations: Optional[_builtins.bool] = None,
28739
+ force_common_labels: Optional[_builtins.bool] = None,
28310
28740
  images: Optional[Sequence[_builtins.str]] = None,
28311
28741
  name_prefix: Optional[_builtins.str] = None,
28312
28742
  name_suffix: Optional[_builtins.str] = None,
@@ -28314,6 +28744,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
28314
28744
  """
28315
28745
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
28316
28746
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
28747
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
28748
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
28317
28749
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
28318
28750
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
28319
28751
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -28323,6 +28755,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
28323
28755
  pulumi.set(__self__, "common_annotations", common_annotations)
28324
28756
  if common_labels is not None:
28325
28757
  pulumi.set(__self__, "common_labels", common_labels)
28758
+ if force_common_annotations is not None:
28759
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
28760
+ if force_common_labels is not None:
28761
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
28326
28762
  if images is not None:
28327
28763
  pulumi.set(__self__, "images", images)
28328
28764
  if name_prefix is not None:
@@ -28348,6 +28784,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
28348
28784
  """
28349
28785
  return pulumi.get(self, "common_labels")
28350
28786
 
28787
+ @_builtins.property
28788
+ @pulumi.getter(name="forceCommonAnnotations")
28789
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
28790
+ """
28791
+ Indicates if to force applying common annotations to resources for kustomize apps.
28792
+ """
28793
+ return pulumi.get(self, "force_common_annotations")
28794
+
28795
+ @_builtins.property
28796
+ @pulumi.getter(name="forceCommonLabels")
28797
+ def force_common_labels(self) -> Optional[_builtins.bool]:
28798
+ """
28799
+ Indicates if to force apply common labels to resources for kustomize apps.
28800
+ """
28801
+ return pulumi.get(self, "force_common_labels")
28802
+
28351
28803
  @_builtins.property
28352
28804
  @pulumi.getter
28353
28805
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -29688,6 +30140,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
29688
30140
  suggest = "common_annotations"
29689
30141
  elif key == "commonLabels":
29690
30142
  suggest = "common_labels"
30143
+ elif key == "forceCommonAnnotations":
30144
+ suggest = "force_common_annotations"
30145
+ elif key == "forceCommonLabels":
30146
+ suggest = "force_common_labels"
29691
30147
  elif key == "namePrefix":
29692
30148
  suggest = "name_prefix"
29693
30149
  elif key == "nameSuffix":
@@ -29707,6 +30163,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
29707
30163
  def __init__(__self__, *,
29708
30164
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
29709
30165
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
30166
+ force_common_annotations: Optional[_builtins.bool] = None,
30167
+ force_common_labels: Optional[_builtins.bool] = None,
29710
30168
  images: Optional[Sequence[_builtins.str]] = None,
29711
30169
  name_prefix: Optional[_builtins.str] = None,
29712
30170
  name_suffix: Optional[_builtins.str] = None,
@@ -29714,6 +30172,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
29714
30172
  """
29715
30173
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
29716
30174
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
30175
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
30176
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
29717
30177
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
29718
30178
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
29719
30179
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -29723,6 +30183,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
29723
30183
  pulumi.set(__self__, "common_annotations", common_annotations)
29724
30184
  if common_labels is not None:
29725
30185
  pulumi.set(__self__, "common_labels", common_labels)
30186
+ if force_common_annotations is not None:
30187
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
30188
+ if force_common_labels is not None:
30189
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
29726
30190
  if images is not None:
29727
30191
  pulumi.set(__self__, "images", images)
29728
30192
  if name_prefix is not None:
@@ -29748,6 +30212,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
29748
30212
  """
29749
30213
  return pulumi.get(self, "common_labels")
29750
30214
 
30215
+ @_builtins.property
30216
+ @pulumi.getter(name="forceCommonAnnotations")
30217
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
30218
+ """
30219
+ Indicates if to force applying common annotations to resources for kustomize apps.
30220
+ """
30221
+ return pulumi.get(self, "force_common_annotations")
30222
+
30223
+ @_builtins.property
30224
+ @pulumi.getter(name="forceCommonLabels")
30225
+ def force_common_labels(self) -> Optional[_builtins.bool]:
30226
+ """
30227
+ Indicates if to force apply common labels to resources for kustomize apps.
30228
+ """
30229
+ return pulumi.get(self, "force_common_labels")
30230
+
29751
30231
  @_builtins.property
29752
30232
  @pulumi.getter
29753
30233
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -31767,6 +32247,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
31767
32247
  suggest = "common_annotations"
31768
32248
  elif key == "commonLabels":
31769
32249
  suggest = "common_labels"
32250
+ elif key == "forceCommonAnnotations":
32251
+ suggest = "force_common_annotations"
32252
+ elif key == "forceCommonLabels":
32253
+ suggest = "force_common_labels"
31770
32254
  elif key == "namePrefix":
31771
32255
  suggest = "name_prefix"
31772
32256
  elif key == "nameSuffix":
@@ -31786,6 +32270,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
31786
32270
  def __init__(__self__, *,
31787
32271
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
31788
32272
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
32273
+ force_common_annotations: Optional[_builtins.bool] = None,
32274
+ force_common_labels: Optional[_builtins.bool] = None,
31789
32275
  images: Optional[Sequence[_builtins.str]] = None,
31790
32276
  name_prefix: Optional[_builtins.str] = None,
31791
32277
  name_suffix: Optional[_builtins.str] = None,
@@ -31793,6 +32279,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
31793
32279
  """
31794
32280
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
31795
32281
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
32282
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
32283
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
31796
32284
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
31797
32285
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
31798
32286
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -31802,6 +32290,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
31802
32290
  pulumi.set(__self__, "common_annotations", common_annotations)
31803
32291
  if common_labels is not None:
31804
32292
  pulumi.set(__self__, "common_labels", common_labels)
32293
+ if force_common_annotations is not None:
32294
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
32295
+ if force_common_labels is not None:
32296
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
31805
32297
  if images is not None:
31806
32298
  pulumi.set(__self__, "images", images)
31807
32299
  if name_prefix is not None:
@@ -31827,6 +32319,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
31827
32319
  """
31828
32320
  return pulumi.get(self, "common_labels")
31829
32321
 
32322
+ @_builtins.property
32323
+ @pulumi.getter(name="forceCommonAnnotations")
32324
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
32325
+ """
32326
+ Indicates if to force applying common annotations to resources for kustomize apps.
32327
+ """
32328
+ return pulumi.get(self, "force_common_annotations")
32329
+
32330
+ @_builtins.property
32331
+ @pulumi.getter(name="forceCommonLabels")
32332
+ def force_common_labels(self) -> Optional[_builtins.bool]:
32333
+ """
32334
+ Indicates if to force apply common labels to resources for kustomize apps.
32335
+ """
32336
+ return pulumi.get(self, "force_common_labels")
32337
+
31830
32338
  @_builtins.property
31831
32339
  @pulumi.getter
31832
32340
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -34194,6 +34702,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
34194
34702
  suggest = "common_annotations"
34195
34703
  elif key == "commonLabels":
34196
34704
  suggest = "common_labels"
34705
+ elif key == "forceCommonAnnotations":
34706
+ suggest = "force_common_annotations"
34707
+ elif key == "forceCommonLabels":
34708
+ suggest = "force_common_labels"
34197
34709
  elif key == "namePrefix":
34198
34710
  suggest = "name_prefix"
34199
34711
  elif key == "nameSuffix":
@@ -34213,6 +34725,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
34213
34725
  def __init__(__self__, *,
34214
34726
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
34215
34727
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
34728
+ force_common_annotations: Optional[_builtins.bool] = None,
34729
+ force_common_labels: Optional[_builtins.bool] = None,
34216
34730
  images: Optional[Sequence[_builtins.str]] = None,
34217
34731
  name_prefix: Optional[_builtins.str] = None,
34218
34732
  name_suffix: Optional[_builtins.str] = None,
@@ -34220,6 +34734,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
34220
34734
  """
34221
34735
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
34222
34736
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
34737
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
34738
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
34223
34739
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
34224
34740
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
34225
34741
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -34229,6 +34745,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
34229
34745
  pulumi.set(__self__, "common_annotations", common_annotations)
34230
34746
  if common_labels is not None:
34231
34747
  pulumi.set(__self__, "common_labels", common_labels)
34748
+ if force_common_annotations is not None:
34749
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
34750
+ if force_common_labels is not None:
34751
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
34232
34752
  if images is not None:
34233
34753
  pulumi.set(__self__, "images", images)
34234
34754
  if name_prefix is not None:
@@ -34254,6 +34774,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
34254
34774
  """
34255
34775
  return pulumi.get(self, "common_labels")
34256
34776
 
34777
+ @_builtins.property
34778
+ @pulumi.getter(name="forceCommonAnnotations")
34779
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
34780
+ """
34781
+ Indicates if to force applying common annotations to resources for kustomize apps.
34782
+ """
34783
+ return pulumi.get(self, "force_common_annotations")
34784
+
34785
+ @_builtins.property
34786
+ @pulumi.getter(name="forceCommonLabels")
34787
+ def force_common_labels(self) -> Optional[_builtins.bool]:
34788
+ """
34789
+ Indicates if to force apply common labels to resources for kustomize apps.
34790
+ """
34791
+ return pulumi.get(self, "force_common_labels")
34792
+
34257
34793
  @_builtins.property
34258
34794
  @pulumi.getter
34259
34795
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -35657,6 +36193,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixTempla
35657
36193
  suggest = "common_annotations"
35658
36194
  elif key == "commonLabels":
35659
36195
  suggest = "common_labels"
36196
+ elif key == "forceCommonAnnotations":
36197
+ suggest = "force_common_annotations"
36198
+ elif key == "forceCommonLabels":
36199
+ suggest = "force_common_labels"
35660
36200
  elif key == "namePrefix":
35661
36201
  suggest = "name_prefix"
35662
36202
  elif key == "nameSuffix":
@@ -35676,6 +36216,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixTempla
35676
36216
  def __init__(__self__, *,
35677
36217
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
35678
36218
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
36219
+ force_common_annotations: Optional[_builtins.bool] = None,
36220
+ force_common_labels: Optional[_builtins.bool] = None,
35679
36221
  images: Optional[Sequence[_builtins.str]] = None,
35680
36222
  name_prefix: Optional[_builtins.str] = None,
35681
36223
  name_suffix: Optional[_builtins.str] = None,
@@ -35683,6 +36225,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixTempla
35683
36225
  """
35684
36226
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
35685
36227
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
36228
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
36229
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
35686
36230
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
35687
36231
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
35688
36232
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -35692,6 +36236,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixTempla
35692
36236
  pulumi.set(__self__, "common_annotations", common_annotations)
35693
36237
  if common_labels is not None:
35694
36238
  pulumi.set(__self__, "common_labels", common_labels)
36239
+ if force_common_annotations is not None:
36240
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
36241
+ if force_common_labels is not None:
36242
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
35695
36243
  if images is not None:
35696
36244
  pulumi.set(__self__, "images", images)
35697
36245
  if name_prefix is not None:
@@ -35717,6 +36265,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixTempla
35717
36265
  """
35718
36266
  return pulumi.get(self, "common_labels")
35719
36267
 
36268
+ @_builtins.property
36269
+ @pulumi.getter(name="forceCommonAnnotations")
36270
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
36271
+ """
36272
+ Indicates if to force applying common annotations to resources for kustomize apps.
36273
+ """
36274
+ return pulumi.get(self, "force_common_annotations")
36275
+
36276
+ @_builtins.property
36277
+ @pulumi.getter(name="forceCommonLabels")
36278
+ def force_common_labels(self) -> Optional[_builtins.bool]:
36279
+ """
36280
+ Indicates if to force apply common labels to resources for kustomize apps.
36281
+ """
36282
+ return pulumi.get(self, "force_common_labels")
36283
+
35720
36284
  @_builtins.property
35721
36285
  @pulumi.getter
35722
36286
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -37443,6 +38007,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
37443
38007
  suggest = "common_annotations"
37444
38008
  elif key == "commonLabels":
37445
38009
  suggest = "common_labels"
38010
+ elif key == "forceCommonAnnotations":
38011
+ suggest = "force_common_annotations"
38012
+ elif key == "forceCommonLabels":
38013
+ suggest = "force_common_labels"
37446
38014
  elif key == "namePrefix":
37447
38015
  suggest = "name_prefix"
37448
38016
  elif key == "nameSuffix":
@@ -37462,6 +38030,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
37462
38030
  def __init__(__self__, *,
37463
38031
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
37464
38032
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
38033
+ force_common_annotations: Optional[_builtins.bool] = None,
38034
+ force_common_labels: Optional[_builtins.bool] = None,
37465
38035
  images: Optional[Sequence[_builtins.str]] = None,
37466
38036
  name_prefix: Optional[_builtins.str] = None,
37467
38037
  name_suffix: Optional[_builtins.str] = None,
@@ -37469,6 +38039,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
37469
38039
  """
37470
38040
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
37471
38041
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
38042
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
38043
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
37472
38044
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
37473
38045
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
37474
38046
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -37478,6 +38050,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
37478
38050
  pulumi.set(__self__, "common_annotations", common_annotations)
37479
38051
  if common_labels is not None:
37480
38052
  pulumi.set(__self__, "common_labels", common_labels)
38053
+ if force_common_annotations is not None:
38054
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
38055
+ if force_common_labels is not None:
38056
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
37481
38057
  if images is not None:
37482
38058
  pulumi.set(__self__, "images", images)
37483
38059
  if name_prefix is not None:
@@ -37503,6 +38079,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
37503
38079
  """
37504
38080
  return pulumi.get(self, "common_labels")
37505
38081
 
38082
+ @_builtins.property
38083
+ @pulumi.getter(name="forceCommonAnnotations")
38084
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
38085
+ """
38086
+ Indicates if to force applying common annotations to resources for kustomize apps.
38087
+ """
38088
+ return pulumi.get(self, "force_common_annotations")
38089
+
38090
+ @_builtins.property
38091
+ @pulumi.getter(name="forceCommonLabels")
38092
+ def force_common_labels(self) -> Optional[_builtins.bool]:
38093
+ """
38094
+ Indicates if to force apply common labels to resources for kustomize apps.
38095
+ """
38096
+ return pulumi.get(self, "force_common_labels")
38097
+
37506
38098
  @_builtins.property
37507
38099
  @pulumi.getter
37508
38100
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -38906,6 +39498,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
38906
39498
  suggest = "common_annotations"
38907
39499
  elif key == "commonLabels":
38908
39500
  suggest = "common_labels"
39501
+ elif key == "forceCommonAnnotations":
39502
+ suggest = "force_common_annotations"
39503
+ elif key == "forceCommonLabels":
39504
+ suggest = "force_common_labels"
38909
39505
  elif key == "namePrefix":
38910
39506
  suggest = "name_prefix"
38911
39507
  elif key == "nameSuffix":
@@ -38925,6 +39521,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
38925
39521
  def __init__(__self__, *,
38926
39522
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
38927
39523
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
39524
+ force_common_annotations: Optional[_builtins.bool] = None,
39525
+ force_common_labels: Optional[_builtins.bool] = None,
38928
39526
  images: Optional[Sequence[_builtins.str]] = None,
38929
39527
  name_prefix: Optional[_builtins.str] = None,
38930
39528
  name_suffix: Optional[_builtins.str] = None,
@@ -38932,6 +39530,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
38932
39530
  """
38933
39531
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
38934
39532
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
39533
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
39534
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
38935
39535
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
38936
39536
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
38937
39537
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -38941,6 +39541,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
38941
39541
  pulumi.set(__self__, "common_annotations", common_annotations)
38942
39542
  if common_labels is not None:
38943
39543
  pulumi.set(__self__, "common_labels", common_labels)
39544
+ if force_common_annotations is not None:
39545
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
39546
+ if force_common_labels is not None:
39547
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
38944
39548
  if images is not None:
38945
39549
  pulumi.set(__self__, "images", images)
38946
39550
  if name_prefix is not None:
@@ -38966,6 +39570,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
38966
39570
  """
38967
39571
  return pulumi.get(self, "common_labels")
38968
39572
 
39573
+ @_builtins.property
39574
+ @pulumi.getter(name="forceCommonAnnotations")
39575
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
39576
+ """
39577
+ Indicates if to force applying common annotations to resources for kustomize apps.
39578
+ """
39579
+ return pulumi.get(self, "force_common_annotations")
39580
+
39581
+ @_builtins.property
39582
+ @pulumi.getter(name="forceCommonLabels")
39583
+ def force_common_labels(self) -> Optional[_builtins.bool]:
39584
+ """
39585
+ Indicates if to force apply common labels to resources for kustomize apps.
39586
+ """
39587
+ return pulumi.get(self, "force_common_labels")
39588
+
38969
39589
  @_builtins.property
38970
39590
  @pulumi.getter
38971
39591
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -40421,6 +41041,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
40421
41041
  suggest = "common_annotations"
40422
41042
  elif key == "commonLabels":
40423
41043
  suggest = "common_labels"
41044
+ elif key == "forceCommonAnnotations":
41045
+ suggest = "force_common_annotations"
41046
+ elif key == "forceCommonLabels":
41047
+ suggest = "force_common_labels"
40424
41048
  elif key == "namePrefix":
40425
41049
  suggest = "name_prefix"
40426
41050
  elif key == "nameSuffix":
@@ -40440,6 +41064,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
40440
41064
  def __init__(__self__, *,
40441
41065
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
40442
41066
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
41067
+ force_common_annotations: Optional[_builtins.bool] = None,
41068
+ force_common_labels: Optional[_builtins.bool] = None,
40443
41069
  images: Optional[Sequence[_builtins.str]] = None,
40444
41070
  name_prefix: Optional[_builtins.str] = None,
40445
41071
  name_suffix: Optional[_builtins.str] = None,
@@ -40447,6 +41073,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
40447
41073
  """
40448
41074
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
40449
41075
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
41076
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
41077
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
40450
41078
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
40451
41079
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
40452
41080
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -40456,6 +41084,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
40456
41084
  pulumi.set(__self__, "common_annotations", common_annotations)
40457
41085
  if common_labels is not None:
40458
41086
  pulumi.set(__self__, "common_labels", common_labels)
41087
+ if force_common_annotations is not None:
41088
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
41089
+ if force_common_labels is not None:
41090
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
40459
41091
  if images is not None:
40460
41092
  pulumi.set(__self__, "images", images)
40461
41093
  if name_prefix is not None:
@@ -40481,6 +41113,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
40481
41113
  """
40482
41114
  return pulumi.get(self, "common_labels")
40483
41115
 
41116
+ @_builtins.property
41117
+ @pulumi.getter(name="forceCommonAnnotations")
41118
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
41119
+ """
41120
+ Indicates if to force applying common annotations to resources for kustomize apps.
41121
+ """
41122
+ return pulumi.get(self, "force_common_annotations")
41123
+
41124
+ @_builtins.property
41125
+ @pulumi.getter(name="forceCommonLabels")
41126
+ def force_common_labels(self) -> Optional[_builtins.bool]:
41127
+ """
41128
+ Indicates if to force apply common labels to resources for kustomize apps.
41129
+ """
41130
+ return pulumi.get(self, "force_common_labels")
41131
+
40484
41132
  @_builtins.property
40485
41133
  @pulumi.getter
40486
41134
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -41821,6 +42469,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
41821
42469
  suggest = "common_annotations"
41822
42470
  elif key == "commonLabels":
41823
42471
  suggest = "common_labels"
42472
+ elif key == "forceCommonAnnotations":
42473
+ suggest = "force_common_annotations"
42474
+ elif key == "forceCommonLabels":
42475
+ suggest = "force_common_labels"
41824
42476
  elif key == "namePrefix":
41825
42477
  suggest = "name_prefix"
41826
42478
  elif key == "nameSuffix":
@@ -41840,6 +42492,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
41840
42492
  def __init__(__self__, *,
41841
42493
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
41842
42494
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
42495
+ force_common_annotations: Optional[_builtins.bool] = None,
42496
+ force_common_labels: Optional[_builtins.bool] = None,
41843
42497
  images: Optional[Sequence[_builtins.str]] = None,
41844
42498
  name_prefix: Optional[_builtins.str] = None,
41845
42499
  name_suffix: Optional[_builtins.str] = None,
@@ -41847,6 +42501,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
41847
42501
  """
41848
42502
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
41849
42503
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
42504
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
42505
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
41850
42506
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
41851
42507
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
41852
42508
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -41856,6 +42512,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
41856
42512
  pulumi.set(__self__, "common_annotations", common_annotations)
41857
42513
  if common_labels is not None:
41858
42514
  pulumi.set(__self__, "common_labels", common_labels)
42515
+ if force_common_annotations is not None:
42516
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
42517
+ if force_common_labels is not None:
42518
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
41859
42519
  if images is not None:
41860
42520
  pulumi.set(__self__, "images", images)
41861
42521
  if name_prefix is not None:
@@ -41881,6 +42541,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
41881
42541
  """
41882
42542
  return pulumi.get(self, "common_labels")
41883
42543
 
42544
+ @_builtins.property
42545
+ @pulumi.getter(name="forceCommonAnnotations")
42546
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
42547
+ """
42548
+ Indicates if to force applying common annotations to resources for kustomize apps.
42549
+ """
42550
+ return pulumi.get(self, "force_common_annotations")
42551
+
42552
+ @_builtins.property
42553
+ @pulumi.getter(name="forceCommonLabels")
42554
+ def force_common_labels(self) -> Optional[_builtins.bool]:
42555
+ """
42556
+ Indicates if to force apply common labels to resources for kustomize apps.
42557
+ """
42558
+ return pulumi.get(self, "force_common_labels")
42559
+
41884
42560
  @_builtins.property
41885
42561
  @pulumi.getter
41886
42562
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -43900,6 +44576,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
43900
44576
  suggest = "common_annotations"
43901
44577
  elif key == "commonLabels":
43902
44578
  suggest = "common_labels"
44579
+ elif key == "forceCommonAnnotations":
44580
+ suggest = "force_common_annotations"
44581
+ elif key == "forceCommonLabels":
44582
+ suggest = "force_common_labels"
43903
44583
  elif key == "namePrefix":
43904
44584
  suggest = "name_prefix"
43905
44585
  elif key == "nameSuffix":
@@ -43919,6 +44599,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
43919
44599
  def __init__(__self__, *,
43920
44600
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
43921
44601
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
44602
+ force_common_annotations: Optional[_builtins.bool] = None,
44603
+ force_common_labels: Optional[_builtins.bool] = None,
43922
44604
  images: Optional[Sequence[_builtins.str]] = None,
43923
44605
  name_prefix: Optional[_builtins.str] = None,
43924
44606
  name_suffix: Optional[_builtins.str] = None,
@@ -43926,6 +44608,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
43926
44608
  """
43927
44609
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
43928
44610
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
44611
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
44612
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
43929
44613
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
43930
44614
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
43931
44615
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -43935,6 +44619,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
43935
44619
  pulumi.set(__self__, "common_annotations", common_annotations)
43936
44620
  if common_labels is not None:
43937
44621
  pulumi.set(__self__, "common_labels", common_labels)
44622
+ if force_common_annotations is not None:
44623
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
44624
+ if force_common_labels is not None:
44625
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
43938
44626
  if images is not None:
43939
44627
  pulumi.set(__self__, "images", images)
43940
44628
  if name_prefix is not None:
@@ -43960,6 +44648,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
43960
44648
  """
43961
44649
  return pulumi.get(self, "common_labels")
43962
44650
 
44651
+ @_builtins.property
44652
+ @pulumi.getter(name="forceCommonAnnotations")
44653
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
44654
+ """
44655
+ Indicates if to force applying common annotations to resources for kustomize apps.
44656
+ """
44657
+ return pulumi.get(self, "force_common_annotations")
44658
+
44659
+ @_builtins.property
44660
+ @pulumi.getter(name="forceCommonLabels")
44661
+ def force_common_labels(self) -> Optional[_builtins.bool]:
44662
+ """
44663
+ Indicates if to force apply common labels to resources for kustomize apps.
44664
+ """
44665
+ return pulumi.get(self, "force_common_labels")
44666
+
43963
44667
  @_builtins.property
43964
44668
  @pulumi.getter
43965
44669
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -46327,6 +47031,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
46327
47031
  suggest = "common_annotations"
46328
47032
  elif key == "commonLabels":
46329
47033
  suggest = "common_labels"
47034
+ elif key == "forceCommonAnnotations":
47035
+ suggest = "force_common_annotations"
47036
+ elif key == "forceCommonLabels":
47037
+ suggest = "force_common_labels"
46330
47038
  elif key == "namePrefix":
46331
47039
  suggest = "name_prefix"
46332
47040
  elif key == "nameSuffix":
@@ -46346,6 +47054,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
46346
47054
  def __init__(__self__, *,
46347
47055
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
46348
47056
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
47057
+ force_common_annotations: Optional[_builtins.bool] = None,
47058
+ force_common_labels: Optional[_builtins.bool] = None,
46349
47059
  images: Optional[Sequence[_builtins.str]] = None,
46350
47060
  name_prefix: Optional[_builtins.str] = None,
46351
47061
  name_suffix: Optional[_builtins.str] = None,
@@ -46353,6 +47063,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
46353
47063
  """
46354
47064
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
46355
47065
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
47066
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
47067
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
46356
47068
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
46357
47069
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
46358
47070
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -46362,6 +47074,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
46362
47074
  pulumi.set(__self__, "common_annotations", common_annotations)
46363
47075
  if common_labels is not None:
46364
47076
  pulumi.set(__self__, "common_labels", common_labels)
47077
+ if force_common_annotations is not None:
47078
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
47079
+ if force_common_labels is not None:
47080
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
46365
47081
  if images is not None:
46366
47082
  pulumi.set(__self__, "images", images)
46367
47083
  if name_prefix is not None:
@@ -46387,6 +47103,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
46387
47103
  """
46388
47104
  return pulumi.get(self, "common_labels")
46389
47105
 
47106
+ @_builtins.property
47107
+ @pulumi.getter(name="forceCommonAnnotations")
47108
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
47109
+ """
47110
+ Indicates if to force applying common annotations to resources for kustomize apps.
47111
+ """
47112
+ return pulumi.get(self, "force_common_annotations")
47113
+
47114
+ @_builtins.property
47115
+ @pulumi.getter(name="forceCommonLabels")
47116
+ def force_common_labels(self) -> Optional[_builtins.bool]:
47117
+ """
47118
+ Indicates if to force apply common labels to resources for kustomize apps.
47119
+ """
47120
+ return pulumi.get(self, "force_common_labels")
47121
+
46390
47122
  @_builtins.property
46391
47123
  @pulumi.getter
46392
47124
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -47790,6 +48522,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeTemplat
47790
48522
  suggest = "common_annotations"
47791
48523
  elif key == "commonLabels":
47792
48524
  suggest = "common_labels"
48525
+ elif key == "forceCommonAnnotations":
48526
+ suggest = "force_common_annotations"
48527
+ elif key == "forceCommonLabels":
48528
+ suggest = "force_common_labels"
47793
48529
  elif key == "namePrefix":
47794
48530
  suggest = "name_prefix"
47795
48531
  elif key == "nameSuffix":
@@ -47809,6 +48545,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeTemplat
47809
48545
  def __init__(__self__, *,
47810
48546
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
47811
48547
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
48548
+ force_common_annotations: Optional[_builtins.bool] = None,
48549
+ force_common_labels: Optional[_builtins.bool] = None,
47812
48550
  images: Optional[Sequence[_builtins.str]] = None,
47813
48551
  name_prefix: Optional[_builtins.str] = None,
47814
48552
  name_suffix: Optional[_builtins.str] = None,
@@ -47816,6 +48554,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeTemplat
47816
48554
  """
47817
48555
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
47818
48556
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
48557
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
48558
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
47819
48559
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
47820
48560
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
47821
48561
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -47825,6 +48565,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeTemplat
47825
48565
  pulumi.set(__self__, "common_annotations", common_annotations)
47826
48566
  if common_labels is not None:
47827
48567
  pulumi.set(__self__, "common_labels", common_labels)
48568
+ if force_common_annotations is not None:
48569
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
48570
+ if force_common_labels is not None:
48571
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
47828
48572
  if images is not None:
47829
48573
  pulumi.set(__self__, "images", images)
47830
48574
  if name_prefix is not None:
@@ -47850,6 +48594,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeTemplat
47850
48594
  """
47851
48595
  return pulumi.get(self, "common_labels")
47852
48596
 
48597
+ @_builtins.property
48598
+ @pulumi.getter(name="forceCommonAnnotations")
48599
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
48600
+ """
48601
+ Indicates if to force applying common annotations to resources for kustomize apps.
48602
+ """
48603
+ return pulumi.get(self, "force_common_annotations")
48604
+
48605
+ @_builtins.property
48606
+ @pulumi.getter(name="forceCommonLabels")
48607
+ def force_common_labels(self) -> Optional[_builtins.bool]:
48608
+ """
48609
+ Indicates if to force apply common labels to resources for kustomize apps.
48610
+ """
48611
+ return pulumi.get(self, "force_common_labels")
48612
+
47853
48613
  @_builtins.property
47854
48614
  @pulumi.getter
47855
48615
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -49869,6 +50629,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorPullRequestT
49869
50629
  suggest = "common_annotations"
49870
50630
  elif key == "commonLabels":
49871
50631
  suggest = "common_labels"
50632
+ elif key == "forceCommonAnnotations":
50633
+ suggest = "force_common_annotations"
50634
+ elif key == "forceCommonLabels":
50635
+ suggest = "force_common_labels"
49872
50636
  elif key == "namePrefix":
49873
50637
  suggest = "name_prefix"
49874
50638
  elif key == "nameSuffix":
@@ -49888,6 +50652,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorPullRequestT
49888
50652
  def __init__(__self__, *,
49889
50653
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
49890
50654
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
50655
+ force_common_annotations: Optional[_builtins.bool] = None,
50656
+ force_common_labels: Optional[_builtins.bool] = None,
49891
50657
  images: Optional[Sequence[_builtins.str]] = None,
49892
50658
  name_prefix: Optional[_builtins.str] = None,
49893
50659
  name_suffix: Optional[_builtins.str] = None,
@@ -49895,6 +50661,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorPullRequestT
49895
50661
  """
49896
50662
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
49897
50663
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
50664
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
50665
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
49898
50666
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
49899
50667
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
49900
50668
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -49904,6 +50672,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorPullRequestT
49904
50672
  pulumi.set(__self__, "common_annotations", common_annotations)
49905
50673
  if common_labels is not None:
49906
50674
  pulumi.set(__self__, "common_labels", common_labels)
50675
+ if force_common_annotations is not None:
50676
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
50677
+ if force_common_labels is not None:
50678
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
49907
50679
  if images is not None:
49908
50680
  pulumi.set(__self__, "images", images)
49909
50681
  if name_prefix is not None:
@@ -49929,6 +50701,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorPullRequestT
49929
50701
  """
49930
50702
  return pulumi.get(self, "common_labels")
49931
50703
 
50704
+ @_builtins.property
50705
+ @pulumi.getter(name="forceCommonAnnotations")
50706
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
50707
+ """
50708
+ Indicates if to force applying common annotations to resources for kustomize apps.
50709
+ """
50710
+ return pulumi.get(self, "force_common_annotations")
50711
+
50712
+ @_builtins.property
50713
+ @pulumi.getter(name="forceCommonLabels")
50714
+ def force_common_labels(self) -> Optional[_builtins.bool]:
50715
+ """
50716
+ Indicates if to force apply common labels to resources for kustomize apps.
50717
+ """
50718
+ return pulumi.get(self, "force_common_labels")
50719
+
49932
50720
  @_builtins.property
49933
50721
  @pulumi.getter
49934
50722
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -52296,6 +53084,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorScmProviderT
52296
53084
  suggest = "common_annotations"
52297
53085
  elif key == "commonLabels":
52298
53086
  suggest = "common_labels"
53087
+ elif key == "forceCommonAnnotations":
53088
+ suggest = "force_common_annotations"
53089
+ elif key == "forceCommonLabels":
53090
+ suggest = "force_common_labels"
52299
53091
  elif key == "namePrefix":
52300
53092
  suggest = "name_prefix"
52301
53093
  elif key == "nameSuffix":
@@ -52315,6 +53107,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorScmProviderT
52315
53107
  def __init__(__self__, *,
52316
53108
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
52317
53109
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
53110
+ force_common_annotations: Optional[_builtins.bool] = None,
53111
+ force_common_labels: Optional[_builtins.bool] = None,
52318
53112
  images: Optional[Sequence[_builtins.str]] = None,
52319
53113
  name_prefix: Optional[_builtins.str] = None,
52320
53114
  name_suffix: Optional[_builtins.str] = None,
@@ -52322,6 +53116,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorScmProviderT
52322
53116
  """
52323
53117
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
52324
53118
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
53119
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
53120
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
52325
53121
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
52326
53122
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
52327
53123
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -52331,6 +53127,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorScmProviderT
52331
53127
  pulumi.set(__self__, "common_annotations", common_annotations)
52332
53128
  if common_labels is not None:
52333
53129
  pulumi.set(__self__, "common_labels", common_labels)
53130
+ if force_common_annotations is not None:
53131
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
53132
+ if force_common_labels is not None:
53133
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
52334
53134
  if images is not None:
52335
53135
  pulumi.set(__self__, "images", images)
52336
53136
  if name_prefix is not None:
@@ -52356,6 +53156,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorScmProviderT
52356
53156
  """
52357
53157
  return pulumi.get(self, "common_labels")
52358
53158
 
53159
+ @_builtins.property
53160
+ @pulumi.getter(name="forceCommonAnnotations")
53161
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
53162
+ """
53163
+ Indicates if to force applying common annotations to resources for kustomize apps.
53164
+ """
53165
+ return pulumi.get(self, "force_common_annotations")
53166
+
53167
+ @_builtins.property
53168
+ @pulumi.getter(name="forceCommonLabels")
53169
+ def force_common_labels(self) -> Optional[_builtins.bool]:
53170
+ """
53171
+ Indicates if to force apply common labels to resources for kustomize apps.
53172
+ """
53173
+ return pulumi.get(self, "force_common_labels")
53174
+
52359
53175
  @_builtins.property
52360
53176
  @pulumi.getter
52361
53177
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -53759,6 +54575,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixTemplateSpecSourceKus
53759
54575
  suggest = "common_annotations"
53760
54576
  elif key == "commonLabels":
53761
54577
  suggest = "common_labels"
54578
+ elif key == "forceCommonAnnotations":
54579
+ suggest = "force_common_annotations"
54580
+ elif key == "forceCommonLabels":
54581
+ suggest = "force_common_labels"
53762
54582
  elif key == "namePrefix":
53763
54583
  suggest = "name_prefix"
53764
54584
  elif key == "nameSuffix":
@@ -53778,6 +54598,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixTemplateSpecSourceKus
53778
54598
  def __init__(__self__, *,
53779
54599
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
53780
54600
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
54601
+ force_common_annotations: Optional[_builtins.bool] = None,
54602
+ force_common_labels: Optional[_builtins.bool] = None,
53781
54603
  images: Optional[Sequence[_builtins.str]] = None,
53782
54604
  name_prefix: Optional[_builtins.str] = None,
53783
54605
  name_suffix: Optional[_builtins.str] = None,
@@ -53785,6 +54607,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixTemplateSpecSourceKus
53785
54607
  """
53786
54608
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
53787
54609
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
54610
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
54611
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
53788
54612
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
53789
54613
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
53790
54614
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -53794,6 +54618,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixTemplateSpecSourceKus
53794
54618
  pulumi.set(__self__, "common_annotations", common_annotations)
53795
54619
  if common_labels is not None:
53796
54620
  pulumi.set(__self__, "common_labels", common_labels)
54621
+ if force_common_annotations is not None:
54622
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
54623
+ if force_common_labels is not None:
54624
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
53797
54625
  if images is not None:
53798
54626
  pulumi.set(__self__, "images", images)
53799
54627
  if name_prefix is not None:
@@ -53819,6 +54647,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixTemplateSpecSourceKus
53819
54647
  """
53820
54648
  return pulumi.get(self, "common_labels")
53821
54649
 
54650
+ @_builtins.property
54651
+ @pulumi.getter(name="forceCommonAnnotations")
54652
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
54653
+ """
54654
+ Indicates if to force applying common annotations to resources for kustomize apps.
54655
+ """
54656
+ return pulumi.get(self, "force_common_annotations")
54657
+
54658
+ @_builtins.property
54659
+ @pulumi.getter(name="forceCommonLabels")
54660
+ def force_common_labels(self) -> Optional[_builtins.bool]:
54661
+ """
54662
+ Indicates if to force apply common labels to resources for kustomize apps.
54663
+ """
54664
+ return pulumi.get(self, "force_common_labels")
54665
+
53822
54666
  @_builtins.property
53823
54667
  @pulumi.getter
53824
54668
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -55569,6 +56413,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterDecisi
55569
56413
  suggest = "common_annotations"
55570
56414
  elif key == "commonLabels":
55571
56415
  suggest = "common_labels"
56416
+ elif key == "forceCommonAnnotations":
56417
+ suggest = "force_common_annotations"
56418
+ elif key == "forceCommonLabels":
56419
+ suggest = "force_common_labels"
55572
56420
  elif key == "namePrefix":
55573
56421
  suggest = "name_prefix"
55574
56422
  elif key == "nameSuffix":
@@ -55588,6 +56436,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterDecisi
55588
56436
  def __init__(__self__, *,
55589
56437
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
55590
56438
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
56439
+ force_common_annotations: Optional[_builtins.bool] = None,
56440
+ force_common_labels: Optional[_builtins.bool] = None,
55591
56441
  images: Optional[Sequence[_builtins.str]] = None,
55592
56442
  name_prefix: Optional[_builtins.str] = None,
55593
56443
  name_suffix: Optional[_builtins.str] = None,
@@ -55595,6 +56445,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterDecisi
55595
56445
  """
55596
56446
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
55597
56447
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
56448
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
56449
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
55598
56450
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
55599
56451
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
55600
56452
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -55604,6 +56456,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterDecisi
55604
56456
  pulumi.set(__self__, "common_annotations", common_annotations)
55605
56457
  if common_labels is not None:
55606
56458
  pulumi.set(__self__, "common_labels", common_labels)
56459
+ if force_common_annotations is not None:
56460
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
56461
+ if force_common_labels is not None:
56462
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
55607
56463
  if images is not None:
55608
56464
  pulumi.set(__self__, "images", images)
55609
56465
  if name_prefix is not None:
@@ -55629,6 +56485,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterDecisi
55629
56485
  """
55630
56486
  return pulumi.get(self, "common_labels")
55631
56487
 
56488
+ @_builtins.property
56489
+ @pulumi.getter(name="forceCommonAnnotations")
56490
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
56491
+ """
56492
+ Indicates if to force applying common annotations to resources for kustomize apps.
56493
+ """
56494
+ return pulumi.get(self, "force_common_annotations")
56495
+
56496
+ @_builtins.property
56497
+ @pulumi.getter(name="forceCommonLabels")
56498
+ def force_common_labels(self) -> Optional[_builtins.bool]:
56499
+ """
56500
+ Indicates if to force apply common labels to resources for kustomize apps.
56501
+ """
56502
+ return pulumi.get(self, "force_common_labels")
56503
+
55632
56504
  @_builtins.property
55633
56505
  @pulumi.getter
55634
56506
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -57032,6 +57904,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterTempla
57032
57904
  suggest = "common_annotations"
57033
57905
  elif key == "commonLabels":
57034
57906
  suggest = "common_labels"
57907
+ elif key == "forceCommonAnnotations":
57908
+ suggest = "force_common_annotations"
57909
+ elif key == "forceCommonLabels":
57910
+ suggest = "force_common_labels"
57035
57911
  elif key == "namePrefix":
57036
57912
  suggest = "name_prefix"
57037
57913
  elif key == "nameSuffix":
@@ -57051,6 +57927,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterTempla
57051
57927
  def __init__(__self__, *,
57052
57928
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
57053
57929
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
57930
+ force_common_annotations: Optional[_builtins.bool] = None,
57931
+ force_common_labels: Optional[_builtins.bool] = None,
57054
57932
  images: Optional[Sequence[_builtins.str]] = None,
57055
57933
  name_prefix: Optional[_builtins.str] = None,
57056
57934
  name_suffix: Optional[_builtins.str] = None,
@@ -57058,6 +57936,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterTempla
57058
57936
  """
57059
57937
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
57060
57938
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
57939
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
57940
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
57061
57941
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
57062
57942
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
57063
57943
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -57067,6 +57947,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterTempla
57067
57947
  pulumi.set(__self__, "common_annotations", common_annotations)
57068
57948
  if common_labels is not None:
57069
57949
  pulumi.set(__self__, "common_labels", common_labels)
57950
+ if force_common_annotations is not None:
57951
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
57952
+ if force_common_labels is not None:
57953
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
57070
57954
  if images is not None:
57071
57955
  pulumi.set(__self__, "images", images)
57072
57956
  if name_prefix is not None:
@@ -57092,6 +57976,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterTempla
57092
57976
  """
57093
57977
  return pulumi.get(self, "common_labels")
57094
57978
 
57979
+ @_builtins.property
57980
+ @pulumi.getter(name="forceCommonAnnotations")
57981
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
57982
+ """
57983
+ Indicates if to force applying common annotations to resources for kustomize apps.
57984
+ """
57985
+ return pulumi.get(self, "force_common_annotations")
57986
+
57987
+ @_builtins.property
57988
+ @pulumi.getter(name="forceCommonLabels")
57989
+ def force_common_labels(self) -> Optional[_builtins.bool]:
57990
+ """
57991
+ Indicates if to force apply common labels to resources for kustomize apps.
57992
+ """
57993
+ return pulumi.get(self, "force_common_labels")
57994
+
57095
57995
  @_builtins.property
57096
57996
  @pulumi.getter
57097
57997
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -58547,6 +59447,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorGitTemplateSp
58547
59447
  suggest = "common_annotations"
58548
59448
  elif key == "commonLabels":
58549
59449
  suggest = "common_labels"
59450
+ elif key == "forceCommonAnnotations":
59451
+ suggest = "force_common_annotations"
59452
+ elif key == "forceCommonLabels":
59453
+ suggest = "force_common_labels"
58550
59454
  elif key == "namePrefix":
58551
59455
  suggest = "name_prefix"
58552
59456
  elif key == "nameSuffix":
@@ -58566,6 +59470,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorGitTemplateSp
58566
59470
  def __init__(__self__, *,
58567
59471
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
58568
59472
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
59473
+ force_common_annotations: Optional[_builtins.bool] = None,
59474
+ force_common_labels: Optional[_builtins.bool] = None,
58569
59475
  images: Optional[Sequence[_builtins.str]] = None,
58570
59476
  name_prefix: Optional[_builtins.str] = None,
58571
59477
  name_suffix: Optional[_builtins.str] = None,
@@ -58573,6 +59479,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorGitTemplateSp
58573
59479
  """
58574
59480
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
58575
59481
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
59482
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
59483
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
58576
59484
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
58577
59485
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
58578
59486
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -58582,6 +59490,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorGitTemplateSp
58582
59490
  pulumi.set(__self__, "common_annotations", common_annotations)
58583
59491
  if common_labels is not None:
58584
59492
  pulumi.set(__self__, "common_labels", common_labels)
59493
+ if force_common_annotations is not None:
59494
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
59495
+ if force_common_labels is not None:
59496
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
58585
59497
  if images is not None:
58586
59498
  pulumi.set(__self__, "images", images)
58587
59499
  if name_prefix is not None:
@@ -58607,6 +59519,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorGitTemplateSp
58607
59519
  """
58608
59520
  return pulumi.get(self, "common_labels")
58609
59521
 
59522
+ @_builtins.property
59523
+ @pulumi.getter(name="forceCommonAnnotations")
59524
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
59525
+ """
59526
+ Indicates if to force applying common annotations to resources for kustomize apps.
59527
+ """
59528
+ return pulumi.get(self, "force_common_annotations")
59529
+
59530
+ @_builtins.property
59531
+ @pulumi.getter(name="forceCommonLabels")
59532
+ def force_common_labels(self) -> Optional[_builtins.bool]:
59533
+ """
59534
+ Indicates if to force apply common labels to resources for kustomize apps.
59535
+ """
59536
+ return pulumi.get(self, "force_common_labels")
59537
+
58610
59538
  @_builtins.property
58611
59539
  @pulumi.getter
58612
59540
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -59947,6 +60875,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorListTemplateS
59947
60875
  suggest = "common_annotations"
59948
60876
  elif key == "commonLabels":
59949
60877
  suggest = "common_labels"
60878
+ elif key == "forceCommonAnnotations":
60879
+ suggest = "force_common_annotations"
60880
+ elif key == "forceCommonLabels":
60881
+ suggest = "force_common_labels"
59950
60882
  elif key == "namePrefix":
59951
60883
  suggest = "name_prefix"
59952
60884
  elif key == "nameSuffix":
@@ -59966,6 +60898,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorListTemplateS
59966
60898
  def __init__(__self__, *,
59967
60899
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
59968
60900
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
60901
+ force_common_annotations: Optional[_builtins.bool] = None,
60902
+ force_common_labels: Optional[_builtins.bool] = None,
59969
60903
  images: Optional[Sequence[_builtins.str]] = None,
59970
60904
  name_prefix: Optional[_builtins.str] = None,
59971
60905
  name_suffix: Optional[_builtins.str] = None,
@@ -59973,6 +60907,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorListTemplateS
59973
60907
  """
59974
60908
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
59975
60909
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
60910
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
60911
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
59976
60912
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
59977
60913
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
59978
60914
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -59982,6 +60918,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorListTemplateS
59982
60918
  pulumi.set(__self__, "common_annotations", common_annotations)
59983
60919
  if common_labels is not None:
59984
60920
  pulumi.set(__self__, "common_labels", common_labels)
60921
+ if force_common_annotations is not None:
60922
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
60923
+ if force_common_labels is not None:
60924
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
59985
60925
  if images is not None:
59986
60926
  pulumi.set(__self__, "images", images)
59987
60927
  if name_prefix is not None:
@@ -60007,6 +60947,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorListTemplateS
60007
60947
  """
60008
60948
  return pulumi.get(self, "common_labels")
60009
60949
 
60950
+ @_builtins.property
60951
+ @pulumi.getter(name="forceCommonAnnotations")
60952
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
60953
+ """
60954
+ Indicates if to force applying common annotations to resources for kustomize apps.
60955
+ """
60956
+ return pulumi.get(self, "force_common_annotations")
60957
+
60958
+ @_builtins.property
60959
+ @pulumi.getter(name="forceCommonLabels")
60960
+ def force_common_labels(self) -> Optional[_builtins.bool]:
60961
+ """
60962
+ Indicates if to force apply common labels to resources for kustomize apps.
60963
+ """
60964
+ return pulumi.get(self, "force_common_labels")
60965
+
60010
60966
  @_builtins.property
60011
60967
  @pulumi.getter
60012
60968
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -61705,6 +62661,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
61705
62661
  suggest = "common_annotations"
61706
62662
  elif key == "commonLabels":
61707
62663
  suggest = "common_labels"
62664
+ elif key == "forceCommonAnnotations":
62665
+ suggest = "force_common_annotations"
62666
+ elif key == "forceCommonLabels":
62667
+ suggest = "force_common_labels"
61708
62668
  elif key == "namePrefix":
61709
62669
  suggest = "name_prefix"
61710
62670
  elif key == "nameSuffix":
@@ -61724,6 +62684,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
61724
62684
  def __init__(__self__, *,
61725
62685
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
61726
62686
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
62687
+ force_common_annotations: Optional[_builtins.bool] = None,
62688
+ force_common_labels: Optional[_builtins.bool] = None,
61727
62689
  images: Optional[Sequence[_builtins.str]] = None,
61728
62690
  name_prefix: Optional[_builtins.str] = None,
61729
62691
  name_suffix: Optional[_builtins.str] = None,
@@ -61731,6 +62693,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
61731
62693
  """
61732
62694
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
61733
62695
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
62696
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
62697
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
61734
62698
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
61735
62699
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
61736
62700
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -61740,6 +62704,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
61740
62704
  pulumi.set(__self__, "common_annotations", common_annotations)
61741
62705
  if common_labels is not None:
61742
62706
  pulumi.set(__self__, "common_labels", common_labels)
62707
+ if force_common_annotations is not None:
62708
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
62709
+ if force_common_labels is not None:
62710
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
61743
62711
  if images is not None:
61744
62712
  pulumi.set(__self__, "images", images)
61745
62713
  if name_prefix is not None:
@@ -61765,6 +62733,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
61765
62733
  """
61766
62734
  return pulumi.get(self, "common_labels")
61767
62735
 
62736
+ @_builtins.property
62737
+ @pulumi.getter(name="forceCommonAnnotations")
62738
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
62739
+ """
62740
+ Indicates if to force applying common annotations to resources for kustomize apps.
62741
+ """
62742
+ return pulumi.get(self, "force_common_annotations")
62743
+
62744
+ @_builtins.property
62745
+ @pulumi.getter(name="forceCommonLabels")
62746
+ def force_common_labels(self) -> Optional[_builtins.bool]:
62747
+ """
62748
+ Indicates if to force apply common labels to resources for kustomize apps.
62749
+ """
62750
+ return pulumi.get(self, "force_common_labels")
62751
+
61768
62752
  @_builtins.property
61769
62753
  @pulumi.getter
61770
62754
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -63168,6 +64152,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
63168
64152
  suggest = "common_annotations"
63169
64153
  elif key == "commonLabels":
63170
64154
  suggest = "common_labels"
64155
+ elif key == "forceCommonAnnotations":
64156
+ suggest = "force_common_annotations"
64157
+ elif key == "forceCommonLabels":
64158
+ suggest = "force_common_labels"
63171
64159
  elif key == "namePrefix":
63172
64160
  suggest = "name_prefix"
63173
64161
  elif key == "nameSuffix":
@@ -63187,6 +64175,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
63187
64175
  def __init__(__self__, *,
63188
64176
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
63189
64177
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
64178
+ force_common_annotations: Optional[_builtins.bool] = None,
64179
+ force_common_labels: Optional[_builtins.bool] = None,
63190
64180
  images: Optional[Sequence[_builtins.str]] = None,
63191
64181
  name_prefix: Optional[_builtins.str] = None,
63192
64182
  name_suffix: Optional[_builtins.str] = None,
@@ -63194,6 +64184,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
63194
64184
  """
63195
64185
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
63196
64186
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
64187
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
64188
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
63197
64189
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
63198
64190
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
63199
64191
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -63203,6 +64195,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
63203
64195
  pulumi.set(__self__, "common_annotations", common_annotations)
63204
64196
  if common_labels is not None:
63205
64197
  pulumi.set(__self__, "common_labels", common_labels)
64198
+ if force_common_annotations is not None:
64199
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
64200
+ if force_common_labels is not None:
64201
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
63206
64202
  if images is not None:
63207
64203
  pulumi.set(__self__, "images", images)
63208
64204
  if name_prefix is not None:
@@ -63228,6 +64224,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
63228
64224
  """
63229
64225
  return pulumi.get(self, "common_labels")
63230
64226
 
64227
+ @_builtins.property
64228
+ @pulumi.getter(name="forceCommonAnnotations")
64229
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
64230
+ """
64231
+ Indicates if to force applying common annotations to resources for kustomize apps.
64232
+ """
64233
+ return pulumi.get(self, "force_common_annotations")
64234
+
64235
+ @_builtins.property
64236
+ @pulumi.getter(name="forceCommonLabels")
64237
+ def force_common_labels(self) -> Optional[_builtins.bool]:
64238
+ """
64239
+ Indicates if to force apply common labels to resources for kustomize apps.
64240
+ """
64241
+ return pulumi.get(self, "force_common_labels")
64242
+
63231
64243
  @_builtins.property
63232
64244
  @pulumi.getter
63233
64245
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -64683,6 +65695,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
64683
65695
  suggest = "common_annotations"
64684
65696
  elif key == "commonLabels":
64685
65697
  suggest = "common_labels"
65698
+ elif key == "forceCommonAnnotations":
65699
+ suggest = "force_common_annotations"
65700
+ elif key == "forceCommonLabels":
65701
+ suggest = "force_common_labels"
64686
65702
  elif key == "namePrefix":
64687
65703
  suggest = "name_prefix"
64688
65704
  elif key == "nameSuffix":
@@ -64702,6 +65718,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
64702
65718
  def __init__(__self__, *,
64703
65719
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
64704
65720
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
65721
+ force_common_annotations: Optional[_builtins.bool] = None,
65722
+ force_common_labels: Optional[_builtins.bool] = None,
64705
65723
  images: Optional[Sequence[_builtins.str]] = None,
64706
65724
  name_prefix: Optional[_builtins.str] = None,
64707
65725
  name_suffix: Optional[_builtins.str] = None,
@@ -64709,6 +65727,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
64709
65727
  """
64710
65728
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
64711
65729
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
65730
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
65731
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
64712
65732
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
64713
65733
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
64714
65734
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -64718,6 +65738,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
64718
65738
  pulumi.set(__self__, "common_annotations", common_annotations)
64719
65739
  if common_labels is not None:
64720
65740
  pulumi.set(__self__, "common_labels", common_labels)
65741
+ if force_common_annotations is not None:
65742
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
65743
+ if force_common_labels is not None:
65744
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
64721
65745
  if images is not None:
64722
65746
  pulumi.set(__self__, "images", images)
64723
65747
  if name_prefix is not None:
@@ -64743,6 +65767,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
64743
65767
  """
64744
65768
  return pulumi.get(self, "common_labels")
64745
65769
 
65770
+ @_builtins.property
65771
+ @pulumi.getter(name="forceCommonAnnotations")
65772
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
65773
+ """
65774
+ Indicates if to force applying common annotations to resources for kustomize apps.
65775
+ """
65776
+ return pulumi.get(self, "force_common_annotations")
65777
+
65778
+ @_builtins.property
65779
+ @pulumi.getter(name="forceCommonLabels")
65780
+ def force_common_labels(self) -> Optional[_builtins.bool]:
65781
+ """
65782
+ Indicates if to force apply common labels to resources for kustomize apps.
65783
+ """
65784
+ return pulumi.get(self, "force_common_labels")
65785
+
64746
65786
  @_builtins.property
64747
65787
  @pulumi.getter
64748
65788
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -66083,6 +67123,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
66083
67123
  suggest = "common_annotations"
66084
67124
  elif key == "commonLabels":
66085
67125
  suggest = "common_labels"
67126
+ elif key == "forceCommonAnnotations":
67127
+ suggest = "force_common_annotations"
67128
+ elif key == "forceCommonLabels":
67129
+ suggest = "force_common_labels"
66086
67130
  elif key == "namePrefix":
66087
67131
  suggest = "name_prefix"
66088
67132
  elif key == "nameSuffix":
@@ -66102,6 +67146,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
66102
67146
  def __init__(__self__, *,
66103
67147
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
66104
67148
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
67149
+ force_common_annotations: Optional[_builtins.bool] = None,
67150
+ force_common_labels: Optional[_builtins.bool] = None,
66105
67151
  images: Optional[Sequence[_builtins.str]] = None,
66106
67152
  name_prefix: Optional[_builtins.str] = None,
66107
67153
  name_suffix: Optional[_builtins.str] = None,
@@ -66109,6 +67155,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
66109
67155
  """
66110
67156
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
66111
67157
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
67158
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
67159
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
66112
67160
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
66113
67161
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
66114
67162
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -66118,6 +67166,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
66118
67166
  pulumi.set(__self__, "common_annotations", common_annotations)
66119
67167
  if common_labels is not None:
66120
67168
  pulumi.set(__self__, "common_labels", common_labels)
67169
+ if force_common_annotations is not None:
67170
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
67171
+ if force_common_labels is not None:
67172
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
66121
67173
  if images is not None:
66122
67174
  pulumi.set(__self__, "images", images)
66123
67175
  if name_prefix is not None:
@@ -66143,6 +67195,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
66143
67195
  """
66144
67196
  return pulumi.get(self, "common_labels")
66145
67197
 
67198
+ @_builtins.property
67199
+ @pulumi.getter(name="forceCommonAnnotations")
67200
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
67201
+ """
67202
+ Indicates if to force applying common annotations to resources for kustomize apps.
67203
+ """
67204
+ return pulumi.get(self, "force_common_annotations")
67205
+
67206
+ @_builtins.property
67207
+ @pulumi.getter(name="forceCommonLabels")
67208
+ def force_common_labels(self) -> Optional[_builtins.bool]:
67209
+ """
67210
+ Indicates if to force apply common labels to resources for kustomize apps.
67211
+ """
67212
+ return pulumi.get(self, "force_common_labels")
67213
+
66146
67214
  @_builtins.property
66147
67215
  @pulumi.getter
66148
67216
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -68162,6 +69230,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
68162
69230
  suggest = "common_annotations"
68163
69231
  elif key == "commonLabels":
68164
69232
  suggest = "common_labels"
69233
+ elif key == "forceCommonAnnotations":
69234
+ suggest = "force_common_annotations"
69235
+ elif key == "forceCommonLabels":
69236
+ suggest = "force_common_labels"
68165
69237
  elif key == "namePrefix":
68166
69238
  suggest = "name_prefix"
68167
69239
  elif key == "nameSuffix":
@@ -68181,6 +69253,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
68181
69253
  def __init__(__self__, *,
68182
69254
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
68183
69255
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
69256
+ force_common_annotations: Optional[_builtins.bool] = None,
69257
+ force_common_labels: Optional[_builtins.bool] = None,
68184
69258
  images: Optional[Sequence[_builtins.str]] = None,
68185
69259
  name_prefix: Optional[_builtins.str] = None,
68186
69260
  name_suffix: Optional[_builtins.str] = None,
@@ -68188,6 +69262,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
68188
69262
  """
68189
69263
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
68190
69264
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
69265
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
69266
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
68191
69267
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
68192
69268
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
68193
69269
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -68197,6 +69273,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
68197
69273
  pulumi.set(__self__, "common_annotations", common_annotations)
68198
69274
  if common_labels is not None:
68199
69275
  pulumi.set(__self__, "common_labels", common_labels)
69276
+ if force_common_annotations is not None:
69277
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
69278
+ if force_common_labels is not None:
69279
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
68200
69280
  if images is not None:
68201
69281
  pulumi.set(__self__, "images", images)
68202
69282
  if name_prefix is not None:
@@ -68222,6 +69302,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
68222
69302
  """
68223
69303
  return pulumi.get(self, "common_labels")
68224
69304
 
69305
+ @_builtins.property
69306
+ @pulumi.getter(name="forceCommonAnnotations")
69307
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
69308
+ """
69309
+ Indicates if to force applying common annotations to resources for kustomize apps.
69310
+ """
69311
+ return pulumi.get(self, "force_common_annotations")
69312
+
69313
+ @_builtins.property
69314
+ @pulumi.getter(name="forceCommonLabels")
69315
+ def force_common_labels(self) -> Optional[_builtins.bool]:
69316
+ """
69317
+ Indicates if to force apply common labels to resources for kustomize apps.
69318
+ """
69319
+ return pulumi.get(self, "force_common_labels")
69320
+
68225
69321
  @_builtins.property
68226
69322
  @pulumi.getter
68227
69323
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -70589,6 +71685,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
70589
71685
  suggest = "common_annotations"
70590
71686
  elif key == "commonLabels":
70591
71687
  suggest = "common_labels"
71688
+ elif key == "forceCommonAnnotations":
71689
+ suggest = "force_common_annotations"
71690
+ elif key == "forceCommonLabels":
71691
+ suggest = "force_common_labels"
70592
71692
  elif key == "namePrefix":
70593
71693
  suggest = "name_prefix"
70594
71694
  elif key == "nameSuffix":
@@ -70608,6 +71708,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
70608
71708
  def __init__(__self__, *,
70609
71709
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
70610
71710
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
71711
+ force_common_annotations: Optional[_builtins.bool] = None,
71712
+ force_common_labels: Optional[_builtins.bool] = None,
70611
71713
  images: Optional[Sequence[_builtins.str]] = None,
70612
71714
  name_prefix: Optional[_builtins.str] = None,
70613
71715
  name_suffix: Optional[_builtins.str] = None,
@@ -70615,6 +71717,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
70615
71717
  """
70616
71718
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
70617
71719
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
71720
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
71721
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
70618
71722
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
70619
71723
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
70620
71724
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -70624,6 +71728,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
70624
71728
  pulumi.set(__self__, "common_annotations", common_annotations)
70625
71729
  if common_labels is not None:
70626
71730
  pulumi.set(__self__, "common_labels", common_labels)
71731
+ if force_common_annotations is not None:
71732
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
71733
+ if force_common_labels is not None:
71734
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
70627
71735
  if images is not None:
70628
71736
  pulumi.set(__self__, "images", images)
70629
71737
  if name_prefix is not None:
@@ -70649,6 +71757,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
70649
71757
  """
70650
71758
  return pulumi.get(self, "common_labels")
70651
71759
 
71760
+ @_builtins.property
71761
+ @pulumi.getter(name="forceCommonAnnotations")
71762
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
71763
+ """
71764
+ Indicates if to force applying common annotations to resources for kustomize apps.
71765
+ """
71766
+ return pulumi.get(self, "force_common_annotations")
71767
+
71768
+ @_builtins.property
71769
+ @pulumi.getter(name="forceCommonLabels")
71770
+ def force_common_labels(self) -> Optional[_builtins.bool]:
71771
+ """
71772
+ Indicates if to force apply common labels to resources for kustomize apps.
71773
+ """
71774
+ return pulumi.get(self, "force_common_labels")
71775
+
70652
71776
  @_builtins.property
70653
71777
  @pulumi.getter
70654
71778
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -72052,6 +73176,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixTemplat
72052
73176
  suggest = "common_annotations"
72053
73177
  elif key == "commonLabels":
72054
73178
  suggest = "common_labels"
73179
+ elif key == "forceCommonAnnotations":
73180
+ suggest = "force_common_annotations"
73181
+ elif key == "forceCommonLabels":
73182
+ suggest = "force_common_labels"
72055
73183
  elif key == "namePrefix":
72056
73184
  suggest = "name_prefix"
72057
73185
  elif key == "nameSuffix":
@@ -72071,6 +73199,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixTemplat
72071
73199
  def __init__(__self__, *,
72072
73200
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
72073
73201
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
73202
+ force_common_annotations: Optional[_builtins.bool] = None,
73203
+ force_common_labels: Optional[_builtins.bool] = None,
72074
73204
  images: Optional[Sequence[_builtins.str]] = None,
72075
73205
  name_prefix: Optional[_builtins.str] = None,
72076
73206
  name_suffix: Optional[_builtins.str] = None,
@@ -72078,6 +73208,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixTemplat
72078
73208
  """
72079
73209
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
72080
73210
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
73211
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
73212
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
72081
73213
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
72082
73214
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
72083
73215
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -72087,6 +73219,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixTemplat
72087
73219
  pulumi.set(__self__, "common_annotations", common_annotations)
72088
73220
  if common_labels is not None:
72089
73221
  pulumi.set(__self__, "common_labels", common_labels)
73222
+ if force_common_annotations is not None:
73223
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
73224
+ if force_common_labels is not None:
73225
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
72090
73226
  if images is not None:
72091
73227
  pulumi.set(__self__, "images", images)
72092
73228
  if name_prefix is not None:
@@ -72112,6 +73248,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixTemplat
72112
73248
  """
72113
73249
  return pulumi.get(self, "common_labels")
72114
73250
 
73251
+ @_builtins.property
73252
+ @pulumi.getter(name="forceCommonAnnotations")
73253
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
73254
+ """
73255
+ Indicates if to force applying common annotations to resources for kustomize apps.
73256
+ """
73257
+ return pulumi.get(self, "force_common_annotations")
73258
+
73259
+ @_builtins.property
73260
+ @pulumi.getter(name="forceCommonLabels")
73261
+ def force_common_labels(self) -> Optional[_builtins.bool]:
73262
+ """
73263
+ Indicates if to force apply common labels to resources for kustomize apps.
73264
+ """
73265
+ return pulumi.get(self, "force_common_labels")
73266
+
72115
73267
  @_builtins.property
72116
73268
  @pulumi.getter
72117
73269
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -73838,6 +74990,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
73838
74990
  suggest = "common_annotations"
73839
74991
  elif key == "commonLabels":
73840
74992
  suggest = "common_labels"
74993
+ elif key == "forceCommonAnnotations":
74994
+ suggest = "force_common_annotations"
74995
+ elif key == "forceCommonLabels":
74996
+ suggest = "force_common_labels"
73841
74997
  elif key == "namePrefix":
73842
74998
  suggest = "name_prefix"
73843
74999
  elif key == "nameSuffix":
@@ -73857,6 +75013,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
73857
75013
  def __init__(__self__, *,
73858
75014
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
73859
75015
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
75016
+ force_common_annotations: Optional[_builtins.bool] = None,
75017
+ force_common_labels: Optional[_builtins.bool] = None,
73860
75018
  images: Optional[Sequence[_builtins.str]] = None,
73861
75019
  name_prefix: Optional[_builtins.str] = None,
73862
75020
  name_suffix: Optional[_builtins.str] = None,
@@ -73864,6 +75022,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
73864
75022
  """
73865
75023
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
73866
75024
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
75025
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
75026
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
73867
75027
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
73868
75028
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
73869
75029
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -73873,6 +75033,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
73873
75033
  pulumi.set(__self__, "common_annotations", common_annotations)
73874
75034
  if common_labels is not None:
73875
75035
  pulumi.set(__self__, "common_labels", common_labels)
75036
+ if force_common_annotations is not None:
75037
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
75038
+ if force_common_labels is not None:
75039
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
73876
75040
  if images is not None:
73877
75041
  pulumi.set(__self__, "images", images)
73878
75042
  if name_prefix is not None:
@@ -73898,6 +75062,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
73898
75062
  """
73899
75063
  return pulumi.get(self, "common_labels")
73900
75064
 
75065
+ @_builtins.property
75066
+ @pulumi.getter(name="forceCommonAnnotations")
75067
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
75068
+ """
75069
+ Indicates if to force applying common annotations to resources for kustomize apps.
75070
+ """
75071
+ return pulumi.get(self, "force_common_annotations")
75072
+
75073
+ @_builtins.property
75074
+ @pulumi.getter(name="forceCommonLabels")
75075
+ def force_common_labels(self) -> Optional[_builtins.bool]:
75076
+ """
75077
+ Indicates if to force apply common labels to resources for kustomize apps.
75078
+ """
75079
+ return pulumi.get(self, "force_common_labels")
75080
+
73901
75081
  @_builtins.property
73902
75082
  @pulumi.getter
73903
75083
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -75301,6 +76481,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
75301
76481
  suggest = "common_annotations"
75302
76482
  elif key == "commonLabels":
75303
76483
  suggest = "common_labels"
76484
+ elif key == "forceCommonAnnotations":
76485
+ suggest = "force_common_annotations"
76486
+ elif key == "forceCommonLabels":
76487
+ suggest = "force_common_labels"
75304
76488
  elif key == "namePrefix":
75305
76489
  suggest = "name_prefix"
75306
76490
  elif key == "nameSuffix":
@@ -75320,6 +76504,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
75320
76504
  def __init__(__self__, *,
75321
76505
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
75322
76506
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
76507
+ force_common_annotations: Optional[_builtins.bool] = None,
76508
+ force_common_labels: Optional[_builtins.bool] = None,
75323
76509
  images: Optional[Sequence[_builtins.str]] = None,
75324
76510
  name_prefix: Optional[_builtins.str] = None,
75325
76511
  name_suffix: Optional[_builtins.str] = None,
@@ -75327,6 +76513,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
75327
76513
  """
75328
76514
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
75329
76515
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
76516
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
76517
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
75330
76518
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
75331
76519
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
75332
76520
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -75336,6 +76524,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
75336
76524
  pulumi.set(__self__, "common_annotations", common_annotations)
75337
76525
  if common_labels is not None:
75338
76526
  pulumi.set(__self__, "common_labels", common_labels)
76527
+ if force_common_annotations is not None:
76528
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
76529
+ if force_common_labels is not None:
76530
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
75339
76531
  if images is not None:
75340
76532
  pulumi.set(__self__, "images", images)
75341
76533
  if name_prefix is not None:
@@ -75361,6 +76553,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
75361
76553
  """
75362
76554
  return pulumi.get(self, "common_labels")
75363
76555
 
76556
+ @_builtins.property
76557
+ @pulumi.getter(name="forceCommonAnnotations")
76558
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
76559
+ """
76560
+ Indicates if to force applying common annotations to resources for kustomize apps.
76561
+ """
76562
+ return pulumi.get(self, "force_common_annotations")
76563
+
76564
+ @_builtins.property
76565
+ @pulumi.getter(name="forceCommonLabels")
76566
+ def force_common_labels(self) -> Optional[_builtins.bool]:
76567
+ """
76568
+ Indicates if to force apply common labels to resources for kustomize apps.
76569
+ """
76570
+ return pulumi.get(self, "force_common_labels")
76571
+
75364
76572
  @_builtins.property
75365
76573
  @pulumi.getter
75366
76574
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -76816,6 +78024,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
76816
78024
  suggest = "common_annotations"
76817
78025
  elif key == "commonLabels":
76818
78026
  suggest = "common_labels"
78027
+ elif key == "forceCommonAnnotations":
78028
+ suggest = "force_common_annotations"
78029
+ elif key == "forceCommonLabels":
78030
+ suggest = "force_common_labels"
76819
78031
  elif key == "namePrefix":
76820
78032
  suggest = "name_prefix"
76821
78033
  elif key == "nameSuffix":
@@ -76835,6 +78047,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
76835
78047
  def __init__(__self__, *,
76836
78048
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
76837
78049
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
78050
+ force_common_annotations: Optional[_builtins.bool] = None,
78051
+ force_common_labels: Optional[_builtins.bool] = None,
76838
78052
  images: Optional[Sequence[_builtins.str]] = None,
76839
78053
  name_prefix: Optional[_builtins.str] = None,
76840
78054
  name_suffix: Optional[_builtins.str] = None,
@@ -76842,6 +78056,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
76842
78056
  """
76843
78057
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
76844
78058
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
78059
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
78060
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
76845
78061
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
76846
78062
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
76847
78063
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -76851,6 +78067,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
76851
78067
  pulumi.set(__self__, "common_annotations", common_annotations)
76852
78068
  if common_labels is not None:
76853
78069
  pulumi.set(__self__, "common_labels", common_labels)
78070
+ if force_common_annotations is not None:
78071
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
78072
+ if force_common_labels is not None:
78073
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
76854
78074
  if images is not None:
76855
78075
  pulumi.set(__self__, "images", images)
76856
78076
  if name_prefix is not None:
@@ -76876,6 +78096,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
76876
78096
  """
76877
78097
  return pulumi.get(self, "common_labels")
76878
78098
 
78099
+ @_builtins.property
78100
+ @pulumi.getter(name="forceCommonAnnotations")
78101
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
78102
+ """
78103
+ Indicates if to force applying common annotations to resources for kustomize apps.
78104
+ """
78105
+ return pulumi.get(self, "force_common_annotations")
78106
+
78107
+ @_builtins.property
78108
+ @pulumi.getter(name="forceCommonLabels")
78109
+ def force_common_labels(self) -> Optional[_builtins.bool]:
78110
+ """
78111
+ Indicates if to force apply common labels to resources for kustomize apps.
78112
+ """
78113
+ return pulumi.get(self, "force_common_labels")
78114
+
76879
78115
  @_builtins.property
76880
78116
  @pulumi.getter
76881
78117
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -78216,6 +79452,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
78216
79452
  suggest = "common_annotations"
78217
79453
  elif key == "commonLabels":
78218
79454
  suggest = "common_labels"
79455
+ elif key == "forceCommonAnnotations":
79456
+ suggest = "force_common_annotations"
79457
+ elif key == "forceCommonLabels":
79458
+ suggest = "force_common_labels"
78219
79459
  elif key == "namePrefix":
78220
79460
  suggest = "name_prefix"
78221
79461
  elif key == "nameSuffix":
@@ -78235,6 +79475,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
78235
79475
  def __init__(__self__, *,
78236
79476
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
78237
79477
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
79478
+ force_common_annotations: Optional[_builtins.bool] = None,
79479
+ force_common_labels: Optional[_builtins.bool] = None,
78238
79480
  images: Optional[Sequence[_builtins.str]] = None,
78239
79481
  name_prefix: Optional[_builtins.str] = None,
78240
79482
  name_suffix: Optional[_builtins.str] = None,
@@ -78242,6 +79484,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
78242
79484
  """
78243
79485
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
78244
79486
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
79487
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
79488
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
78245
79489
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
78246
79490
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
78247
79491
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -78251,6 +79495,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
78251
79495
  pulumi.set(__self__, "common_annotations", common_annotations)
78252
79496
  if common_labels is not None:
78253
79497
  pulumi.set(__self__, "common_labels", common_labels)
79498
+ if force_common_annotations is not None:
79499
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
79500
+ if force_common_labels is not None:
79501
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
78254
79502
  if images is not None:
78255
79503
  pulumi.set(__self__, "images", images)
78256
79504
  if name_prefix is not None:
@@ -78276,6 +79524,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
78276
79524
  """
78277
79525
  return pulumi.get(self, "common_labels")
78278
79526
 
79527
+ @_builtins.property
79528
+ @pulumi.getter(name="forceCommonAnnotations")
79529
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
79530
+ """
79531
+ Indicates if to force applying common annotations to resources for kustomize apps.
79532
+ """
79533
+ return pulumi.get(self, "force_common_annotations")
79534
+
79535
+ @_builtins.property
79536
+ @pulumi.getter(name="forceCommonLabels")
79537
+ def force_common_labels(self) -> Optional[_builtins.bool]:
79538
+ """
79539
+ Indicates if to force apply common labels to resources for kustomize apps.
79540
+ """
79541
+ return pulumi.get(self, "force_common_labels")
79542
+
78279
79543
  @_builtins.property
78280
79544
  @pulumi.getter
78281
79545
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -80295,6 +81559,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
80295
81559
  suggest = "common_annotations"
80296
81560
  elif key == "commonLabels":
80297
81561
  suggest = "common_labels"
81562
+ elif key == "forceCommonAnnotations":
81563
+ suggest = "force_common_annotations"
81564
+ elif key == "forceCommonLabels":
81565
+ suggest = "force_common_labels"
80298
81566
  elif key == "namePrefix":
80299
81567
  suggest = "name_prefix"
80300
81568
  elif key == "nameSuffix":
@@ -80314,6 +81582,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
80314
81582
  def __init__(__self__, *,
80315
81583
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
80316
81584
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
81585
+ force_common_annotations: Optional[_builtins.bool] = None,
81586
+ force_common_labels: Optional[_builtins.bool] = None,
80317
81587
  images: Optional[Sequence[_builtins.str]] = None,
80318
81588
  name_prefix: Optional[_builtins.str] = None,
80319
81589
  name_suffix: Optional[_builtins.str] = None,
@@ -80321,6 +81591,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
80321
81591
  """
80322
81592
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
80323
81593
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
81594
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
81595
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
80324
81596
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
80325
81597
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
80326
81598
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -80330,6 +81602,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
80330
81602
  pulumi.set(__self__, "common_annotations", common_annotations)
80331
81603
  if common_labels is not None:
80332
81604
  pulumi.set(__self__, "common_labels", common_labels)
81605
+ if force_common_annotations is not None:
81606
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
81607
+ if force_common_labels is not None:
81608
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
80333
81609
  if images is not None:
80334
81610
  pulumi.set(__self__, "images", images)
80335
81611
  if name_prefix is not None:
@@ -80355,6 +81631,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
80355
81631
  """
80356
81632
  return pulumi.get(self, "common_labels")
80357
81633
 
81634
+ @_builtins.property
81635
+ @pulumi.getter(name="forceCommonAnnotations")
81636
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
81637
+ """
81638
+ Indicates if to force applying common annotations to resources for kustomize apps.
81639
+ """
81640
+ return pulumi.get(self, "force_common_annotations")
81641
+
81642
+ @_builtins.property
81643
+ @pulumi.getter(name="forceCommonLabels")
81644
+ def force_common_labels(self) -> Optional[_builtins.bool]:
81645
+ """
81646
+ Indicates if to force apply common labels to resources for kustomize apps.
81647
+ """
81648
+ return pulumi.get(self, "force_common_labels")
81649
+
80358
81650
  @_builtins.property
80359
81651
  @pulumi.getter
80360
81652
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -82722,6 +84014,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
82722
84014
  suggest = "common_annotations"
82723
84015
  elif key == "commonLabels":
82724
84016
  suggest = "common_labels"
84017
+ elif key == "forceCommonAnnotations":
84018
+ suggest = "force_common_annotations"
84019
+ elif key == "forceCommonLabels":
84020
+ suggest = "force_common_labels"
82725
84021
  elif key == "namePrefix":
82726
84022
  suggest = "name_prefix"
82727
84023
  elif key == "nameSuffix":
@@ -82741,6 +84037,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
82741
84037
  def __init__(__self__, *,
82742
84038
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
82743
84039
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
84040
+ force_common_annotations: Optional[_builtins.bool] = None,
84041
+ force_common_labels: Optional[_builtins.bool] = None,
82744
84042
  images: Optional[Sequence[_builtins.str]] = None,
82745
84043
  name_prefix: Optional[_builtins.str] = None,
82746
84044
  name_suffix: Optional[_builtins.str] = None,
@@ -82748,6 +84046,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
82748
84046
  """
82749
84047
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
82750
84048
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
84049
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
84050
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
82751
84051
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
82752
84052
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
82753
84053
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -82757,6 +84057,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
82757
84057
  pulumi.set(__self__, "common_annotations", common_annotations)
82758
84058
  if common_labels is not None:
82759
84059
  pulumi.set(__self__, "common_labels", common_labels)
84060
+ if force_common_annotations is not None:
84061
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
84062
+ if force_common_labels is not None:
84063
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
82760
84064
  if images is not None:
82761
84065
  pulumi.set(__self__, "images", images)
82762
84066
  if name_prefix is not None:
@@ -82782,6 +84086,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
82782
84086
  """
82783
84087
  return pulumi.get(self, "common_labels")
82784
84088
 
84089
+ @_builtins.property
84090
+ @pulumi.getter(name="forceCommonAnnotations")
84091
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
84092
+ """
84093
+ Indicates if to force applying common annotations to resources for kustomize apps.
84094
+ """
84095
+ return pulumi.get(self, "force_common_annotations")
84096
+
84097
+ @_builtins.property
84098
+ @pulumi.getter(name="forceCommonLabels")
84099
+ def force_common_labels(self) -> Optional[_builtins.bool]:
84100
+ """
84101
+ Indicates if to force apply common labels to resources for kustomize apps.
84102
+ """
84103
+ return pulumi.get(self, "force_common_labels")
84104
+
82785
84105
  @_builtins.property
82786
84106
  @pulumi.getter
82787
84107
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -84185,6 +85505,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeTemplate
84185
85505
  suggest = "common_annotations"
84186
85506
  elif key == "commonLabels":
84187
85507
  suggest = "common_labels"
85508
+ elif key == "forceCommonAnnotations":
85509
+ suggest = "force_common_annotations"
85510
+ elif key == "forceCommonLabels":
85511
+ suggest = "force_common_labels"
84188
85512
  elif key == "namePrefix":
84189
85513
  suggest = "name_prefix"
84190
85514
  elif key == "nameSuffix":
@@ -84204,6 +85528,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeTemplate
84204
85528
  def __init__(__self__, *,
84205
85529
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
84206
85530
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
85531
+ force_common_annotations: Optional[_builtins.bool] = None,
85532
+ force_common_labels: Optional[_builtins.bool] = None,
84207
85533
  images: Optional[Sequence[_builtins.str]] = None,
84208
85534
  name_prefix: Optional[_builtins.str] = None,
84209
85535
  name_suffix: Optional[_builtins.str] = None,
@@ -84211,6 +85537,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeTemplate
84211
85537
  """
84212
85538
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
84213
85539
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
85540
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
85541
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
84214
85542
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
84215
85543
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
84216
85544
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -84220,6 +85548,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeTemplate
84220
85548
  pulumi.set(__self__, "common_annotations", common_annotations)
84221
85549
  if common_labels is not None:
84222
85550
  pulumi.set(__self__, "common_labels", common_labels)
85551
+ if force_common_annotations is not None:
85552
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
85553
+ if force_common_labels is not None:
85554
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
84223
85555
  if images is not None:
84224
85556
  pulumi.set(__self__, "images", images)
84225
85557
  if name_prefix is not None:
@@ -84245,6 +85577,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeTemplate
84245
85577
  """
84246
85578
  return pulumi.get(self, "common_labels")
84247
85579
 
85580
+ @_builtins.property
85581
+ @pulumi.getter(name="forceCommonAnnotations")
85582
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
85583
+ """
85584
+ Indicates if to force applying common annotations to resources for kustomize apps.
85585
+ """
85586
+ return pulumi.get(self, "force_common_annotations")
85587
+
85588
+ @_builtins.property
85589
+ @pulumi.getter(name="forceCommonLabels")
85590
+ def force_common_labels(self) -> Optional[_builtins.bool]:
85591
+ """
85592
+ Indicates if to force apply common labels to resources for kustomize apps.
85593
+ """
85594
+ return pulumi.get(self, "force_common_labels")
85595
+
84248
85596
  @_builtins.property
84249
85597
  @pulumi.getter
84250
85598
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -86264,6 +87612,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorPullRequestTe
86264
87612
  suggest = "common_annotations"
86265
87613
  elif key == "commonLabels":
86266
87614
  suggest = "common_labels"
87615
+ elif key == "forceCommonAnnotations":
87616
+ suggest = "force_common_annotations"
87617
+ elif key == "forceCommonLabels":
87618
+ suggest = "force_common_labels"
86267
87619
  elif key == "namePrefix":
86268
87620
  suggest = "name_prefix"
86269
87621
  elif key == "nameSuffix":
@@ -86283,6 +87635,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorPullRequestTe
86283
87635
  def __init__(__self__, *,
86284
87636
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
86285
87637
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
87638
+ force_common_annotations: Optional[_builtins.bool] = None,
87639
+ force_common_labels: Optional[_builtins.bool] = None,
86286
87640
  images: Optional[Sequence[_builtins.str]] = None,
86287
87641
  name_prefix: Optional[_builtins.str] = None,
86288
87642
  name_suffix: Optional[_builtins.str] = None,
@@ -86290,6 +87644,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorPullRequestTe
86290
87644
  """
86291
87645
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
86292
87646
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
87647
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
87648
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
86293
87649
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
86294
87650
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
86295
87651
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -86299,6 +87655,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorPullRequestTe
86299
87655
  pulumi.set(__self__, "common_annotations", common_annotations)
86300
87656
  if common_labels is not None:
86301
87657
  pulumi.set(__self__, "common_labels", common_labels)
87658
+ if force_common_annotations is not None:
87659
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
87660
+ if force_common_labels is not None:
87661
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
86302
87662
  if images is not None:
86303
87663
  pulumi.set(__self__, "images", images)
86304
87664
  if name_prefix is not None:
@@ -86324,6 +87684,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorPullRequestTe
86324
87684
  """
86325
87685
  return pulumi.get(self, "common_labels")
86326
87686
 
87687
+ @_builtins.property
87688
+ @pulumi.getter(name="forceCommonAnnotations")
87689
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
87690
+ """
87691
+ Indicates if to force applying common annotations to resources for kustomize apps.
87692
+ """
87693
+ return pulumi.get(self, "force_common_annotations")
87694
+
87695
+ @_builtins.property
87696
+ @pulumi.getter(name="forceCommonLabels")
87697
+ def force_common_labels(self) -> Optional[_builtins.bool]:
87698
+ """
87699
+ Indicates if to force apply common labels to resources for kustomize apps.
87700
+ """
87701
+ return pulumi.get(self, "force_common_labels")
87702
+
86327
87703
  @_builtins.property
86328
87704
  @pulumi.getter
86329
87705
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -88691,6 +90067,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorScmProviderTe
88691
90067
  suggest = "common_annotations"
88692
90068
  elif key == "commonLabels":
88693
90069
  suggest = "common_labels"
90070
+ elif key == "forceCommonAnnotations":
90071
+ suggest = "force_common_annotations"
90072
+ elif key == "forceCommonLabels":
90073
+ suggest = "force_common_labels"
88694
90074
  elif key == "namePrefix":
88695
90075
  suggest = "name_prefix"
88696
90076
  elif key == "nameSuffix":
@@ -88710,6 +90090,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorScmProviderTe
88710
90090
  def __init__(__self__, *,
88711
90091
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
88712
90092
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
90093
+ force_common_annotations: Optional[_builtins.bool] = None,
90094
+ force_common_labels: Optional[_builtins.bool] = None,
88713
90095
  images: Optional[Sequence[_builtins.str]] = None,
88714
90096
  name_prefix: Optional[_builtins.str] = None,
88715
90097
  name_suffix: Optional[_builtins.str] = None,
@@ -88717,6 +90099,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorScmProviderTe
88717
90099
  """
88718
90100
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
88719
90101
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
90102
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
90103
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
88720
90104
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
88721
90105
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
88722
90106
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -88726,6 +90110,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorScmProviderTe
88726
90110
  pulumi.set(__self__, "common_annotations", common_annotations)
88727
90111
  if common_labels is not None:
88728
90112
  pulumi.set(__self__, "common_labels", common_labels)
90113
+ if force_common_annotations is not None:
90114
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
90115
+ if force_common_labels is not None:
90116
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
88729
90117
  if images is not None:
88730
90118
  pulumi.set(__self__, "images", images)
88731
90119
  if name_prefix is not None:
@@ -88751,6 +90139,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorScmProviderTe
88751
90139
  """
88752
90140
  return pulumi.get(self, "common_labels")
88753
90141
 
90142
+ @_builtins.property
90143
+ @pulumi.getter(name="forceCommonAnnotations")
90144
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
90145
+ """
90146
+ Indicates if to force applying common annotations to resources for kustomize apps.
90147
+ """
90148
+ return pulumi.get(self, "force_common_annotations")
90149
+
90150
+ @_builtins.property
90151
+ @pulumi.getter(name="forceCommonLabels")
90152
+ def force_common_labels(self) -> Optional[_builtins.bool]:
90153
+ """
90154
+ Indicates if to force apply common labels to resources for kustomize apps.
90155
+ """
90156
+ return pulumi.get(self, "force_common_labels")
90157
+
88754
90158
  @_builtins.property
88755
90159
  @pulumi.getter
88756
90160
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -90154,6 +91558,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeTemplateSpecSourceKust
90154
91558
  suggest = "common_annotations"
90155
91559
  elif key == "commonLabels":
90156
91560
  suggest = "common_labels"
91561
+ elif key == "forceCommonAnnotations":
91562
+ suggest = "force_common_annotations"
91563
+ elif key == "forceCommonLabels":
91564
+ suggest = "force_common_labels"
90157
91565
  elif key == "namePrefix":
90158
91566
  suggest = "name_prefix"
90159
91567
  elif key == "nameSuffix":
@@ -90173,6 +91581,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeTemplateSpecSourceKust
90173
91581
  def __init__(__self__, *,
90174
91582
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
90175
91583
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
91584
+ force_common_annotations: Optional[_builtins.bool] = None,
91585
+ force_common_labels: Optional[_builtins.bool] = None,
90176
91586
  images: Optional[Sequence[_builtins.str]] = None,
90177
91587
  name_prefix: Optional[_builtins.str] = None,
90178
91588
  name_suffix: Optional[_builtins.str] = None,
@@ -90180,6 +91590,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeTemplateSpecSourceKust
90180
91590
  """
90181
91591
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
90182
91592
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
91593
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
91594
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
90183
91595
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
90184
91596
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
90185
91597
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -90189,6 +91601,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeTemplateSpecSourceKust
90189
91601
  pulumi.set(__self__, "common_annotations", common_annotations)
90190
91602
  if common_labels is not None:
90191
91603
  pulumi.set(__self__, "common_labels", common_labels)
91604
+ if force_common_annotations is not None:
91605
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
91606
+ if force_common_labels is not None:
91607
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
90192
91608
  if images is not None:
90193
91609
  pulumi.set(__self__, "images", images)
90194
91610
  if name_prefix is not None:
@@ -90214,6 +91630,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeTemplateSpecSourceKust
90214
91630
  """
90215
91631
  return pulumi.get(self, "common_labels")
90216
91632
 
91633
+ @_builtins.property
91634
+ @pulumi.getter(name="forceCommonAnnotations")
91635
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
91636
+ """
91637
+ Indicates if to force applying common annotations to resources for kustomize apps.
91638
+ """
91639
+ return pulumi.get(self, "force_common_annotations")
91640
+
91641
+ @_builtins.property
91642
+ @pulumi.getter(name="forceCommonLabels")
91643
+ def force_common_labels(self) -> Optional[_builtins.bool]:
91644
+ """
91645
+ Indicates if to force apply common labels to resources for kustomize apps.
91646
+ """
91647
+ return pulumi.get(self, "force_common_labels")
91648
+
90217
91649
  @_builtins.property
90218
91650
  @pulumi.getter
90219
91651
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -92233,6 +93665,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorPullRequestTemplateSpecSour
92233
93665
  suggest = "common_annotations"
92234
93666
  elif key == "commonLabels":
92235
93667
  suggest = "common_labels"
93668
+ elif key == "forceCommonAnnotations":
93669
+ suggest = "force_common_annotations"
93670
+ elif key == "forceCommonLabels":
93671
+ suggest = "force_common_labels"
92236
93672
  elif key == "namePrefix":
92237
93673
  suggest = "name_prefix"
92238
93674
  elif key == "nameSuffix":
@@ -92252,6 +93688,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorPullRequestTemplateSpecSour
92252
93688
  def __init__(__self__, *,
92253
93689
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
92254
93690
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
93691
+ force_common_annotations: Optional[_builtins.bool] = None,
93692
+ force_common_labels: Optional[_builtins.bool] = None,
92255
93693
  images: Optional[Sequence[_builtins.str]] = None,
92256
93694
  name_prefix: Optional[_builtins.str] = None,
92257
93695
  name_suffix: Optional[_builtins.str] = None,
@@ -92259,6 +93697,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorPullRequestTemplateSpecSour
92259
93697
  """
92260
93698
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
92261
93699
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
93700
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
93701
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
92262
93702
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
92263
93703
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
92264
93704
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -92268,6 +93708,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorPullRequestTemplateSpecSour
92268
93708
  pulumi.set(__self__, "common_annotations", common_annotations)
92269
93709
  if common_labels is not None:
92270
93710
  pulumi.set(__self__, "common_labels", common_labels)
93711
+ if force_common_annotations is not None:
93712
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
93713
+ if force_common_labels is not None:
93714
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
92271
93715
  if images is not None:
92272
93716
  pulumi.set(__self__, "images", images)
92273
93717
  if name_prefix is not None:
@@ -92293,6 +93737,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorPullRequestTemplateSpecSour
92293
93737
  """
92294
93738
  return pulumi.get(self, "common_labels")
92295
93739
 
93740
+ @_builtins.property
93741
+ @pulumi.getter(name="forceCommonAnnotations")
93742
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
93743
+ """
93744
+ Indicates if to force applying common annotations to resources for kustomize apps.
93745
+ """
93746
+ return pulumi.get(self, "force_common_annotations")
93747
+
93748
+ @_builtins.property
93749
+ @pulumi.getter(name="forceCommonLabels")
93750
+ def force_common_labels(self) -> Optional[_builtins.bool]:
93751
+ """
93752
+ Indicates if to force apply common labels to resources for kustomize apps.
93753
+ """
93754
+ return pulumi.get(self, "force_common_labels")
93755
+
92296
93756
  @_builtins.property
92297
93757
  @pulumi.getter
92298
93758
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -94660,6 +96120,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorScmProviderTemplateSpecSour
94660
96120
  suggest = "common_annotations"
94661
96121
  elif key == "commonLabels":
94662
96122
  suggest = "common_labels"
96123
+ elif key == "forceCommonAnnotations":
96124
+ suggest = "force_common_annotations"
96125
+ elif key == "forceCommonLabels":
96126
+ suggest = "force_common_labels"
94663
96127
  elif key == "namePrefix":
94664
96128
  suggest = "name_prefix"
94665
96129
  elif key == "nameSuffix":
@@ -94679,6 +96143,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorScmProviderTemplateSpecSour
94679
96143
  def __init__(__self__, *,
94680
96144
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
94681
96145
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
96146
+ force_common_annotations: Optional[_builtins.bool] = None,
96147
+ force_common_labels: Optional[_builtins.bool] = None,
94682
96148
  images: Optional[Sequence[_builtins.str]] = None,
94683
96149
  name_prefix: Optional[_builtins.str] = None,
94684
96150
  name_suffix: Optional[_builtins.str] = None,
@@ -94686,6 +96152,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorScmProviderTemplateSpecSour
94686
96152
  """
94687
96153
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
94688
96154
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
96155
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
96156
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
94689
96157
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
94690
96158
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
94691
96159
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -94695,6 +96163,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorScmProviderTemplateSpecSour
94695
96163
  pulumi.set(__self__, "common_annotations", common_annotations)
94696
96164
  if common_labels is not None:
94697
96165
  pulumi.set(__self__, "common_labels", common_labels)
96166
+ if force_common_annotations is not None:
96167
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
96168
+ if force_common_labels is not None:
96169
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
94698
96170
  if images is not None:
94699
96171
  pulumi.set(__self__, "images", images)
94700
96172
  if name_prefix is not None:
@@ -94720,6 +96192,22 @@ class GitopsApplicationsetApplicationsetSpecGeneratorScmProviderTemplateSpecSour
94720
96192
  """
94721
96193
  return pulumi.get(self, "common_labels")
94722
96194
 
96195
+ @_builtins.property
96196
+ @pulumi.getter(name="forceCommonAnnotations")
96197
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
96198
+ """
96199
+ Indicates if to force applying common annotations to resources for kustomize apps.
96200
+ """
96201
+ return pulumi.get(self, "force_common_annotations")
96202
+
96203
+ @_builtins.property
96204
+ @pulumi.getter(name="forceCommonLabels")
96205
+ def force_common_labels(self) -> Optional[_builtins.bool]:
96206
+ """
96207
+ Indicates if to force apply common labels to resources for kustomize apps.
96208
+ """
96209
+ return pulumi.get(self, "force_common_labels")
96210
+
94723
96211
  @_builtins.property
94724
96212
  @pulumi.getter
94725
96213
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -96387,6 +97875,10 @@ class GitopsApplicationsetApplicationsetSpecTemplateSpecSourceKustomize(dict):
96387
97875
  suggest = "common_annotations"
96388
97876
  elif key == "commonLabels":
96389
97877
  suggest = "common_labels"
97878
+ elif key == "forceCommonAnnotations":
97879
+ suggest = "force_common_annotations"
97880
+ elif key == "forceCommonLabels":
97881
+ suggest = "force_common_labels"
96390
97882
  elif key == "namePrefix":
96391
97883
  suggest = "name_prefix"
96392
97884
  elif key == "nameSuffix":
@@ -96406,6 +97898,8 @@ class GitopsApplicationsetApplicationsetSpecTemplateSpecSourceKustomize(dict):
96406
97898
  def __init__(__self__, *,
96407
97899
  common_annotations: Optional[Mapping[str, _builtins.str]] = None,
96408
97900
  common_labels: Optional[Mapping[str, _builtins.str]] = None,
97901
+ force_common_annotations: Optional[_builtins.bool] = None,
97902
+ force_common_labels: Optional[_builtins.bool] = None,
96409
97903
  images: Optional[Sequence[_builtins.str]] = None,
96410
97904
  name_prefix: Optional[_builtins.str] = None,
96411
97905
  name_suffix: Optional[_builtins.str] = None,
@@ -96413,6 +97907,8 @@ class GitopsApplicationsetApplicationsetSpecTemplateSpecSourceKustomize(dict):
96413
97907
  """
96414
97908
  :param Mapping[str, _builtins.str] common_annotations: List of additional annotations to add to rendered manifests.
96415
97909
  :param Mapping[str, _builtins.str] common_labels: List of additional labels to add to rendered manifests.
97910
+ :param _builtins.bool force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
97911
+ :param _builtins.bool force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
96416
97912
  :param Sequence[_builtins.str] images: List of Kustomize image override specifications.
96417
97913
  :param _builtins.str name_prefix: Prefix appended to resources for Kustomize apps.
96418
97914
  :param _builtins.str name_suffix: Suffix appended to resources for Kustomize apps.
@@ -96422,6 +97918,10 @@ class GitopsApplicationsetApplicationsetSpecTemplateSpecSourceKustomize(dict):
96422
97918
  pulumi.set(__self__, "common_annotations", common_annotations)
96423
97919
  if common_labels is not None:
96424
97920
  pulumi.set(__self__, "common_labels", common_labels)
97921
+ if force_common_annotations is not None:
97922
+ pulumi.set(__self__, "force_common_annotations", force_common_annotations)
97923
+ if force_common_labels is not None:
97924
+ pulumi.set(__self__, "force_common_labels", force_common_labels)
96425
97925
  if images is not None:
96426
97926
  pulumi.set(__self__, "images", images)
96427
97927
  if name_prefix is not None:
@@ -96447,6 +97947,22 @@ class GitopsApplicationsetApplicationsetSpecTemplateSpecSourceKustomize(dict):
96447
97947
  """
96448
97948
  return pulumi.get(self, "common_labels")
96449
97949
 
97950
+ @_builtins.property
97951
+ @pulumi.getter(name="forceCommonAnnotations")
97952
+ def force_common_annotations(self) -> Optional[_builtins.bool]:
97953
+ """
97954
+ Indicates if to force applying common annotations to resources for kustomize apps.
97955
+ """
97956
+ return pulumi.get(self, "force_common_annotations")
97957
+
97958
+ @_builtins.property
97959
+ @pulumi.getter(name="forceCommonLabels")
97960
+ def force_common_labels(self) -> Optional[_builtins.bool]:
97961
+ """
97962
+ Indicates if to force apply common labels to resources for kustomize apps.
97963
+ """
97964
+ return pulumi.get(self, "force_common_labels")
97965
+
96450
97966
  @_builtins.property
96451
97967
  @pulumi.getter
96452
97968
  def images(self) -> Optional[Sequence[_builtins.str]]:
@@ -104607,7 +106123,7 @@ class GetAzureCloudCostConnectorBillingExportSpec2Result(dict):
104607
106123
  :param _builtins.str directory_name: Name of the directory.
104608
106124
  :param _builtins.str report_name: Name of the report.
104609
106125
  :param _builtins.str storage_account_name: Name of the storage account.
104610
- :param _builtins.str subscription_id: Subsription id.
106126
+ :param _builtins.str subscription_id: Subsription Id.
104611
106127
  """
104612
106128
  pulumi.set(__self__, "billing_type", billing_type)
104613
106129
  pulumi.set(__self__, "container_name", container_name)
@@ -104660,7 +106176,7 @@ class GetAzureCloudCostConnectorBillingExportSpec2Result(dict):
104660
106176
  @pulumi.getter(name="subscriptionId")
104661
106177
  def subscription_id(self) -> _builtins.str:
104662
106178
  """
104663
- Subsription id.
106179
+ Subsription Id.
104664
106180
  """
104665
106181
  return pulumi.get(self, "subscription_id")
104666
106182
 
@@ -106036,6 +107552,94 @@ class GetDbSchemaSchemaSourceResult(dict):
106036
107552
  return pulumi.get(self, "repo")
106037
107553
 
106038
107554
 
107555
+ @pulumi.output_type
107556
+ class GetDefaultNotificationTemplateSetEventTemplateConfigurationSetResult(dict):
107557
+ def __init__(__self__, *,
107558
+ notification_events: Sequence[_builtins.str],
107559
+ template: 'outputs.GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateResult'):
107560
+ """
107561
+ :param Sequence[_builtins.str] notification_events: List of notification events like PIPELINE_START
107562
+ :param 'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgs' template: Template reference configuration
107563
+ """
107564
+ pulumi.set(__self__, "notification_events", notification_events)
107565
+ pulumi.set(__self__, "template", template)
107566
+
107567
+ @_builtins.property
107568
+ @pulumi.getter(name="notificationEvents")
107569
+ def notification_events(self) -> Sequence[_builtins.str]:
107570
+ """
107571
+ List of notification events like PIPELINE_START
107572
+ """
107573
+ return pulumi.get(self, "notification_events")
107574
+
107575
+ @_builtins.property
107576
+ @pulumi.getter
107577
+ def template(self) -> 'outputs.GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateResult':
107578
+ """
107579
+ Template reference configuration
107580
+ """
107581
+ return pulumi.get(self, "template")
107582
+
107583
+
107584
+ @pulumi.output_type
107585
+ class GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateResult(dict):
107586
+ def __init__(__self__, *,
107587
+ template_ref: _builtins.str,
107588
+ version_label: _builtins.str,
107589
+ variables: Optional[Sequence['outputs.GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableResult']] = None):
107590
+ """
107591
+ :param Sequence['GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgs'] variables: List of variables passed to the template
107592
+ """
107593
+ pulumi.set(__self__, "template_ref", template_ref)
107594
+ pulumi.set(__self__, "version_label", version_label)
107595
+ if variables is not None:
107596
+ pulumi.set(__self__, "variables", variables)
107597
+
107598
+ @_builtins.property
107599
+ @pulumi.getter(name="templateRef")
107600
+ def template_ref(self) -> _builtins.str:
107601
+ return pulumi.get(self, "template_ref")
107602
+
107603
+ @_builtins.property
107604
+ @pulumi.getter(name="versionLabel")
107605
+ def version_label(self) -> _builtins.str:
107606
+ return pulumi.get(self, "version_label")
107607
+
107608
+ @_builtins.property
107609
+ @pulumi.getter
107610
+ def variables(self) -> Optional[Sequence['outputs.GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableResult']]:
107611
+ """
107612
+ List of variables passed to the template
107613
+ """
107614
+ return pulumi.get(self, "variables")
107615
+
107616
+
107617
+ @pulumi.output_type
107618
+ class GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableResult(dict):
107619
+ def __init__(__self__, *,
107620
+ name: _builtins.str,
107621
+ type: _builtins.str,
107622
+ value: _builtins.str):
107623
+ pulumi.set(__self__, "name", name)
107624
+ pulumi.set(__self__, "type", type)
107625
+ pulumi.set(__self__, "value", value)
107626
+
107627
+ @_builtins.property
107628
+ @pulumi.getter
107629
+ def name(self) -> _builtins.str:
107630
+ return pulumi.get(self, "name")
107631
+
107632
+ @_builtins.property
107633
+ @pulumi.getter
107634
+ def type(self) -> _builtins.str:
107635
+ return pulumi.get(self, "type")
107636
+
107637
+ @_builtins.property
107638
+ @pulumi.getter
107639
+ def value(self) -> _builtins.str:
107640
+ return pulumi.get(self, "value")
107641
+
107642
+
106039
107643
  @pulumi.output_type
106040
107644
  class GetDockerConnectorCredentialResult(dict):
106041
107645
  def __init__(__self__, *,