pulumi-harness 0.8.0a1755714852__py3-none-any.whl → 0.8.1__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.
- pulumi_harness/__init__.py +8 -0
- pulumi_harness/platform/__init__.py +2 -0
- pulumi_harness/platform/_inputs.py +2299 -3
- pulumi_harness/platform/azure_cloud_cost_connector.py +18 -0
- pulumi_harness/platform/default_notification_template_set.py +495 -0
- pulumi_harness/platform/get_azure_cloud_cost_connector.py +3 -0
- pulumi_harness/platform/get_default_notification_template_set.py +244 -0
- pulumi_harness/platform/gitops_applicationset.py +2 -0
- pulumi_harness/platform/outputs.py +1608 -4
- pulumi_harness/pulumi-plugin.json +1 -1
- {pulumi_harness-0.8.0a1755714852.dist-info → pulumi_harness-0.8.1.dist-info}/METADATA +1 -1
- {pulumi_harness-0.8.0a1755714852.dist-info → pulumi_harness-0.8.1.dist-info}/RECORD +14 -12
- {pulumi_harness-0.8.0a1755714852.dist-info → pulumi_harness-0.8.1.dist-info}/WHEEL +0 -0
- {pulumi_harness-0.8.0a1755714852.dist-info → pulumi_harness-0.8.1.dist-info}/top_level.txt +0 -0
|
@@ -133,6 +133,12 @@ __all__ = [
|
|
|
133
133
|
'DbSchemaChangelogScriptArgsDict',
|
|
134
134
|
'DbSchemaSchemaSourceArgs',
|
|
135
135
|
'DbSchemaSchemaSourceArgsDict',
|
|
136
|
+
'DefaultNotificationTemplateSetEventTemplateConfigurationSetArgs',
|
|
137
|
+
'DefaultNotificationTemplateSetEventTemplateConfigurationSetArgsDict',
|
|
138
|
+
'DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgs',
|
|
139
|
+
'DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgsDict',
|
|
140
|
+
'DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgs',
|
|
141
|
+
'DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgsDict',
|
|
136
142
|
'DockerConnectorCredentialsArgs',
|
|
137
143
|
'DockerConnectorCredentialsArgsDict',
|
|
138
144
|
'ElasticsearchConnectorApiTokenArgs',
|
|
@@ -3261,6 +3267,12 @@ __all__ = [
|
|
|
3261
3267
|
'GetCentralNotificationRuleNotificationConditionNotificationEventConfigArgsDict',
|
|
3262
3268
|
'GetConnectorRancherBearerTokenArgs',
|
|
3263
3269
|
'GetConnectorRancherBearerTokenArgsDict',
|
|
3270
|
+
'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetArgs',
|
|
3271
|
+
'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetArgsDict',
|
|
3272
|
+
'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgs',
|
|
3273
|
+
'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgsDict',
|
|
3274
|
+
'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgs',
|
|
3275
|
+
'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgsDict',
|
|
3264
3276
|
'GetEnvironmentClustersMappingClusterArgs',
|
|
3265
3277
|
'GetEnvironmentClustersMappingClusterArgsDict',
|
|
3266
3278
|
'GetEnvironmentGitDetailsArgs',
|
|
@@ -4634,7 +4646,7 @@ if not MYPY:
|
|
|
4634
4646
|
"""
|
|
4635
4647
|
subscription_id: pulumi.Input[_builtins.str]
|
|
4636
4648
|
"""
|
|
4637
|
-
Subsription
|
|
4649
|
+
Subsription Id.
|
|
4638
4650
|
"""
|
|
4639
4651
|
elif False:
|
|
4640
4652
|
AzureCloudCostConnectorBillingExportSpec2ArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -4654,7 +4666,7 @@ class AzureCloudCostConnectorBillingExportSpec2Args:
|
|
|
4654
4666
|
:param pulumi.Input[_builtins.str] directory_name: Name of the directory.
|
|
4655
4667
|
:param pulumi.Input[_builtins.str] report_name: Name of the report.
|
|
4656
4668
|
:param pulumi.Input[_builtins.str] storage_account_name: Name of the storage account.
|
|
4657
|
-
:param pulumi.Input[_builtins.str] subscription_id: Subsription
|
|
4669
|
+
:param pulumi.Input[_builtins.str] subscription_id: Subsription Id.
|
|
4658
4670
|
"""
|
|
4659
4671
|
pulumi.set(__self__, "billing_type", billing_type)
|
|
4660
4672
|
pulumi.set(__self__, "container_name", container_name)
|
|
@@ -4727,7 +4739,7 @@ class AzureCloudCostConnectorBillingExportSpec2Args:
|
|
|
4727
4739
|
@pulumi.getter(name="subscriptionId")
|
|
4728
4740
|
def subscription_id(self) -> pulumi.Input[_builtins.str]:
|
|
4729
4741
|
"""
|
|
4730
|
-
Subsription
|
|
4742
|
+
Subsription Id.
|
|
4731
4743
|
"""
|
|
4732
4744
|
return pulumi.get(self, "subscription_id")
|
|
4733
4745
|
|
|
@@ -7016,6 +7028,158 @@ class DbSchemaSchemaSourceArgs:
|
|
|
7016
7028
|
pulumi.set(self, "repo", value)
|
|
7017
7029
|
|
|
7018
7030
|
|
|
7031
|
+
if not MYPY:
|
|
7032
|
+
class DefaultNotificationTemplateSetEventTemplateConfigurationSetArgsDict(TypedDict):
|
|
7033
|
+
notification_events: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
|
7034
|
+
"""
|
|
7035
|
+
List of notification events like PIPELINE_START
|
|
7036
|
+
"""
|
|
7037
|
+
template: pulumi.Input['DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgsDict']
|
|
7038
|
+
"""
|
|
7039
|
+
Template reference configuration
|
|
7040
|
+
"""
|
|
7041
|
+
elif False:
|
|
7042
|
+
DefaultNotificationTemplateSetEventTemplateConfigurationSetArgsDict: TypeAlias = Mapping[str, Any]
|
|
7043
|
+
|
|
7044
|
+
@pulumi.input_type
|
|
7045
|
+
class DefaultNotificationTemplateSetEventTemplateConfigurationSetArgs:
|
|
7046
|
+
def __init__(__self__, *,
|
|
7047
|
+
notification_events: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
|
|
7048
|
+
template: pulumi.Input['DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgs']):
|
|
7049
|
+
"""
|
|
7050
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] notification_events: List of notification events like PIPELINE_START
|
|
7051
|
+
:param pulumi.Input['DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgs'] template: Template reference configuration
|
|
7052
|
+
"""
|
|
7053
|
+
pulumi.set(__self__, "notification_events", notification_events)
|
|
7054
|
+
pulumi.set(__self__, "template", template)
|
|
7055
|
+
|
|
7056
|
+
@_builtins.property
|
|
7057
|
+
@pulumi.getter(name="notificationEvents")
|
|
7058
|
+
def notification_events(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
7059
|
+
"""
|
|
7060
|
+
List of notification events like PIPELINE_START
|
|
7061
|
+
"""
|
|
7062
|
+
return pulumi.get(self, "notification_events")
|
|
7063
|
+
|
|
7064
|
+
@notification_events.setter
|
|
7065
|
+
def notification_events(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
7066
|
+
pulumi.set(self, "notification_events", value)
|
|
7067
|
+
|
|
7068
|
+
@_builtins.property
|
|
7069
|
+
@pulumi.getter
|
|
7070
|
+
def template(self) -> pulumi.Input['DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgs']:
|
|
7071
|
+
"""
|
|
7072
|
+
Template reference configuration
|
|
7073
|
+
"""
|
|
7074
|
+
return pulumi.get(self, "template")
|
|
7075
|
+
|
|
7076
|
+
@template.setter
|
|
7077
|
+
def template(self, value: pulumi.Input['DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgs']):
|
|
7078
|
+
pulumi.set(self, "template", value)
|
|
7079
|
+
|
|
7080
|
+
|
|
7081
|
+
if not MYPY:
|
|
7082
|
+
class DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgsDict(TypedDict):
|
|
7083
|
+
template_ref: pulumi.Input[_builtins.str]
|
|
7084
|
+
version_label: pulumi.Input[_builtins.str]
|
|
7085
|
+
variables: NotRequired[pulumi.Input[Sequence[pulumi.Input['DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgsDict']]]]
|
|
7086
|
+
"""
|
|
7087
|
+
List of variables passed to the template
|
|
7088
|
+
"""
|
|
7089
|
+
elif False:
|
|
7090
|
+
DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgsDict: TypeAlias = Mapping[str, Any]
|
|
7091
|
+
|
|
7092
|
+
@pulumi.input_type
|
|
7093
|
+
class DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgs:
|
|
7094
|
+
def __init__(__self__, *,
|
|
7095
|
+
template_ref: pulumi.Input[_builtins.str],
|
|
7096
|
+
version_label: pulumi.Input[_builtins.str],
|
|
7097
|
+
variables: Optional[pulumi.Input[Sequence[pulumi.Input['DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgs']]]] = None):
|
|
7098
|
+
"""
|
|
7099
|
+
:param pulumi.Input[Sequence[pulumi.Input['DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgs']]] variables: List of variables passed to the template
|
|
7100
|
+
"""
|
|
7101
|
+
pulumi.set(__self__, "template_ref", template_ref)
|
|
7102
|
+
pulumi.set(__self__, "version_label", version_label)
|
|
7103
|
+
if variables is not None:
|
|
7104
|
+
pulumi.set(__self__, "variables", variables)
|
|
7105
|
+
|
|
7106
|
+
@_builtins.property
|
|
7107
|
+
@pulumi.getter(name="templateRef")
|
|
7108
|
+
def template_ref(self) -> pulumi.Input[_builtins.str]:
|
|
7109
|
+
return pulumi.get(self, "template_ref")
|
|
7110
|
+
|
|
7111
|
+
@template_ref.setter
|
|
7112
|
+
def template_ref(self, value: pulumi.Input[_builtins.str]):
|
|
7113
|
+
pulumi.set(self, "template_ref", value)
|
|
7114
|
+
|
|
7115
|
+
@_builtins.property
|
|
7116
|
+
@pulumi.getter(name="versionLabel")
|
|
7117
|
+
def version_label(self) -> pulumi.Input[_builtins.str]:
|
|
7118
|
+
return pulumi.get(self, "version_label")
|
|
7119
|
+
|
|
7120
|
+
@version_label.setter
|
|
7121
|
+
def version_label(self, value: pulumi.Input[_builtins.str]):
|
|
7122
|
+
pulumi.set(self, "version_label", value)
|
|
7123
|
+
|
|
7124
|
+
@_builtins.property
|
|
7125
|
+
@pulumi.getter
|
|
7126
|
+
def variables(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgs']]]]:
|
|
7127
|
+
"""
|
|
7128
|
+
List of variables passed to the template
|
|
7129
|
+
"""
|
|
7130
|
+
return pulumi.get(self, "variables")
|
|
7131
|
+
|
|
7132
|
+
@variables.setter
|
|
7133
|
+
def variables(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgs']]]]):
|
|
7134
|
+
pulumi.set(self, "variables", value)
|
|
7135
|
+
|
|
7136
|
+
|
|
7137
|
+
if not MYPY:
|
|
7138
|
+
class DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgsDict(TypedDict):
|
|
7139
|
+
name: pulumi.Input[_builtins.str]
|
|
7140
|
+
type: pulumi.Input[_builtins.str]
|
|
7141
|
+
value: pulumi.Input[_builtins.str]
|
|
7142
|
+
elif False:
|
|
7143
|
+
DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgsDict: TypeAlias = Mapping[str, Any]
|
|
7144
|
+
|
|
7145
|
+
@pulumi.input_type
|
|
7146
|
+
class DefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgs:
|
|
7147
|
+
def __init__(__self__, *,
|
|
7148
|
+
name: pulumi.Input[_builtins.str],
|
|
7149
|
+
type: pulumi.Input[_builtins.str],
|
|
7150
|
+
value: pulumi.Input[_builtins.str]):
|
|
7151
|
+
pulumi.set(__self__, "name", name)
|
|
7152
|
+
pulumi.set(__self__, "type", type)
|
|
7153
|
+
pulumi.set(__self__, "value", value)
|
|
7154
|
+
|
|
7155
|
+
@_builtins.property
|
|
7156
|
+
@pulumi.getter
|
|
7157
|
+
def name(self) -> pulumi.Input[_builtins.str]:
|
|
7158
|
+
return pulumi.get(self, "name")
|
|
7159
|
+
|
|
7160
|
+
@name.setter
|
|
7161
|
+
def name(self, value: pulumi.Input[_builtins.str]):
|
|
7162
|
+
pulumi.set(self, "name", value)
|
|
7163
|
+
|
|
7164
|
+
@_builtins.property
|
|
7165
|
+
@pulumi.getter
|
|
7166
|
+
def type(self) -> pulumi.Input[_builtins.str]:
|
|
7167
|
+
return pulumi.get(self, "type")
|
|
7168
|
+
|
|
7169
|
+
@type.setter
|
|
7170
|
+
def type(self, value: pulumi.Input[_builtins.str]):
|
|
7171
|
+
pulumi.set(self, "type", value)
|
|
7172
|
+
|
|
7173
|
+
@_builtins.property
|
|
7174
|
+
@pulumi.getter
|
|
7175
|
+
def value(self) -> pulumi.Input[_builtins.str]:
|
|
7176
|
+
return pulumi.get(self, "value")
|
|
7177
|
+
|
|
7178
|
+
@value.setter
|
|
7179
|
+
def value(self, value: pulumi.Input[_builtins.str]):
|
|
7180
|
+
pulumi.set(self, "value", value)
|
|
7181
|
+
|
|
7182
|
+
|
|
7019
7183
|
if not MYPY:
|
|
7020
7184
|
class DockerConnectorCredentialsArgsDict(TypedDict):
|
|
7021
7185
|
password_ref: pulumi.Input[_builtins.str]
|
|
@@ -16041,6 +16205,10 @@ if not MYPY:
|
|
|
16041
16205
|
"""
|
|
16042
16206
|
Enable Go templating for the template field.
|
|
16043
16207
|
"""
|
|
16208
|
+
go_template_options: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
16209
|
+
"""
|
|
16210
|
+
Optional list of go templating options, see https://pkg.go.dev/text/template#Template.Optional. This is only relevant if `goTemplate` is true
|
|
16211
|
+
"""
|
|
16044
16212
|
ignore_application_differences: NotRequired[pulumi.Input[Sequence[pulumi.Input['GitopsApplicationsetApplicationsetSpecIgnoreApplicationDifferenceArgsDict']]]]
|
|
16045
16213
|
"""
|
|
16046
16214
|
Application Set ignoreApplicationDifferences
|
|
@@ -16062,6 +16230,7 @@ class GitopsApplicationsetApplicationsetSpecArgs:
|
|
|
16062
16230
|
generators: pulumi.Input[Sequence[pulumi.Input['GitopsApplicationsetApplicationsetSpecGeneratorArgs']]],
|
|
16063
16231
|
template: pulumi.Input['GitopsApplicationsetApplicationsetSpecTemplateArgs'],
|
|
16064
16232
|
go_template: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
16233
|
+
go_template_options: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
16065
16234
|
ignore_application_differences: Optional[pulumi.Input[Sequence[pulumi.Input['GitopsApplicationsetApplicationsetSpecIgnoreApplicationDifferenceArgs']]]] = None,
|
|
16066
16235
|
strategy: Optional[pulumi.Input['GitopsApplicationsetApplicationsetSpecStrategyArgs']] = None,
|
|
16067
16236
|
sync_policy: Optional[pulumi.Input['GitopsApplicationsetApplicationsetSpecSyncPolicyArgs']] = None):
|
|
@@ -16069,6 +16238,7 @@ class GitopsApplicationsetApplicationsetSpecArgs:
|
|
|
16069
16238
|
:param pulumi.Input[Sequence[pulumi.Input['GitopsApplicationsetApplicationsetSpecGeneratorArgs']]] generators: Application set generators are responsible for generation of params, which are then rendered into the template: fields of the ApplicationSet resource.
|
|
16070
16239
|
:param pulumi.Input['GitopsApplicationsetApplicationsetSpecTemplateArgs'] template: Application Set template. The template fields of the ApplicationSet spec are used to generate Gitops Applications.
|
|
16071
16240
|
:param pulumi.Input[_builtins.bool] go_template: Enable Go templating for the template field.
|
|
16241
|
+
:param pulumi.Input[Sequence[pulumi.Input[_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
|
|
16072
16242
|
:param pulumi.Input[Sequence[pulumi.Input['GitopsApplicationsetApplicationsetSpecIgnoreApplicationDifferenceArgs']]] ignore_application_differences: Application Set ignoreApplicationDifferences
|
|
16073
16243
|
:param pulumi.Input['GitopsApplicationsetApplicationsetSpecStrategyArgs'] strategy: [Progressive Sync](https://argo-cd.readthedocs.io/en/stable/operator-manual/applicationset/Progressive-Syncs/) strategy
|
|
16074
16244
|
:param pulumi.Input['GitopsApplicationsetApplicationsetSpecSyncPolicyArgs'] sync_policy: Application Set sync policy
|
|
@@ -16077,6 +16247,8 @@ class GitopsApplicationsetApplicationsetSpecArgs:
|
|
|
16077
16247
|
pulumi.set(__self__, "template", template)
|
|
16078
16248
|
if go_template is not None:
|
|
16079
16249
|
pulumi.set(__self__, "go_template", go_template)
|
|
16250
|
+
if go_template_options is not None:
|
|
16251
|
+
pulumi.set(__self__, "go_template_options", go_template_options)
|
|
16080
16252
|
if ignore_application_differences is not None:
|
|
16081
16253
|
pulumi.set(__self__, "ignore_application_differences", ignore_application_differences)
|
|
16082
16254
|
if strategy is not None:
|
|
@@ -16120,6 +16292,18 @@ class GitopsApplicationsetApplicationsetSpecArgs:
|
|
|
16120
16292
|
def go_template(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
16121
16293
|
pulumi.set(self, "go_template", value)
|
|
16122
16294
|
|
|
16295
|
+
@_builtins.property
|
|
16296
|
+
@pulumi.getter(name="goTemplateOptions")
|
|
16297
|
+
def go_template_options(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
16298
|
+
"""
|
|
16299
|
+
Optional list of go templating options, see https://pkg.go.dev/text/template#Template.Optional. This is only relevant if `goTemplate` is true
|
|
16300
|
+
"""
|
|
16301
|
+
return pulumi.get(self, "go_template_options")
|
|
16302
|
+
|
|
16303
|
+
@go_template_options.setter
|
|
16304
|
+
def go_template_options(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
16305
|
+
pulumi.set(self, "go_template_options", value)
|
|
16306
|
+
|
|
16123
16307
|
@_builtins.property
|
|
16124
16308
|
@pulumi.getter(name="ignoreApplicationDifferences")
|
|
16125
16309
|
def ignore_application_differences(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['GitopsApplicationsetApplicationsetSpecIgnoreApplicationDifferenceArgs']]]]:
|
|
@@ -18091,6 +18275,14 @@ if not MYPY:
|
|
|
18091
18275
|
"""
|
|
18092
18276
|
List of additional labels to add to rendered manifests.
|
|
18093
18277
|
"""
|
|
18278
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
18279
|
+
"""
|
|
18280
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
18281
|
+
"""
|
|
18282
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
18283
|
+
"""
|
|
18284
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
18285
|
+
"""
|
|
18094
18286
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
18095
18287
|
"""
|
|
18096
18288
|
List of Kustomize image override specifications.
|
|
@@ -18115,6 +18307,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorClusterDecisionResourceTemp
|
|
|
18115
18307
|
def __init__(__self__, *,
|
|
18116
18308
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
18117
18309
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
18310
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
18311
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
18118
18312
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
18119
18313
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
18120
18314
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -18122,6 +18316,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorClusterDecisionResourceTemp
|
|
|
18122
18316
|
"""
|
|
18123
18317
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
18124
18318
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
18319
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
18320
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
18125
18321
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
18126
18322
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
18127
18323
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -18131,6 +18327,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorClusterDecisionResourceTemp
|
|
|
18131
18327
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
18132
18328
|
if common_labels is not None:
|
|
18133
18329
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
18330
|
+
if force_common_annotations is not None:
|
|
18331
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
18332
|
+
if force_common_labels is not None:
|
|
18333
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
18134
18334
|
if images is not None:
|
|
18135
18335
|
pulumi.set(__self__, "images", images)
|
|
18136
18336
|
if name_prefix is not None:
|
|
@@ -18164,6 +18364,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorClusterDecisionResourceTemp
|
|
|
18164
18364
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
18165
18365
|
pulumi.set(self, "common_labels", value)
|
|
18166
18366
|
|
|
18367
|
+
@_builtins.property
|
|
18368
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
18369
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
18370
|
+
"""
|
|
18371
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
18372
|
+
"""
|
|
18373
|
+
return pulumi.get(self, "force_common_annotations")
|
|
18374
|
+
|
|
18375
|
+
@force_common_annotations.setter
|
|
18376
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
18377
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
18378
|
+
|
|
18379
|
+
@_builtins.property
|
|
18380
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
18381
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
18382
|
+
"""
|
|
18383
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
18384
|
+
"""
|
|
18385
|
+
return pulumi.get(self, "force_common_labels")
|
|
18386
|
+
|
|
18387
|
+
@force_common_labels.setter
|
|
18388
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
18389
|
+
pulumi.set(self, "force_common_labels", value)
|
|
18390
|
+
|
|
18167
18391
|
@_builtins.property
|
|
18168
18392
|
@pulumi.getter
|
|
18169
18393
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -20177,6 +20401,14 @@ if not MYPY:
|
|
|
20177
20401
|
"""
|
|
20178
20402
|
List of additional labels to add to rendered manifests.
|
|
20179
20403
|
"""
|
|
20404
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
20405
|
+
"""
|
|
20406
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
20407
|
+
"""
|
|
20408
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
20409
|
+
"""
|
|
20410
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
20411
|
+
"""
|
|
20180
20412
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
20181
20413
|
"""
|
|
20182
20414
|
List of Kustomize image override specifications.
|
|
@@ -20201,6 +20433,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorClusterTemplateSpecSourceKu
|
|
|
20201
20433
|
def __init__(__self__, *,
|
|
20202
20434
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
20203
20435
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
20436
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
20437
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
20204
20438
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
20205
20439
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
20206
20440
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -20208,6 +20442,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorClusterTemplateSpecSourceKu
|
|
|
20208
20442
|
"""
|
|
20209
20443
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
20210
20444
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
20445
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
20446
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
20211
20447
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
20212
20448
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
20213
20449
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -20217,6 +20453,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorClusterTemplateSpecSourceKu
|
|
|
20217
20453
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
20218
20454
|
if common_labels is not None:
|
|
20219
20455
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
20456
|
+
if force_common_annotations is not None:
|
|
20457
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
20458
|
+
if force_common_labels is not None:
|
|
20459
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
20220
20460
|
if images is not None:
|
|
20221
20461
|
pulumi.set(__self__, "images", images)
|
|
20222
20462
|
if name_prefix is not None:
|
|
@@ -20250,6 +20490,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorClusterTemplateSpecSourceKu
|
|
|
20250
20490
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
20251
20491
|
pulumi.set(self, "common_labels", value)
|
|
20252
20492
|
|
|
20493
|
+
@_builtins.property
|
|
20494
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
20495
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
20496
|
+
"""
|
|
20497
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
20498
|
+
"""
|
|
20499
|
+
return pulumi.get(self, "force_common_annotations")
|
|
20500
|
+
|
|
20501
|
+
@force_common_annotations.setter
|
|
20502
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
20503
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
20504
|
+
|
|
20505
|
+
@_builtins.property
|
|
20506
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
20507
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
20508
|
+
"""
|
|
20509
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
20510
|
+
"""
|
|
20511
|
+
return pulumi.get(self, "force_common_labels")
|
|
20512
|
+
|
|
20513
|
+
@force_common_labels.setter
|
|
20514
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
20515
|
+
pulumi.set(self, "force_common_labels", value)
|
|
20516
|
+
|
|
20253
20517
|
@_builtins.property
|
|
20254
20518
|
@pulumi.getter
|
|
20255
20519
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -22352,6 +22616,14 @@ if not MYPY:
|
|
|
22352
22616
|
"""
|
|
22353
22617
|
List of additional labels to add to rendered manifests.
|
|
22354
22618
|
"""
|
|
22619
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
22620
|
+
"""
|
|
22621
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
22622
|
+
"""
|
|
22623
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
22624
|
+
"""
|
|
22625
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
22626
|
+
"""
|
|
22355
22627
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
22356
22628
|
"""
|
|
22357
22629
|
List of Kustomize image override specifications.
|
|
@@ -22376,6 +22648,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorGitTemplateSpecSourceKustom
|
|
|
22376
22648
|
def __init__(__self__, *,
|
|
22377
22649
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
22378
22650
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
22651
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
22652
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
22379
22653
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
22380
22654
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
22381
22655
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -22383,6 +22657,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorGitTemplateSpecSourceKustom
|
|
|
22383
22657
|
"""
|
|
22384
22658
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
22385
22659
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
22660
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
22661
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
22386
22662
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
22387
22663
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
22388
22664
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -22392,6 +22668,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorGitTemplateSpecSourceKustom
|
|
|
22392
22668
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
22393
22669
|
if common_labels is not None:
|
|
22394
22670
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
22671
|
+
if force_common_annotations is not None:
|
|
22672
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
22673
|
+
if force_common_labels is not None:
|
|
22674
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
22395
22675
|
if images is not None:
|
|
22396
22676
|
pulumi.set(__self__, "images", images)
|
|
22397
22677
|
if name_prefix is not None:
|
|
@@ -22425,6 +22705,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorGitTemplateSpecSourceKustom
|
|
|
22425
22705
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
22426
22706
|
pulumi.set(self, "common_labels", value)
|
|
22427
22707
|
|
|
22708
|
+
@_builtins.property
|
|
22709
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
22710
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
22711
|
+
"""
|
|
22712
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
22713
|
+
"""
|
|
22714
|
+
return pulumi.get(self, "force_common_annotations")
|
|
22715
|
+
|
|
22716
|
+
@force_common_annotations.setter
|
|
22717
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
22718
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
22719
|
+
|
|
22720
|
+
@_builtins.property
|
|
22721
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
22722
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
22723
|
+
"""
|
|
22724
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
22725
|
+
"""
|
|
22726
|
+
return pulumi.get(self, "force_common_labels")
|
|
22727
|
+
|
|
22728
|
+
@force_common_labels.setter
|
|
22729
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
22730
|
+
pulumi.set(self, "force_common_labels", value)
|
|
22731
|
+
|
|
22428
22732
|
@_builtins.property
|
|
22429
22733
|
@pulumi.getter
|
|
22430
22734
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -24365,6 +24669,14 @@ if not MYPY:
|
|
|
24365
24669
|
"""
|
|
24366
24670
|
List of additional labels to add to rendered manifests.
|
|
24367
24671
|
"""
|
|
24672
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
24673
|
+
"""
|
|
24674
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
24675
|
+
"""
|
|
24676
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
24677
|
+
"""
|
|
24678
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
24679
|
+
"""
|
|
24368
24680
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
24369
24681
|
"""
|
|
24370
24682
|
List of Kustomize image override specifications.
|
|
@@ -24389,6 +24701,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorListTemplateSpecSourceKusto
|
|
|
24389
24701
|
def __init__(__self__, *,
|
|
24390
24702
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
24391
24703
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
24704
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
24705
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
24392
24706
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
24393
24707
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
24394
24708
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -24396,6 +24710,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorListTemplateSpecSourceKusto
|
|
|
24396
24710
|
"""
|
|
24397
24711
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
24398
24712
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
24713
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
24714
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
24399
24715
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
24400
24716
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
24401
24717
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -24405,6 +24721,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorListTemplateSpecSourceKusto
|
|
|
24405
24721
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
24406
24722
|
if common_labels is not None:
|
|
24407
24723
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
24724
|
+
if force_common_annotations is not None:
|
|
24725
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
24726
|
+
if force_common_labels is not None:
|
|
24727
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
24408
24728
|
if images is not None:
|
|
24409
24729
|
pulumi.set(__self__, "images", images)
|
|
24410
24730
|
if name_prefix is not None:
|
|
@@ -24438,6 +24758,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorListTemplateSpecSourceKusto
|
|
|
24438
24758
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
24439
24759
|
pulumi.set(self, "common_labels", value)
|
|
24440
24760
|
|
|
24761
|
+
@_builtins.property
|
|
24762
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
24763
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
24764
|
+
"""
|
|
24765
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
24766
|
+
"""
|
|
24767
|
+
return pulumi.get(self, "force_common_annotations")
|
|
24768
|
+
|
|
24769
|
+
@force_common_annotations.setter
|
|
24770
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
24771
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
24772
|
+
|
|
24773
|
+
@_builtins.property
|
|
24774
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
24775
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
24776
|
+
"""
|
|
24777
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
24778
|
+
"""
|
|
24779
|
+
return pulumi.get(self, "force_common_labels")
|
|
24780
|
+
|
|
24781
|
+
@force_common_labels.setter
|
|
24782
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
24783
|
+
pulumi.set(self, "force_common_labels", value)
|
|
24784
|
+
|
|
24441
24785
|
@_builtins.property
|
|
24442
24786
|
@pulumi.getter
|
|
24443
24787
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -26916,6 +27260,14 @@ if not MYPY:
|
|
|
26916
27260
|
"""
|
|
26917
27261
|
List of additional labels to add to rendered manifests.
|
|
26918
27262
|
"""
|
|
27263
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
27264
|
+
"""
|
|
27265
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
27266
|
+
"""
|
|
27267
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
27268
|
+
"""
|
|
27269
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
27270
|
+
"""
|
|
26919
27271
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
26920
27272
|
"""
|
|
26921
27273
|
List of Kustomize image override specifications.
|
|
@@ -26940,6 +27292,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterDecis
|
|
|
26940
27292
|
def __init__(__self__, *,
|
|
26941
27293
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
26942
27294
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
27295
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
27296
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
26943
27297
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
26944
27298
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
26945
27299
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -26947,6 +27301,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterDecis
|
|
|
26947
27301
|
"""
|
|
26948
27302
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
26949
27303
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
27304
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
27305
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
26950
27306
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
26951
27307
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
26952
27308
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -26956,6 +27312,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterDecis
|
|
|
26956
27312
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
26957
27313
|
if common_labels is not None:
|
|
26958
27314
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
27315
|
+
if force_common_annotations is not None:
|
|
27316
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
27317
|
+
if force_common_labels is not None:
|
|
27318
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
26959
27319
|
if images is not None:
|
|
26960
27320
|
pulumi.set(__self__, "images", images)
|
|
26961
27321
|
if name_prefix is not None:
|
|
@@ -26989,6 +27349,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterDecis
|
|
|
26989
27349
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
26990
27350
|
pulumi.set(self, "common_labels", value)
|
|
26991
27351
|
|
|
27352
|
+
@_builtins.property
|
|
27353
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
27354
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
27355
|
+
"""
|
|
27356
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
27357
|
+
"""
|
|
27358
|
+
return pulumi.get(self, "force_common_annotations")
|
|
27359
|
+
|
|
27360
|
+
@force_common_annotations.setter
|
|
27361
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
27362
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
27363
|
+
|
|
27364
|
+
@_builtins.property
|
|
27365
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
27366
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
27367
|
+
"""
|
|
27368
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
27369
|
+
"""
|
|
27370
|
+
return pulumi.get(self, "force_common_labels")
|
|
27371
|
+
|
|
27372
|
+
@force_common_labels.setter
|
|
27373
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
27374
|
+
pulumi.set(self, "force_common_labels", value)
|
|
27375
|
+
|
|
26992
27376
|
@_builtins.property
|
|
26993
27377
|
@pulumi.getter
|
|
26994
27378
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -29002,6 +29386,14 @@ if not MYPY:
|
|
|
29002
29386
|
"""
|
|
29003
29387
|
List of additional labels to add to rendered manifests.
|
|
29004
29388
|
"""
|
|
29389
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
29390
|
+
"""
|
|
29391
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
29392
|
+
"""
|
|
29393
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
29394
|
+
"""
|
|
29395
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
29396
|
+
"""
|
|
29005
29397
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
29006
29398
|
"""
|
|
29007
29399
|
List of Kustomize image override specifications.
|
|
@@ -29026,6 +29418,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterTempl
|
|
|
29026
29418
|
def __init__(__self__, *,
|
|
29027
29419
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
29028
29420
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
29421
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
29422
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
29029
29423
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
29030
29424
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29031
29425
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -29033,6 +29427,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterTempl
|
|
|
29033
29427
|
"""
|
|
29034
29428
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
29035
29429
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
29430
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
29431
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
29036
29432
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
29037
29433
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
29038
29434
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -29042,6 +29438,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterTempl
|
|
|
29042
29438
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
29043
29439
|
if common_labels is not None:
|
|
29044
29440
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
29441
|
+
if force_common_annotations is not None:
|
|
29442
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
29443
|
+
if force_common_labels is not None:
|
|
29444
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
29045
29445
|
if images is not None:
|
|
29046
29446
|
pulumi.set(__self__, "images", images)
|
|
29047
29447
|
if name_prefix is not None:
|
|
@@ -29075,6 +29475,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorClusterTempl
|
|
|
29075
29475
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
29076
29476
|
pulumi.set(self, "common_labels", value)
|
|
29077
29477
|
|
|
29478
|
+
@_builtins.property
|
|
29479
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
29480
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
29481
|
+
"""
|
|
29482
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
29483
|
+
"""
|
|
29484
|
+
return pulumi.get(self, "force_common_annotations")
|
|
29485
|
+
|
|
29486
|
+
@force_common_annotations.setter
|
|
29487
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
29488
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
29489
|
+
|
|
29490
|
+
@_builtins.property
|
|
29491
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
29492
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
29493
|
+
"""
|
|
29494
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
29495
|
+
"""
|
|
29496
|
+
return pulumi.get(self, "force_common_labels")
|
|
29497
|
+
|
|
29498
|
+
@force_common_labels.setter
|
|
29499
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
29500
|
+
pulumi.set(self, "force_common_labels", value)
|
|
29501
|
+
|
|
29078
29502
|
@_builtins.property
|
|
29079
29503
|
@pulumi.getter
|
|
29080
29504
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -31177,6 +31601,14 @@ if not MYPY:
|
|
|
31177
31601
|
"""
|
|
31178
31602
|
List of additional labels to add to rendered manifests.
|
|
31179
31603
|
"""
|
|
31604
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
31605
|
+
"""
|
|
31606
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
31607
|
+
"""
|
|
31608
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
31609
|
+
"""
|
|
31610
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
31611
|
+
"""
|
|
31180
31612
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
31181
31613
|
"""
|
|
31182
31614
|
List of Kustomize image override specifications.
|
|
@@ -31201,6 +31633,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorGitTemplateS
|
|
|
31201
31633
|
def __init__(__self__, *,
|
|
31202
31634
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
31203
31635
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
31636
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
31637
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
31204
31638
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
31205
31639
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
31206
31640
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -31208,6 +31642,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorGitTemplateS
|
|
|
31208
31642
|
"""
|
|
31209
31643
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
31210
31644
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
31645
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
31646
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
31211
31647
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
31212
31648
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
31213
31649
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -31217,6 +31653,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorGitTemplateS
|
|
|
31217
31653
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
31218
31654
|
if common_labels is not None:
|
|
31219
31655
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
31656
|
+
if force_common_annotations is not None:
|
|
31657
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
31658
|
+
if force_common_labels is not None:
|
|
31659
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
31220
31660
|
if images is not None:
|
|
31221
31661
|
pulumi.set(__self__, "images", images)
|
|
31222
31662
|
if name_prefix is not None:
|
|
@@ -31250,6 +31690,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorGitTemplateS
|
|
|
31250
31690
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
31251
31691
|
pulumi.set(self, "common_labels", value)
|
|
31252
31692
|
|
|
31693
|
+
@_builtins.property
|
|
31694
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
31695
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
31696
|
+
"""
|
|
31697
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
31698
|
+
"""
|
|
31699
|
+
return pulumi.get(self, "force_common_annotations")
|
|
31700
|
+
|
|
31701
|
+
@force_common_annotations.setter
|
|
31702
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
31703
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
31704
|
+
|
|
31705
|
+
@_builtins.property
|
|
31706
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
31707
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
31708
|
+
"""
|
|
31709
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
31710
|
+
"""
|
|
31711
|
+
return pulumi.get(self, "force_common_labels")
|
|
31712
|
+
|
|
31713
|
+
@force_common_labels.setter
|
|
31714
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
31715
|
+
pulumi.set(self, "force_common_labels", value)
|
|
31716
|
+
|
|
31253
31717
|
@_builtins.property
|
|
31254
31718
|
@pulumi.getter
|
|
31255
31719
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -33190,6 +33654,14 @@ if not MYPY:
|
|
|
33190
33654
|
"""
|
|
33191
33655
|
List of additional labels to add to rendered manifests.
|
|
33192
33656
|
"""
|
|
33657
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
33658
|
+
"""
|
|
33659
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
33660
|
+
"""
|
|
33661
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
33662
|
+
"""
|
|
33663
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
33664
|
+
"""
|
|
33193
33665
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
33194
33666
|
"""
|
|
33195
33667
|
List of Kustomize image override specifications.
|
|
@@ -33214,6 +33686,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorListTemplate
|
|
|
33214
33686
|
def __init__(__self__, *,
|
|
33215
33687
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
33216
33688
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
33689
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
33690
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
33217
33691
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
33218
33692
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
33219
33693
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -33221,6 +33695,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorListTemplate
|
|
|
33221
33695
|
"""
|
|
33222
33696
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
33223
33697
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
33698
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
33699
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
33224
33700
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
33225
33701
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
33226
33702
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -33230,6 +33706,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorListTemplate
|
|
|
33230
33706
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
33231
33707
|
if common_labels is not None:
|
|
33232
33708
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
33709
|
+
if force_common_annotations is not None:
|
|
33710
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
33711
|
+
if force_common_labels is not None:
|
|
33712
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
33233
33713
|
if images is not None:
|
|
33234
33714
|
pulumi.set(__self__, "images", images)
|
|
33235
33715
|
if name_prefix is not None:
|
|
@@ -33263,6 +33743,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorListTemplate
|
|
|
33263
33743
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
33264
33744
|
pulumi.set(self, "common_labels", value)
|
|
33265
33745
|
|
|
33746
|
+
@_builtins.property
|
|
33747
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
33748
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
33749
|
+
"""
|
|
33750
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
33751
|
+
"""
|
|
33752
|
+
return pulumi.get(self, "force_common_annotations")
|
|
33753
|
+
|
|
33754
|
+
@force_common_annotations.setter
|
|
33755
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
33756
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
33757
|
+
|
|
33758
|
+
@_builtins.property
|
|
33759
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
33760
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
33761
|
+
"""
|
|
33762
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
33763
|
+
"""
|
|
33764
|
+
return pulumi.get(self, "force_common_labels")
|
|
33765
|
+
|
|
33766
|
+
@force_common_labels.setter
|
|
33767
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
33768
|
+
pulumi.set(self, "force_common_labels", value)
|
|
33769
|
+
|
|
33266
33770
|
@_builtins.property
|
|
33267
33771
|
@pulumi.getter
|
|
33268
33772
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -35701,6 +36205,14 @@ if not MYPY:
|
|
|
35701
36205
|
"""
|
|
35702
36206
|
List of additional labels to add to rendered manifests.
|
|
35703
36207
|
"""
|
|
36208
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
36209
|
+
"""
|
|
36210
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
36211
|
+
"""
|
|
36212
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
36213
|
+
"""
|
|
36214
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
36215
|
+
"""
|
|
35704
36216
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
35705
36217
|
"""
|
|
35706
36218
|
List of Kustomize image override specifications.
|
|
@@ -35725,6 +36237,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
35725
36237
|
def __init__(__self__, *,
|
|
35726
36238
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
35727
36239
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
36240
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
36241
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
35728
36242
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
35729
36243
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
35730
36244
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -35732,6 +36246,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
35732
36246
|
"""
|
|
35733
36247
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
35734
36248
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
36249
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
36250
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
35735
36251
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
35736
36252
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
35737
36253
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -35741,6 +36257,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
35741
36257
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
35742
36258
|
if common_labels is not None:
|
|
35743
36259
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
36260
|
+
if force_common_annotations is not None:
|
|
36261
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
36262
|
+
if force_common_labels is not None:
|
|
36263
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
35744
36264
|
if images is not None:
|
|
35745
36265
|
pulumi.set(__self__, "images", images)
|
|
35746
36266
|
if name_prefix is not None:
|
|
@@ -35774,6 +36294,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
35774
36294
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
35775
36295
|
pulumi.set(self, "common_labels", value)
|
|
35776
36296
|
|
|
36297
|
+
@_builtins.property
|
|
36298
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
36299
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
36300
|
+
"""
|
|
36301
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
36302
|
+
"""
|
|
36303
|
+
return pulumi.get(self, "force_common_annotations")
|
|
36304
|
+
|
|
36305
|
+
@force_common_annotations.setter
|
|
36306
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
36307
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
36308
|
+
|
|
36309
|
+
@_builtins.property
|
|
36310
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
36311
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
36312
|
+
"""
|
|
36313
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
36314
|
+
"""
|
|
36315
|
+
return pulumi.get(self, "force_common_labels")
|
|
36316
|
+
|
|
36317
|
+
@force_common_labels.setter
|
|
36318
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
36319
|
+
pulumi.set(self, "force_common_labels", value)
|
|
36320
|
+
|
|
35777
36321
|
@_builtins.property
|
|
35778
36322
|
@pulumi.getter
|
|
35779
36323
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -37787,6 +38331,14 @@ if not MYPY:
|
|
|
37787
38331
|
"""
|
|
37788
38332
|
List of additional labels to add to rendered manifests.
|
|
37789
38333
|
"""
|
|
38334
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
38335
|
+
"""
|
|
38336
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
38337
|
+
"""
|
|
38338
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
38339
|
+
"""
|
|
38340
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
38341
|
+
"""
|
|
37790
38342
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
37791
38343
|
"""
|
|
37792
38344
|
List of Kustomize image override specifications.
|
|
@@ -37811,6 +38363,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
37811
38363
|
def __init__(__self__, *,
|
|
37812
38364
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
37813
38365
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
38366
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
38367
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
37814
38368
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
37815
38369
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
37816
38370
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -37818,6 +38372,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
37818
38372
|
"""
|
|
37819
38373
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
37820
38374
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
38375
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
38376
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
37821
38377
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
37822
38378
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
37823
38379
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -37827,6 +38383,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
37827
38383
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
37828
38384
|
if common_labels is not None:
|
|
37829
38385
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
38386
|
+
if force_common_annotations is not None:
|
|
38387
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
38388
|
+
if force_common_labels is not None:
|
|
38389
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
37830
38390
|
if images is not None:
|
|
37831
38391
|
pulumi.set(__self__, "images", images)
|
|
37832
38392
|
if name_prefix is not None:
|
|
@@ -37860,6 +38420,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
37860
38420
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
37861
38421
|
pulumi.set(self, "common_labels", value)
|
|
37862
38422
|
|
|
38423
|
+
@_builtins.property
|
|
38424
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
38425
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
38426
|
+
"""
|
|
38427
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
38428
|
+
"""
|
|
38429
|
+
return pulumi.get(self, "force_common_annotations")
|
|
38430
|
+
|
|
38431
|
+
@force_common_annotations.setter
|
|
38432
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
38433
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
38434
|
+
|
|
38435
|
+
@_builtins.property
|
|
38436
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
38437
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
38438
|
+
"""
|
|
38439
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
38440
|
+
"""
|
|
38441
|
+
return pulumi.get(self, "force_common_labels")
|
|
38442
|
+
|
|
38443
|
+
@force_common_labels.setter
|
|
38444
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
38445
|
+
pulumi.set(self, "force_common_labels", value)
|
|
38446
|
+
|
|
37863
38447
|
@_builtins.property
|
|
37864
38448
|
@pulumi.getter
|
|
37865
38449
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -39962,6 +40546,14 @@ if not MYPY:
|
|
|
39962
40546
|
"""
|
|
39963
40547
|
List of additional labels to add to rendered manifests.
|
|
39964
40548
|
"""
|
|
40549
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
40550
|
+
"""
|
|
40551
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
40552
|
+
"""
|
|
40553
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
40554
|
+
"""
|
|
40555
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
40556
|
+
"""
|
|
39965
40557
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
39966
40558
|
"""
|
|
39967
40559
|
List of Kustomize image override specifications.
|
|
@@ -39986,6 +40578,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
39986
40578
|
def __init__(__self__, *,
|
|
39987
40579
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
39988
40580
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
40581
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
40582
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
39989
40583
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
39990
40584
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
39991
40585
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -39993,6 +40587,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
39993
40587
|
"""
|
|
39994
40588
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
39995
40589
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
40590
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
40591
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
39996
40592
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
39997
40593
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
39998
40594
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -40002,6 +40598,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
40002
40598
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
40003
40599
|
if common_labels is not None:
|
|
40004
40600
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
40601
|
+
if force_common_annotations is not None:
|
|
40602
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
40603
|
+
if force_common_labels is not None:
|
|
40604
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
40005
40605
|
if images is not None:
|
|
40006
40606
|
pulumi.set(__self__, "images", images)
|
|
40007
40607
|
if name_prefix is not None:
|
|
@@ -40035,6 +40635,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
40035
40635
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
40036
40636
|
pulumi.set(self, "common_labels", value)
|
|
40037
40637
|
|
|
40638
|
+
@_builtins.property
|
|
40639
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
40640
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
40641
|
+
"""
|
|
40642
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
40643
|
+
"""
|
|
40644
|
+
return pulumi.get(self, "force_common_annotations")
|
|
40645
|
+
|
|
40646
|
+
@force_common_annotations.setter
|
|
40647
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
40648
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
40649
|
+
|
|
40650
|
+
@_builtins.property
|
|
40651
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
40652
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
40653
|
+
"""
|
|
40654
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
40655
|
+
"""
|
|
40656
|
+
return pulumi.get(self, "force_common_labels")
|
|
40657
|
+
|
|
40658
|
+
@force_common_labels.setter
|
|
40659
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
40660
|
+
pulumi.set(self, "force_common_labels", value)
|
|
40661
|
+
|
|
40038
40662
|
@_builtins.property
|
|
40039
40663
|
@pulumi.getter
|
|
40040
40664
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -41975,6 +42599,14 @@ if not MYPY:
|
|
|
41975
42599
|
"""
|
|
41976
42600
|
List of additional labels to add to rendered manifests.
|
|
41977
42601
|
"""
|
|
42602
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
42603
|
+
"""
|
|
42604
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
42605
|
+
"""
|
|
42606
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
42607
|
+
"""
|
|
42608
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
42609
|
+
"""
|
|
41978
42610
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
41979
42611
|
"""
|
|
41980
42612
|
List of Kustomize image override specifications.
|
|
@@ -41999,6 +42631,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
41999
42631
|
def __init__(__self__, *,
|
|
42000
42632
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
42001
42633
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
42634
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
42635
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
42002
42636
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
42003
42637
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
42004
42638
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -42006,6 +42640,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
42006
42640
|
"""
|
|
42007
42641
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
42008
42642
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
42643
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
42644
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
42009
42645
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
42010
42646
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
42011
42647
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -42015,6 +42651,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
42015
42651
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
42016
42652
|
if common_labels is not None:
|
|
42017
42653
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
42654
|
+
if force_common_annotations is not None:
|
|
42655
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
42656
|
+
if force_common_labels is not None:
|
|
42657
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
42018
42658
|
if images is not None:
|
|
42019
42659
|
pulumi.set(__self__, "images", images)
|
|
42020
42660
|
if name_prefix is not None:
|
|
@@ -42048,6 +42688,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
42048
42688
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
42049
42689
|
pulumi.set(self, "common_labels", value)
|
|
42050
42690
|
|
|
42691
|
+
@_builtins.property
|
|
42692
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
42693
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
42694
|
+
"""
|
|
42695
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
42696
|
+
"""
|
|
42697
|
+
return pulumi.get(self, "force_common_annotations")
|
|
42698
|
+
|
|
42699
|
+
@force_common_annotations.setter
|
|
42700
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
42701
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
42702
|
+
|
|
42703
|
+
@_builtins.property
|
|
42704
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
42705
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
42706
|
+
"""
|
|
42707
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
42708
|
+
"""
|
|
42709
|
+
return pulumi.get(self, "force_common_labels")
|
|
42710
|
+
|
|
42711
|
+
@force_common_labels.setter
|
|
42712
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
42713
|
+
pulumi.set(self, "force_common_labels", value)
|
|
42714
|
+
|
|
42051
42715
|
@_builtins.property
|
|
42052
42716
|
@pulumi.getter
|
|
42053
42717
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -44812,6 +45476,14 @@ if not MYPY:
|
|
|
44812
45476
|
"""
|
|
44813
45477
|
List of additional labels to add to rendered manifests.
|
|
44814
45478
|
"""
|
|
45479
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
45480
|
+
"""
|
|
45481
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
45482
|
+
"""
|
|
45483
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
45484
|
+
"""
|
|
45485
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
45486
|
+
"""
|
|
44815
45487
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
44816
45488
|
"""
|
|
44817
45489
|
List of Kustomize image override specifications.
|
|
@@ -44836,6 +45508,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
44836
45508
|
def __init__(__self__, *,
|
|
44837
45509
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
44838
45510
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
45511
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
45512
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
44839
45513
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
44840
45514
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
44841
45515
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -44843,6 +45517,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
44843
45517
|
"""
|
|
44844
45518
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
44845
45519
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
45520
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
45521
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
44846
45522
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
44847
45523
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
44848
45524
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -44852,6 +45528,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
44852
45528
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
44853
45529
|
if common_labels is not None:
|
|
44854
45530
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
45531
|
+
if force_common_annotations is not None:
|
|
45532
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
45533
|
+
if force_common_labels is not None:
|
|
45534
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
44855
45535
|
if images is not None:
|
|
44856
45536
|
pulumi.set(__self__, "images", images)
|
|
44857
45537
|
if name_prefix is not None:
|
|
@@ -44885,6 +45565,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
44885
45565
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
44886
45566
|
pulumi.set(self, "common_labels", value)
|
|
44887
45567
|
|
|
45568
|
+
@_builtins.property
|
|
45569
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
45570
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
45571
|
+
"""
|
|
45572
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
45573
|
+
"""
|
|
45574
|
+
return pulumi.get(self, "force_common_annotations")
|
|
45575
|
+
|
|
45576
|
+
@force_common_annotations.setter
|
|
45577
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
45578
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
45579
|
+
|
|
45580
|
+
@_builtins.property
|
|
45581
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
45582
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
45583
|
+
"""
|
|
45584
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
45585
|
+
"""
|
|
45586
|
+
return pulumi.get(self, "force_common_labels")
|
|
45587
|
+
|
|
45588
|
+
@force_common_labels.setter
|
|
45589
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
45590
|
+
pulumi.set(self, "force_common_labels", value)
|
|
45591
|
+
|
|
44888
45592
|
@_builtins.property
|
|
44889
45593
|
@pulumi.getter
|
|
44890
45594
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -48073,6 +48777,14 @@ if not MYPY:
|
|
|
48073
48777
|
"""
|
|
48074
48778
|
List of additional labels to add to rendered manifests.
|
|
48075
48779
|
"""
|
|
48780
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
48781
|
+
"""
|
|
48782
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
48783
|
+
"""
|
|
48784
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
48785
|
+
"""
|
|
48786
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
48787
|
+
"""
|
|
48076
48788
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
48077
48789
|
"""
|
|
48078
48790
|
List of Kustomize image override specifications.
|
|
@@ -48097,6 +48809,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
48097
48809
|
def __init__(__self__, *,
|
|
48098
48810
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
48099
48811
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
48812
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
48813
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
48100
48814
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
48101
48815
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
48102
48816
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -48104,6 +48818,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
48104
48818
|
"""
|
|
48105
48819
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
48106
48820
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
48821
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
48822
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
48107
48823
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
48108
48824
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
48109
48825
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -48113,6 +48829,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
48113
48829
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
48114
48830
|
if common_labels is not None:
|
|
48115
48831
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
48832
|
+
if force_common_annotations is not None:
|
|
48833
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
48834
|
+
if force_common_labels is not None:
|
|
48835
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
48116
48836
|
if images is not None:
|
|
48117
48837
|
pulumi.set(__self__, "images", images)
|
|
48118
48838
|
if name_prefix is not None:
|
|
@@ -48146,6 +48866,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixGenera
|
|
|
48146
48866
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
48147
48867
|
pulumi.set(self, "common_labels", value)
|
|
48148
48868
|
|
|
48869
|
+
@_builtins.property
|
|
48870
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
48871
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
48872
|
+
"""
|
|
48873
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
48874
|
+
"""
|
|
48875
|
+
return pulumi.get(self, "force_common_annotations")
|
|
48876
|
+
|
|
48877
|
+
@force_common_annotations.setter
|
|
48878
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
48879
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
48880
|
+
|
|
48881
|
+
@_builtins.property
|
|
48882
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
48883
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
48884
|
+
"""
|
|
48885
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
48886
|
+
"""
|
|
48887
|
+
return pulumi.get(self, "force_common_labels")
|
|
48888
|
+
|
|
48889
|
+
@force_common_labels.setter
|
|
48890
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
48891
|
+
pulumi.set(self, "force_common_labels", value)
|
|
48892
|
+
|
|
48149
48893
|
@_builtins.property
|
|
48150
48894
|
@pulumi.getter
|
|
48151
48895
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -50159,6 +50903,14 @@ if not MYPY:
|
|
|
50159
50903
|
"""
|
|
50160
50904
|
List of additional labels to add to rendered manifests.
|
|
50161
50905
|
"""
|
|
50906
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
50907
|
+
"""
|
|
50908
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
50909
|
+
"""
|
|
50910
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
50911
|
+
"""
|
|
50912
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
50913
|
+
"""
|
|
50162
50914
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
50163
50915
|
"""
|
|
50164
50916
|
List of Kustomize image override specifications.
|
|
@@ -50183,6 +50935,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixTempla
|
|
|
50183
50935
|
def __init__(__self__, *,
|
|
50184
50936
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
50185
50937
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
50938
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
50939
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
50186
50940
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
50187
50941
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
50188
50942
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -50190,6 +50944,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixTempla
|
|
|
50190
50944
|
"""
|
|
50191
50945
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
50192
50946
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
50947
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
50948
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
50193
50949
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
50194
50950
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
50195
50951
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -50199,6 +50955,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixTempla
|
|
|
50199
50955
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
50200
50956
|
if common_labels is not None:
|
|
50201
50957
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
50958
|
+
if force_common_annotations is not None:
|
|
50959
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
50960
|
+
if force_common_labels is not None:
|
|
50961
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
50202
50962
|
if images is not None:
|
|
50203
50963
|
pulumi.set(__self__, "images", images)
|
|
50204
50964
|
if name_prefix is not None:
|
|
@@ -50232,6 +50992,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMatrixTempla
|
|
|
50232
50992
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
50233
50993
|
pulumi.set(self, "common_labels", value)
|
|
50234
50994
|
|
|
50995
|
+
@_builtins.property
|
|
50996
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
50997
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
50998
|
+
"""
|
|
50999
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
51000
|
+
"""
|
|
51001
|
+
return pulumi.get(self, "force_common_annotations")
|
|
51002
|
+
|
|
51003
|
+
@force_common_annotations.setter
|
|
51004
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
51005
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
51006
|
+
|
|
51007
|
+
@_builtins.property
|
|
51008
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
51009
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
51010
|
+
"""
|
|
51011
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
51012
|
+
"""
|
|
51013
|
+
return pulumi.get(self, "force_common_labels")
|
|
51014
|
+
|
|
51015
|
+
@force_common_labels.setter
|
|
51016
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
51017
|
+
pulumi.set(self, "force_common_labels", value)
|
|
51018
|
+
|
|
50235
51019
|
@_builtins.property
|
|
50236
51020
|
@pulumi.getter
|
|
50237
51021
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -52689,6 +53473,14 @@ if not MYPY:
|
|
|
52689
53473
|
"""
|
|
52690
53474
|
List of additional labels to add to rendered manifests.
|
|
52691
53475
|
"""
|
|
53476
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
53477
|
+
"""
|
|
53478
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
53479
|
+
"""
|
|
53480
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
53481
|
+
"""
|
|
53482
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
53483
|
+
"""
|
|
52692
53484
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
52693
53485
|
"""
|
|
52694
53486
|
List of Kustomize image override specifications.
|
|
@@ -52713,6 +53505,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
52713
53505
|
def __init__(__self__, *,
|
|
52714
53506
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
52715
53507
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
53508
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
53509
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
52716
53510
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
52717
53511
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
52718
53512
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -52720,6 +53514,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
52720
53514
|
"""
|
|
52721
53515
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
52722
53516
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
53517
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
53518
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
52723
53519
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
52724
53520
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
52725
53521
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -52729,6 +53525,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
52729
53525
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
52730
53526
|
if common_labels is not None:
|
|
52731
53527
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
53528
|
+
if force_common_annotations is not None:
|
|
53529
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
53530
|
+
if force_common_labels is not None:
|
|
53531
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
52732
53532
|
if images is not None:
|
|
52733
53533
|
pulumi.set(__self__, "images", images)
|
|
52734
53534
|
if name_prefix is not None:
|
|
@@ -52762,6 +53562,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
52762
53562
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
52763
53563
|
pulumi.set(self, "common_labels", value)
|
|
52764
53564
|
|
|
53565
|
+
@_builtins.property
|
|
53566
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
53567
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
53568
|
+
"""
|
|
53569
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
53570
|
+
"""
|
|
53571
|
+
return pulumi.get(self, "force_common_annotations")
|
|
53572
|
+
|
|
53573
|
+
@force_common_annotations.setter
|
|
53574
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
53575
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
53576
|
+
|
|
53577
|
+
@_builtins.property
|
|
53578
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
53579
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
53580
|
+
"""
|
|
53581
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
53582
|
+
"""
|
|
53583
|
+
return pulumi.get(self, "force_common_labels")
|
|
53584
|
+
|
|
53585
|
+
@force_common_labels.setter
|
|
53586
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
53587
|
+
pulumi.set(self, "force_common_labels", value)
|
|
53588
|
+
|
|
52765
53589
|
@_builtins.property
|
|
52766
53590
|
@pulumi.getter
|
|
52767
53591
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -54775,6 +55599,14 @@ if not MYPY:
|
|
|
54775
55599
|
"""
|
|
54776
55600
|
List of additional labels to add to rendered manifests.
|
|
54777
55601
|
"""
|
|
55602
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
55603
|
+
"""
|
|
55604
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
55605
|
+
"""
|
|
55606
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
55607
|
+
"""
|
|
55608
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
55609
|
+
"""
|
|
54778
55610
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
54779
55611
|
"""
|
|
54780
55612
|
List of Kustomize image override specifications.
|
|
@@ -54799,6 +55631,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
54799
55631
|
def __init__(__self__, *,
|
|
54800
55632
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
54801
55633
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
55634
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
55635
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
54802
55636
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
54803
55637
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
54804
55638
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -54806,6 +55640,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
54806
55640
|
"""
|
|
54807
55641
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
54808
55642
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
55643
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
55644
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
54809
55645
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
54810
55646
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
54811
55647
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -54815,6 +55651,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
54815
55651
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
54816
55652
|
if common_labels is not None:
|
|
54817
55653
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
55654
|
+
if force_common_annotations is not None:
|
|
55655
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
55656
|
+
if force_common_labels is not None:
|
|
55657
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
54818
55658
|
if images is not None:
|
|
54819
55659
|
pulumi.set(__self__, "images", images)
|
|
54820
55660
|
if name_prefix is not None:
|
|
@@ -54848,6 +55688,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
54848
55688
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
54849
55689
|
pulumi.set(self, "common_labels", value)
|
|
54850
55690
|
|
|
55691
|
+
@_builtins.property
|
|
55692
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
55693
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
55694
|
+
"""
|
|
55695
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
55696
|
+
"""
|
|
55697
|
+
return pulumi.get(self, "force_common_annotations")
|
|
55698
|
+
|
|
55699
|
+
@force_common_annotations.setter
|
|
55700
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
55701
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
55702
|
+
|
|
55703
|
+
@_builtins.property
|
|
55704
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
55705
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
55706
|
+
"""
|
|
55707
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
55708
|
+
"""
|
|
55709
|
+
return pulumi.get(self, "force_common_labels")
|
|
55710
|
+
|
|
55711
|
+
@force_common_labels.setter
|
|
55712
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
55713
|
+
pulumi.set(self, "force_common_labels", value)
|
|
55714
|
+
|
|
54851
55715
|
@_builtins.property
|
|
54852
55716
|
@pulumi.getter
|
|
54853
55717
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -56950,6 +57814,14 @@ if not MYPY:
|
|
|
56950
57814
|
"""
|
|
56951
57815
|
List of additional labels to add to rendered manifests.
|
|
56952
57816
|
"""
|
|
57817
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
57818
|
+
"""
|
|
57819
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
57820
|
+
"""
|
|
57821
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
57822
|
+
"""
|
|
57823
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
57824
|
+
"""
|
|
56953
57825
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
56954
57826
|
"""
|
|
56955
57827
|
List of Kustomize image override specifications.
|
|
@@ -56974,6 +57846,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
56974
57846
|
def __init__(__self__, *,
|
|
56975
57847
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
56976
57848
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
57849
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
57850
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
56977
57851
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
56978
57852
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
56979
57853
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -56981,6 +57855,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
56981
57855
|
"""
|
|
56982
57856
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
56983
57857
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
57858
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
57859
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
56984
57860
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
56985
57861
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
56986
57862
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -56990,6 +57866,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
56990
57866
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
56991
57867
|
if common_labels is not None:
|
|
56992
57868
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
57869
|
+
if force_common_annotations is not None:
|
|
57870
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
57871
|
+
if force_common_labels is not None:
|
|
57872
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
56993
57873
|
if images is not None:
|
|
56994
57874
|
pulumi.set(__self__, "images", images)
|
|
56995
57875
|
if name_prefix is not None:
|
|
@@ -57023,6 +57903,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
57023
57903
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
57024
57904
|
pulumi.set(self, "common_labels", value)
|
|
57025
57905
|
|
|
57906
|
+
@_builtins.property
|
|
57907
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
57908
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
57909
|
+
"""
|
|
57910
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
57911
|
+
"""
|
|
57912
|
+
return pulumi.get(self, "force_common_annotations")
|
|
57913
|
+
|
|
57914
|
+
@force_common_annotations.setter
|
|
57915
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
57916
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
57917
|
+
|
|
57918
|
+
@_builtins.property
|
|
57919
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
57920
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
57921
|
+
"""
|
|
57922
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
57923
|
+
"""
|
|
57924
|
+
return pulumi.get(self, "force_common_labels")
|
|
57925
|
+
|
|
57926
|
+
@force_common_labels.setter
|
|
57927
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
57928
|
+
pulumi.set(self, "force_common_labels", value)
|
|
57929
|
+
|
|
57026
57930
|
@_builtins.property
|
|
57027
57931
|
@pulumi.getter
|
|
57028
57932
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -58963,6 +59867,14 @@ if not MYPY:
|
|
|
58963
59867
|
"""
|
|
58964
59868
|
List of additional labels to add to rendered manifests.
|
|
58965
59869
|
"""
|
|
59870
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
59871
|
+
"""
|
|
59872
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
59873
|
+
"""
|
|
59874
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
59875
|
+
"""
|
|
59876
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
59877
|
+
"""
|
|
58966
59878
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
58967
59879
|
"""
|
|
58968
59880
|
List of Kustomize image override specifications.
|
|
@@ -58987,6 +59899,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
58987
59899
|
def __init__(__self__, *,
|
|
58988
59900
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
58989
59901
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
59902
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
59903
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
58990
59904
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
58991
59905
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
58992
59906
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -58994,6 +59908,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
58994
59908
|
"""
|
|
58995
59909
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
58996
59910
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
59911
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
59912
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
58997
59913
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
58998
59914
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
58999
59915
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -59003,6 +59919,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
59003
59919
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
59004
59920
|
if common_labels is not None:
|
|
59005
59921
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
59922
|
+
if force_common_annotations is not None:
|
|
59923
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
59924
|
+
if force_common_labels is not None:
|
|
59925
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
59006
59926
|
if images is not None:
|
|
59007
59927
|
pulumi.set(__self__, "images", images)
|
|
59008
59928
|
if name_prefix is not None:
|
|
@@ -59036,6 +59956,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
59036
59956
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
59037
59957
|
pulumi.set(self, "common_labels", value)
|
|
59038
59958
|
|
|
59959
|
+
@_builtins.property
|
|
59960
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
59961
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
59962
|
+
"""
|
|
59963
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
59964
|
+
"""
|
|
59965
|
+
return pulumi.get(self, "force_common_annotations")
|
|
59966
|
+
|
|
59967
|
+
@force_common_annotations.setter
|
|
59968
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
59969
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
59970
|
+
|
|
59971
|
+
@_builtins.property
|
|
59972
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
59973
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
59974
|
+
"""
|
|
59975
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
59976
|
+
"""
|
|
59977
|
+
return pulumi.get(self, "force_common_labels")
|
|
59978
|
+
|
|
59979
|
+
@force_common_labels.setter
|
|
59980
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
59981
|
+
pulumi.set(self, "force_common_labels", value)
|
|
59982
|
+
|
|
59039
59983
|
@_builtins.property
|
|
59040
59984
|
@pulumi.getter
|
|
59041
59985
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -61800,6 +62744,14 @@ if not MYPY:
|
|
|
61800
62744
|
"""
|
|
61801
62745
|
List of additional labels to add to rendered manifests.
|
|
61802
62746
|
"""
|
|
62747
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
62748
|
+
"""
|
|
62749
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
62750
|
+
"""
|
|
62751
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
62752
|
+
"""
|
|
62753
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
62754
|
+
"""
|
|
61803
62755
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
61804
62756
|
"""
|
|
61805
62757
|
List of Kustomize image override specifications.
|
|
@@ -61824,6 +62776,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
61824
62776
|
def __init__(__self__, *,
|
|
61825
62777
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
61826
62778
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
62779
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
62780
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
61827
62781
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
61828
62782
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
61829
62783
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -61831,6 +62785,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
61831
62785
|
"""
|
|
61832
62786
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
61833
62787
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
62788
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
62789
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
61834
62790
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
61835
62791
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
61836
62792
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -61840,6 +62796,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
61840
62796
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
61841
62797
|
if common_labels is not None:
|
|
61842
62798
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
62799
|
+
if force_common_annotations is not None:
|
|
62800
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
62801
|
+
if force_common_labels is not None:
|
|
62802
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
61843
62803
|
if images is not None:
|
|
61844
62804
|
pulumi.set(__self__, "images", images)
|
|
61845
62805
|
if name_prefix is not None:
|
|
@@ -61873,6 +62833,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
61873
62833
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
61874
62834
|
pulumi.set(self, "common_labels", value)
|
|
61875
62835
|
|
|
62836
|
+
@_builtins.property
|
|
62837
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
62838
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
62839
|
+
"""
|
|
62840
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
62841
|
+
"""
|
|
62842
|
+
return pulumi.get(self, "force_common_annotations")
|
|
62843
|
+
|
|
62844
|
+
@force_common_annotations.setter
|
|
62845
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
62846
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
62847
|
+
|
|
62848
|
+
@_builtins.property
|
|
62849
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
62850
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
62851
|
+
"""
|
|
62852
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
62853
|
+
"""
|
|
62854
|
+
return pulumi.get(self, "force_common_labels")
|
|
62855
|
+
|
|
62856
|
+
@force_common_labels.setter
|
|
62857
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
62858
|
+
pulumi.set(self, "force_common_labels", value)
|
|
62859
|
+
|
|
61876
62860
|
@_builtins.property
|
|
61877
62861
|
@pulumi.getter
|
|
61878
62862
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -65061,6 +66045,14 @@ if not MYPY:
|
|
|
65061
66045
|
"""
|
|
65062
66046
|
List of additional labels to add to rendered manifests.
|
|
65063
66047
|
"""
|
|
66048
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
66049
|
+
"""
|
|
66050
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
66051
|
+
"""
|
|
66052
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
66053
|
+
"""
|
|
66054
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
66055
|
+
"""
|
|
65064
66056
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
65065
66057
|
"""
|
|
65066
66058
|
List of Kustomize image override specifications.
|
|
@@ -65085,6 +66077,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
65085
66077
|
def __init__(__self__, *,
|
|
65086
66078
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
65087
66079
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
66080
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
66081
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
65088
66082
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
65089
66083
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
65090
66084
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -65092,6 +66086,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
65092
66086
|
"""
|
|
65093
66087
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
65094
66088
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
66089
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
66090
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
65095
66091
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
65096
66092
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
65097
66093
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -65101,6 +66097,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
65101
66097
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
65102
66098
|
if common_labels is not None:
|
|
65103
66099
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
66100
|
+
if force_common_annotations is not None:
|
|
66101
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
66102
|
+
if force_common_labels is not None:
|
|
66103
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
65104
66104
|
if images is not None:
|
|
65105
66105
|
pulumi.set(__self__, "images", images)
|
|
65106
66106
|
if name_prefix is not None:
|
|
@@ -65134,6 +66134,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeGenerat
|
|
|
65134
66134
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
65135
66135
|
pulumi.set(self, "common_labels", value)
|
|
65136
66136
|
|
|
66137
|
+
@_builtins.property
|
|
66138
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
66139
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
66140
|
+
"""
|
|
66141
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
66142
|
+
"""
|
|
66143
|
+
return pulumi.get(self, "force_common_annotations")
|
|
66144
|
+
|
|
66145
|
+
@force_common_annotations.setter
|
|
66146
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
66147
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
66148
|
+
|
|
66149
|
+
@_builtins.property
|
|
66150
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
66151
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
66152
|
+
"""
|
|
66153
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
66154
|
+
"""
|
|
66155
|
+
return pulumi.get(self, "force_common_labels")
|
|
66156
|
+
|
|
66157
|
+
@force_common_labels.setter
|
|
66158
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
66159
|
+
pulumi.set(self, "force_common_labels", value)
|
|
66160
|
+
|
|
65137
66161
|
@_builtins.property
|
|
65138
66162
|
@pulumi.getter
|
|
65139
66163
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -67147,6 +68171,14 @@ if not MYPY:
|
|
|
67147
68171
|
"""
|
|
67148
68172
|
List of additional labels to add to rendered manifests.
|
|
67149
68173
|
"""
|
|
68174
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
68175
|
+
"""
|
|
68176
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
68177
|
+
"""
|
|
68178
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
68179
|
+
"""
|
|
68180
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
68181
|
+
"""
|
|
67150
68182
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
67151
68183
|
"""
|
|
67152
68184
|
List of Kustomize image override specifications.
|
|
@@ -67171,6 +68203,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeTemplat
|
|
|
67171
68203
|
def __init__(__self__, *,
|
|
67172
68204
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
67173
68205
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
68206
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
68207
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
67174
68208
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
67175
68209
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
67176
68210
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -67178,6 +68212,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeTemplat
|
|
|
67178
68212
|
"""
|
|
67179
68213
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
67180
68214
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
68215
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
68216
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
67181
68217
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
67182
68218
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
67183
68219
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -67187,6 +68223,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeTemplat
|
|
|
67187
68223
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
67188
68224
|
if common_labels is not None:
|
|
67189
68225
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
68226
|
+
if force_common_annotations is not None:
|
|
68227
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
68228
|
+
if force_common_labels is not None:
|
|
68229
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
67190
68230
|
if images is not None:
|
|
67191
68231
|
pulumi.set(__self__, "images", images)
|
|
67192
68232
|
if name_prefix is not None:
|
|
@@ -67220,6 +68260,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorMergeTemplat
|
|
|
67220
68260
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
67221
68261
|
pulumi.set(self, "common_labels", value)
|
|
67222
68262
|
|
|
68263
|
+
@_builtins.property
|
|
68264
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
68265
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
68266
|
+
"""
|
|
68267
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
68268
|
+
"""
|
|
68269
|
+
return pulumi.get(self, "force_common_annotations")
|
|
68270
|
+
|
|
68271
|
+
@force_common_annotations.setter
|
|
68272
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
68273
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
68274
|
+
|
|
68275
|
+
@_builtins.property
|
|
68276
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
68277
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
68278
|
+
"""
|
|
68279
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
68280
|
+
"""
|
|
68281
|
+
return pulumi.get(self, "force_common_labels")
|
|
68282
|
+
|
|
68283
|
+
@force_common_labels.setter
|
|
68284
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
68285
|
+
pulumi.set(self, "force_common_labels", value)
|
|
68286
|
+
|
|
67223
68287
|
@_builtins.property
|
|
67224
68288
|
@pulumi.getter
|
|
67225
68289
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -69984,6 +71048,14 @@ if not MYPY:
|
|
|
69984
71048
|
"""
|
|
69985
71049
|
List of additional labels to add to rendered manifests.
|
|
69986
71050
|
"""
|
|
71051
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
71052
|
+
"""
|
|
71053
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
71054
|
+
"""
|
|
71055
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
71056
|
+
"""
|
|
71057
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
71058
|
+
"""
|
|
69987
71059
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
69988
71060
|
"""
|
|
69989
71061
|
List of Kustomize image override specifications.
|
|
@@ -70008,6 +71080,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorPullRequestT
|
|
|
70008
71080
|
def __init__(__self__, *,
|
|
70009
71081
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
70010
71082
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
71083
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
71084
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
70011
71085
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
70012
71086
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
70013
71087
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -70015,6 +71089,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorPullRequestT
|
|
|
70015
71089
|
"""
|
|
70016
71090
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
70017
71091
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
71092
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
71093
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
70018
71094
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
70019
71095
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
70020
71096
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -70024,6 +71100,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorPullRequestT
|
|
|
70024
71100
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
70025
71101
|
if common_labels is not None:
|
|
70026
71102
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
71103
|
+
if force_common_annotations is not None:
|
|
71104
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
71105
|
+
if force_common_labels is not None:
|
|
71106
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
70027
71107
|
if images is not None:
|
|
70028
71108
|
pulumi.set(__self__, "images", images)
|
|
70029
71109
|
if name_prefix is not None:
|
|
@@ -70057,6 +71137,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorPullRequestT
|
|
|
70057
71137
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
70058
71138
|
pulumi.set(self, "common_labels", value)
|
|
70059
71139
|
|
|
71140
|
+
@_builtins.property
|
|
71141
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
71142
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
71143
|
+
"""
|
|
71144
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
71145
|
+
"""
|
|
71146
|
+
return pulumi.get(self, "force_common_annotations")
|
|
71147
|
+
|
|
71148
|
+
@force_common_annotations.setter
|
|
71149
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
71150
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
71151
|
+
|
|
71152
|
+
@_builtins.property
|
|
71153
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
71154
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
71155
|
+
"""
|
|
71156
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
71157
|
+
"""
|
|
71158
|
+
return pulumi.get(self, "force_common_labels")
|
|
71159
|
+
|
|
71160
|
+
@force_common_labels.setter
|
|
71161
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
71162
|
+
pulumi.set(self, "force_common_labels", value)
|
|
71163
|
+
|
|
70060
71164
|
@_builtins.property
|
|
70061
71165
|
@pulumi.getter
|
|
70062
71166
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -73245,6 +74349,14 @@ if not MYPY:
|
|
|
73245
74349
|
"""
|
|
73246
74350
|
List of additional labels to add to rendered manifests.
|
|
73247
74351
|
"""
|
|
74352
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
74353
|
+
"""
|
|
74354
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
74355
|
+
"""
|
|
74356
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
74357
|
+
"""
|
|
74358
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
74359
|
+
"""
|
|
73248
74360
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
73249
74361
|
"""
|
|
73250
74362
|
List of Kustomize image override specifications.
|
|
@@ -73269,6 +74381,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorScmProviderT
|
|
|
73269
74381
|
def __init__(__self__, *,
|
|
73270
74382
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
73271
74383
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
74384
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
74385
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
73272
74386
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
73273
74387
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
73274
74388
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -73276,6 +74390,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorScmProviderT
|
|
|
73276
74390
|
"""
|
|
73277
74391
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
73278
74392
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
74393
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
74394
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
73279
74395
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
73280
74396
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
73281
74397
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -73285,6 +74401,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorScmProviderT
|
|
|
73285
74401
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
73286
74402
|
if common_labels is not None:
|
|
73287
74403
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
74404
|
+
if force_common_annotations is not None:
|
|
74405
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
74406
|
+
if force_common_labels is not None:
|
|
74407
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
73288
74408
|
if images is not None:
|
|
73289
74409
|
pulumi.set(__self__, "images", images)
|
|
73290
74410
|
if name_prefix is not None:
|
|
@@ -73318,6 +74438,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixGeneratorScmProviderT
|
|
|
73318
74438
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
73319
74439
|
pulumi.set(self, "common_labels", value)
|
|
73320
74440
|
|
|
74441
|
+
@_builtins.property
|
|
74442
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
74443
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
74444
|
+
"""
|
|
74445
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
74446
|
+
"""
|
|
74447
|
+
return pulumi.get(self, "force_common_annotations")
|
|
74448
|
+
|
|
74449
|
+
@force_common_annotations.setter
|
|
74450
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
74451
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
74452
|
+
|
|
74453
|
+
@_builtins.property
|
|
74454
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
74455
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
74456
|
+
"""
|
|
74457
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
74458
|
+
"""
|
|
74459
|
+
return pulumi.get(self, "force_common_labels")
|
|
74460
|
+
|
|
74461
|
+
@force_common_labels.setter
|
|
74462
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
74463
|
+
pulumi.set(self, "force_common_labels", value)
|
|
74464
|
+
|
|
73321
74465
|
@_builtins.property
|
|
73322
74466
|
@pulumi.getter
|
|
73323
74467
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -75331,6 +76475,14 @@ if not MYPY:
|
|
|
75331
76475
|
"""
|
|
75332
76476
|
List of additional labels to add to rendered manifests.
|
|
75333
76477
|
"""
|
|
76478
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
76479
|
+
"""
|
|
76480
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
76481
|
+
"""
|
|
76482
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
76483
|
+
"""
|
|
76484
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
76485
|
+
"""
|
|
75334
76486
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
75335
76487
|
"""
|
|
75336
76488
|
List of Kustomize image override specifications.
|
|
@@ -75355,6 +76507,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixTemplateSpecSourceKus
|
|
|
75355
76507
|
def __init__(__self__, *,
|
|
75356
76508
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
75357
76509
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
76510
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
76511
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
75358
76512
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
75359
76513
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
75360
76514
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -75362,6 +76516,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixTemplateSpecSourceKus
|
|
|
75362
76516
|
"""
|
|
75363
76517
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
75364
76518
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
76519
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
76520
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
75365
76521
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
75366
76522
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
75367
76523
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -75371,6 +76527,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixTemplateSpecSourceKus
|
|
|
75371
76527
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
75372
76528
|
if common_labels is not None:
|
|
75373
76529
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
76530
|
+
if force_common_annotations is not None:
|
|
76531
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
76532
|
+
if force_common_labels is not None:
|
|
76533
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
75374
76534
|
if images is not None:
|
|
75375
76535
|
pulumi.set(__self__, "images", images)
|
|
75376
76536
|
if name_prefix is not None:
|
|
@@ -75404,6 +76564,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMatrixTemplateSpecSourceKus
|
|
|
75404
76564
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
75405
76565
|
pulumi.set(self, "common_labels", value)
|
|
75406
76566
|
|
|
76567
|
+
@_builtins.property
|
|
76568
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
76569
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
76570
|
+
"""
|
|
76571
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
76572
|
+
"""
|
|
76573
|
+
return pulumi.get(self, "force_common_annotations")
|
|
76574
|
+
|
|
76575
|
+
@force_common_annotations.setter
|
|
76576
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
76577
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
76578
|
+
|
|
76579
|
+
@_builtins.property
|
|
76580
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
76581
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
76582
|
+
"""
|
|
76583
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
76584
|
+
"""
|
|
76585
|
+
return pulumi.get(self, "force_common_labels")
|
|
76586
|
+
|
|
76587
|
+
@force_common_labels.setter
|
|
76588
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
76589
|
+
pulumi.set(self, "force_common_labels", value)
|
|
76590
|
+
|
|
75407
76591
|
@_builtins.property
|
|
75408
76592
|
@pulumi.getter
|
|
75409
76593
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -77901,6 +79085,14 @@ if not MYPY:
|
|
|
77901
79085
|
"""
|
|
77902
79086
|
List of additional labels to add to rendered manifests.
|
|
77903
79087
|
"""
|
|
79088
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
79089
|
+
"""
|
|
79090
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
79091
|
+
"""
|
|
79092
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
79093
|
+
"""
|
|
79094
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
79095
|
+
"""
|
|
77904
79096
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
77905
79097
|
"""
|
|
77906
79098
|
List of Kustomize image override specifications.
|
|
@@ -77925,6 +79117,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterDecisi
|
|
|
77925
79117
|
def __init__(__self__, *,
|
|
77926
79118
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
77927
79119
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
79120
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
79121
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
77928
79122
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
77929
79123
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
77930
79124
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -77932,6 +79126,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterDecisi
|
|
|
77932
79126
|
"""
|
|
77933
79127
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
77934
79128
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
79129
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
79130
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
77935
79131
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
77936
79132
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
77937
79133
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -77941,6 +79137,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterDecisi
|
|
|
77941
79137
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
77942
79138
|
if common_labels is not None:
|
|
77943
79139
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
79140
|
+
if force_common_annotations is not None:
|
|
79141
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
79142
|
+
if force_common_labels is not None:
|
|
79143
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
77944
79144
|
if images is not None:
|
|
77945
79145
|
pulumi.set(__self__, "images", images)
|
|
77946
79146
|
if name_prefix is not None:
|
|
@@ -77974,6 +79174,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterDecisi
|
|
|
77974
79174
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
77975
79175
|
pulumi.set(self, "common_labels", value)
|
|
77976
79176
|
|
|
79177
|
+
@_builtins.property
|
|
79178
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
79179
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
79180
|
+
"""
|
|
79181
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
79182
|
+
"""
|
|
79183
|
+
return pulumi.get(self, "force_common_annotations")
|
|
79184
|
+
|
|
79185
|
+
@force_common_annotations.setter
|
|
79186
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
79187
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
79188
|
+
|
|
79189
|
+
@_builtins.property
|
|
79190
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
79191
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
79192
|
+
"""
|
|
79193
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
79194
|
+
"""
|
|
79195
|
+
return pulumi.get(self, "force_common_labels")
|
|
79196
|
+
|
|
79197
|
+
@force_common_labels.setter
|
|
79198
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
79199
|
+
pulumi.set(self, "force_common_labels", value)
|
|
79200
|
+
|
|
77977
79201
|
@_builtins.property
|
|
77978
79202
|
@pulumi.getter
|
|
77979
79203
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -79987,6 +81211,14 @@ if not MYPY:
|
|
|
79987
81211
|
"""
|
|
79988
81212
|
List of additional labels to add to rendered manifests.
|
|
79989
81213
|
"""
|
|
81214
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
81215
|
+
"""
|
|
81216
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
81217
|
+
"""
|
|
81218
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
81219
|
+
"""
|
|
81220
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
81221
|
+
"""
|
|
79990
81222
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
79991
81223
|
"""
|
|
79992
81224
|
List of Kustomize image override specifications.
|
|
@@ -80011,6 +81243,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterTempla
|
|
|
80011
81243
|
def __init__(__self__, *,
|
|
80012
81244
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
80013
81245
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
81246
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
81247
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
80014
81248
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
80015
81249
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
80016
81250
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -80018,6 +81252,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterTempla
|
|
|
80018
81252
|
"""
|
|
80019
81253
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
80020
81254
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
81255
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
81256
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
80021
81257
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
80022
81258
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
80023
81259
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -80027,6 +81263,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterTempla
|
|
|
80027
81263
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
80028
81264
|
if common_labels is not None:
|
|
80029
81265
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
81266
|
+
if force_common_annotations is not None:
|
|
81267
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
81268
|
+
if force_common_labels is not None:
|
|
81269
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
80030
81270
|
if images is not None:
|
|
80031
81271
|
pulumi.set(__self__, "images", images)
|
|
80032
81272
|
if name_prefix is not None:
|
|
@@ -80060,6 +81300,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorClusterTempla
|
|
|
80060
81300
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
80061
81301
|
pulumi.set(self, "common_labels", value)
|
|
80062
81302
|
|
|
81303
|
+
@_builtins.property
|
|
81304
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
81305
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
81306
|
+
"""
|
|
81307
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
81308
|
+
"""
|
|
81309
|
+
return pulumi.get(self, "force_common_annotations")
|
|
81310
|
+
|
|
81311
|
+
@force_common_annotations.setter
|
|
81312
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
81313
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
81314
|
+
|
|
81315
|
+
@_builtins.property
|
|
81316
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
81317
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
81318
|
+
"""
|
|
81319
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
81320
|
+
"""
|
|
81321
|
+
return pulumi.get(self, "force_common_labels")
|
|
81322
|
+
|
|
81323
|
+
@force_common_labels.setter
|
|
81324
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
81325
|
+
pulumi.set(self, "force_common_labels", value)
|
|
81326
|
+
|
|
80063
81327
|
@_builtins.property
|
|
80064
81328
|
@pulumi.getter
|
|
80065
81329
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -82162,6 +83426,14 @@ if not MYPY:
|
|
|
82162
83426
|
"""
|
|
82163
83427
|
List of additional labels to add to rendered manifests.
|
|
82164
83428
|
"""
|
|
83429
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
83430
|
+
"""
|
|
83431
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
83432
|
+
"""
|
|
83433
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
83434
|
+
"""
|
|
83435
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
83436
|
+
"""
|
|
82165
83437
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
82166
83438
|
"""
|
|
82167
83439
|
List of Kustomize image override specifications.
|
|
@@ -82186,6 +83458,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorGitTemplateSp
|
|
|
82186
83458
|
def __init__(__self__, *,
|
|
82187
83459
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
82188
83460
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
83461
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
83462
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
82189
83463
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
82190
83464
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
82191
83465
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -82193,6 +83467,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorGitTemplateSp
|
|
|
82193
83467
|
"""
|
|
82194
83468
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
82195
83469
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
83470
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
83471
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
82196
83472
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
82197
83473
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
82198
83474
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -82202,6 +83478,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorGitTemplateSp
|
|
|
82202
83478
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
82203
83479
|
if common_labels is not None:
|
|
82204
83480
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
83481
|
+
if force_common_annotations is not None:
|
|
83482
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
83483
|
+
if force_common_labels is not None:
|
|
83484
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
82205
83485
|
if images is not None:
|
|
82206
83486
|
pulumi.set(__self__, "images", images)
|
|
82207
83487
|
if name_prefix is not None:
|
|
@@ -82235,6 +83515,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorGitTemplateSp
|
|
|
82235
83515
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
82236
83516
|
pulumi.set(self, "common_labels", value)
|
|
82237
83517
|
|
|
83518
|
+
@_builtins.property
|
|
83519
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
83520
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
83521
|
+
"""
|
|
83522
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
83523
|
+
"""
|
|
83524
|
+
return pulumi.get(self, "force_common_annotations")
|
|
83525
|
+
|
|
83526
|
+
@force_common_annotations.setter
|
|
83527
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
83528
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
83529
|
+
|
|
83530
|
+
@_builtins.property
|
|
83531
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
83532
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
83533
|
+
"""
|
|
83534
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
83535
|
+
"""
|
|
83536
|
+
return pulumi.get(self, "force_common_labels")
|
|
83537
|
+
|
|
83538
|
+
@force_common_labels.setter
|
|
83539
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
83540
|
+
pulumi.set(self, "force_common_labels", value)
|
|
83541
|
+
|
|
82238
83542
|
@_builtins.property
|
|
82239
83543
|
@pulumi.getter
|
|
82240
83544
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -84175,6 +85479,14 @@ if not MYPY:
|
|
|
84175
85479
|
"""
|
|
84176
85480
|
List of additional labels to add to rendered manifests.
|
|
84177
85481
|
"""
|
|
85482
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
85483
|
+
"""
|
|
85484
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
85485
|
+
"""
|
|
85486
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
85487
|
+
"""
|
|
85488
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
85489
|
+
"""
|
|
84178
85490
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
84179
85491
|
"""
|
|
84180
85492
|
List of Kustomize image override specifications.
|
|
@@ -84199,6 +85511,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorListTemplateS
|
|
|
84199
85511
|
def __init__(__self__, *,
|
|
84200
85512
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
84201
85513
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
85514
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
85515
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
84202
85516
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
84203
85517
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
84204
85518
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -84206,6 +85520,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorListTemplateS
|
|
|
84206
85520
|
"""
|
|
84207
85521
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
84208
85522
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
85523
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
85524
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
84209
85525
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
84210
85526
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
84211
85527
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -84215,6 +85531,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorListTemplateS
|
|
|
84215
85531
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
84216
85532
|
if common_labels is not None:
|
|
84217
85533
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
85534
|
+
if force_common_annotations is not None:
|
|
85535
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
85536
|
+
if force_common_labels is not None:
|
|
85537
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
84218
85538
|
if images is not None:
|
|
84219
85539
|
pulumi.set(__self__, "images", images)
|
|
84220
85540
|
if name_prefix is not None:
|
|
@@ -84248,6 +85568,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorListTemplateS
|
|
|
84248
85568
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
84249
85569
|
pulumi.set(self, "common_labels", value)
|
|
84250
85570
|
|
|
85571
|
+
@_builtins.property
|
|
85572
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
85573
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
85574
|
+
"""
|
|
85575
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
85576
|
+
"""
|
|
85577
|
+
return pulumi.get(self, "force_common_annotations")
|
|
85578
|
+
|
|
85579
|
+
@force_common_annotations.setter
|
|
85580
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
85581
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
85582
|
+
|
|
85583
|
+
@_builtins.property
|
|
85584
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
85585
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
85586
|
+
"""
|
|
85587
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
85588
|
+
"""
|
|
85589
|
+
return pulumi.get(self, "force_common_labels")
|
|
85590
|
+
|
|
85591
|
+
@force_common_labels.setter
|
|
85592
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
85593
|
+
pulumi.set(self, "force_common_labels", value)
|
|
85594
|
+
|
|
84251
85595
|
@_builtins.property
|
|
84252
85596
|
@pulumi.getter
|
|
84253
85597
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -86686,6 +88030,14 @@ if not MYPY:
|
|
|
86686
88030
|
"""
|
|
86687
88031
|
List of additional labels to add to rendered manifests.
|
|
86688
88032
|
"""
|
|
88033
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
88034
|
+
"""
|
|
88035
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
88036
|
+
"""
|
|
88037
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
88038
|
+
"""
|
|
88039
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
88040
|
+
"""
|
|
86689
88041
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
86690
88042
|
"""
|
|
86691
88043
|
List of Kustomize image override specifications.
|
|
@@ -86710,6 +88062,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
86710
88062
|
def __init__(__self__, *,
|
|
86711
88063
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
86712
88064
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
88065
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
88066
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
86713
88067
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
86714
88068
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
86715
88069
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -86717,6 +88071,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
86717
88071
|
"""
|
|
86718
88072
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
86719
88073
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
88074
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
88075
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
86720
88076
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
86721
88077
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
86722
88078
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -86726,6 +88082,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
86726
88082
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
86727
88083
|
if common_labels is not None:
|
|
86728
88084
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
88085
|
+
if force_common_annotations is not None:
|
|
88086
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
88087
|
+
if force_common_labels is not None:
|
|
88088
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
86729
88089
|
if images is not None:
|
|
86730
88090
|
pulumi.set(__self__, "images", images)
|
|
86731
88091
|
if name_prefix is not None:
|
|
@@ -86759,6 +88119,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
86759
88119
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
86760
88120
|
pulumi.set(self, "common_labels", value)
|
|
86761
88121
|
|
|
88122
|
+
@_builtins.property
|
|
88123
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
88124
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
88125
|
+
"""
|
|
88126
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
88127
|
+
"""
|
|
88128
|
+
return pulumi.get(self, "force_common_annotations")
|
|
88129
|
+
|
|
88130
|
+
@force_common_annotations.setter
|
|
88131
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
88132
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
88133
|
+
|
|
88134
|
+
@_builtins.property
|
|
88135
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
88136
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
88137
|
+
"""
|
|
88138
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
88139
|
+
"""
|
|
88140
|
+
return pulumi.get(self, "force_common_labels")
|
|
88141
|
+
|
|
88142
|
+
@force_common_labels.setter
|
|
88143
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
88144
|
+
pulumi.set(self, "force_common_labels", value)
|
|
88145
|
+
|
|
86762
88146
|
@_builtins.property
|
|
86763
88147
|
@pulumi.getter
|
|
86764
88148
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -88772,6 +90156,14 @@ if not MYPY:
|
|
|
88772
90156
|
"""
|
|
88773
90157
|
List of additional labels to add to rendered manifests.
|
|
88774
90158
|
"""
|
|
90159
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
90160
|
+
"""
|
|
90161
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
90162
|
+
"""
|
|
90163
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
90164
|
+
"""
|
|
90165
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
90166
|
+
"""
|
|
88775
90167
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
88776
90168
|
"""
|
|
88777
90169
|
List of Kustomize image override specifications.
|
|
@@ -88796,6 +90188,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
88796
90188
|
def __init__(__self__, *,
|
|
88797
90189
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
88798
90190
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
90191
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
90192
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
88799
90193
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
88800
90194
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
88801
90195
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -88803,6 +90197,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
88803
90197
|
"""
|
|
88804
90198
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
88805
90199
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
90200
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
90201
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
88806
90202
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
88807
90203
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
88808
90204
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -88812,6 +90208,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
88812
90208
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
88813
90209
|
if common_labels is not None:
|
|
88814
90210
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
90211
|
+
if force_common_annotations is not None:
|
|
90212
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
90213
|
+
if force_common_labels is not None:
|
|
90214
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
88815
90215
|
if images is not None:
|
|
88816
90216
|
pulumi.set(__self__, "images", images)
|
|
88817
90217
|
if name_prefix is not None:
|
|
@@ -88845,6 +90245,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
88845
90245
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
88846
90246
|
pulumi.set(self, "common_labels", value)
|
|
88847
90247
|
|
|
90248
|
+
@_builtins.property
|
|
90249
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
90250
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
90251
|
+
"""
|
|
90252
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
90253
|
+
"""
|
|
90254
|
+
return pulumi.get(self, "force_common_annotations")
|
|
90255
|
+
|
|
90256
|
+
@force_common_annotations.setter
|
|
90257
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
90258
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
90259
|
+
|
|
90260
|
+
@_builtins.property
|
|
90261
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
90262
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
90263
|
+
"""
|
|
90264
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
90265
|
+
"""
|
|
90266
|
+
return pulumi.get(self, "force_common_labels")
|
|
90267
|
+
|
|
90268
|
+
@force_common_labels.setter
|
|
90269
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
90270
|
+
pulumi.set(self, "force_common_labels", value)
|
|
90271
|
+
|
|
88848
90272
|
@_builtins.property
|
|
88849
90273
|
@pulumi.getter
|
|
88850
90274
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -90947,6 +92371,14 @@ if not MYPY:
|
|
|
90947
92371
|
"""
|
|
90948
92372
|
List of additional labels to add to rendered manifests.
|
|
90949
92373
|
"""
|
|
92374
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
92375
|
+
"""
|
|
92376
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
92377
|
+
"""
|
|
92378
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
92379
|
+
"""
|
|
92380
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
92381
|
+
"""
|
|
90950
92382
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
90951
92383
|
"""
|
|
90952
92384
|
List of Kustomize image override specifications.
|
|
@@ -90971,6 +92403,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
90971
92403
|
def __init__(__self__, *,
|
|
90972
92404
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
90973
92405
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
92406
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
92407
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
90974
92408
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
90975
92409
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
90976
92410
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -90978,6 +92412,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
90978
92412
|
"""
|
|
90979
92413
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
90980
92414
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
92415
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
92416
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
90981
92417
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
90982
92418
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
90983
92419
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -90987,6 +92423,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
90987
92423
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
90988
92424
|
if common_labels is not None:
|
|
90989
92425
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
92426
|
+
if force_common_annotations is not None:
|
|
92427
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
92428
|
+
if force_common_labels is not None:
|
|
92429
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
90990
92430
|
if images is not None:
|
|
90991
92431
|
pulumi.set(__self__, "images", images)
|
|
90992
92432
|
if name_prefix is not None:
|
|
@@ -91020,6 +92460,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
91020
92460
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
91021
92461
|
pulumi.set(self, "common_labels", value)
|
|
91022
92462
|
|
|
92463
|
+
@_builtins.property
|
|
92464
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
92465
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
92466
|
+
"""
|
|
92467
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
92468
|
+
"""
|
|
92469
|
+
return pulumi.get(self, "force_common_annotations")
|
|
92470
|
+
|
|
92471
|
+
@force_common_annotations.setter
|
|
92472
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
92473
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
92474
|
+
|
|
92475
|
+
@_builtins.property
|
|
92476
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
92477
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
92478
|
+
"""
|
|
92479
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
92480
|
+
"""
|
|
92481
|
+
return pulumi.get(self, "force_common_labels")
|
|
92482
|
+
|
|
92483
|
+
@force_common_labels.setter
|
|
92484
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
92485
|
+
pulumi.set(self, "force_common_labels", value)
|
|
92486
|
+
|
|
91023
92487
|
@_builtins.property
|
|
91024
92488
|
@pulumi.getter
|
|
91025
92489
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -92960,6 +94424,14 @@ if not MYPY:
|
|
|
92960
94424
|
"""
|
|
92961
94425
|
List of additional labels to add to rendered manifests.
|
|
92962
94426
|
"""
|
|
94427
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
94428
|
+
"""
|
|
94429
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
94430
|
+
"""
|
|
94431
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
94432
|
+
"""
|
|
94433
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
94434
|
+
"""
|
|
92963
94435
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
92964
94436
|
"""
|
|
92965
94437
|
List of Kustomize image override specifications.
|
|
@@ -92984,6 +94456,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
92984
94456
|
def __init__(__self__, *,
|
|
92985
94457
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
92986
94458
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
94459
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
94460
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
92987
94461
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
92988
94462
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
92989
94463
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -92991,6 +94465,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
92991
94465
|
"""
|
|
92992
94466
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
92993
94467
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
94468
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
94469
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
92994
94470
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
92995
94471
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
92996
94472
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -93000,6 +94476,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
93000
94476
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
93001
94477
|
if common_labels is not None:
|
|
93002
94478
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
94479
|
+
if force_common_annotations is not None:
|
|
94480
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
94481
|
+
if force_common_labels is not None:
|
|
94482
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
93003
94483
|
if images is not None:
|
|
93004
94484
|
pulumi.set(__self__, "images", images)
|
|
93005
94485
|
if name_prefix is not None:
|
|
@@ -93033,6 +94513,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
93033
94513
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
93034
94514
|
pulumi.set(self, "common_labels", value)
|
|
93035
94515
|
|
|
94516
|
+
@_builtins.property
|
|
94517
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
94518
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
94519
|
+
"""
|
|
94520
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
94521
|
+
"""
|
|
94522
|
+
return pulumi.get(self, "force_common_annotations")
|
|
94523
|
+
|
|
94524
|
+
@force_common_annotations.setter
|
|
94525
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
94526
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
94527
|
+
|
|
94528
|
+
@_builtins.property
|
|
94529
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
94530
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
94531
|
+
"""
|
|
94532
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
94533
|
+
"""
|
|
94534
|
+
return pulumi.get(self, "force_common_labels")
|
|
94535
|
+
|
|
94536
|
+
@force_common_labels.setter
|
|
94537
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
94538
|
+
pulumi.set(self, "force_common_labels", value)
|
|
94539
|
+
|
|
93036
94540
|
@_builtins.property
|
|
93037
94541
|
@pulumi.getter
|
|
93038
94542
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -95797,6 +97301,14 @@ if not MYPY:
|
|
|
95797
97301
|
"""
|
|
95798
97302
|
List of additional labels to add to rendered manifests.
|
|
95799
97303
|
"""
|
|
97304
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
97305
|
+
"""
|
|
97306
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
97307
|
+
"""
|
|
97308
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
97309
|
+
"""
|
|
97310
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
97311
|
+
"""
|
|
95800
97312
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
95801
97313
|
"""
|
|
95802
97314
|
List of Kustomize image override specifications.
|
|
@@ -95821,6 +97333,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
95821
97333
|
def __init__(__self__, *,
|
|
95822
97334
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
95823
97335
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
97336
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
97337
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
95824
97338
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
95825
97339
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
95826
97340
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -95828,6 +97342,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
95828
97342
|
"""
|
|
95829
97343
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
95830
97344
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
97345
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
97346
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
95831
97347
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
95832
97348
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
95833
97349
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -95837,6 +97353,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
95837
97353
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
95838
97354
|
if common_labels is not None:
|
|
95839
97355
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
97356
|
+
if force_common_annotations is not None:
|
|
97357
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
97358
|
+
if force_common_labels is not None:
|
|
97359
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
95840
97360
|
if images is not None:
|
|
95841
97361
|
pulumi.set(__self__, "images", images)
|
|
95842
97362
|
if name_prefix is not None:
|
|
@@ -95870,6 +97390,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
95870
97390
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
95871
97391
|
pulumi.set(self, "common_labels", value)
|
|
95872
97392
|
|
|
97393
|
+
@_builtins.property
|
|
97394
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
97395
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
97396
|
+
"""
|
|
97397
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
97398
|
+
"""
|
|
97399
|
+
return pulumi.get(self, "force_common_annotations")
|
|
97400
|
+
|
|
97401
|
+
@force_common_annotations.setter
|
|
97402
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
97403
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
97404
|
+
|
|
97405
|
+
@_builtins.property
|
|
97406
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
97407
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
97408
|
+
"""
|
|
97409
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
97410
|
+
"""
|
|
97411
|
+
return pulumi.get(self, "force_common_labels")
|
|
97412
|
+
|
|
97413
|
+
@force_common_labels.setter
|
|
97414
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
97415
|
+
pulumi.set(self, "force_common_labels", value)
|
|
97416
|
+
|
|
95873
97417
|
@_builtins.property
|
|
95874
97418
|
@pulumi.getter
|
|
95875
97419
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -99058,6 +100602,14 @@ if not MYPY:
|
|
|
99058
100602
|
"""
|
|
99059
100603
|
List of additional labels to add to rendered manifests.
|
|
99060
100604
|
"""
|
|
100605
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
100606
|
+
"""
|
|
100607
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
100608
|
+
"""
|
|
100609
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
100610
|
+
"""
|
|
100611
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
100612
|
+
"""
|
|
99061
100613
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
99062
100614
|
"""
|
|
99063
100615
|
List of Kustomize image override specifications.
|
|
@@ -99082,6 +100634,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
99082
100634
|
def __init__(__self__, *,
|
|
99083
100635
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
99084
100636
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
100637
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
100638
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
99085
100639
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
99086
100640
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
99087
100641
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -99089,6 +100643,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
99089
100643
|
"""
|
|
99090
100644
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
99091
100645
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
100646
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
100647
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
99092
100648
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
99093
100649
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
99094
100650
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -99098,6 +100654,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
99098
100654
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
99099
100655
|
if common_labels is not None:
|
|
99100
100656
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
100657
|
+
if force_common_annotations is not None:
|
|
100658
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
100659
|
+
if force_common_labels is not None:
|
|
100660
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
99101
100661
|
if images is not None:
|
|
99102
100662
|
pulumi.set(__self__, "images", images)
|
|
99103
100663
|
if name_prefix is not None:
|
|
@@ -99131,6 +100691,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixGenerat
|
|
|
99131
100691
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
99132
100692
|
pulumi.set(self, "common_labels", value)
|
|
99133
100693
|
|
|
100694
|
+
@_builtins.property
|
|
100695
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
100696
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
100697
|
+
"""
|
|
100698
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
100699
|
+
"""
|
|
100700
|
+
return pulumi.get(self, "force_common_annotations")
|
|
100701
|
+
|
|
100702
|
+
@force_common_annotations.setter
|
|
100703
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
100704
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
100705
|
+
|
|
100706
|
+
@_builtins.property
|
|
100707
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
100708
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
100709
|
+
"""
|
|
100710
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
100711
|
+
"""
|
|
100712
|
+
return pulumi.get(self, "force_common_labels")
|
|
100713
|
+
|
|
100714
|
+
@force_common_labels.setter
|
|
100715
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
100716
|
+
pulumi.set(self, "force_common_labels", value)
|
|
100717
|
+
|
|
99134
100718
|
@_builtins.property
|
|
99135
100719
|
@pulumi.getter
|
|
99136
100720
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -101144,6 +102728,14 @@ if not MYPY:
|
|
|
101144
102728
|
"""
|
|
101145
102729
|
List of additional labels to add to rendered manifests.
|
|
101146
102730
|
"""
|
|
102731
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
102732
|
+
"""
|
|
102733
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
102734
|
+
"""
|
|
102735
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
102736
|
+
"""
|
|
102737
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
102738
|
+
"""
|
|
101147
102739
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
101148
102740
|
"""
|
|
101149
102741
|
List of Kustomize image override specifications.
|
|
@@ -101168,6 +102760,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixTemplat
|
|
|
101168
102760
|
def __init__(__self__, *,
|
|
101169
102761
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
101170
102762
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
102763
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
102764
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
101171
102765
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
101172
102766
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
101173
102767
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -101175,6 +102769,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixTemplat
|
|
|
101175
102769
|
"""
|
|
101176
102770
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
101177
102771
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
102772
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
102773
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
101178
102774
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
101179
102775
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
101180
102776
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -101184,6 +102780,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixTemplat
|
|
|
101184
102780
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
101185
102781
|
if common_labels is not None:
|
|
101186
102782
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
102783
|
+
if force_common_annotations is not None:
|
|
102784
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
102785
|
+
if force_common_labels is not None:
|
|
102786
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
101187
102787
|
if images is not None:
|
|
101188
102788
|
pulumi.set(__self__, "images", images)
|
|
101189
102789
|
if name_prefix is not None:
|
|
@@ -101217,6 +102817,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMatrixTemplat
|
|
|
101217
102817
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
101218
102818
|
pulumi.set(self, "common_labels", value)
|
|
101219
102819
|
|
|
102820
|
+
@_builtins.property
|
|
102821
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
102822
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
102823
|
+
"""
|
|
102824
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
102825
|
+
"""
|
|
102826
|
+
return pulumi.get(self, "force_common_annotations")
|
|
102827
|
+
|
|
102828
|
+
@force_common_annotations.setter
|
|
102829
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
102830
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
102831
|
+
|
|
102832
|
+
@_builtins.property
|
|
102833
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
102834
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
102835
|
+
"""
|
|
102836
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
102837
|
+
"""
|
|
102838
|
+
return pulumi.get(self, "force_common_labels")
|
|
102839
|
+
|
|
102840
|
+
@force_common_labels.setter
|
|
102841
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
102842
|
+
pulumi.set(self, "force_common_labels", value)
|
|
102843
|
+
|
|
101220
102844
|
@_builtins.property
|
|
101221
102845
|
@pulumi.getter
|
|
101222
102846
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -103674,6 +105298,14 @@ if not MYPY:
|
|
|
103674
105298
|
"""
|
|
103675
105299
|
List of additional labels to add to rendered manifests.
|
|
103676
105300
|
"""
|
|
105301
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
105302
|
+
"""
|
|
105303
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
105304
|
+
"""
|
|
105305
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
105306
|
+
"""
|
|
105307
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
105308
|
+
"""
|
|
103677
105309
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
103678
105310
|
"""
|
|
103679
105311
|
List of Kustomize image override specifications.
|
|
@@ -103698,6 +105330,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
103698
105330
|
def __init__(__self__, *,
|
|
103699
105331
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
103700
105332
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
105333
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
105334
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
103701
105335
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
103702
105336
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
103703
105337
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -103705,6 +105339,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
103705
105339
|
"""
|
|
103706
105340
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
103707
105341
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
105342
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
105343
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
103708
105344
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
103709
105345
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
103710
105346
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -103714,6 +105350,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
103714
105350
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
103715
105351
|
if common_labels is not None:
|
|
103716
105352
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
105353
|
+
if force_common_annotations is not None:
|
|
105354
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
105355
|
+
if force_common_labels is not None:
|
|
105356
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
103717
105357
|
if images is not None:
|
|
103718
105358
|
pulumi.set(__self__, "images", images)
|
|
103719
105359
|
if name_prefix is not None:
|
|
@@ -103747,6 +105387,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
103747
105387
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
103748
105388
|
pulumi.set(self, "common_labels", value)
|
|
103749
105389
|
|
|
105390
|
+
@_builtins.property
|
|
105391
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
105392
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
105393
|
+
"""
|
|
105394
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
105395
|
+
"""
|
|
105396
|
+
return pulumi.get(self, "force_common_annotations")
|
|
105397
|
+
|
|
105398
|
+
@force_common_annotations.setter
|
|
105399
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
105400
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
105401
|
+
|
|
105402
|
+
@_builtins.property
|
|
105403
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
105404
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
105405
|
+
"""
|
|
105406
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
105407
|
+
"""
|
|
105408
|
+
return pulumi.get(self, "force_common_labels")
|
|
105409
|
+
|
|
105410
|
+
@force_common_labels.setter
|
|
105411
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
105412
|
+
pulumi.set(self, "force_common_labels", value)
|
|
105413
|
+
|
|
103750
105414
|
@_builtins.property
|
|
103751
105415
|
@pulumi.getter
|
|
103752
105416
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -105760,6 +107424,14 @@ if not MYPY:
|
|
|
105760
107424
|
"""
|
|
105761
107425
|
List of additional labels to add to rendered manifests.
|
|
105762
107426
|
"""
|
|
107427
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
107428
|
+
"""
|
|
107429
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
107430
|
+
"""
|
|
107431
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
107432
|
+
"""
|
|
107433
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
107434
|
+
"""
|
|
105763
107435
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
105764
107436
|
"""
|
|
105765
107437
|
List of Kustomize image override specifications.
|
|
@@ -105784,6 +107456,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
105784
107456
|
def __init__(__self__, *,
|
|
105785
107457
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
105786
107458
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
107459
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
107460
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
105787
107461
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
105788
107462
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
105789
107463
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -105791,6 +107465,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
105791
107465
|
"""
|
|
105792
107466
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
105793
107467
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
107468
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
107469
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
105794
107470
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
105795
107471
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
105796
107472
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -105800,6 +107476,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
105800
107476
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
105801
107477
|
if common_labels is not None:
|
|
105802
107478
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
107479
|
+
if force_common_annotations is not None:
|
|
107480
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
107481
|
+
if force_common_labels is not None:
|
|
107482
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
105803
107483
|
if images is not None:
|
|
105804
107484
|
pulumi.set(__self__, "images", images)
|
|
105805
107485
|
if name_prefix is not None:
|
|
@@ -105833,6 +107513,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
105833
107513
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
105834
107514
|
pulumi.set(self, "common_labels", value)
|
|
105835
107515
|
|
|
107516
|
+
@_builtins.property
|
|
107517
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
107518
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
107519
|
+
"""
|
|
107520
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
107521
|
+
"""
|
|
107522
|
+
return pulumi.get(self, "force_common_annotations")
|
|
107523
|
+
|
|
107524
|
+
@force_common_annotations.setter
|
|
107525
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
107526
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
107527
|
+
|
|
107528
|
+
@_builtins.property
|
|
107529
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
107530
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
107531
|
+
"""
|
|
107532
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
107533
|
+
"""
|
|
107534
|
+
return pulumi.get(self, "force_common_labels")
|
|
107535
|
+
|
|
107536
|
+
@force_common_labels.setter
|
|
107537
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
107538
|
+
pulumi.set(self, "force_common_labels", value)
|
|
107539
|
+
|
|
105836
107540
|
@_builtins.property
|
|
105837
107541
|
@pulumi.getter
|
|
105838
107542
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -107935,6 +109639,14 @@ if not MYPY:
|
|
|
107935
109639
|
"""
|
|
107936
109640
|
List of additional labels to add to rendered manifests.
|
|
107937
109641
|
"""
|
|
109642
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
109643
|
+
"""
|
|
109644
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
109645
|
+
"""
|
|
109646
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
109647
|
+
"""
|
|
109648
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
109649
|
+
"""
|
|
107938
109650
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
107939
109651
|
"""
|
|
107940
109652
|
List of Kustomize image override specifications.
|
|
@@ -107959,6 +109671,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
107959
109671
|
def __init__(__self__, *,
|
|
107960
109672
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
107961
109673
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
109674
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
109675
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
107962
109676
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
107963
109677
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
107964
109678
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -107966,6 +109680,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
107966
109680
|
"""
|
|
107967
109681
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
107968
109682
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
109683
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
109684
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
107969
109685
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
107970
109686
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
107971
109687
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -107975,6 +109691,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
107975
109691
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
107976
109692
|
if common_labels is not None:
|
|
107977
109693
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
109694
|
+
if force_common_annotations is not None:
|
|
109695
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
109696
|
+
if force_common_labels is not None:
|
|
109697
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
107978
109698
|
if images is not None:
|
|
107979
109699
|
pulumi.set(__self__, "images", images)
|
|
107980
109700
|
if name_prefix is not None:
|
|
@@ -108008,6 +109728,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
108008
109728
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
108009
109729
|
pulumi.set(self, "common_labels", value)
|
|
108010
109730
|
|
|
109731
|
+
@_builtins.property
|
|
109732
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
109733
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
109734
|
+
"""
|
|
109735
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
109736
|
+
"""
|
|
109737
|
+
return pulumi.get(self, "force_common_annotations")
|
|
109738
|
+
|
|
109739
|
+
@force_common_annotations.setter
|
|
109740
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
109741
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
109742
|
+
|
|
109743
|
+
@_builtins.property
|
|
109744
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
109745
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
109746
|
+
"""
|
|
109747
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
109748
|
+
"""
|
|
109749
|
+
return pulumi.get(self, "force_common_labels")
|
|
109750
|
+
|
|
109751
|
+
@force_common_labels.setter
|
|
109752
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
109753
|
+
pulumi.set(self, "force_common_labels", value)
|
|
109754
|
+
|
|
108011
109755
|
@_builtins.property
|
|
108012
109756
|
@pulumi.getter
|
|
108013
109757
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -109948,6 +111692,14 @@ if not MYPY:
|
|
|
109948
111692
|
"""
|
|
109949
111693
|
List of additional labels to add to rendered manifests.
|
|
109950
111694
|
"""
|
|
111695
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
111696
|
+
"""
|
|
111697
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
111698
|
+
"""
|
|
111699
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
111700
|
+
"""
|
|
111701
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
111702
|
+
"""
|
|
109951
111703
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
109952
111704
|
"""
|
|
109953
111705
|
List of Kustomize image override specifications.
|
|
@@ -109972,6 +111724,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
109972
111724
|
def __init__(__self__, *,
|
|
109973
111725
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
109974
111726
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
111727
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
111728
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
109975
111729
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
109976
111730
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
109977
111731
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -109979,6 +111733,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
109979
111733
|
"""
|
|
109980
111734
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
109981
111735
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
111736
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
111737
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
109982
111738
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
109983
111739
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
109984
111740
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -109988,6 +111744,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
109988
111744
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
109989
111745
|
if common_labels is not None:
|
|
109990
111746
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
111747
|
+
if force_common_annotations is not None:
|
|
111748
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
111749
|
+
if force_common_labels is not None:
|
|
111750
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
109991
111751
|
if images is not None:
|
|
109992
111752
|
pulumi.set(__self__, "images", images)
|
|
109993
111753
|
if name_prefix is not None:
|
|
@@ -110021,6 +111781,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
110021
111781
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
110022
111782
|
pulumi.set(self, "common_labels", value)
|
|
110023
111783
|
|
|
111784
|
+
@_builtins.property
|
|
111785
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
111786
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
111787
|
+
"""
|
|
111788
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
111789
|
+
"""
|
|
111790
|
+
return pulumi.get(self, "force_common_annotations")
|
|
111791
|
+
|
|
111792
|
+
@force_common_annotations.setter
|
|
111793
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
111794
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
111795
|
+
|
|
111796
|
+
@_builtins.property
|
|
111797
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
111798
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
111799
|
+
"""
|
|
111800
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
111801
|
+
"""
|
|
111802
|
+
return pulumi.get(self, "force_common_labels")
|
|
111803
|
+
|
|
111804
|
+
@force_common_labels.setter
|
|
111805
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
111806
|
+
pulumi.set(self, "force_common_labels", value)
|
|
111807
|
+
|
|
110024
111808
|
@_builtins.property
|
|
110025
111809
|
@pulumi.getter
|
|
110026
111810
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -112785,6 +114569,14 @@ if not MYPY:
|
|
|
112785
114569
|
"""
|
|
112786
114570
|
List of additional labels to add to rendered manifests.
|
|
112787
114571
|
"""
|
|
114572
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
114573
|
+
"""
|
|
114574
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
114575
|
+
"""
|
|
114576
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
114577
|
+
"""
|
|
114578
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
114579
|
+
"""
|
|
112788
114580
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
112789
114581
|
"""
|
|
112790
114582
|
List of Kustomize image override specifications.
|
|
@@ -112809,6 +114601,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
112809
114601
|
def __init__(__self__, *,
|
|
112810
114602
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
112811
114603
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
114604
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
114605
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
112812
114606
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
112813
114607
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
112814
114608
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -112816,6 +114610,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
112816
114610
|
"""
|
|
112817
114611
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
112818
114612
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
114613
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
114614
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
112819
114615
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
112820
114616
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
112821
114617
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -112825,6 +114621,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
112825
114621
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
112826
114622
|
if common_labels is not None:
|
|
112827
114623
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
114624
|
+
if force_common_annotations is not None:
|
|
114625
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
114626
|
+
if force_common_labels is not None:
|
|
114627
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
112828
114628
|
if images is not None:
|
|
112829
114629
|
pulumi.set(__self__, "images", images)
|
|
112830
114630
|
if name_prefix is not None:
|
|
@@ -112858,6 +114658,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
112858
114658
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
112859
114659
|
pulumi.set(self, "common_labels", value)
|
|
112860
114660
|
|
|
114661
|
+
@_builtins.property
|
|
114662
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
114663
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
114664
|
+
"""
|
|
114665
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
114666
|
+
"""
|
|
114667
|
+
return pulumi.get(self, "force_common_annotations")
|
|
114668
|
+
|
|
114669
|
+
@force_common_annotations.setter
|
|
114670
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
114671
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
114672
|
+
|
|
114673
|
+
@_builtins.property
|
|
114674
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
114675
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
114676
|
+
"""
|
|
114677
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
114678
|
+
"""
|
|
114679
|
+
return pulumi.get(self, "force_common_labels")
|
|
114680
|
+
|
|
114681
|
+
@force_common_labels.setter
|
|
114682
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
114683
|
+
pulumi.set(self, "force_common_labels", value)
|
|
114684
|
+
|
|
112861
114685
|
@_builtins.property
|
|
112862
114686
|
@pulumi.getter
|
|
112863
114687
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -116046,6 +117870,14 @@ if not MYPY:
|
|
|
116046
117870
|
"""
|
|
116047
117871
|
List of additional labels to add to rendered manifests.
|
|
116048
117872
|
"""
|
|
117873
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
117874
|
+
"""
|
|
117875
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
117876
|
+
"""
|
|
117877
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
117878
|
+
"""
|
|
117879
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
117880
|
+
"""
|
|
116049
117881
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
116050
117882
|
"""
|
|
116051
117883
|
List of Kustomize image override specifications.
|
|
@@ -116070,6 +117902,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
116070
117902
|
def __init__(__self__, *,
|
|
116071
117903
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
116072
117904
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
117905
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
117906
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
116073
117907
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
116074
117908
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
116075
117909
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -116077,6 +117911,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
116077
117911
|
"""
|
|
116078
117912
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
116079
117913
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
117914
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
117915
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
116080
117916
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
116081
117917
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
116082
117918
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -116086,6 +117922,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
116086
117922
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
116087
117923
|
if common_labels is not None:
|
|
116088
117924
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
117925
|
+
if force_common_annotations is not None:
|
|
117926
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
117927
|
+
if force_common_labels is not None:
|
|
117928
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
116089
117929
|
if images is not None:
|
|
116090
117930
|
pulumi.set(__self__, "images", images)
|
|
116091
117931
|
if name_prefix is not None:
|
|
@@ -116119,6 +117959,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeGenerato
|
|
|
116119
117959
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
116120
117960
|
pulumi.set(self, "common_labels", value)
|
|
116121
117961
|
|
|
117962
|
+
@_builtins.property
|
|
117963
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
117964
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
117965
|
+
"""
|
|
117966
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
117967
|
+
"""
|
|
117968
|
+
return pulumi.get(self, "force_common_annotations")
|
|
117969
|
+
|
|
117970
|
+
@force_common_annotations.setter
|
|
117971
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
117972
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
117973
|
+
|
|
117974
|
+
@_builtins.property
|
|
117975
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
117976
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
117977
|
+
"""
|
|
117978
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
117979
|
+
"""
|
|
117980
|
+
return pulumi.get(self, "force_common_labels")
|
|
117981
|
+
|
|
117982
|
+
@force_common_labels.setter
|
|
117983
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
117984
|
+
pulumi.set(self, "force_common_labels", value)
|
|
117985
|
+
|
|
116122
117986
|
@_builtins.property
|
|
116123
117987
|
@pulumi.getter
|
|
116124
117988
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -118132,6 +119996,14 @@ if not MYPY:
|
|
|
118132
119996
|
"""
|
|
118133
119997
|
List of additional labels to add to rendered manifests.
|
|
118134
119998
|
"""
|
|
119999
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
120000
|
+
"""
|
|
120001
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
120002
|
+
"""
|
|
120003
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
120004
|
+
"""
|
|
120005
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
120006
|
+
"""
|
|
118135
120007
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
118136
120008
|
"""
|
|
118137
120009
|
List of Kustomize image override specifications.
|
|
@@ -118156,6 +120028,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeTemplate
|
|
|
118156
120028
|
def __init__(__self__, *,
|
|
118157
120029
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
118158
120030
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
120031
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
120032
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
118159
120033
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
118160
120034
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
118161
120035
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -118163,6 +120037,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeTemplate
|
|
|
118163
120037
|
"""
|
|
118164
120038
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
118165
120039
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
120040
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
120041
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
118166
120042
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
118167
120043
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
118168
120044
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -118172,6 +120048,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeTemplate
|
|
|
118172
120048
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
118173
120049
|
if common_labels is not None:
|
|
118174
120050
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
120051
|
+
if force_common_annotations is not None:
|
|
120052
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
120053
|
+
if force_common_labels is not None:
|
|
120054
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
118175
120055
|
if images is not None:
|
|
118176
120056
|
pulumi.set(__self__, "images", images)
|
|
118177
120057
|
if name_prefix is not None:
|
|
@@ -118205,6 +120085,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorMergeTemplate
|
|
|
118205
120085
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
118206
120086
|
pulumi.set(self, "common_labels", value)
|
|
118207
120087
|
|
|
120088
|
+
@_builtins.property
|
|
120089
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
120090
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
120091
|
+
"""
|
|
120092
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
120093
|
+
"""
|
|
120094
|
+
return pulumi.get(self, "force_common_annotations")
|
|
120095
|
+
|
|
120096
|
+
@force_common_annotations.setter
|
|
120097
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
120098
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
120099
|
+
|
|
120100
|
+
@_builtins.property
|
|
120101
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
120102
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
120103
|
+
"""
|
|
120104
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
120105
|
+
"""
|
|
120106
|
+
return pulumi.get(self, "force_common_labels")
|
|
120107
|
+
|
|
120108
|
+
@force_common_labels.setter
|
|
120109
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
120110
|
+
pulumi.set(self, "force_common_labels", value)
|
|
120111
|
+
|
|
118208
120112
|
@_builtins.property
|
|
118209
120113
|
@pulumi.getter
|
|
118210
120114
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -120969,6 +122873,14 @@ if not MYPY:
|
|
|
120969
122873
|
"""
|
|
120970
122874
|
List of additional labels to add to rendered manifests.
|
|
120971
122875
|
"""
|
|
122876
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
122877
|
+
"""
|
|
122878
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
122879
|
+
"""
|
|
122880
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
122881
|
+
"""
|
|
122882
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
122883
|
+
"""
|
|
120972
122884
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
120973
122885
|
"""
|
|
120974
122886
|
List of Kustomize image override specifications.
|
|
@@ -120993,6 +122905,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorPullRequestTe
|
|
|
120993
122905
|
def __init__(__self__, *,
|
|
120994
122906
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
120995
122907
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
122908
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
122909
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
120996
122910
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
120997
122911
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
120998
122912
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -121000,6 +122914,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorPullRequestTe
|
|
|
121000
122914
|
"""
|
|
121001
122915
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
121002
122916
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
122917
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
122918
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
121003
122919
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
121004
122920
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
121005
122921
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -121009,6 +122925,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorPullRequestTe
|
|
|
121009
122925
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
121010
122926
|
if common_labels is not None:
|
|
121011
122927
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
122928
|
+
if force_common_annotations is not None:
|
|
122929
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
122930
|
+
if force_common_labels is not None:
|
|
122931
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
121012
122932
|
if images is not None:
|
|
121013
122933
|
pulumi.set(__self__, "images", images)
|
|
121014
122934
|
if name_prefix is not None:
|
|
@@ -121042,6 +122962,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorPullRequestTe
|
|
|
121042
122962
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
121043
122963
|
pulumi.set(self, "common_labels", value)
|
|
121044
122964
|
|
|
122965
|
+
@_builtins.property
|
|
122966
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
122967
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
122968
|
+
"""
|
|
122969
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
122970
|
+
"""
|
|
122971
|
+
return pulumi.get(self, "force_common_annotations")
|
|
122972
|
+
|
|
122973
|
+
@force_common_annotations.setter
|
|
122974
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
122975
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
122976
|
+
|
|
122977
|
+
@_builtins.property
|
|
122978
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
122979
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
122980
|
+
"""
|
|
122981
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
122982
|
+
"""
|
|
122983
|
+
return pulumi.get(self, "force_common_labels")
|
|
122984
|
+
|
|
122985
|
+
@force_common_labels.setter
|
|
122986
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
122987
|
+
pulumi.set(self, "force_common_labels", value)
|
|
122988
|
+
|
|
121045
122989
|
@_builtins.property
|
|
121046
122990
|
@pulumi.getter
|
|
121047
122991
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -124230,6 +126174,14 @@ if not MYPY:
|
|
|
124230
126174
|
"""
|
|
124231
126175
|
List of additional labels to add to rendered manifests.
|
|
124232
126176
|
"""
|
|
126177
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
126178
|
+
"""
|
|
126179
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
126180
|
+
"""
|
|
126181
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
126182
|
+
"""
|
|
126183
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
126184
|
+
"""
|
|
124233
126185
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
124234
126186
|
"""
|
|
124235
126187
|
List of Kustomize image override specifications.
|
|
@@ -124254,6 +126206,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorScmProviderTe
|
|
|
124254
126206
|
def __init__(__self__, *,
|
|
124255
126207
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
124256
126208
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
126209
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
126210
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
124257
126211
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
124258
126212
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
124259
126213
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -124261,6 +126215,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorScmProviderTe
|
|
|
124261
126215
|
"""
|
|
124262
126216
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
124263
126217
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
126218
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
126219
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
124264
126220
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
124265
126221
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
124266
126222
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -124270,6 +126226,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorScmProviderTe
|
|
|
124270
126226
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
124271
126227
|
if common_labels is not None:
|
|
124272
126228
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
126229
|
+
if force_common_annotations is not None:
|
|
126230
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
126231
|
+
if force_common_labels is not None:
|
|
126232
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
124273
126233
|
if images is not None:
|
|
124274
126234
|
pulumi.set(__self__, "images", images)
|
|
124275
126235
|
if name_prefix is not None:
|
|
@@ -124303,6 +126263,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeGeneratorScmProviderTe
|
|
|
124303
126263
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
124304
126264
|
pulumi.set(self, "common_labels", value)
|
|
124305
126265
|
|
|
126266
|
+
@_builtins.property
|
|
126267
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
126268
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
126269
|
+
"""
|
|
126270
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
126271
|
+
"""
|
|
126272
|
+
return pulumi.get(self, "force_common_annotations")
|
|
126273
|
+
|
|
126274
|
+
@force_common_annotations.setter
|
|
126275
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
126276
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
126277
|
+
|
|
126278
|
+
@_builtins.property
|
|
126279
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
126280
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
126281
|
+
"""
|
|
126282
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
126283
|
+
"""
|
|
126284
|
+
return pulumi.get(self, "force_common_labels")
|
|
126285
|
+
|
|
126286
|
+
@force_common_labels.setter
|
|
126287
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
126288
|
+
pulumi.set(self, "force_common_labels", value)
|
|
126289
|
+
|
|
124306
126290
|
@_builtins.property
|
|
124307
126291
|
@pulumi.getter
|
|
124308
126292
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -126316,6 +128300,14 @@ if not MYPY:
|
|
|
126316
128300
|
"""
|
|
126317
128301
|
List of additional labels to add to rendered manifests.
|
|
126318
128302
|
"""
|
|
128303
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
128304
|
+
"""
|
|
128305
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
128306
|
+
"""
|
|
128307
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
128308
|
+
"""
|
|
128309
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
128310
|
+
"""
|
|
126319
128311
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
126320
128312
|
"""
|
|
126321
128313
|
List of Kustomize image override specifications.
|
|
@@ -126340,6 +128332,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeTemplateSpecSourceKust
|
|
|
126340
128332
|
def __init__(__self__, *,
|
|
126341
128333
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
126342
128334
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
128335
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
128336
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
126343
128337
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
126344
128338
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
126345
128339
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -126347,6 +128341,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeTemplateSpecSourceKust
|
|
|
126347
128341
|
"""
|
|
126348
128342
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
126349
128343
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
128344
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
128345
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
126350
128346
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
126351
128347
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
126352
128348
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -126356,6 +128352,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeTemplateSpecSourceKust
|
|
|
126356
128352
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
126357
128353
|
if common_labels is not None:
|
|
126358
128354
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
128355
|
+
if force_common_annotations is not None:
|
|
128356
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
128357
|
+
if force_common_labels is not None:
|
|
128358
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
126359
128359
|
if images is not None:
|
|
126360
128360
|
pulumi.set(__self__, "images", images)
|
|
126361
128361
|
if name_prefix is not None:
|
|
@@ -126389,6 +128389,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorMergeTemplateSpecSourceKust
|
|
|
126389
128389
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
126390
128390
|
pulumi.set(self, "common_labels", value)
|
|
126391
128391
|
|
|
128392
|
+
@_builtins.property
|
|
128393
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
128394
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
128395
|
+
"""
|
|
128396
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
128397
|
+
"""
|
|
128398
|
+
return pulumi.get(self, "force_common_annotations")
|
|
128399
|
+
|
|
128400
|
+
@force_common_annotations.setter
|
|
128401
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
128402
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
128403
|
+
|
|
128404
|
+
@_builtins.property
|
|
128405
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
128406
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
128407
|
+
"""
|
|
128408
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
128409
|
+
"""
|
|
128410
|
+
return pulumi.get(self, "force_common_labels")
|
|
128411
|
+
|
|
128412
|
+
@force_common_labels.setter
|
|
128413
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
128414
|
+
pulumi.set(self, "force_common_labels", value)
|
|
128415
|
+
|
|
126392
128416
|
@_builtins.property
|
|
126393
128417
|
@pulumi.getter
|
|
126394
128418
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -129153,6 +131177,14 @@ if not MYPY:
|
|
|
129153
131177
|
"""
|
|
129154
131178
|
List of additional labels to add to rendered manifests.
|
|
129155
131179
|
"""
|
|
131180
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
131181
|
+
"""
|
|
131182
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
131183
|
+
"""
|
|
131184
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
131185
|
+
"""
|
|
131186
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
131187
|
+
"""
|
|
129156
131188
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
129157
131189
|
"""
|
|
129158
131190
|
List of Kustomize image override specifications.
|
|
@@ -129177,6 +131209,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorPullRequestTemplateSpecSour
|
|
|
129177
131209
|
def __init__(__self__, *,
|
|
129178
131210
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
129179
131211
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
131212
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
131213
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
129180
131214
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
129181
131215
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
129182
131216
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -129184,6 +131218,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorPullRequestTemplateSpecSour
|
|
|
129184
131218
|
"""
|
|
129185
131219
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
129186
131220
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
131221
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
131222
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
129187
131223
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
129188
131224
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
129189
131225
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -129193,6 +131229,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorPullRequestTemplateSpecSour
|
|
|
129193
131229
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
129194
131230
|
if common_labels is not None:
|
|
129195
131231
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
131232
|
+
if force_common_annotations is not None:
|
|
131233
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
131234
|
+
if force_common_labels is not None:
|
|
131235
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
129196
131236
|
if images is not None:
|
|
129197
131237
|
pulumi.set(__self__, "images", images)
|
|
129198
131238
|
if name_prefix is not None:
|
|
@@ -129226,6 +131266,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorPullRequestTemplateSpecSour
|
|
|
129226
131266
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
129227
131267
|
pulumi.set(self, "common_labels", value)
|
|
129228
131268
|
|
|
131269
|
+
@_builtins.property
|
|
131270
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
131271
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
131272
|
+
"""
|
|
131273
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
131274
|
+
"""
|
|
131275
|
+
return pulumi.get(self, "force_common_annotations")
|
|
131276
|
+
|
|
131277
|
+
@force_common_annotations.setter
|
|
131278
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
131279
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
131280
|
+
|
|
131281
|
+
@_builtins.property
|
|
131282
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
131283
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
131284
|
+
"""
|
|
131285
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
131286
|
+
"""
|
|
131287
|
+
return pulumi.get(self, "force_common_labels")
|
|
131288
|
+
|
|
131289
|
+
@force_common_labels.setter
|
|
131290
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
131291
|
+
pulumi.set(self, "force_common_labels", value)
|
|
131292
|
+
|
|
129229
131293
|
@_builtins.property
|
|
129230
131294
|
@pulumi.getter
|
|
129231
131295
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -132414,6 +134478,14 @@ if not MYPY:
|
|
|
132414
134478
|
"""
|
|
132415
134479
|
List of additional labels to add to rendered manifests.
|
|
132416
134480
|
"""
|
|
134481
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
134482
|
+
"""
|
|
134483
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
134484
|
+
"""
|
|
134485
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
134486
|
+
"""
|
|
134487
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
134488
|
+
"""
|
|
132417
134489
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
132418
134490
|
"""
|
|
132419
134491
|
List of Kustomize image override specifications.
|
|
@@ -132438,6 +134510,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorScmProviderTemplateSpecSour
|
|
|
132438
134510
|
def __init__(__self__, *,
|
|
132439
134511
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
132440
134512
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
134513
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
134514
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
132441
134515
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
132442
134516
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
132443
134517
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -132445,6 +134519,8 @@ class GitopsApplicationsetApplicationsetSpecGeneratorScmProviderTemplateSpecSour
|
|
|
132445
134519
|
"""
|
|
132446
134520
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
132447
134521
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
134522
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
134523
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
132448
134524
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
132449
134525
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
132450
134526
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -132454,6 +134530,10 @@ class GitopsApplicationsetApplicationsetSpecGeneratorScmProviderTemplateSpecSour
|
|
|
132454
134530
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
132455
134531
|
if common_labels is not None:
|
|
132456
134532
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
134533
|
+
if force_common_annotations is not None:
|
|
134534
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
134535
|
+
if force_common_labels is not None:
|
|
134536
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
132457
134537
|
if images is not None:
|
|
132458
134538
|
pulumi.set(__self__, "images", images)
|
|
132459
134539
|
if name_prefix is not None:
|
|
@@ -132487,6 +134567,30 @@ class GitopsApplicationsetApplicationsetSpecGeneratorScmProviderTemplateSpecSour
|
|
|
132487
134567
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
132488
134568
|
pulumi.set(self, "common_labels", value)
|
|
132489
134569
|
|
|
134570
|
+
@_builtins.property
|
|
134571
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
134572
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
134573
|
+
"""
|
|
134574
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
134575
|
+
"""
|
|
134576
|
+
return pulumi.get(self, "force_common_annotations")
|
|
134577
|
+
|
|
134578
|
+
@force_common_annotations.setter
|
|
134579
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
134580
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
134581
|
+
|
|
134582
|
+
@_builtins.property
|
|
134583
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
134584
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
134585
|
+
"""
|
|
134586
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
134587
|
+
"""
|
|
134588
|
+
return pulumi.get(self, "force_common_labels")
|
|
134589
|
+
|
|
134590
|
+
@force_common_labels.setter
|
|
134591
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
134592
|
+
pulumi.set(self, "force_common_labels", value)
|
|
134593
|
+
|
|
132490
134594
|
@_builtins.property
|
|
132491
134595
|
@pulumi.getter
|
|
132492
134596
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -134824,6 +136928,14 @@ if not MYPY:
|
|
|
134824
136928
|
"""
|
|
134825
136929
|
List of additional labels to add to rendered manifests.
|
|
134826
136930
|
"""
|
|
136931
|
+
force_common_annotations: NotRequired[pulumi.Input[_builtins.bool]]
|
|
136932
|
+
"""
|
|
136933
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
136934
|
+
"""
|
|
136935
|
+
force_common_labels: NotRequired[pulumi.Input[_builtins.bool]]
|
|
136936
|
+
"""
|
|
136937
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
136938
|
+
"""
|
|
134827
136939
|
images: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
134828
136940
|
"""
|
|
134829
136941
|
List of Kustomize image override specifications.
|
|
@@ -134848,6 +136960,8 @@ class GitopsApplicationsetApplicationsetSpecTemplateSpecSourceKustomizeArgs:
|
|
|
134848
136960
|
def __init__(__self__, *,
|
|
134849
136961
|
common_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
134850
136962
|
common_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
136963
|
+
force_common_annotations: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
136964
|
+
force_common_labels: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
134851
136965
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
134852
136966
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
134853
136967
|
name_suffix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -134855,6 +136969,8 @@ class GitopsApplicationsetApplicationsetSpecTemplateSpecSourceKustomizeArgs:
|
|
|
134855
136969
|
"""
|
|
134856
136970
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_annotations: List of additional annotations to add to rendered manifests.
|
|
134857
136971
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] common_labels: List of additional labels to add to rendered manifests.
|
|
136972
|
+
:param pulumi.Input[_builtins.bool] force_common_annotations: Indicates if to force applying common annotations to resources for kustomize apps.
|
|
136973
|
+
:param pulumi.Input[_builtins.bool] force_common_labels: Indicates if to force apply common labels to resources for kustomize apps.
|
|
134858
136974
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: List of Kustomize image override specifications.
|
|
134859
136975
|
:param pulumi.Input[_builtins.str] name_prefix: Prefix appended to resources for Kustomize apps.
|
|
134860
136976
|
:param pulumi.Input[_builtins.str] name_suffix: Suffix appended to resources for Kustomize apps.
|
|
@@ -134864,6 +136980,10 @@ class GitopsApplicationsetApplicationsetSpecTemplateSpecSourceKustomizeArgs:
|
|
|
134864
136980
|
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
134865
136981
|
if common_labels is not None:
|
|
134866
136982
|
pulumi.set(__self__, "common_labels", common_labels)
|
|
136983
|
+
if force_common_annotations is not None:
|
|
136984
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
136985
|
+
if force_common_labels is not None:
|
|
136986
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
134867
136987
|
if images is not None:
|
|
134868
136988
|
pulumi.set(__self__, "images", images)
|
|
134869
136989
|
if name_prefix is not None:
|
|
@@ -134897,6 +137017,30 @@ class GitopsApplicationsetApplicationsetSpecTemplateSpecSourceKustomizeArgs:
|
|
|
134897
137017
|
def common_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
134898
137018
|
pulumi.set(self, "common_labels", value)
|
|
134899
137019
|
|
|
137020
|
+
@_builtins.property
|
|
137021
|
+
@pulumi.getter(name="forceCommonAnnotations")
|
|
137022
|
+
def force_common_annotations(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
137023
|
+
"""
|
|
137024
|
+
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
137025
|
+
"""
|
|
137026
|
+
return pulumi.get(self, "force_common_annotations")
|
|
137027
|
+
|
|
137028
|
+
@force_common_annotations.setter
|
|
137029
|
+
def force_common_annotations(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
137030
|
+
pulumi.set(self, "force_common_annotations", value)
|
|
137031
|
+
|
|
137032
|
+
@_builtins.property
|
|
137033
|
+
@pulumi.getter(name="forceCommonLabels")
|
|
137034
|
+
def force_common_labels(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
137035
|
+
"""
|
|
137036
|
+
Indicates if to force apply common labels to resources for kustomize apps.
|
|
137037
|
+
"""
|
|
137038
|
+
return pulumi.get(self, "force_common_labels")
|
|
137039
|
+
|
|
137040
|
+
@force_common_labels.setter
|
|
137041
|
+
def force_common_labels(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
137042
|
+
pulumi.set(self, "force_common_labels", value)
|
|
137043
|
+
|
|
134900
137044
|
@_builtins.property
|
|
134901
137045
|
@pulumi.getter
|
|
134902
137046
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -144816,6 +146960,158 @@ class GetConnectorRancherBearerTokenArgs:
|
|
|
144816
146960
|
pulumi.set(self, "rancher_url", value)
|
|
144817
146961
|
|
|
144818
146962
|
|
|
146963
|
+
if not MYPY:
|
|
146964
|
+
class GetDefaultNotificationTemplateSetEventTemplateConfigurationSetArgsDict(TypedDict):
|
|
146965
|
+
notification_events: Sequence[_builtins.str]
|
|
146966
|
+
"""
|
|
146967
|
+
List of notification events like PIPELINE_START
|
|
146968
|
+
"""
|
|
146969
|
+
template: 'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgsDict'
|
|
146970
|
+
"""
|
|
146971
|
+
Template reference configuration
|
|
146972
|
+
"""
|
|
146973
|
+
elif False:
|
|
146974
|
+
GetDefaultNotificationTemplateSetEventTemplateConfigurationSetArgsDict: TypeAlias = Mapping[str, Any]
|
|
146975
|
+
|
|
146976
|
+
@pulumi.input_type
|
|
146977
|
+
class GetDefaultNotificationTemplateSetEventTemplateConfigurationSetArgs:
|
|
146978
|
+
def __init__(__self__, *,
|
|
146979
|
+
notification_events: Sequence[_builtins.str],
|
|
146980
|
+
template: 'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgs'):
|
|
146981
|
+
"""
|
|
146982
|
+
:param Sequence[_builtins.str] notification_events: List of notification events like PIPELINE_START
|
|
146983
|
+
:param 'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgs' template: Template reference configuration
|
|
146984
|
+
"""
|
|
146985
|
+
pulumi.set(__self__, "notification_events", notification_events)
|
|
146986
|
+
pulumi.set(__self__, "template", template)
|
|
146987
|
+
|
|
146988
|
+
@_builtins.property
|
|
146989
|
+
@pulumi.getter(name="notificationEvents")
|
|
146990
|
+
def notification_events(self) -> Sequence[_builtins.str]:
|
|
146991
|
+
"""
|
|
146992
|
+
List of notification events like PIPELINE_START
|
|
146993
|
+
"""
|
|
146994
|
+
return pulumi.get(self, "notification_events")
|
|
146995
|
+
|
|
146996
|
+
@notification_events.setter
|
|
146997
|
+
def notification_events(self, value: Sequence[_builtins.str]):
|
|
146998
|
+
pulumi.set(self, "notification_events", value)
|
|
146999
|
+
|
|
147000
|
+
@_builtins.property
|
|
147001
|
+
@pulumi.getter
|
|
147002
|
+
def template(self) -> 'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgs':
|
|
147003
|
+
"""
|
|
147004
|
+
Template reference configuration
|
|
147005
|
+
"""
|
|
147006
|
+
return pulumi.get(self, "template")
|
|
147007
|
+
|
|
147008
|
+
@template.setter
|
|
147009
|
+
def template(self, value: 'GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgs'):
|
|
147010
|
+
pulumi.set(self, "template", value)
|
|
147011
|
+
|
|
147012
|
+
|
|
147013
|
+
if not MYPY:
|
|
147014
|
+
class GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgsDict(TypedDict):
|
|
147015
|
+
template_ref: _builtins.str
|
|
147016
|
+
version_label: _builtins.str
|
|
147017
|
+
variables: NotRequired[Sequence['GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgsDict']]
|
|
147018
|
+
"""
|
|
147019
|
+
List of variables passed to the template
|
|
147020
|
+
"""
|
|
147021
|
+
elif False:
|
|
147022
|
+
GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgsDict: TypeAlias = Mapping[str, Any]
|
|
147023
|
+
|
|
147024
|
+
@pulumi.input_type
|
|
147025
|
+
class GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateArgs:
|
|
147026
|
+
def __init__(__self__, *,
|
|
147027
|
+
template_ref: _builtins.str,
|
|
147028
|
+
version_label: _builtins.str,
|
|
147029
|
+
variables: Optional[Sequence['GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgs']] = None):
|
|
147030
|
+
"""
|
|
147031
|
+
:param Sequence['GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgs'] variables: List of variables passed to the template
|
|
147032
|
+
"""
|
|
147033
|
+
pulumi.set(__self__, "template_ref", template_ref)
|
|
147034
|
+
pulumi.set(__self__, "version_label", version_label)
|
|
147035
|
+
if variables is not None:
|
|
147036
|
+
pulumi.set(__self__, "variables", variables)
|
|
147037
|
+
|
|
147038
|
+
@_builtins.property
|
|
147039
|
+
@pulumi.getter(name="templateRef")
|
|
147040
|
+
def template_ref(self) -> _builtins.str:
|
|
147041
|
+
return pulumi.get(self, "template_ref")
|
|
147042
|
+
|
|
147043
|
+
@template_ref.setter
|
|
147044
|
+
def template_ref(self, value: _builtins.str):
|
|
147045
|
+
pulumi.set(self, "template_ref", value)
|
|
147046
|
+
|
|
147047
|
+
@_builtins.property
|
|
147048
|
+
@pulumi.getter(name="versionLabel")
|
|
147049
|
+
def version_label(self) -> _builtins.str:
|
|
147050
|
+
return pulumi.get(self, "version_label")
|
|
147051
|
+
|
|
147052
|
+
@version_label.setter
|
|
147053
|
+
def version_label(self, value: _builtins.str):
|
|
147054
|
+
pulumi.set(self, "version_label", value)
|
|
147055
|
+
|
|
147056
|
+
@_builtins.property
|
|
147057
|
+
@pulumi.getter
|
|
147058
|
+
def variables(self) -> Optional[Sequence['GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgs']]:
|
|
147059
|
+
"""
|
|
147060
|
+
List of variables passed to the template
|
|
147061
|
+
"""
|
|
147062
|
+
return pulumi.get(self, "variables")
|
|
147063
|
+
|
|
147064
|
+
@variables.setter
|
|
147065
|
+
def variables(self, value: Optional[Sequence['GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgs']]):
|
|
147066
|
+
pulumi.set(self, "variables", value)
|
|
147067
|
+
|
|
147068
|
+
|
|
147069
|
+
if not MYPY:
|
|
147070
|
+
class GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgsDict(TypedDict):
|
|
147071
|
+
name: _builtins.str
|
|
147072
|
+
type: _builtins.str
|
|
147073
|
+
value: _builtins.str
|
|
147074
|
+
elif False:
|
|
147075
|
+
GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgsDict: TypeAlias = Mapping[str, Any]
|
|
147076
|
+
|
|
147077
|
+
@pulumi.input_type
|
|
147078
|
+
class GetDefaultNotificationTemplateSetEventTemplateConfigurationSetTemplateVariableArgs:
|
|
147079
|
+
def __init__(__self__, *,
|
|
147080
|
+
name: _builtins.str,
|
|
147081
|
+
type: _builtins.str,
|
|
147082
|
+
value: _builtins.str):
|
|
147083
|
+
pulumi.set(__self__, "name", name)
|
|
147084
|
+
pulumi.set(__self__, "type", type)
|
|
147085
|
+
pulumi.set(__self__, "value", value)
|
|
147086
|
+
|
|
147087
|
+
@_builtins.property
|
|
147088
|
+
@pulumi.getter
|
|
147089
|
+
def name(self) -> _builtins.str:
|
|
147090
|
+
return pulumi.get(self, "name")
|
|
147091
|
+
|
|
147092
|
+
@name.setter
|
|
147093
|
+
def name(self, value: _builtins.str):
|
|
147094
|
+
pulumi.set(self, "name", value)
|
|
147095
|
+
|
|
147096
|
+
@_builtins.property
|
|
147097
|
+
@pulumi.getter
|
|
147098
|
+
def type(self) -> _builtins.str:
|
|
147099
|
+
return pulumi.get(self, "type")
|
|
147100
|
+
|
|
147101
|
+
@type.setter
|
|
147102
|
+
def type(self, value: _builtins.str):
|
|
147103
|
+
pulumi.set(self, "type", value)
|
|
147104
|
+
|
|
147105
|
+
@_builtins.property
|
|
147106
|
+
@pulumi.getter
|
|
147107
|
+
def value(self) -> _builtins.str:
|
|
147108
|
+
return pulumi.get(self, "value")
|
|
147109
|
+
|
|
147110
|
+
@value.setter
|
|
147111
|
+
def value(self, value: _builtins.str):
|
|
147112
|
+
pulumi.set(self, "value", value)
|
|
147113
|
+
|
|
147114
|
+
|
|
144819
147115
|
if not MYPY:
|
|
144820
147116
|
class GetEnvironmentClustersMappingClusterArgsDict(TypedDict):
|
|
144821
147117
|
agent_identifier: NotRequired[_builtins.str]
|