pulumi-harness 0.5.0a1730785094__py3-none-any.whl → 0.5.0a1731131341__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 +197 -4
- pulumi_harness/platform/file_store_file.py +2 -2
- pulumi_harness/platform/get_provider.py +85 -0
- pulumi_harness/platform/git_ops_applications.py +55 -8
- pulumi_harness/platform/git_ops_repository.py +47 -0
- pulumi_harness/platform/outputs.py +378 -164
- pulumi_harness/platform/provider.py +349 -0
- pulumi_harness/pulumi-plugin.json +1 -1
- {pulumi_harness-0.5.0a1730785094.dist-info → pulumi_harness-0.5.0a1731131341.dist-info}/METADATA +1 -1
- {pulumi_harness-0.5.0a1730785094.dist-info → pulumi_harness-0.5.0a1731131341.dist-info}/RECORD +14 -12
- {pulumi_harness-0.5.0a1730785094.dist-info → pulumi_harness-0.5.0a1731131341.dist-info}/WHEEL +0 -0
- {pulumi_harness-0.5.0a1730785094.dist-info → pulumi_harness-0.5.0a1731131341.dist-info}/top_level.txt +0 -0
|
@@ -194,6 +194,7 @@ __all__ = [
|
|
|
194
194
|
'PipelinePipelineImportRequest',
|
|
195
195
|
'PolicySetPolicy',
|
|
196
196
|
'PrometheusConnectorHeader',
|
|
197
|
+
'ProviderSpec',
|
|
197
198
|
'RepoRuleBranchBypass',
|
|
198
199
|
'RepoRuleBranchPattern',
|
|
199
200
|
'RepoRuleBranchPolicy',
|
|
@@ -4076,18 +4077,22 @@ class GitOpsApplicationsApplicationSpec(dict):
|
|
|
4076
4077
|
def __init__(__self__, *,
|
|
4077
4078
|
destinations: Optional[Sequence['outputs.GitOpsApplicationsApplicationSpecDestination']] = None,
|
|
4078
4079
|
project: Optional[str] = None,
|
|
4080
|
+
source: Optional[Sequence['outputs.GitOpsApplicationsApplicationSpecSource']] = None,
|
|
4079
4081
|
sources: Optional[Sequence['outputs.GitOpsApplicationsApplicationSpecSource']] = None,
|
|
4080
4082
|
sync_policies: Optional[Sequence['outputs.GitOpsApplicationsApplicationSpecSyncPolicy']] = None):
|
|
4081
4083
|
"""
|
|
4082
4084
|
:param Sequence['GitOpsApplicationsApplicationSpecDestinationArgs'] destinations: Information about the GitOps application's destination.
|
|
4083
4085
|
:param str project: The ArgoCD project name corresponding to this GitOps application. Value must match mappings of ArgoCD projects to harness project.
|
|
4084
|
-
:param Sequence['GitOpsApplicationsApplicationSpecSourceArgs']
|
|
4086
|
+
:param Sequence['GitOpsApplicationsApplicationSpecSourceArgs'] source: Contains all information about the source of the GitOps application.
|
|
4087
|
+
:param Sequence['GitOpsApplicationsApplicationSpecSourceArgs'] sources: List of sources for the GitOps application. Multi Source support
|
|
4085
4088
|
:param Sequence['GitOpsApplicationsApplicationSpecSyncPolicyArgs'] sync_policies: Controls when a sync will be performed in response to updates in git.
|
|
4086
4089
|
"""
|
|
4087
4090
|
if destinations is not None:
|
|
4088
4091
|
pulumi.set(__self__, "destinations", destinations)
|
|
4089
4092
|
if project is not None:
|
|
4090
4093
|
pulumi.set(__self__, "project", project)
|
|
4094
|
+
if source is not None:
|
|
4095
|
+
pulumi.set(__self__, "source", source)
|
|
4091
4096
|
if sources is not None:
|
|
4092
4097
|
pulumi.set(__self__, "sources", sources)
|
|
4093
4098
|
if sync_policies is not None:
|
|
@@ -4111,10 +4116,18 @@ class GitOpsApplicationsApplicationSpec(dict):
|
|
|
4111
4116
|
|
|
4112
4117
|
@property
|
|
4113
4118
|
@pulumi.getter
|
|
4114
|
-
def
|
|
4119
|
+
def source(self) -> Optional[Sequence['outputs.GitOpsApplicationsApplicationSpecSource']]:
|
|
4115
4120
|
"""
|
|
4116
4121
|
Contains all information about the source of the GitOps application.
|
|
4117
4122
|
"""
|
|
4123
|
+
return pulumi.get(self, "source")
|
|
4124
|
+
|
|
4125
|
+
@property
|
|
4126
|
+
@pulumi.getter
|
|
4127
|
+
def sources(self) -> Optional[Sequence['outputs.GitOpsApplicationsApplicationSpecSource']]:
|
|
4128
|
+
"""
|
|
4129
|
+
List of sources for the GitOps application. Multi Source support
|
|
4130
|
+
"""
|
|
4118
4131
|
return pulumi.get(self, "sources")
|
|
4119
4132
|
|
|
4120
4133
|
@property
|
|
@@ -4199,7 +4212,8 @@ class GitOpsApplicationsApplicationSpecSource(dict):
|
|
|
4199
4212
|
ksonnets: Optional[Sequence['outputs.GitOpsApplicationsApplicationSpecSourceKsonnet']] = None,
|
|
4200
4213
|
kustomizes: Optional[Sequence['outputs.GitOpsApplicationsApplicationSpecSourceKustomize']] = None,
|
|
4201
4214
|
path: Optional[str] = None,
|
|
4202
|
-
plugins: Optional[Sequence['outputs.GitOpsApplicationsApplicationSpecSourcePlugin']] = None
|
|
4215
|
+
plugins: Optional[Sequence['outputs.GitOpsApplicationsApplicationSpecSourcePlugin']] = None,
|
|
4216
|
+
ref: Optional[str] = None):
|
|
4203
4217
|
"""
|
|
4204
4218
|
:param str repo_url: URL to the repository (git or helm) that contains the GitOps application manifests.
|
|
4205
4219
|
:param str target_revision: Revision of the source to sync the GitOps application to. In case of git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag of the chart's version.
|
|
@@ -4210,6 +4224,7 @@ class GitOpsApplicationsApplicationSpecSource(dict):
|
|
|
4210
4224
|
:param Sequence['GitOpsApplicationsApplicationSpecSourceKustomizeArgs'] kustomizes: Options specific to a GitOps application source specific to Kustomize.
|
|
4211
4225
|
:param str path: Directory path within the git repository, and is only valid for the GitOps applications sourced from git.
|
|
4212
4226
|
:param Sequence['GitOpsApplicationsApplicationSpecSourcePluginArgs'] plugins: Options specific to config management plugins.
|
|
4227
|
+
:param str ref: Reference name to be used in other source spec, used for multi-source applications.
|
|
4213
4228
|
"""
|
|
4214
4229
|
pulumi.set(__self__, "repo_url", repo_url)
|
|
4215
4230
|
pulumi.set(__self__, "target_revision", target_revision)
|
|
@@ -4227,6 +4242,8 @@ class GitOpsApplicationsApplicationSpecSource(dict):
|
|
|
4227
4242
|
pulumi.set(__self__, "path", path)
|
|
4228
4243
|
if plugins is not None:
|
|
4229
4244
|
pulumi.set(__self__, "plugins", plugins)
|
|
4245
|
+
if ref is not None:
|
|
4246
|
+
pulumi.set(__self__, "ref", ref)
|
|
4230
4247
|
|
|
4231
4248
|
@property
|
|
4232
4249
|
@pulumi.getter(name="repoUrl")
|
|
@@ -4300,6 +4317,14 @@ class GitOpsApplicationsApplicationSpecSource(dict):
|
|
|
4300
4317
|
"""
|
|
4301
4318
|
return pulumi.get(self, "plugins")
|
|
4302
4319
|
|
|
4320
|
+
@property
|
|
4321
|
+
@pulumi.getter
|
|
4322
|
+
def ref(self) -> Optional[str]:
|
|
4323
|
+
"""
|
|
4324
|
+
Reference name to be used in other source spec, used for multi-source applications.
|
|
4325
|
+
"""
|
|
4326
|
+
return pulumi.get(self, "ref")
|
|
4327
|
+
|
|
4303
4328
|
|
|
4304
4329
|
@pulumi.output_type
|
|
4305
4330
|
class GitOpsApplicationsApplicationSpecSourceDirectory(dict):
|
|
@@ -11345,6 +11370,8 @@ class PipelineFiltersFilterPropertiesModulePropertiesCd(dict):
|
|
|
11345
11370
|
suggest = "deployment_types"
|
|
11346
11371
|
elif key == "environmentNames":
|
|
11347
11372
|
suggest = "environment_names"
|
|
11373
|
+
elif key == "serviceIdentifiers":
|
|
11374
|
+
suggest = "service_identifiers"
|
|
11348
11375
|
elif key == "serviceNames":
|
|
11349
11376
|
suggest = "service_names"
|
|
11350
11377
|
|
|
@@ -11363,11 +11390,13 @@ class PipelineFiltersFilterPropertiesModulePropertiesCd(dict):
|
|
|
11363
11390
|
artifact_display_names: Optional[Sequence[str]] = None,
|
|
11364
11391
|
deployment_types: Optional[str] = None,
|
|
11365
11392
|
environment_names: Optional[Sequence[str]] = None,
|
|
11393
|
+
service_identifiers: Optional[Sequence[str]] = None,
|
|
11366
11394
|
service_names: Optional[Sequence[str]] = None):
|
|
11367
11395
|
"""
|
|
11368
11396
|
:param Sequence[str] artifact_display_names: Artifact display names of the CD pipeline.
|
|
11369
11397
|
:param str deployment_types: Deployment type of the CD pipeline, eg. Kubernetes
|
|
11370
11398
|
:param Sequence[str] environment_names: Environment names of the CD pipeline.
|
|
11399
|
+
:param Sequence[str] service_identifiers: Service identifiers of the CD pipeline.
|
|
11371
11400
|
:param Sequence[str] service_names: Service names of the CD pipeline.
|
|
11372
11401
|
"""
|
|
11373
11402
|
if artifact_display_names is not None:
|
|
@@ -11376,6 +11405,8 @@ class PipelineFiltersFilterPropertiesModulePropertiesCd(dict):
|
|
|
11376
11405
|
pulumi.set(__self__, "deployment_types", deployment_types)
|
|
11377
11406
|
if environment_names is not None:
|
|
11378
11407
|
pulumi.set(__self__, "environment_names", environment_names)
|
|
11408
|
+
if service_identifiers is not None:
|
|
11409
|
+
pulumi.set(__self__, "service_identifiers", service_identifiers)
|
|
11379
11410
|
if service_names is not None:
|
|
11380
11411
|
pulumi.set(__self__, "service_names", service_names)
|
|
11381
11412
|
|
|
@@ -11403,6 +11434,14 @@ class PipelineFiltersFilterPropertiesModulePropertiesCd(dict):
|
|
|
11403
11434
|
"""
|
|
11404
11435
|
return pulumi.get(self, "environment_names")
|
|
11405
11436
|
|
|
11437
|
+
@property
|
|
11438
|
+
@pulumi.getter(name="serviceIdentifiers")
|
|
11439
|
+
def service_identifiers(self) -> Optional[Sequence[str]]:
|
|
11440
|
+
"""
|
|
11441
|
+
Service identifiers of the CD pipeline.
|
|
11442
|
+
"""
|
|
11443
|
+
return pulumi.get(self, "service_identifiers")
|
|
11444
|
+
|
|
11406
11445
|
@property
|
|
11407
11446
|
@pulumi.getter(name="serviceNames")
|
|
11408
11447
|
def service_names(self) -> Optional[Sequence[str]]:
|
|
@@ -11976,6 +12015,107 @@ class PrometheusConnectorHeader(dict):
|
|
|
11976
12015
|
return pulumi.get(self, "value_encrypted")
|
|
11977
12016
|
|
|
11978
12017
|
|
|
12018
|
+
@pulumi.output_type
|
|
12019
|
+
class ProviderSpec(dict):
|
|
12020
|
+
@staticmethod
|
|
12021
|
+
def __key_warning(key: str):
|
|
12022
|
+
suggest = None
|
|
12023
|
+
if key == "clientId":
|
|
12024
|
+
suggest = "client_id"
|
|
12025
|
+
elif key == "clientSecretRef":
|
|
12026
|
+
suggest = "client_secret_ref"
|
|
12027
|
+
elif key == "delegateSelectors":
|
|
12028
|
+
suggest = "delegate_selectors"
|
|
12029
|
+
elif key == "secretManagerRef":
|
|
12030
|
+
suggest = "secret_manager_ref"
|
|
12031
|
+
|
|
12032
|
+
if suggest:
|
|
12033
|
+
pulumi.log.warn(f"Key '{key}' not found in ProviderSpec. Access the value via the '{suggest}' property getter instead.")
|
|
12034
|
+
|
|
12035
|
+
def __getitem__(self, key: str) -> Any:
|
|
12036
|
+
ProviderSpec.__key_warning(key)
|
|
12037
|
+
return super().__getitem__(key)
|
|
12038
|
+
|
|
12039
|
+
def get(self, key: str, default = None) -> Any:
|
|
12040
|
+
ProviderSpec.__key_warning(key)
|
|
12041
|
+
return super().get(key, default)
|
|
12042
|
+
|
|
12043
|
+
def __init__(__self__, *,
|
|
12044
|
+
type: str,
|
|
12045
|
+
client_id: Optional[str] = None,
|
|
12046
|
+
client_secret_ref: Optional[str] = None,
|
|
12047
|
+
delegate_selectors: Optional[Sequence[str]] = None,
|
|
12048
|
+
domain: Optional[str] = None,
|
|
12049
|
+
secret_manager_ref: Optional[str] = None):
|
|
12050
|
+
"""
|
|
12051
|
+
:param str type: The type of the provider entity.
|
|
12052
|
+
:param str client_id: Client Id of the OAuth app to connect
|
|
12053
|
+
:param str client_secret_ref: Client Secret Ref of the OAuth app to connect
|
|
12054
|
+
:param Sequence[str] delegate_selectors: Delegate selectors to fetch the access token
|
|
12055
|
+
:param str domain: Host domain of the provider.
|
|
12056
|
+
:param str secret_manager_ref: Secret Manager Ref to store the access/refresh tokens
|
|
12057
|
+
"""
|
|
12058
|
+
pulumi.set(__self__, "type", type)
|
|
12059
|
+
if client_id is not None:
|
|
12060
|
+
pulumi.set(__self__, "client_id", client_id)
|
|
12061
|
+
if client_secret_ref is not None:
|
|
12062
|
+
pulumi.set(__self__, "client_secret_ref", client_secret_ref)
|
|
12063
|
+
if delegate_selectors is not None:
|
|
12064
|
+
pulumi.set(__self__, "delegate_selectors", delegate_selectors)
|
|
12065
|
+
if domain is not None:
|
|
12066
|
+
pulumi.set(__self__, "domain", domain)
|
|
12067
|
+
if secret_manager_ref is not None:
|
|
12068
|
+
pulumi.set(__self__, "secret_manager_ref", secret_manager_ref)
|
|
12069
|
+
|
|
12070
|
+
@property
|
|
12071
|
+
@pulumi.getter
|
|
12072
|
+
def type(self) -> str:
|
|
12073
|
+
"""
|
|
12074
|
+
The type of the provider entity.
|
|
12075
|
+
"""
|
|
12076
|
+
return pulumi.get(self, "type")
|
|
12077
|
+
|
|
12078
|
+
@property
|
|
12079
|
+
@pulumi.getter(name="clientId")
|
|
12080
|
+
def client_id(self) -> Optional[str]:
|
|
12081
|
+
"""
|
|
12082
|
+
Client Id of the OAuth app to connect
|
|
12083
|
+
"""
|
|
12084
|
+
return pulumi.get(self, "client_id")
|
|
12085
|
+
|
|
12086
|
+
@property
|
|
12087
|
+
@pulumi.getter(name="clientSecretRef")
|
|
12088
|
+
def client_secret_ref(self) -> Optional[str]:
|
|
12089
|
+
"""
|
|
12090
|
+
Client Secret Ref of the OAuth app to connect
|
|
12091
|
+
"""
|
|
12092
|
+
return pulumi.get(self, "client_secret_ref")
|
|
12093
|
+
|
|
12094
|
+
@property
|
|
12095
|
+
@pulumi.getter(name="delegateSelectors")
|
|
12096
|
+
def delegate_selectors(self) -> Optional[Sequence[str]]:
|
|
12097
|
+
"""
|
|
12098
|
+
Delegate selectors to fetch the access token
|
|
12099
|
+
"""
|
|
12100
|
+
return pulumi.get(self, "delegate_selectors")
|
|
12101
|
+
|
|
12102
|
+
@property
|
|
12103
|
+
@pulumi.getter
|
|
12104
|
+
def domain(self) -> Optional[str]:
|
|
12105
|
+
"""
|
|
12106
|
+
Host domain of the provider.
|
|
12107
|
+
"""
|
|
12108
|
+
return pulumi.get(self, "domain")
|
|
12109
|
+
|
|
12110
|
+
@property
|
|
12111
|
+
@pulumi.getter(name="secretManagerRef")
|
|
12112
|
+
def secret_manager_ref(self) -> Optional[str]:
|
|
12113
|
+
"""
|
|
12114
|
+
Secret Manager Ref to store the access/refresh tokens
|
|
12115
|
+
"""
|
|
12116
|
+
return pulumi.get(self, "secret_manager_ref")
|
|
12117
|
+
|
|
12118
|
+
|
|
11979
12119
|
@pulumi.output_type
|
|
11980
12120
|
class RepoRuleBranchBypass(dict):
|
|
11981
12121
|
@staticmethod
|
|
@@ -17763,21 +17903,24 @@ class GetGitopsApplicationsApplicationMetadataOwnerReferenceResult(dict):
|
|
|
17763
17903
|
class GetGitopsApplicationsApplicationSpecResult(dict):
|
|
17764
17904
|
def __init__(__self__, *,
|
|
17765
17905
|
destinations: Sequence['outputs.GetGitopsApplicationsApplicationSpecDestinationResult'],
|
|
17906
|
+
sources: Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceResult'],
|
|
17766
17907
|
sync_policies: Sequence['outputs.GetGitopsApplicationsApplicationSpecSyncPolicyResult'],
|
|
17767
17908
|
project: Optional[str] = None,
|
|
17768
|
-
|
|
17909
|
+
source: Optional[Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceResult']] = None):
|
|
17769
17910
|
"""
|
|
17770
17911
|
:param Sequence['GetGitopsApplicationsApplicationSpecDestinationArgs'] destinations: Information about the GitOps application's destination.
|
|
17912
|
+
:param Sequence['GetGitopsApplicationsApplicationSpecSourceArgs'] sources: List of sources for the GitOps application. Multi Source support
|
|
17771
17913
|
:param Sequence['GetGitopsApplicationsApplicationSpecSyncPolicyArgs'] sync_policies: Controls when a sync will be performed in response to updates in git.
|
|
17772
17914
|
:param str project: The ArgoCD project name corresponding to this GitOps application. Value must match mappings of ArgoCD projects to harness project.
|
|
17773
|
-
:param Sequence['GetGitopsApplicationsApplicationSpecSourceArgs']
|
|
17915
|
+
:param Sequence['GetGitopsApplicationsApplicationSpecSourceArgs'] source: Contains all information about the source of a GitOps application.
|
|
17774
17916
|
"""
|
|
17775
17917
|
pulumi.set(__self__, "destinations", destinations)
|
|
17918
|
+
pulumi.set(__self__, "sources", sources)
|
|
17776
17919
|
pulumi.set(__self__, "sync_policies", sync_policies)
|
|
17777
17920
|
if project is not None:
|
|
17778
17921
|
pulumi.set(__self__, "project", project)
|
|
17779
|
-
if
|
|
17780
|
-
pulumi.set(__self__, "
|
|
17922
|
+
if source is not None:
|
|
17923
|
+
pulumi.set(__self__, "source", source)
|
|
17781
17924
|
|
|
17782
17925
|
@property
|
|
17783
17926
|
@pulumi.getter
|
|
@@ -17787,6 +17930,14 @@ class GetGitopsApplicationsApplicationSpecResult(dict):
|
|
|
17787
17930
|
"""
|
|
17788
17931
|
return pulumi.get(self, "destinations")
|
|
17789
17932
|
|
|
17933
|
+
@property
|
|
17934
|
+
@pulumi.getter
|
|
17935
|
+
def sources(self) -> Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceResult']:
|
|
17936
|
+
"""
|
|
17937
|
+
List of sources for the GitOps application. Multi Source support
|
|
17938
|
+
"""
|
|
17939
|
+
return pulumi.get(self, "sources")
|
|
17940
|
+
|
|
17790
17941
|
@property
|
|
17791
17942
|
@pulumi.getter(name="syncPolicies")
|
|
17792
17943
|
def sync_policies(self) -> Sequence['outputs.GetGitopsApplicationsApplicationSpecSyncPolicyResult']:
|
|
@@ -17805,11 +17956,11 @@ class GetGitopsApplicationsApplicationSpecResult(dict):
|
|
|
17805
17956
|
|
|
17806
17957
|
@property
|
|
17807
17958
|
@pulumi.getter
|
|
17808
|
-
def
|
|
17959
|
+
def source(self) -> Optional[Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceResult']]:
|
|
17809
17960
|
"""
|
|
17810
17961
|
Contains all information about the source of a GitOps application.
|
|
17811
17962
|
"""
|
|
17812
|
-
return pulumi.get(self, "
|
|
17963
|
+
return pulumi.get(self, "source")
|
|
17813
17964
|
|
|
17814
17965
|
|
|
17815
17966
|
@pulumi.output_type
|
|
@@ -17857,34 +18008,36 @@ class GetGitopsApplicationsApplicationSpecSourceResult(dict):
|
|
|
17857
18008
|
def __init__(__self__, *,
|
|
17858
18009
|
chart: str,
|
|
17859
18010
|
directories: Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceDirectoryResult'],
|
|
18011
|
+
helms: Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceHelmResult'],
|
|
17860
18012
|
ksonnets: Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceKsonnetResult'],
|
|
17861
18013
|
kustomizes: Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceKustomizeResult'],
|
|
17862
18014
|
path: str,
|
|
17863
18015
|
plugins: Sequence['outputs.GetGitopsApplicationsApplicationSpecSourcePluginResult'],
|
|
18016
|
+
ref: str,
|
|
17864
18017
|
repo_url: str,
|
|
17865
|
-
target_revision: str
|
|
17866
|
-
helms: Optional[Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceHelmResult']] = None):
|
|
18018
|
+
target_revision: str):
|
|
17867
18019
|
"""
|
|
17868
18020
|
:param str chart: Helm chart name, and must be specified for the GitOps applications sourced from a helm repo.
|
|
17869
18021
|
:param Sequence['GetGitopsApplicationsApplicationSpecSourceDirectoryArgs'] directories: Options for applications of type plain YAML or Jsonnet.
|
|
18022
|
+
:param Sequence['GetGitopsApplicationsApplicationSpecSourceHelmArgs'] helms: Holds helm specific options.
|
|
17870
18023
|
:param Sequence['GetGitopsApplicationsApplicationSpecSourceKsonnetArgs'] ksonnets: Ksonnet specific options.
|
|
17871
18024
|
:param Sequence['GetGitopsApplicationsApplicationSpecSourceKustomizeArgs'] kustomizes: Options specific to a GitOps application source specific to Kustomize.
|
|
17872
18025
|
:param str path: Directory path within the git repository, and is only valid for the GitOps applications sourced from git.
|
|
17873
18026
|
:param Sequence['GetGitopsApplicationsApplicationSpecSourcePluginArgs'] plugins: Options specific to config management plugins.
|
|
18027
|
+
:param str ref: Reference name to be used in other source spec, used for multi-source applications.
|
|
17874
18028
|
:param str repo_url: URL to the repository (git or helm) that contains the GitOps application manifests.
|
|
17875
18029
|
:param str target_revision: Revision of the source to sync the GitOps application to. In case of git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag of the chart's version.
|
|
17876
|
-
:param Sequence['GetGitopsApplicationsApplicationSpecSourceHelmArgs'] helms: Holds helm specific options.
|
|
17877
18030
|
"""
|
|
17878
18031
|
pulumi.set(__self__, "chart", chart)
|
|
17879
18032
|
pulumi.set(__self__, "directories", directories)
|
|
18033
|
+
pulumi.set(__self__, "helms", helms)
|
|
17880
18034
|
pulumi.set(__self__, "ksonnets", ksonnets)
|
|
17881
18035
|
pulumi.set(__self__, "kustomizes", kustomizes)
|
|
17882
18036
|
pulumi.set(__self__, "path", path)
|
|
17883
18037
|
pulumi.set(__self__, "plugins", plugins)
|
|
18038
|
+
pulumi.set(__self__, "ref", ref)
|
|
17884
18039
|
pulumi.set(__self__, "repo_url", repo_url)
|
|
17885
18040
|
pulumi.set(__self__, "target_revision", target_revision)
|
|
17886
|
-
if helms is not None:
|
|
17887
|
-
pulumi.set(__self__, "helms", helms)
|
|
17888
18041
|
|
|
17889
18042
|
@property
|
|
17890
18043
|
@pulumi.getter
|
|
@@ -17902,6 +18055,14 @@ class GetGitopsApplicationsApplicationSpecSourceResult(dict):
|
|
|
17902
18055
|
"""
|
|
17903
18056
|
return pulumi.get(self, "directories")
|
|
17904
18057
|
|
|
18058
|
+
@property
|
|
18059
|
+
@pulumi.getter
|
|
18060
|
+
def helms(self) -> Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceHelmResult']:
|
|
18061
|
+
"""
|
|
18062
|
+
Holds helm specific options.
|
|
18063
|
+
"""
|
|
18064
|
+
return pulumi.get(self, "helms")
|
|
18065
|
+
|
|
17905
18066
|
@property
|
|
17906
18067
|
@pulumi.getter
|
|
17907
18068
|
def ksonnets(self) -> Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceKsonnetResult']:
|
|
@@ -17934,6 +18095,14 @@ class GetGitopsApplicationsApplicationSpecSourceResult(dict):
|
|
|
17934
18095
|
"""
|
|
17935
18096
|
return pulumi.get(self, "plugins")
|
|
17936
18097
|
|
|
18098
|
+
@property
|
|
18099
|
+
@pulumi.getter
|
|
18100
|
+
def ref(self) -> str:
|
|
18101
|
+
"""
|
|
18102
|
+
Reference name to be used in other source spec, used for multi-source applications.
|
|
18103
|
+
"""
|
|
18104
|
+
return pulumi.get(self, "ref")
|
|
18105
|
+
|
|
17937
18106
|
@property
|
|
17938
18107
|
@pulumi.getter(name="repoUrl")
|
|
17939
18108
|
def repo_url(self) -> str:
|
|
@@ -17950,36 +18119,32 @@ class GetGitopsApplicationsApplicationSpecSourceResult(dict):
|
|
|
17950
18119
|
"""
|
|
17951
18120
|
return pulumi.get(self, "target_revision")
|
|
17952
18121
|
|
|
17953
|
-
@property
|
|
17954
|
-
@pulumi.getter
|
|
17955
|
-
def helms(self) -> Optional[Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceHelmResult']]:
|
|
17956
|
-
"""
|
|
17957
|
-
Holds helm specific options.
|
|
17958
|
-
"""
|
|
17959
|
-
return pulumi.get(self, "helms")
|
|
17960
|
-
|
|
17961
18122
|
|
|
17962
18123
|
@pulumi.output_type
|
|
17963
18124
|
class GetGitopsApplicationsApplicationSpecSourceDirectoryResult(dict):
|
|
17964
18125
|
def __init__(__self__, *,
|
|
17965
|
-
exclude: str,
|
|
17966
|
-
include: str,
|
|
17967
|
-
jsonnets: Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetResult'],
|
|
17968
|
-
recurse: bool):
|
|
18126
|
+
exclude: Optional[str] = None,
|
|
18127
|
+
include: Optional[str] = None,
|
|
18128
|
+
jsonnets: Optional[Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetResult']] = None,
|
|
18129
|
+
recurse: Optional[bool] = None):
|
|
17969
18130
|
"""
|
|
17970
18131
|
:param str exclude: Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation.
|
|
17971
18132
|
:param str include: Glob pattern to match paths against that should be explicitly included during manifest generation.
|
|
17972
18133
|
:param Sequence['GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetArgs'] jsonnets: Options specific to applications of type Jsonnet.
|
|
17973
18134
|
:param bool recurse: Indicates to scan a directory recursively for manifests.
|
|
17974
18135
|
"""
|
|
17975
|
-
|
|
17976
|
-
|
|
17977
|
-
|
|
17978
|
-
|
|
18136
|
+
if exclude is not None:
|
|
18137
|
+
pulumi.set(__self__, "exclude", exclude)
|
|
18138
|
+
if include is not None:
|
|
18139
|
+
pulumi.set(__self__, "include", include)
|
|
18140
|
+
if jsonnets is not None:
|
|
18141
|
+
pulumi.set(__self__, "jsonnets", jsonnets)
|
|
18142
|
+
if recurse is not None:
|
|
18143
|
+
pulumi.set(__self__, "recurse", recurse)
|
|
17979
18144
|
|
|
17980
18145
|
@property
|
|
17981
18146
|
@pulumi.getter
|
|
17982
|
-
def exclude(self) -> str:
|
|
18147
|
+
def exclude(self) -> Optional[str]:
|
|
17983
18148
|
"""
|
|
17984
18149
|
Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation.
|
|
17985
18150
|
"""
|
|
@@ -17987,7 +18152,7 @@ class GetGitopsApplicationsApplicationSpecSourceDirectoryResult(dict):
|
|
|
17987
18152
|
|
|
17988
18153
|
@property
|
|
17989
18154
|
@pulumi.getter
|
|
17990
|
-
def include(self) -> str:
|
|
18155
|
+
def include(self) -> Optional[str]:
|
|
17991
18156
|
"""
|
|
17992
18157
|
Glob pattern to match paths against that should be explicitly included during manifest generation.
|
|
17993
18158
|
"""
|
|
@@ -17995,7 +18160,7 @@ class GetGitopsApplicationsApplicationSpecSourceDirectoryResult(dict):
|
|
|
17995
18160
|
|
|
17996
18161
|
@property
|
|
17997
18162
|
@pulumi.getter
|
|
17998
|
-
def jsonnets(self) -> Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetResult']:
|
|
18163
|
+
def jsonnets(self) -> Optional[Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetResult']]:
|
|
17999
18164
|
"""
|
|
18000
18165
|
Options specific to applications of type Jsonnet.
|
|
18001
18166
|
"""
|
|
@@ -18003,7 +18168,7 @@ class GetGitopsApplicationsApplicationSpecSourceDirectoryResult(dict):
|
|
|
18003
18168
|
|
|
18004
18169
|
@property
|
|
18005
18170
|
@pulumi.getter
|
|
18006
|
-
def recurse(self) -> bool:
|
|
18171
|
+
def recurse(self) -> Optional[bool]:
|
|
18007
18172
|
"""
|
|
18008
18173
|
Indicates to scan a directory recursively for manifests.
|
|
18009
18174
|
"""
|
|
@@ -18013,21 +18178,24 @@ class GetGitopsApplicationsApplicationSpecSourceDirectoryResult(dict):
|
|
|
18013
18178
|
@pulumi.output_type
|
|
18014
18179
|
class GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetResult(dict):
|
|
18015
18180
|
def __init__(__self__, *,
|
|
18016
|
-
ext_vars: Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetExtVarResult'],
|
|
18017
|
-
libs: Sequence[str],
|
|
18018
|
-
tlas: Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetTlaResult']):
|
|
18181
|
+
ext_vars: Optional[Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetExtVarResult']] = None,
|
|
18182
|
+
libs: Optional[Sequence[str]] = None,
|
|
18183
|
+
tlas: Optional[Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetTlaResult']] = None):
|
|
18019
18184
|
"""
|
|
18020
18185
|
:param Sequence['GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetExtVarArgs'] ext_vars: List of jsonnet external variables.
|
|
18021
18186
|
:param Sequence[str] libs: Additional library search dirs.
|
|
18022
18187
|
:param Sequence['GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetTlaArgs'] tlas: List of jsonnet top-level arguments(TLAS).
|
|
18023
18188
|
"""
|
|
18024
|
-
|
|
18025
|
-
|
|
18026
|
-
|
|
18189
|
+
if ext_vars is not None:
|
|
18190
|
+
pulumi.set(__self__, "ext_vars", ext_vars)
|
|
18191
|
+
if libs is not None:
|
|
18192
|
+
pulumi.set(__self__, "libs", libs)
|
|
18193
|
+
if tlas is not None:
|
|
18194
|
+
pulumi.set(__self__, "tlas", tlas)
|
|
18027
18195
|
|
|
18028
18196
|
@property
|
|
18029
18197
|
@pulumi.getter(name="extVars")
|
|
18030
|
-
def ext_vars(self) -> Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetExtVarResult']:
|
|
18198
|
+
def ext_vars(self) -> Optional[Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetExtVarResult']]:
|
|
18031
18199
|
"""
|
|
18032
18200
|
List of jsonnet external variables.
|
|
18033
18201
|
"""
|
|
@@ -18035,7 +18203,7 @@ class GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetResult(dict):
|
|
|
18035
18203
|
|
|
18036
18204
|
@property
|
|
18037
18205
|
@pulumi.getter
|
|
18038
|
-
def libs(self) -> Sequence[str]:
|
|
18206
|
+
def libs(self) -> Optional[Sequence[str]]:
|
|
18039
18207
|
"""
|
|
18040
18208
|
Additional library search dirs.
|
|
18041
18209
|
"""
|
|
@@ -18043,7 +18211,7 @@ class GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetResult(dict):
|
|
|
18043
18211
|
|
|
18044
18212
|
@property
|
|
18045
18213
|
@pulumi.getter
|
|
18046
|
-
def tlas(self) -> Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetTlaResult']:
|
|
18214
|
+
def tlas(self) -> Optional[Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetTlaResult']]:
|
|
18047
18215
|
"""
|
|
18048
18216
|
List of jsonnet top-level arguments(TLAS).
|
|
18049
18217
|
"""
|
|
@@ -18053,21 +18221,24 @@ class GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetResult(dict):
|
|
|
18053
18221
|
@pulumi.output_type
|
|
18054
18222
|
class GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetExtVarResult(dict):
|
|
18055
18223
|
def __init__(__self__, *,
|
|
18056
|
-
code: bool,
|
|
18057
|
-
name: str,
|
|
18058
|
-
value: str):
|
|
18224
|
+
code: Optional[bool] = None,
|
|
18225
|
+
name: Optional[str] = None,
|
|
18226
|
+
value: Optional[str] = None):
|
|
18059
18227
|
"""
|
|
18060
18228
|
:param bool code: Code of the external variables of jsonnet application.
|
|
18061
|
-
:param str name: Name of the
|
|
18229
|
+
:param str name: Name of the GitOps application.
|
|
18062
18230
|
:param str value: Value of the external variables of jsonnet application.
|
|
18063
18231
|
"""
|
|
18064
|
-
|
|
18065
|
-
|
|
18066
|
-
|
|
18232
|
+
if code is not None:
|
|
18233
|
+
pulumi.set(__self__, "code", code)
|
|
18234
|
+
if name is not None:
|
|
18235
|
+
pulumi.set(__self__, "name", name)
|
|
18236
|
+
if value is not None:
|
|
18237
|
+
pulumi.set(__self__, "value", value)
|
|
18067
18238
|
|
|
18068
18239
|
@property
|
|
18069
18240
|
@pulumi.getter
|
|
18070
|
-
def code(self) -> bool:
|
|
18241
|
+
def code(self) -> Optional[bool]:
|
|
18071
18242
|
"""
|
|
18072
18243
|
Code of the external variables of jsonnet application.
|
|
18073
18244
|
"""
|
|
@@ -18075,15 +18246,15 @@ class GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetExtVarResult(dic
|
|
|
18075
18246
|
|
|
18076
18247
|
@property
|
|
18077
18248
|
@pulumi.getter
|
|
18078
|
-
def name(self) -> str:
|
|
18249
|
+
def name(self) -> Optional[str]:
|
|
18079
18250
|
"""
|
|
18080
|
-
Name of the
|
|
18251
|
+
Name of the GitOps application.
|
|
18081
18252
|
"""
|
|
18082
18253
|
return pulumi.get(self, "name")
|
|
18083
18254
|
|
|
18084
18255
|
@property
|
|
18085
18256
|
@pulumi.getter
|
|
18086
|
-
def value(self) -> str:
|
|
18257
|
+
def value(self) -> Optional[str]:
|
|
18087
18258
|
"""
|
|
18088
18259
|
Value of the external variables of jsonnet application.
|
|
18089
18260
|
"""
|
|
@@ -18093,21 +18264,24 @@ class GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetExtVarResult(dic
|
|
|
18093
18264
|
@pulumi.output_type
|
|
18094
18265
|
class GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetTlaResult(dict):
|
|
18095
18266
|
def __init__(__self__, *,
|
|
18096
|
-
code: bool,
|
|
18097
|
-
name: str,
|
|
18098
|
-
value: str):
|
|
18267
|
+
code: Optional[bool] = None,
|
|
18268
|
+
name: Optional[str] = None,
|
|
18269
|
+
value: Optional[str] = None):
|
|
18099
18270
|
"""
|
|
18100
18271
|
:param bool code: Code of the TLAS of the jsonnet application.
|
|
18101
|
-
:param str name: Name of the
|
|
18272
|
+
:param str name: Name of the GitOps application.
|
|
18102
18273
|
:param str value: Value of the TLAS of the jsonnet application.
|
|
18103
18274
|
"""
|
|
18104
|
-
|
|
18105
|
-
|
|
18106
|
-
|
|
18275
|
+
if code is not None:
|
|
18276
|
+
pulumi.set(__self__, "code", code)
|
|
18277
|
+
if name is not None:
|
|
18278
|
+
pulumi.set(__self__, "name", name)
|
|
18279
|
+
if value is not None:
|
|
18280
|
+
pulumi.set(__self__, "value", value)
|
|
18107
18281
|
|
|
18108
18282
|
@property
|
|
18109
18283
|
@pulumi.getter
|
|
18110
|
-
def code(self) -> bool:
|
|
18284
|
+
def code(self) -> Optional[bool]:
|
|
18111
18285
|
"""
|
|
18112
18286
|
Code of the TLAS of the jsonnet application.
|
|
18113
18287
|
"""
|
|
@@ -18115,15 +18289,15 @@ class GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetTlaResult(dict):
|
|
|
18115
18289
|
|
|
18116
18290
|
@property
|
|
18117
18291
|
@pulumi.getter
|
|
18118
|
-
def name(self) -> str:
|
|
18292
|
+
def name(self) -> Optional[str]:
|
|
18119
18293
|
"""
|
|
18120
|
-
Name of the
|
|
18294
|
+
Name of the GitOps application.
|
|
18121
18295
|
"""
|
|
18122
18296
|
return pulumi.get(self, "name")
|
|
18123
18297
|
|
|
18124
18298
|
@property
|
|
18125
18299
|
@pulumi.getter
|
|
18126
|
-
def value(self) -> str:
|
|
18300
|
+
def value(self) -> Optional[str]:
|
|
18127
18301
|
"""
|
|
18128
18302
|
Value of the TLAS of the jsonnet application.
|
|
18129
18303
|
"""
|
|
@@ -18133,13 +18307,13 @@ class GetGitopsApplicationsApplicationSpecSourceDirectoryJsonnetTlaResult(dict):
|
|
|
18133
18307
|
@pulumi.output_type
|
|
18134
18308
|
class GetGitopsApplicationsApplicationSpecSourceHelmResult(dict):
|
|
18135
18309
|
def __init__(__self__, *,
|
|
18136
|
-
file_parameters: Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceHelmFileParameterResult'],
|
|
18137
|
-
parameters: Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceHelmParameterResult'],
|
|
18138
|
-
pass_credentials: bool,
|
|
18139
|
-
release_name: str,
|
|
18140
|
-
value_files: Sequence[str],
|
|
18141
|
-
values: str,
|
|
18142
|
-
version: str):
|
|
18310
|
+
file_parameters: Optional[Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceHelmFileParameterResult']] = None,
|
|
18311
|
+
parameters: Optional[Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceHelmParameterResult']] = None,
|
|
18312
|
+
pass_credentials: Optional[bool] = None,
|
|
18313
|
+
release_name: Optional[str] = None,
|
|
18314
|
+
value_files: Optional[Sequence[str]] = None,
|
|
18315
|
+
values: Optional[str] = None,
|
|
18316
|
+
version: Optional[str] = None):
|
|
18143
18317
|
"""
|
|
18144
18318
|
:param Sequence['GetGitopsApplicationsApplicationSpecSourceHelmFileParameterArgs'] file_parameters: File parameters to the helm template.
|
|
18145
18319
|
:param Sequence['GetGitopsApplicationsApplicationSpecSourceHelmParameterArgs'] parameters: List of helm parameters which are passed to the helm template command upon manifest generation.
|
|
@@ -18149,17 +18323,24 @@ class GetGitopsApplicationsApplicationSpecSourceHelmResult(dict):
|
|
|
18149
18323
|
:param str values: Helm values to be passed to helm template, typically defined as a block.
|
|
18150
18324
|
:param str version: Helm version to use for templating (either "2" or "3")
|
|
18151
18325
|
"""
|
|
18152
|
-
|
|
18153
|
-
|
|
18154
|
-
|
|
18155
|
-
|
|
18156
|
-
|
|
18157
|
-
|
|
18158
|
-
|
|
18326
|
+
if file_parameters is not None:
|
|
18327
|
+
pulumi.set(__self__, "file_parameters", file_parameters)
|
|
18328
|
+
if parameters is not None:
|
|
18329
|
+
pulumi.set(__self__, "parameters", parameters)
|
|
18330
|
+
if pass_credentials is not None:
|
|
18331
|
+
pulumi.set(__self__, "pass_credentials", pass_credentials)
|
|
18332
|
+
if release_name is not None:
|
|
18333
|
+
pulumi.set(__self__, "release_name", release_name)
|
|
18334
|
+
if value_files is not None:
|
|
18335
|
+
pulumi.set(__self__, "value_files", value_files)
|
|
18336
|
+
if values is not None:
|
|
18337
|
+
pulumi.set(__self__, "values", values)
|
|
18338
|
+
if version is not None:
|
|
18339
|
+
pulumi.set(__self__, "version", version)
|
|
18159
18340
|
|
|
18160
18341
|
@property
|
|
18161
18342
|
@pulumi.getter(name="fileParameters")
|
|
18162
|
-
def file_parameters(self) -> Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceHelmFileParameterResult']:
|
|
18343
|
+
def file_parameters(self) -> Optional[Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceHelmFileParameterResult']]:
|
|
18163
18344
|
"""
|
|
18164
18345
|
File parameters to the helm template.
|
|
18165
18346
|
"""
|
|
@@ -18167,7 +18348,7 @@ class GetGitopsApplicationsApplicationSpecSourceHelmResult(dict):
|
|
|
18167
18348
|
|
|
18168
18349
|
@property
|
|
18169
18350
|
@pulumi.getter
|
|
18170
|
-
def parameters(self) -> Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceHelmParameterResult']:
|
|
18351
|
+
def parameters(self) -> Optional[Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceHelmParameterResult']]:
|
|
18171
18352
|
"""
|
|
18172
18353
|
List of helm parameters which are passed to the helm template command upon manifest generation.
|
|
18173
18354
|
"""
|
|
@@ -18175,7 +18356,7 @@ class GetGitopsApplicationsApplicationSpecSourceHelmResult(dict):
|
|
|
18175
18356
|
|
|
18176
18357
|
@property
|
|
18177
18358
|
@pulumi.getter(name="passCredentials")
|
|
18178
|
-
def pass_credentials(self) -> bool:
|
|
18359
|
+
def pass_credentials(self) -> Optional[bool]:
|
|
18179
18360
|
"""
|
|
18180
18361
|
Indicates if to pass credentials to all domains (helm's --pass-credentials)
|
|
18181
18362
|
"""
|
|
@@ -18183,7 +18364,7 @@ class GetGitopsApplicationsApplicationSpecSourceHelmResult(dict):
|
|
|
18183
18364
|
|
|
18184
18365
|
@property
|
|
18185
18366
|
@pulumi.getter(name="releaseName")
|
|
18186
|
-
def release_name(self) -> str:
|
|
18367
|
+
def release_name(self) -> Optional[str]:
|
|
18187
18368
|
"""
|
|
18188
18369
|
Helm release name to use. If omitted it will use the GitOps application name.
|
|
18189
18370
|
"""
|
|
@@ -18191,7 +18372,7 @@ class GetGitopsApplicationsApplicationSpecSourceHelmResult(dict):
|
|
|
18191
18372
|
|
|
18192
18373
|
@property
|
|
18193
18374
|
@pulumi.getter(name="valueFiles")
|
|
18194
|
-
def value_files(self) -> Sequence[str]:
|
|
18375
|
+
def value_files(self) -> Optional[Sequence[str]]:
|
|
18195
18376
|
"""
|
|
18196
18377
|
List of helm value files to use when generating a template.
|
|
18197
18378
|
"""
|
|
@@ -18199,7 +18380,7 @@ class GetGitopsApplicationsApplicationSpecSourceHelmResult(dict):
|
|
|
18199
18380
|
|
|
18200
18381
|
@property
|
|
18201
18382
|
@pulumi.getter
|
|
18202
|
-
def values(self) -> str:
|
|
18383
|
+
def values(self) -> Optional[str]:
|
|
18203
18384
|
"""
|
|
18204
18385
|
Helm values to be passed to helm template, typically defined as a block.
|
|
18205
18386
|
"""
|
|
@@ -18207,7 +18388,7 @@ class GetGitopsApplicationsApplicationSpecSourceHelmResult(dict):
|
|
|
18207
18388
|
|
|
18208
18389
|
@property
|
|
18209
18390
|
@pulumi.getter
|
|
18210
|
-
def version(self) -> str:
|
|
18391
|
+
def version(self) -> Optional[str]:
|
|
18211
18392
|
"""
|
|
18212
18393
|
Helm version to use for templating (either "2" or "3")
|
|
18213
18394
|
"""
|
|
@@ -18217,26 +18398,28 @@ class GetGitopsApplicationsApplicationSpecSourceHelmResult(dict):
|
|
|
18217
18398
|
@pulumi.output_type
|
|
18218
18399
|
class GetGitopsApplicationsApplicationSpecSourceHelmFileParameterResult(dict):
|
|
18219
18400
|
def __init__(__self__, *,
|
|
18220
|
-
name: str,
|
|
18221
|
-
path: str):
|
|
18401
|
+
name: Optional[str] = None,
|
|
18402
|
+
path: Optional[str] = None):
|
|
18222
18403
|
"""
|
|
18223
|
-
:param str name: Name of the
|
|
18404
|
+
:param str name: Name of the GitOps application.
|
|
18224
18405
|
:param str path: Path to the file containing the values of the helm parameter.
|
|
18225
18406
|
"""
|
|
18226
|
-
|
|
18227
|
-
|
|
18407
|
+
if name is not None:
|
|
18408
|
+
pulumi.set(__self__, "name", name)
|
|
18409
|
+
if path is not None:
|
|
18410
|
+
pulumi.set(__self__, "path", path)
|
|
18228
18411
|
|
|
18229
18412
|
@property
|
|
18230
18413
|
@pulumi.getter
|
|
18231
|
-
def name(self) -> str:
|
|
18414
|
+
def name(self) -> Optional[str]:
|
|
18232
18415
|
"""
|
|
18233
|
-
Name of the
|
|
18416
|
+
Name of the GitOps application.
|
|
18234
18417
|
"""
|
|
18235
18418
|
return pulumi.get(self, "name")
|
|
18236
18419
|
|
|
18237
18420
|
@property
|
|
18238
18421
|
@pulumi.getter
|
|
18239
|
-
def path(self) -> str:
|
|
18422
|
+
def path(self) -> Optional[str]:
|
|
18240
18423
|
"""
|
|
18241
18424
|
Path to the file containing the values of the helm parameter.
|
|
18242
18425
|
"""
|
|
@@ -18246,21 +18429,24 @@ class GetGitopsApplicationsApplicationSpecSourceHelmFileParameterResult(dict):
|
|
|
18246
18429
|
@pulumi.output_type
|
|
18247
18430
|
class GetGitopsApplicationsApplicationSpecSourceHelmParameterResult(dict):
|
|
18248
18431
|
def __init__(__self__, *,
|
|
18249
|
-
force_string: bool,
|
|
18250
|
-
name: str,
|
|
18251
|
-
value: str):
|
|
18432
|
+
force_string: Optional[bool] = None,
|
|
18433
|
+
name: Optional[str] = None,
|
|
18434
|
+
value: Optional[str] = None):
|
|
18252
18435
|
"""
|
|
18253
18436
|
:param bool force_string: Indicates if helm should interpret booleans and numbers as strings.
|
|
18254
|
-
:param str name: Name of the
|
|
18255
|
-
:param str value: Value of the
|
|
18437
|
+
:param str name: Name of the GitOps application.
|
|
18438
|
+
:param str value: Value of the Helm parameter.
|
|
18256
18439
|
"""
|
|
18257
|
-
|
|
18258
|
-
|
|
18259
|
-
|
|
18440
|
+
if force_string is not None:
|
|
18441
|
+
pulumi.set(__self__, "force_string", force_string)
|
|
18442
|
+
if name is not None:
|
|
18443
|
+
pulumi.set(__self__, "name", name)
|
|
18444
|
+
if value is not None:
|
|
18445
|
+
pulumi.set(__self__, "value", value)
|
|
18260
18446
|
|
|
18261
18447
|
@property
|
|
18262
18448
|
@pulumi.getter(name="forceString")
|
|
18263
|
-
def force_string(self) -> bool:
|
|
18449
|
+
def force_string(self) -> Optional[bool]:
|
|
18264
18450
|
"""
|
|
18265
18451
|
Indicates if helm should interpret booleans and numbers as strings.
|
|
18266
18452
|
"""
|
|
@@ -18268,17 +18454,17 @@ class GetGitopsApplicationsApplicationSpecSourceHelmParameterResult(dict):
|
|
|
18268
18454
|
|
|
18269
18455
|
@property
|
|
18270
18456
|
@pulumi.getter
|
|
18271
|
-
def name(self) -> str:
|
|
18457
|
+
def name(self) -> Optional[str]:
|
|
18272
18458
|
"""
|
|
18273
|
-
Name of the
|
|
18459
|
+
Name of the GitOps application.
|
|
18274
18460
|
"""
|
|
18275
18461
|
return pulumi.get(self, "name")
|
|
18276
18462
|
|
|
18277
18463
|
@property
|
|
18278
18464
|
@pulumi.getter
|
|
18279
|
-
def value(self) -> str:
|
|
18465
|
+
def value(self) -> Optional[str]:
|
|
18280
18466
|
"""
|
|
18281
|
-
Value of the
|
|
18467
|
+
Value of the Helm parameter.
|
|
18282
18468
|
"""
|
|
18283
18469
|
return pulumi.get(self, "value")
|
|
18284
18470
|
|
|
@@ -18286,18 +18472,20 @@ class GetGitopsApplicationsApplicationSpecSourceHelmParameterResult(dict):
|
|
|
18286
18472
|
@pulumi.output_type
|
|
18287
18473
|
class GetGitopsApplicationsApplicationSpecSourceKsonnetResult(dict):
|
|
18288
18474
|
def __init__(__self__, *,
|
|
18289
|
-
environment: str,
|
|
18290
|
-
parameters: Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceKsonnetParameterResult']):
|
|
18475
|
+
environment: Optional[str] = None,
|
|
18476
|
+
parameters: Optional[Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceKsonnetParameterResult']] = None):
|
|
18291
18477
|
"""
|
|
18292
18478
|
:param str environment: Ksonnet application environment name.
|
|
18293
18479
|
:param Sequence['GetGitopsApplicationsApplicationSpecSourceKsonnetParameterArgs'] parameters: List of ksonnet component parameter override values.
|
|
18294
18480
|
"""
|
|
18295
|
-
|
|
18296
|
-
|
|
18481
|
+
if environment is not None:
|
|
18482
|
+
pulumi.set(__self__, "environment", environment)
|
|
18483
|
+
if parameters is not None:
|
|
18484
|
+
pulumi.set(__self__, "parameters", parameters)
|
|
18297
18485
|
|
|
18298
18486
|
@property
|
|
18299
18487
|
@pulumi.getter
|
|
18300
|
-
def environment(self) -> str:
|
|
18488
|
+
def environment(self) -> Optional[str]:
|
|
18301
18489
|
"""
|
|
18302
18490
|
Ksonnet application environment name.
|
|
18303
18491
|
"""
|
|
@@ -18305,7 +18493,7 @@ class GetGitopsApplicationsApplicationSpecSourceKsonnetResult(dict):
|
|
|
18305
18493
|
|
|
18306
18494
|
@property
|
|
18307
18495
|
@pulumi.getter
|
|
18308
|
-
def parameters(self) -> Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceKsonnetParameterResult']:
|
|
18496
|
+
def parameters(self) -> Optional[Sequence['outputs.GetGitopsApplicationsApplicationSpecSourceKsonnetParameterResult']]:
|
|
18309
18497
|
"""
|
|
18310
18498
|
List of ksonnet component parameter override values.
|
|
18311
18499
|
"""
|
|
@@ -18315,21 +18503,24 @@ class GetGitopsApplicationsApplicationSpecSourceKsonnetResult(dict):
|
|
|
18315
18503
|
@pulumi.output_type
|
|
18316
18504
|
class GetGitopsApplicationsApplicationSpecSourceKsonnetParameterResult(dict):
|
|
18317
18505
|
def __init__(__self__, *,
|
|
18318
|
-
component: str,
|
|
18319
|
-
name: str,
|
|
18320
|
-
value: str):
|
|
18506
|
+
component: Optional[str] = None,
|
|
18507
|
+
name: Optional[str] = None,
|
|
18508
|
+
value: Optional[str] = None):
|
|
18321
18509
|
"""
|
|
18322
18510
|
:param str component: Component of the parameter of the ksonnet application.
|
|
18323
|
-
:param str name: Name of the
|
|
18511
|
+
:param str name: Name of the GitOps application.
|
|
18324
18512
|
:param str value: Value of the parameter of the ksonnet application.
|
|
18325
18513
|
"""
|
|
18326
|
-
|
|
18327
|
-
|
|
18328
|
-
|
|
18514
|
+
if component is not None:
|
|
18515
|
+
pulumi.set(__self__, "component", component)
|
|
18516
|
+
if name is not None:
|
|
18517
|
+
pulumi.set(__self__, "name", name)
|
|
18518
|
+
if value is not None:
|
|
18519
|
+
pulumi.set(__self__, "value", value)
|
|
18329
18520
|
|
|
18330
18521
|
@property
|
|
18331
18522
|
@pulumi.getter
|
|
18332
|
-
def component(self) -> str:
|
|
18523
|
+
def component(self) -> Optional[str]:
|
|
18333
18524
|
"""
|
|
18334
18525
|
Component of the parameter of the ksonnet application.
|
|
18335
18526
|
"""
|
|
@@ -18337,15 +18528,15 @@ class GetGitopsApplicationsApplicationSpecSourceKsonnetParameterResult(dict):
|
|
|
18337
18528
|
|
|
18338
18529
|
@property
|
|
18339
18530
|
@pulumi.getter
|
|
18340
|
-
def name(self) -> str:
|
|
18531
|
+
def name(self) -> Optional[str]:
|
|
18341
18532
|
"""
|
|
18342
|
-
Name of the
|
|
18533
|
+
Name of the GitOps application.
|
|
18343
18534
|
"""
|
|
18344
18535
|
return pulumi.get(self, "name")
|
|
18345
18536
|
|
|
18346
18537
|
@property
|
|
18347
18538
|
@pulumi.getter
|
|
18348
|
-
def value(self) -> str:
|
|
18539
|
+
def value(self) -> Optional[str]:
|
|
18349
18540
|
"""
|
|
18350
18541
|
Value of the parameter of the ksonnet application.
|
|
18351
18542
|
"""
|
|
@@ -18355,14 +18546,14 @@ class GetGitopsApplicationsApplicationSpecSourceKsonnetParameterResult(dict):
|
|
|
18355
18546
|
@pulumi.output_type
|
|
18356
18547
|
class GetGitopsApplicationsApplicationSpecSourceKustomizeResult(dict):
|
|
18357
18548
|
def __init__(__self__, *,
|
|
18358
|
-
common_annotations: Mapping[str, str],
|
|
18359
|
-
common_labels: Mapping[str, str],
|
|
18360
|
-
force_common_annotations: bool,
|
|
18361
|
-
force_common_labels: bool,
|
|
18362
|
-
images: Sequence[str],
|
|
18363
|
-
name_prefix: str,
|
|
18364
|
-
name_suffix: str,
|
|
18365
|
-
version: str):
|
|
18549
|
+
common_annotations: Optional[Mapping[str, str]] = None,
|
|
18550
|
+
common_labels: Optional[Mapping[str, str]] = None,
|
|
18551
|
+
force_common_annotations: Optional[bool] = None,
|
|
18552
|
+
force_common_labels: Optional[bool] = None,
|
|
18553
|
+
images: Optional[Sequence[str]] = None,
|
|
18554
|
+
name_prefix: Optional[str] = None,
|
|
18555
|
+
name_suffix: Optional[str] = None,
|
|
18556
|
+
version: Optional[str] = None):
|
|
18366
18557
|
"""
|
|
18367
18558
|
:param Mapping[str, str] common_annotations: List of additional annotations to add to rendered manifests.
|
|
18368
18559
|
:param Mapping[str, str] common_labels: List of additional labels to add to rendered manifests.
|
|
@@ -18373,18 +18564,26 @@ class GetGitopsApplicationsApplicationSpecSourceKustomizeResult(dict):
|
|
|
18373
18564
|
:param str name_suffix: Suffix appended to resources for kustomize apps.
|
|
18374
18565
|
:param str version: Version of kustomize to use for rendering manifests.
|
|
18375
18566
|
"""
|
|
18376
|
-
|
|
18377
|
-
|
|
18378
|
-
|
|
18379
|
-
|
|
18380
|
-
|
|
18381
|
-
|
|
18382
|
-
|
|
18383
|
-
|
|
18567
|
+
if common_annotations is not None:
|
|
18568
|
+
pulumi.set(__self__, "common_annotations", common_annotations)
|
|
18569
|
+
if common_labels is not None:
|
|
18570
|
+
pulumi.set(__self__, "common_labels", common_labels)
|
|
18571
|
+
if force_common_annotations is not None:
|
|
18572
|
+
pulumi.set(__self__, "force_common_annotations", force_common_annotations)
|
|
18573
|
+
if force_common_labels is not None:
|
|
18574
|
+
pulumi.set(__self__, "force_common_labels", force_common_labels)
|
|
18575
|
+
if images is not None:
|
|
18576
|
+
pulumi.set(__self__, "images", images)
|
|
18577
|
+
if name_prefix is not None:
|
|
18578
|
+
pulumi.set(__self__, "name_prefix", name_prefix)
|
|
18579
|
+
if name_suffix is not None:
|
|
18580
|
+
pulumi.set(__self__, "name_suffix", name_suffix)
|
|
18581
|
+
if version is not None:
|
|
18582
|
+
pulumi.set(__self__, "version", version)
|
|
18384
18583
|
|
|
18385
18584
|
@property
|
|
18386
18585
|
@pulumi.getter(name="commonAnnotations")
|
|
18387
|
-
def common_annotations(self) -> Mapping[str, str]:
|
|
18586
|
+
def common_annotations(self) -> Optional[Mapping[str, str]]:
|
|
18388
18587
|
"""
|
|
18389
18588
|
List of additional annotations to add to rendered manifests.
|
|
18390
18589
|
"""
|
|
@@ -18392,7 +18591,7 @@ class GetGitopsApplicationsApplicationSpecSourceKustomizeResult(dict):
|
|
|
18392
18591
|
|
|
18393
18592
|
@property
|
|
18394
18593
|
@pulumi.getter(name="commonLabels")
|
|
18395
|
-
def common_labels(self) -> Mapping[str, str]:
|
|
18594
|
+
def common_labels(self) -> Optional[Mapping[str, str]]:
|
|
18396
18595
|
"""
|
|
18397
18596
|
List of additional labels to add to rendered manifests.
|
|
18398
18597
|
"""
|
|
@@ -18400,7 +18599,7 @@ class GetGitopsApplicationsApplicationSpecSourceKustomizeResult(dict):
|
|
|
18400
18599
|
|
|
18401
18600
|
@property
|
|
18402
18601
|
@pulumi.getter(name="forceCommonAnnotations")
|
|
18403
|
-
def force_common_annotations(self) -> bool:
|
|
18602
|
+
def force_common_annotations(self) -> Optional[bool]:
|
|
18404
18603
|
"""
|
|
18405
18604
|
Indicates if to force applying common annotations to resources for kustomize apps.
|
|
18406
18605
|
"""
|
|
@@ -18408,7 +18607,7 @@ class GetGitopsApplicationsApplicationSpecSourceKustomizeResult(dict):
|
|
|
18408
18607
|
|
|
18409
18608
|
@property
|
|
18410
18609
|
@pulumi.getter(name="forceCommonLabels")
|
|
18411
|
-
def force_common_labels(self) -> bool:
|
|
18610
|
+
def force_common_labels(self) -> Optional[bool]:
|
|
18412
18611
|
"""
|
|
18413
18612
|
Indicates if to force apply common labels to resources for kustomize apps.
|
|
18414
18613
|
"""
|
|
@@ -18416,7 +18615,7 @@ class GetGitopsApplicationsApplicationSpecSourceKustomizeResult(dict):
|
|
|
18416
18615
|
|
|
18417
18616
|
@property
|
|
18418
18617
|
@pulumi.getter
|
|
18419
|
-
def images(self) -> Sequence[str]:
|
|
18618
|
+
def images(self) -> Optional[Sequence[str]]:
|
|
18420
18619
|
"""
|
|
18421
18620
|
List of kustomize image override specifications.
|
|
18422
18621
|
"""
|
|
@@ -18424,7 +18623,7 @@ class GetGitopsApplicationsApplicationSpecSourceKustomizeResult(dict):
|
|
|
18424
18623
|
|
|
18425
18624
|
@property
|
|
18426
18625
|
@pulumi.getter(name="namePrefix")
|
|
18427
|
-
def name_prefix(self) -> str:
|
|
18626
|
+
def name_prefix(self) -> Optional[str]:
|
|
18428
18627
|
"""
|
|
18429
18628
|
Prefix prepended to resources for kustomize apps.
|
|
18430
18629
|
"""
|
|
@@ -18432,7 +18631,7 @@ class GetGitopsApplicationsApplicationSpecSourceKustomizeResult(dict):
|
|
|
18432
18631
|
|
|
18433
18632
|
@property
|
|
18434
18633
|
@pulumi.getter(name="nameSuffix")
|
|
18435
|
-
def name_suffix(self) -> str:
|
|
18634
|
+
def name_suffix(self) -> Optional[str]:
|
|
18436
18635
|
"""
|
|
18437
18636
|
Suffix appended to resources for kustomize apps.
|
|
18438
18637
|
"""
|
|
@@ -18440,7 +18639,7 @@ class GetGitopsApplicationsApplicationSpecSourceKustomizeResult(dict):
|
|
|
18440
18639
|
|
|
18441
18640
|
@property
|
|
18442
18641
|
@pulumi.getter
|
|
18443
|
-
def version(self) -> str:
|
|
18642
|
+
def version(self) -> Optional[str]:
|
|
18444
18643
|
"""
|
|
18445
18644
|
Version of kustomize to use for rendering manifests.
|
|
18446
18645
|
"""
|
|
@@ -18450,18 +18649,20 @@ class GetGitopsApplicationsApplicationSpecSourceKustomizeResult(dict):
|
|
|
18450
18649
|
@pulumi.output_type
|
|
18451
18650
|
class GetGitopsApplicationsApplicationSpecSourcePluginResult(dict):
|
|
18452
18651
|
def __init__(__self__, *,
|
|
18453
|
-
envs: Sequence['outputs.GetGitopsApplicationsApplicationSpecSourcePluginEnvResult'],
|
|
18454
|
-
name: str):
|
|
18652
|
+
envs: Optional[Sequence['outputs.GetGitopsApplicationsApplicationSpecSourcePluginEnvResult']] = None,
|
|
18653
|
+
name: Optional[str] = None):
|
|
18455
18654
|
"""
|
|
18456
18655
|
:param Sequence['GetGitopsApplicationsApplicationSpecSourcePluginEnvArgs'] envs: Entry in the GitOps application's environment.
|
|
18457
|
-
:param str name: Name of the
|
|
18656
|
+
:param str name: Name of the GitOps application.
|
|
18458
18657
|
"""
|
|
18459
|
-
|
|
18460
|
-
|
|
18658
|
+
if envs is not None:
|
|
18659
|
+
pulumi.set(__self__, "envs", envs)
|
|
18660
|
+
if name is not None:
|
|
18661
|
+
pulumi.set(__self__, "name", name)
|
|
18461
18662
|
|
|
18462
18663
|
@property
|
|
18463
18664
|
@pulumi.getter
|
|
18464
|
-
def envs(self) -> Sequence['outputs.GetGitopsApplicationsApplicationSpecSourcePluginEnvResult']:
|
|
18665
|
+
def envs(self) -> Optional[Sequence['outputs.GetGitopsApplicationsApplicationSpecSourcePluginEnvResult']]:
|
|
18465
18666
|
"""
|
|
18466
18667
|
Entry in the GitOps application's environment.
|
|
18467
18668
|
"""
|
|
@@ -18469,9 +18670,9 @@ class GetGitopsApplicationsApplicationSpecSourcePluginResult(dict):
|
|
|
18469
18670
|
|
|
18470
18671
|
@property
|
|
18471
18672
|
@pulumi.getter
|
|
18472
|
-
def name(self) -> str:
|
|
18673
|
+
def name(self) -> Optional[str]:
|
|
18473
18674
|
"""
|
|
18474
|
-
Name of the
|
|
18675
|
+
Name of the GitOps application.
|
|
18475
18676
|
"""
|
|
18476
18677
|
return pulumi.get(self, "name")
|
|
18477
18678
|
|
|
@@ -18479,26 +18680,28 @@ class GetGitopsApplicationsApplicationSpecSourcePluginResult(dict):
|
|
|
18479
18680
|
@pulumi.output_type
|
|
18480
18681
|
class GetGitopsApplicationsApplicationSpecSourcePluginEnvResult(dict):
|
|
18481
18682
|
def __init__(__self__, *,
|
|
18482
|
-
name: str,
|
|
18483
|
-
value: str):
|
|
18683
|
+
name: Optional[str] = None,
|
|
18684
|
+
value: Optional[str] = None):
|
|
18484
18685
|
"""
|
|
18485
|
-
:param str name: Name of the
|
|
18686
|
+
:param str name: Name of the GitOps application.
|
|
18486
18687
|
:param str value: Value of the variable.
|
|
18487
18688
|
"""
|
|
18488
|
-
|
|
18489
|
-
|
|
18689
|
+
if name is not None:
|
|
18690
|
+
pulumi.set(__self__, "name", name)
|
|
18691
|
+
if value is not None:
|
|
18692
|
+
pulumi.set(__self__, "value", value)
|
|
18490
18693
|
|
|
18491
18694
|
@property
|
|
18492
18695
|
@pulumi.getter
|
|
18493
|
-
def name(self) -> str:
|
|
18696
|
+
def name(self) -> Optional[str]:
|
|
18494
18697
|
"""
|
|
18495
|
-
Name of the
|
|
18698
|
+
Name of the GitOps application.
|
|
18496
18699
|
"""
|
|
18497
18700
|
return pulumi.get(self, "name")
|
|
18498
18701
|
|
|
18499
18702
|
@property
|
|
18500
18703
|
@pulumi.getter
|
|
18501
|
-
def value(self) -> str:
|
|
18704
|
+
def value(self) -> Optional[str]:
|
|
18502
18705
|
"""
|
|
18503
18706
|
Value of the variable.
|
|
18504
18707
|
"""
|
|
@@ -20933,16 +21136,19 @@ class GetPipelineFiltersFilterPropertyModulePropertiesCdResult(dict):
|
|
|
20933
21136
|
artifact_display_names: Sequence[str],
|
|
20934
21137
|
deployment_types: str,
|
|
20935
21138
|
environment_names: Sequence[str],
|
|
21139
|
+
service_identifiers: Sequence[str],
|
|
20936
21140
|
service_names: Sequence[str]):
|
|
20937
21141
|
"""
|
|
20938
21142
|
:param Sequence[str] artifact_display_names: Artifact display names of the CD pipeline.
|
|
20939
21143
|
:param str deployment_types: Deployment type of the CD pipeline, eg. Kubernetes
|
|
20940
21144
|
:param Sequence[str] environment_names: Environment names of the CD pipeline.
|
|
21145
|
+
:param Sequence[str] service_identifiers: Service identifiers of the CD pipeline.
|
|
20941
21146
|
:param Sequence[str] service_names: Service names of the CD pipeline.
|
|
20942
21147
|
"""
|
|
20943
21148
|
pulumi.set(__self__, "artifact_display_names", artifact_display_names)
|
|
20944
21149
|
pulumi.set(__self__, "deployment_types", deployment_types)
|
|
20945
21150
|
pulumi.set(__self__, "environment_names", environment_names)
|
|
21151
|
+
pulumi.set(__self__, "service_identifiers", service_identifiers)
|
|
20946
21152
|
pulumi.set(__self__, "service_names", service_names)
|
|
20947
21153
|
|
|
20948
21154
|
@property
|
|
@@ -20969,6 +21175,14 @@ class GetPipelineFiltersFilterPropertyModulePropertiesCdResult(dict):
|
|
|
20969
21175
|
"""
|
|
20970
21176
|
return pulumi.get(self, "environment_names")
|
|
20971
21177
|
|
|
21178
|
+
@property
|
|
21179
|
+
@pulumi.getter(name="serviceIdentifiers")
|
|
21180
|
+
def service_identifiers(self) -> Sequence[str]:
|
|
21181
|
+
"""
|
|
21182
|
+
Service identifiers of the CD pipeline.
|
|
21183
|
+
"""
|
|
21184
|
+
return pulumi.get(self, "service_identifiers")
|
|
21185
|
+
|
|
20972
21186
|
@property
|
|
20973
21187
|
@pulumi.getter(name="serviceNames")
|
|
20974
21188
|
def service_names(self) -> Sequence[str]:
|