pulumi-harness 0.5.0a1736833425__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.

Files changed (311) hide show
  1. pulumi_harness/__init__.py +1257 -0
  2. pulumi_harness/_inputs.py +4025 -0
  3. pulumi_harness/_utilities.py +327 -0
  4. pulumi_harness/add_user_to_group.py +241 -0
  5. pulumi_harness/application.py +393 -0
  6. pulumi_harness/application_git_sync.py +411 -0
  7. pulumi_harness/autostopping/__init__.py +27 -0
  8. pulumi_harness/autostopping/_inputs.py +2688 -0
  9. pulumi_harness/autostopping/aws_alb.py +640 -0
  10. pulumi_harness/autostopping/aws_proxy.py +760 -0
  11. pulumi_harness/autostopping/azure_gateway.py +798 -0
  12. pulumi_harness/autostopping/azure_proxy.py +855 -0
  13. pulumi_harness/autostopping/gcp_proxy.py +779 -0
  14. pulumi_harness/autostopping/get_aws_alb.py +278 -0
  15. pulumi_harness/autostopping/get_aws_proxy.py +335 -0
  16. pulumi_harness/autostopping/get_azure_gateway.py +343 -0
  17. pulumi_harness/autostopping/get_azure_proxy.py +375 -0
  18. pulumi_harness/autostopping/get_gcp_proxy.py +340 -0
  19. pulumi_harness/autostopping/get_rule_ecs.py +225 -0
  20. pulumi_harness/autostopping/get_rule_rds.py +205 -0
  21. pulumi_harness/autostopping/get_rule_vm.py +265 -0
  22. pulumi_harness/autostopping/get_schedule.py +193 -0
  23. pulumi_harness/autostopping/outputs.py +1971 -0
  24. pulumi_harness/autostopping/rule_ecs.py +450 -0
  25. pulumi_harness/autostopping/rule_rds.py +448 -0
  26. pulumi_harness/autostopping/rule_vm.py +663 -0
  27. pulumi_harness/autostopping/schedule.py +465 -0
  28. pulumi_harness/cloudprovider/__init__.py +17 -0
  29. pulumi_harness/cloudprovider/_inputs.py +777 -0
  30. pulumi_harness/cloudprovider/aws.py +586 -0
  31. pulumi_harness/cloudprovider/azure.py +393 -0
  32. pulumi_harness/cloudprovider/datacenter.py +233 -0
  33. pulumi_harness/cloudprovider/gcp.py +340 -0
  34. pulumi_harness/cloudprovider/get_delegate_ids.py +148 -0
  35. pulumi_harness/cloudprovider/kubernetes.py +310 -0
  36. pulumi_harness/cloudprovider/outputs.py +657 -0
  37. pulumi_harness/cloudprovider/spot.py +296 -0
  38. pulumi_harness/cloudprovider/tanzu.py +441 -0
  39. pulumi_harness/cluster/__init__.py +9 -0
  40. pulumi_harness/cluster/get_orchestrator.py +134 -0
  41. pulumi_harness/cluster/orchestrator.py +286 -0
  42. pulumi_harness/config/__init__.py +8 -0
  43. pulumi_harness/config/__init__.pyi +40 -0
  44. pulumi_harness/config/vars.py +54 -0
  45. pulumi_harness/delegate_approval.py +267 -0
  46. pulumi_harness/encrypted_text.py +499 -0
  47. pulumi_harness/environment.py +446 -0
  48. pulumi_harness/get_application.py +180 -0
  49. pulumi_harness/get_current_account.py +108 -0
  50. pulumi_harness/get_delegate.py +280 -0
  51. pulumi_harness/get_encrypted_text.py +136 -0
  52. pulumi_harness/get_environment.py +184 -0
  53. pulumi_harness/get_git_connector.py +255 -0
  54. pulumi_harness/get_secret_manager.py +142 -0
  55. pulumi_harness/get_service.py +198 -0
  56. pulumi_harness/get_ssh_credential.py +122 -0
  57. pulumi_harness/get_sso_provider.py +114 -0
  58. pulumi_harness/get_trigger.py +177 -0
  59. pulumi_harness/get_user.py +184 -0
  60. pulumi_harness/get_user_group.py +100 -0
  61. pulumi_harness/get_yaml_config.py +142 -0
  62. pulumi_harness/git_connector.py +738 -0
  63. pulumi_harness/governance/__init__.py +13 -0
  64. pulumi_harness/governance/get_rule.py +168 -0
  65. pulumi_harness/governance/get_rule_enforcement.py +266 -0
  66. pulumi_harness/governance/get_rule_set.py +150 -0
  67. pulumi_harness/governance/rule.py +337 -0
  68. pulumi_harness/governance/rule_enforcement.py +668 -0
  69. pulumi_harness/governance/rule_set.py +321 -0
  70. pulumi_harness/infrastructure_definition.py +1246 -0
  71. pulumi_harness/outputs.py +3306 -0
  72. pulumi_harness/platform/__init__.py +220 -0
  73. pulumi_harness/platform/_inputs.py +22314 -0
  74. pulumi_harness/platform/app_dynamics_connector.py +733 -0
  75. pulumi_harness/platform/artifactory_connector.py +748 -0
  76. pulumi_harness/platform/aws_cc_connector.py +716 -0
  77. pulumi_harness/platform/aws_connector.py +851 -0
  78. pulumi_harness/platform/aws_kms_connector.py +619 -0
  79. pulumi_harness/platform/aws_secret_manager_connector.py +712 -0
  80. pulumi_harness/platform/azure_cloud_cost_connector.py +675 -0
  81. pulumi_harness/platform/azure_cloud_provider_connector.py +826 -0
  82. pulumi_harness/platform/azure_key_vault_connector.py +843 -0
  83. pulumi_harness/platform/bitbucket_connector.py +713 -0
  84. pulumi_harness/platform/connector_azure_artifacts.py +529 -0
  85. pulumi_harness/platform/connector_custom_secret_manager.py +887 -0
  86. pulumi_harness/platform/connector_customhealthsource.py +807 -0
  87. pulumi_harness/platform/connector_jdbc.py +609 -0
  88. pulumi_harness/platform/connector_pdc.py +527 -0
  89. pulumi_harness/platform/connector_rancher.py +617 -0
  90. pulumi_harness/platform/datadog_connector.py +651 -0
  91. pulumi_harness/platform/db_instance.py +636 -0
  92. pulumi_harness/platform/db_schema.py +547 -0
  93. pulumi_harness/platform/delegatetoken.py +520 -0
  94. pulumi_harness/platform/docker_connector.py +669 -0
  95. pulumi_harness/platform/dynatrace_connector.py +601 -0
  96. pulumi_harness/platform/elasticsearch_connector.py +744 -0
  97. pulumi_harness/platform/environment.py +1173 -0
  98. pulumi_harness/platform/environment_clusters_mapping.py +454 -0
  99. pulumi_harness/platform/environment_group.py +560 -0
  100. pulumi_harness/platform/environment_service_overrides.py +688 -0
  101. pulumi_harness/platform/feature_flag.py +724 -0
  102. pulumi_harness/platform/feature_flag_api_key.py +550 -0
  103. pulumi_harness/platform/feature_flag_target.py +473 -0
  104. pulumi_harness/platform/feature_flag_target_group.py +577 -0
  105. pulumi_harness/platform/file_store_file.py +822 -0
  106. pulumi_harness/platform/file_store_folder.py +628 -0
  107. pulumi_harness/platform/filters.py +511 -0
  108. pulumi_harness/platform/gcp_cloud_cost_connector.py +669 -0
  109. pulumi_harness/platform/gcp_connector.py +663 -0
  110. pulumi_harness/platform/gcp_secret_manager_connector.py +594 -0
  111. pulumi_harness/platform/get_api_key.py +292 -0
  112. pulumi_harness/platform/get_app_dynamics_connector.py +271 -0
  113. pulumi_harness/platform/get_artifactory_connector.py +243 -0
  114. pulumi_harness/platform/get_aws_cc_connector.py +271 -0
  115. pulumi_harness/platform/get_aws_connector.py +313 -0
  116. pulumi_harness/platform/get_aws_kms_connector.py +253 -0
  117. pulumi_harness/platform/get_aws_secret_manager_connector.py +267 -0
  118. pulumi_harness/platform/get_azure_cloud_cost_connector.py +257 -0
  119. pulumi_harness/platform/get_azure_cloud_provider_connector.py +257 -0
  120. pulumi_harness/platform/get_azure_key_vault_connector.py +308 -0
  121. pulumi_harness/platform/get_bitbucket_connector.py +285 -0
  122. pulumi_harness/platform/get_ccm_filters.py +221 -0
  123. pulumi_harness/platform/get_connector_custom_secret_manager.py +330 -0
  124. pulumi_harness/platform/get_connector_customhealthsource.py +281 -0
  125. pulumi_harness/platform/get_connector_jdbc.py +243 -0
  126. pulumi_harness/platform/get_connector_pdc.py +229 -0
  127. pulumi_harness/platform/get_connector_rancher.py +236 -0
  128. pulumi_harness/platform/get_current_account.py +126 -0
  129. pulumi_harness/platform/get_current_user.py +252 -0
  130. pulumi_harness/platform/get_datadog_connector.py +262 -0
  131. pulumi_harness/platform/get_db_instance.py +268 -0
  132. pulumi_harness/platform/get_db_schema.py +233 -0
  133. pulumi_harness/platform/get_delegatetoken.py +214 -0
  134. pulumi_harness/platform/get_docker_connector.py +257 -0
  135. pulumi_harness/platform/get_dynatrace_connector.py +242 -0
  136. pulumi_harness/platform/get_elasticsearch_connector.py +257 -0
  137. pulumi_harness/platform/get_environment.py +263 -0
  138. pulumi_harness/platform/get_environment_clusters_mapping.py +262 -0
  139. pulumi_harness/platform/get_environment_group.py +190 -0
  140. pulumi_harness/platform/get_environment_list.py +172 -0
  141. pulumi_harness/platform/get_environment_service_overrides.py +212 -0
  142. pulumi_harness/platform/get_file_store_file.py +327 -0
  143. pulumi_harness/platform/get_file_store_folder.py +271 -0
  144. pulumi_harness/platform/get_filters.py +217 -0
  145. pulumi_harness/platform/get_gcp_cloud_cost_connector.py +257 -0
  146. pulumi_harness/platform/get_gcp_connector.py +243 -0
  147. pulumi_harness/platform/get_gcp_secret_manager_connector.py +238 -0
  148. pulumi_harness/platform/get_git_connector.py +271 -0
  149. pulumi_harness/platform/get_github_connector.py +296 -0
  150. pulumi_harness/platform/get_gitlab_connector.py +285 -0
  151. pulumi_harness/platform/get_gitops_agent.py +303 -0
  152. pulumi_harness/platform/get_gitops_agent_deploy_yaml.py +257 -0
  153. pulumi_harness/platform/get_gitops_app_project.py +191 -0
  154. pulumi_harness/platform/get_gitops_app_project_mapping.py +189 -0
  155. pulumi_harness/platform/get_gitops_applications.py +351 -0
  156. pulumi_harness/platform/get_gitops_cluster.py +216 -0
  157. pulumi_harness/platform/get_gitops_gnupg.py +219 -0
  158. pulumi_harness/platform/get_gitops_repo_cert.py +155 -0
  159. pulumi_harness/platform/get_gitops_repo_cred.py +223 -0
  160. pulumi_harness/platform/get_gitops_repository.py +230 -0
  161. pulumi_harness/platform/get_gitx_webhook.py +194 -0
  162. pulumi_harness/platform/get_helm_connector.py +243 -0
  163. pulumi_harness/platform/get_iacm_default_pipeline.py +168 -0
  164. pulumi_harness/platform/get_infra_module.py +320 -0
  165. pulumi_harness/platform/get_infrastructure.py +287 -0
  166. pulumi_harness/platform/get_input_set.py +238 -0
  167. pulumi_harness/platform/get_jenkins_connector.py +243 -0
  168. pulumi_harness/platform/get_jira_connector.py +285 -0
  169. pulumi_harness/platform/get_kubernetes_cloud_cost_connector.py +228 -0
  170. pulumi_harness/platform/get_kubernetes_connector.py +285 -0
  171. pulumi_harness/platform/get_manual_freeze.py +305 -0
  172. pulumi_harness/platform/get_monitored_service.py +134 -0
  173. pulumi_harness/platform/get_nexus_connector.py +257 -0
  174. pulumi_harness/platform/get_notification_rule.py +156 -0
  175. pulumi_harness/platform/get_oci_helm_connector.py +243 -0
  176. pulumi_harness/platform/get_organization.py +156 -0
  177. pulumi_harness/platform/get_overrides.py +198 -0
  178. pulumi_harness/platform/get_pagerduty_connector.py +224 -0
  179. pulumi_harness/platform/get_permissions.py +149 -0
  180. pulumi_harness/platform/get_pipeline.py +268 -0
  181. pulumi_harness/platform/get_pipeline_filters.py +197 -0
  182. pulumi_harness/platform/get_pipeline_list.py +269 -0
  183. pulumi_harness/platform/get_policy.py +220 -0
  184. pulumi_harness/platform/get_policy_set.py +298 -0
  185. pulumi_harness/platform/get_project.py +210 -0
  186. pulumi_harness/platform/get_project_list.py +249 -0
  187. pulumi_harness/platform/get_prometheus_connector.py +271 -0
  188. pulumi_harness/platform/get_provider.py +85 -0
  189. pulumi_harness/platform/get_repo.py +362 -0
  190. pulumi_harness/platform/get_repo_rule_branch.py +312 -0
  191. pulumi_harness/platform/get_repo_webhook.py +316 -0
  192. pulumi_harness/platform/get_resource_group.py +267 -0
  193. pulumi_harness/platform/get_role_assignments.py +223 -0
  194. pulumi_harness/platform/get_roles.py +240 -0
  195. pulumi_harness/platform/get_secret_file.py +224 -0
  196. pulumi_harness/platform/get_secret_sshkey.py +239 -0
  197. pulumi_harness/platform/get_secret_text.py +264 -0
  198. pulumi_harness/platform/get_service.py +235 -0
  199. pulumi_harness/platform/get_service_account.py +224 -0
  200. pulumi_harness/platform/get_service_list.py +172 -0
  201. pulumi_harness/platform/get_service_now_connector.py +285 -0
  202. pulumi_harness/platform/get_service_overrides_v2.py +220 -0
  203. pulumi_harness/platform/get_slo.py +134 -0
  204. pulumi_harness/platform/get_splunk_connector.py +270 -0
  205. pulumi_harness/platform/get_spot_connector.py +215 -0
  206. pulumi_harness/platform/get_sumologic_connector.py +256 -0
  207. pulumi_harness/platform/get_tas_connector.py +243 -0
  208. pulumi_harness/platform/get_template.py +386 -0
  209. pulumi_harness/platform/get_template_filters.py +221 -0
  210. pulumi_harness/platform/get_terraform_cloud_connector.py +233 -0
  211. pulumi_harness/platform/get_token.py +430 -0
  212. pulumi_harness/platform/get_triggers.py +260 -0
  213. pulumi_harness/platform/get_user.py +222 -0
  214. pulumi_harness/platform/get_usergroup.py +340 -0
  215. pulumi_harness/platform/get_variables.py +209 -0
  216. pulumi_harness/platform/get_vault_connector.py +574 -0
  217. pulumi_harness/platform/get_workspace.py +411 -0
  218. pulumi_harness/platform/get_workspace_output_value.py +168 -0
  219. pulumi_harness/platform/git_connector.py +713 -0
  220. pulumi_harness/platform/git_ops_agent.py +727 -0
  221. pulumi_harness/platform/git_ops_applications.py +1090 -0
  222. pulumi_harness/platform/git_ops_cluster.py +438 -0
  223. pulumi_harness/platform/git_ops_gnupg.py +453 -0
  224. pulumi_harness/platform/git_ops_repo_cert.py +437 -0
  225. pulumi_harness/platform/git_ops_repo_cred.py +533 -0
  226. pulumi_harness/platform/git_ops_repository.py +831 -0
  227. pulumi_harness/platform/github_connector.py +807 -0
  228. pulumi_harness/platform/gitlab_connector.py +713 -0
  229. pulumi_harness/platform/gitops_app_project.py +485 -0
  230. pulumi_harness/platform/gitops_app_project_mapping.py +423 -0
  231. pulumi_harness/platform/gitx_webhook.py +616 -0
  232. pulumi_harness/platform/helm_connector.py +617 -0
  233. pulumi_harness/platform/iacm_default_pipeline.py +343 -0
  234. pulumi_harness/platform/infra_module.py +755 -0
  235. pulumi_harness/platform/infrastructure.py +937 -0
  236. pulumi_harness/platform/input_set.py +689 -0
  237. pulumi_harness/platform/jenkins_connector.py +566 -0
  238. pulumi_harness/platform/jira_connector.py +714 -0
  239. pulumi_harness/platform/kubernetes_cloud_cost_connector.py +558 -0
  240. pulumi_harness/platform/kubernetes_connector.py +895 -0
  241. pulumi_harness/platform/manual_freeze.py +835 -0
  242. pulumi_harness/platform/monitored_service.py +1984 -0
  243. pulumi_harness/platform/newrelic_connector.py +651 -0
  244. pulumi_harness/platform/nexus_connector.py +622 -0
  245. pulumi_harness/platform/notification_rule.py +526 -0
  246. pulumi_harness/platform/oci_helm_connector.py +617 -0
  247. pulumi_harness/platform/organization.py +336 -0
  248. pulumi_harness/platform/outputs.py +23361 -0
  249. pulumi_harness/platform/overrides.py +669 -0
  250. pulumi_harness/platform/pagerduty_connector.py +547 -0
  251. pulumi_harness/platform/pipeline.py +991 -0
  252. pulumi_harness/platform/pipeline_filters.py +711 -0
  253. pulumi_harness/platform/policy.py +944 -0
  254. pulumi_harness/platform/policy_set.py +594 -0
  255. pulumi_harness/platform/project.py +453 -0
  256. pulumi_harness/platform/prometheus_connector.py +710 -0
  257. pulumi_harness/platform/provider.py +349 -0
  258. pulumi_harness/platform/repo.py +737 -0
  259. pulumi_harness/platform/repo_rule_branch.py +645 -0
  260. pulumi_harness/platform/repo_webhook.py +664 -0
  261. pulumi_harness/platform/resource_group.py +718 -0
  262. pulumi_harness/platform/role_assignments.py +524 -0
  263. pulumi_harness/platform/roles.py +546 -0
  264. pulumi_harness/platform/secret_file.py +548 -0
  265. pulumi_harness/platform/secret_sshkey.py +569 -0
  266. pulumi_harness/platform/secret_text.py +620 -0
  267. pulumi_harness/platform/service.py +1195 -0
  268. pulumi_harness/platform/service_account.py +548 -0
  269. pulumi_harness/platform/service_now_connector.py +714 -0
  270. pulumi_harness/platform/service_overrides_v2.py +915 -0
  271. pulumi_harness/platform/slo.py +462 -0
  272. pulumi_harness/platform/splunk_connector.py +701 -0
  273. pulumi_harness/platform/spot_connector.py +452 -0
  274. pulumi_harness/platform/sumologic_connector.py +651 -0
  275. pulumi_harness/platform/tas_connector.py +570 -0
  276. pulumi_harness/platform/template.py +861 -0
  277. pulumi_harness/platform/template_filters.py +515 -0
  278. pulumi_harness/platform/terraform_cloud_connector.py +545 -0
  279. pulumi_harness/platform/token.py +977 -0
  280. pulumi_harness/platform/triggers.py +680 -0
  281. pulumi_harness/platform/user.py +522 -0
  282. pulumi_harness/platform/usergroup.py +1104 -0
  283. pulumi_harness/platform/variables.py +509 -0
  284. pulumi_harness/platform/vault_connector.py +1919 -0
  285. pulumi_harness/platform/workspace.py +1145 -0
  286. pulumi_harness/platform_api_key.py +617 -0
  287. pulumi_harness/platform_ccm_filters.py +515 -0
  288. pulumi_harness/provider.py +227 -0
  289. pulumi_harness/pulumi-plugin.json +6 -0
  290. pulumi_harness/py.typed +0 -0
  291. pulumi_harness/service/__init__.py +18 -0
  292. pulumi_harness/service/_inputs.py +660 -0
  293. pulumi_harness/service/ami.py +336 -0
  294. pulumi_harness/service/codedeploy.py +336 -0
  295. pulumi_harness/service/ecs.py +336 -0
  296. pulumi_harness/service/helm.py +336 -0
  297. pulumi_harness/service/kubernetes.py +409 -0
  298. pulumi_harness/service/lambda_.py +336 -0
  299. pulumi_harness/service/outputs.py +388 -0
  300. pulumi_harness/service/ssh.py +386 -0
  301. pulumi_harness/service/tanzu.py +336 -0
  302. pulumi_harness/service/winrm.py +386 -0
  303. pulumi_harness/ssh_credential.py +361 -0
  304. pulumi_harness/user.py +423 -0
  305. pulumi_harness/user_group.py +713 -0
  306. pulumi_harness/user_group_permissions.py +247 -0
  307. pulumi_harness/yaml_config.py +336 -0
  308. pulumi_harness-0.5.0a1736833425.dist-info/METADATA +69 -0
  309. pulumi_harness-0.5.0a1736833425.dist-info/RECORD +311 -0
  310. pulumi_harness-0.5.0a1736833425.dist-info/WHEEL +5 -0
  311. pulumi_harness-0.5.0a1736833425.dist-info/top_level.txt +1 -0
@@ -0,0 +1,688 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+
17
+ __all__ = ['EnvironmentServiceOverridesArgs', 'EnvironmentServiceOverrides']
18
+
19
+ @pulumi.input_type
20
+ class EnvironmentServiceOverridesArgs:
21
+ def __init__(__self__, *,
22
+ env_id: pulumi.Input[str],
23
+ service_id: pulumi.Input[str],
24
+ yaml: pulumi.Input[str],
25
+ identifier: Optional[pulumi.Input[str]] = None,
26
+ org_id: Optional[pulumi.Input[str]] = None,
27
+ project_id: Optional[pulumi.Input[str]] = None):
28
+ """
29
+ The set of arguments for constructing a EnvironmentServiceOverrides resource.
30
+ :param pulumi.Input[str] env_id: The env Id associated with the overrides. To reference an environment at the organization scope, prefix 'org' to the expression: org.{env*id}. To reference an environment at the account scope, prefix 'account' to the expression: account.{env*id}).
31
+ :param pulumi.Input[str] service_id: The service Id associated with the overrides. To reference a service at the organization scope, prefix 'org' to the expression: org.{service*id}. To reference a service at the account scope, prefix 'account' to the expression: account.{service*id}).
32
+ :param pulumi.Input[str] yaml: Environment Service Overrides YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
33
+ :param pulumi.Input[str] identifier: identifier of the service overrides.
34
+ :param pulumi.Input[str] org_id: Unique identifier of the organization.
35
+ :param pulumi.Input[str] project_id: Unique identifier of the project.
36
+ """
37
+ pulumi.set(__self__, "env_id", env_id)
38
+ pulumi.set(__self__, "service_id", service_id)
39
+ pulumi.set(__self__, "yaml", yaml)
40
+ if identifier is not None:
41
+ pulumi.set(__self__, "identifier", identifier)
42
+ if org_id is not None:
43
+ pulumi.set(__self__, "org_id", org_id)
44
+ if project_id is not None:
45
+ pulumi.set(__self__, "project_id", project_id)
46
+
47
+ @property
48
+ @pulumi.getter(name="envId")
49
+ def env_id(self) -> pulumi.Input[str]:
50
+ """
51
+ The env Id associated with the overrides. To reference an environment at the organization scope, prefix 'org' to the expression: org.{env*id}. To reference an environment at the account scope, prefix 'account' to the expression: account.{env*id}).
52
+ """
53
+ return pulumi.get(self, "env_id")
54
+
55
+ @env_id.setter
56
+ def env_id(self, value: pulumi.Input[str]):
57
+ pulumi.set(self, "env_id", value)
58
+
59
+ @property
60
+ @pulumi.getter(name="serviceId")
61
+ def service_id(self) -> pulumi.Input[str]:
62
+ """
63
+ The service Id associated with the overrides. To reference a service at the organization scope, prefix 'org' to the expression: org.{service*id}. To reference a service at the account scope, prefix 'account' to the expression: account.{service*id}).
64
+ """
65
+ return pulumi.get(self, "service_id")
66
+
67
+ @service_id.setter
68
+ def service_id(self, value: pulumi.Input[str]):
69
+ pulumi.set(self, "service_id", value)
70
+
71
+ @property
72
+ @pulumi.getter
73
+ def yaml(self) -> pulumi.Input[str]:
74
+ """
75
+ Environment Service Overrides YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
76
+ """
77
+ return pulumi.get(self, "yaml")
78
+
79
+ @yaml.setter
80
+ def yaml(self, value: pulumi.Input[str]):
81
+ pulumi.set(self, "yaml", value)
82
+
83
+ @property
84
+ @pulumi.getter
85
+ def identifier(self) -> Optional[pulumi.Input[str]]:
86
+ """
87
+ identifier of the service overrides.
88
+ """
89
+ return pulumi.get(self, "identifier")
90
+
91
+ @identifier.setter
92
+ def identifier(self, value: Optional[pulumi.Input[str]]):
93
+ pulumi.set(self, "identifier", value)
94
+
95
+ @property
96
+ @pulumi.getter(name="orgId")
97
+ def org_id(self) -> Optional[pulumi.Input[str]]:
98
+ """
99
+ Unique identifier of the organization.
100
+ """
101
+ return pulumi.get(self, "org_id")
102
+
103
+ @org_id.setter
104
+ def org_id(self, value: Optional[pulumi.Input[str]]):
105
+ pulumi.set(self, "org_id", value)
106
+
107
+ @property
108
+ @pulumi.getter(name="projectId")
109
+ def project_id(self) -> Optional[pulumi.Input[str]]:
110
+ """
111
+ Unique identifier of the project.
112
+ """
113
+ return pulumi.get(self, "project_id")
114
+
115
+ @project_id.setter
116
+ def project_id(self, value: Optional[pulumi.Input[str]]):
117
+ pulumi.set(self, "project_id", value)
118
+
119
+
120
+ @pulumi.input_type
121
+ class _EnvironmentServiceOverridesState:
122
+ def __init__(__self__, *,
123
+ env_id: Optional[pulumi.Input[str]] = None,
124
+ identifier: Optional[pulumi.Input[str]] = None,
125
+ org_id: Optional[pulumi.Input[str]] = None,
126
+ project_id: Optional[pulumi.Input[str]] = None,
127
+ service_id: Optional[pulumi.Input[str]] = None,
128
+ yaml: Optional[pulumi.Input[str]] = None):
129
+ """
130
+ Input properties used for looking up and filtering EnvironmentServiceOverrides resources.
131
+ :param pulumi.Input[str] env_id: The env Id associated with the overrides. To reference an environment at the organization scope, prefix 'org' to the expression: org.{env*id}. To reference an environment at the account scope, prefix 'account' to the expression: account.{env*id}).
132
+ :param pulumi.Input[str] identifier: identifier of the service overrides.
133
+ :param pulumi.Input[str] org_id: Unique identifier of the organization.
134
+ :param pulumi.Input[str] project_id: Unique identifier of the project.
135
+ :param pulumi.Input[str] service_id: The service Id associated with the overrides. To reference a service at the organization scope, prefix 'org' to the expression: org.{service*id}. To reference a service at the account scope, prefix 'account' to the expression: account.{service*id}).
136
+ :param pulumi.Input[str] yaml: Environment Service Overrides YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
137
+ """
138
+ if env_id is not None:
139
+ pulumi.set(__self__, "env_id", env_id)
140
+ if identifier is not None:
141
+ pulumi.set(__self__, "identifier", identifier)
142
+ if org_id is not None:
143
+ pulumi.set(__self__, "org_id", org_id)
144
+ if project_id is not None:
145
+ pulumi.set(__self__, "project_id", project_id)
146
+ if service_id is not None:
147
+ pulumi.set(__self__, "service_id", service_id)
148
+ if yaml is not None:
149
+ pulumi.set(__self__, "yaml", yaml)
150
+
151
+ @property
152
+ @pulumi.getter(name="envId")
153
+ def env_id(self) -> Optional[pulumi.Input[str]]:
154
+ """
155
+ The env Id associated with the overrides. To reference an environment at the organization scope, prefix 'org' to the expression: org.{env*id}. To reference an environment at the account scope, prefix 'account' to the expression: account.{env*id}).
156
+ """
157
+ return pulumi.get(self, "env_id")
158
+
159
+ @env_id.setter
160
+ def env_id(self, value: Optional[pulumi.Input[str]]):
161
+ pulumi.set(self, "env_id", value)
162
+
163
+ @property
164
+ @pulumi.getter
165
+ def identifier(self) -> Optional[pulumi.Input[str]]:
166
+ """
167
+ identifier of the service overrides.
168
+ """
169
+ return pulumi.get(self, "identifier")
170
+
171
+ @identifier.setter
172
+ def identifier(self, value: Optional[pulumi.Input[str]]):
173
+ pulumi.set(self, "identifier", value)
174
+
175
+ @property
176
+ @pulumi.getter(name="orgId")
177
+ def org_id(self) -> Optional[pulumi.Input[str]]:
178
+ """
179
+ Unique identifier of the organization.
180
+ """
181
+ return pulumi.get(self, "org_id")
182
+
183
+ @org_id.setter
184
+ def org_id(self, value: Optional[pulumi.Input[str]]):
185
+ pulumi.set(self, "org_id", value)
186
+
187
+ @property
188
+ @pulumi.getter(name="projectId")
189
+ def project_id(self) -> Optional[pulumi.Input[str]]:
190
+ """
191
+ Unique identifier of the project.
192
+ """
193
+ return pulumi.get(self, "project_id")
194
+
195
+ @project_id.setter
196
+ def project_id(self, value: Optional[pulumi.Input[str]]):
197
+ pulumi.set(self, "project_id", value)
198
+
199
+ @property
200
+ @pulumi.getter(name="serviceId")
201
+ def service_id(self) -> Optional[pulumi.Input[str]]:
202
+ """
203
+ The service Id associated with the overrides. To reference a service at the organization scope, prefix 'org' to the expression: org.{service*id}. To reference a service at the account scope, prefix 'account' to the expression: account.{service*id}).
204
+ """
205
+ return pulumi.get(self, "service_id")
206
+
207
+ @service_id.setter
208
+ def service_id(self, value: Optional[pulumi.Input[str]]):
209
+ pulumi.set(self, "service_id", value)
210
+
211
+ @property
212
+ @pulumi.getter
213
+ def yaml(self) -> Optional[pulumi.Input[str]]:
214
+ """
215
+ Environment Service Overrides YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
216
+ """
217
+ return pulumi.get(self, "yaml")
218
+
219
+ @yaml.setter
220
+ def yaml(self, value: Optional[pulumi.Input[str]]):
221
+ pulumi.set(self, "yaml", value)
222
+
223
+
224
+ class EnvironmentServiceOverrides(pulumi.CustomResource):
225
+ @overload
226
+ def __init__(__self__,
227
+ resource_name: str,
228
+ opts: Optional[pulumi.ResourceOptions] = None,
229
+ env_id: Optional[pulumi.Input[str]] = None,
230
+ identifier: Optional[pulumi.Input[str]] = None,
231
+ org_id: Optional[pulumi.Input[str]] = None,
232
+ project_id: Optional[pulumi.Input[str]] = None,
233
+ service_id: Optional[pulumi.Input[str]] = None,
234
+ yaml: Optional[pulumi.Input[str]] = None,
235
+ __props__=None):
236
+ """
237
+ Resource for creating a Harness environment service overrides.
238
+ ## Example to create Environment Service Override at different levels (Org, Project, Account)
239
+
240
+ ### Account Level
241
+ ```python
242
+ import pulumi
243
+ import pulumi_harness as harness
244
+
245
+ example = harness.platform.EnvironmentServiceOverrides("example",
246
+ env_id="environmentIdentifier",
247
+ service_id="serviceIdentifier",
248
+ yaml=\"\"\"serviceOverrides:
249
+ environmentRef: environmentIdentifier
250
+ serviceRef: serviceIdentifier
251
+ variables:
252
+ - name: asda
253
+ type: String
254
+ value: asddad
255
+ manifests:
256
+ - manifest:
257
+ identifier: manifestEnv
258
+ type: Values
259
+ spec:
260
+ store:
261
+ type: Git
262
+ spec:
263
+ connectorRef: <+input>
264
+ gitFetchType: Branch
265
+ paths:
266
+ - file1
267
+ repoName: <+input>
268
+ branch: master
269
+ configFiles:
270
+ - configFile:
271
+ identifier: configFileEnv
272
+ spec:
273
+ store:
274
+ type: Harness
275
+ spec:
276
+ files:
277
+ - account:/Add-ons/svcOverrideTest
278
+ secretFiles: []
279
+ \"\"\")
280
+ ```
281
+
282
+ ### Org Level
283
+ ```python
284
+ import pulumi
285
+ import pulumi_harness as harness
286
+
287
+ example = harness.platform.EnvironmentServiceOverrides("example",
288
+ org_id="orgIdentifier",
289
+ env_id="environmentIdentifier",
290
+ service_id="serviceIdentifier",
291
+ yaml=\"\"\"serviceOverrides:
292
+ environmentRef: environmentIdentifier
293
+ serviceRef: serviceIdentifier
294
+ variables:
295
+ - name: asda
296
+ type: String
297
+ value: asddad
298
+ manifests:
299
+ - manifest:
300
+ identifier: manifestEnv
301
+ type: Values
302
+ spec:
303
+ store:
304
+ type: Git
305
+ spec:
306
+ connectorRef: <+input>
307
+ gitFetchType: Branch
308
+ paths:
309
+ - file1
310
+ repoName: <+input>
311
+ branch: master
312
+ configFiles:
313
+ - configFile:
314
+ identifier: configFileEnv
315
+ spec:
316
+ store:
317
+ type: Harness
318
+ spec:
319
+ files:
320
+ - account:/Add-ons/svcOverrideTest
321
+ secretFiles: []
322
+ \"\"\")
323
+ ```
324
+
325
+ ### Project Level
326
+ ```python
327
+ import pulumi
328
+ import pulumi_harness as harness
329
+
330
+ example = harness.platform.EnvironmentServiceOverrides("example",
331
+ org_id="orgIdentifier",
332
+ project_id="projectIdentifier",
333
+ env_id="environmentIdentifier",
334
+ service_id="serviceIdentifier",
335
+ yaml=\"\"\"serviceOverrides:
336
+ environmentRef: environmentIdentifier
337
+ serviceRef: serviceIdentifier
338
+ variables:
339
+ - name: asda
340
+ type: String
341
+ value: asddad
342
+ manifests:
343
+ - manifest:
344
+ identifier: manifestEnv
345
+ type: Values
346
+ spec:
347
+ store:
348
+ type: Git
349
+ spec:
350
+ connectorRef: <+input>
351
+ gitFetchType: Branch
352
+ paths:
353
+ - file1
354
+ repoName: <+input>
355
+ branch: master
356
+ configFiles:
357
+ - configFile:
358
+ identifier: configFileEnv
359
+ spec:
360
+ store:
361
+ type: Harness
362
+ spec:
363
+ files:
364
+ - account:/Add-ons/svcOverrideTest
365
+ secretFiles: []
366
+ \"\"\")
367
+ ```
368
+
369
+ ## Import
370
+
371
+ Import list of account level service overrides using the env id associated with them
372
+
373
+ ```sh
374
+ $ pulumi import harness:platform/environmentServiceOverrides:EnvironmentServiceOverrides example <env_id>
375
+ ```
376
+
377
+ Import list of org level service overrides using the env id associated with them
378
+
379
+ ```sh
380
+ $ pulumi import harness:platform/environmentServiceOverrides:EnvironmentServiceOverrides example <org_id>/<env_id>
381
+ ```
382
+
383
+ Import list of project level service overrides using the env id associated with them
384
+
385
+ ```sh
386
+ $ pulumi import harness:platform/environmentServiceOverrides:EnvironmentServiceOverrides example <org_id>/<project_id>/<env_id>
387
+ ```
388
+
389
+ :param str resource_name: The name of the resource.
390
+ :param pulumi.ResourceOptions opts: Options for the resource.
391
+ :param pulumi.Input[str] env_id: The env Id associated with the overrides. To reference an environment at the organization scope, prefix 'org' to the expression: org.{env*id}. To reference an environment at the account scope, prefix 'account' to the expression: account.{env*id}).
392
+ :param pulumi.Input[str] identifier: identifier of the service overrides.
393
+ :param pulumi.Input[str] org_id: Unique identifier of the organization.
394
+ :param pulumi.Input[str] project_id: Unique identifier of the project.
395
+ :param pulumi.Input[str] service_id: The service Id associated with the overrides. To reference a service at the organization scope, prefix 'org' to the expression: org.{service*id}. To reference a service at the account scope, prefix 'account' to the expression: account.{service*id}).
396
+ :param pulumi.Input[str] yaml: Environment Service Overrides YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
397
+ """
398
+ ...
399
+ @overload
400
+ def __init__(__self__,
401
+ resource_name: str,
402
+ args: EnvironmentServiceOverridesArgs,
403
+ opts: Optional[pulumi.ResourceOptions] = None):
404
+ """
405
+ Resource for creating a Harness environment service overrides.
406
+ ## Example to create Environment Service Override at different levels (Org, Project, Account)
407
+
408
+ ### Account Level
409
+ ```python
410
+ import pulumi
411
+ import pulumi_harness as harness
412
+
413
+ example = harness.platform.EnvironmentServiceOverrides("example",
414
+ env_id="environmentIdentifier",
415
+ service_id="serviceIdentifier",
416
+ yaml=\"\"\"serviceOverrides:
417
+ environmentRef: environmentIdentifier
418
+ serviceRef: serviceIdentifier
419
+ variables:
420
+ - name: asda
421
+ type: String
422
+ value: asddad
423
+ manifests:
424
+ - manifest:
425
+ identifier: manifestEnv
426
+ type: Values
427
+ spec:
428
+ store:
429
+ type: Git
430
+ spec:
431
+ connectorRef: <+input>
432
+ gitFetchType: Branch
433
+ paths:
434
+ - file1
435
+ repoName: <+input>
436
+ branch: master
437
+ configFiles:
438
+ - configFile:
439
+ identifier: configFileEnv
440
+ spec:
441
+ store:
442
+ type: Harness
443
+ spec:
444
+ files:
445
+ - account:/Add-ons/svcOverrideTest
446
+ secretFiles: []
447
+ \"\"\")
448
+ ```
449
+
450
+ ### Org Level
451
+ ```python
452
+ import pulumi
453
+ import pulumi_harness as harness
454
+
455
+ example = harness.platform.EnvironmentServiceOverrides("example",
456
+ org_id="orgIdentifier",
457
+ env_id="environmentIdentifier",
458
+ service_id="serviceIdentifier",
459
+ yaml=\"\"\"serviceOverrides:
460
+ environmentRef: environmentIdentifier
461
+ serviceRef: serviceIdentifier
462
+ variables:
463
+ - name: asda
464
+ type: String
465
+ value: asddad
466
+ manifests:
467
+ - manifest:
468
+ identifier: manifestEnv
469
+ type: Values
470
+ spec:
471
+ store:
472
+ type: Git
473
+ spec:
474
+ connectorRef: <+input>
475
+ gitFetchType: Branch
476
+ paths:
477
+ - file1
478
+ repoName: <+input>
479
+ branch: master
480
+ configFiles:
481
+ - configFile:
482
+ identifier: configFileEnv
483
+ spec:
484
+ store:
485
+ type: Harness
486
+ spec:
487
+ files:
488
+ - account:/Add-ons/svcOverrideTest
489
+ secretFiles: []
490
+ \"\"\")
491
+ ```
492
+
493
+ ### Project Level
494
+ ```python
495
+ import pulumi
496
+ import pulumi_harness as harness
497
+
498
+ example = harness.platform.EnvironmentServiceOverrides("example",
499
+ org_id="orgIdentifier",
500
+ project_id="projectIdentifier",
501
+ env_id="environmentIdentifier",
502
+ service_id="serviceIdentifier",
503
+ yaml=\"\"\"serviceOverrides:
504
+ environmentRef: environmentIdentifier
505
+ serviceRef: serviceIdentifier
506
+ variables:
507
+ - name: asda
508
+ type: String
509
+ value: asddad
510
+ manifests:
511
+ - manifest:
512
+ identifier: manifestEnv
513
+ type: Values
514
+ spec:
515
+ store:
516
+ type: Git
517
+ spec:
518
+ connectorRef: <+input>
519
+ gitFetchType: Branch
520
+ paths:
521
+ - file1
522
+ repoName: <+input>
523
+ branch: master
524
+ configFiles:
525
+ - configFile:
526
+ identifier: configFileEnv
527
+ spec:
528
+ store:
529
+ type: Harness
530
+ spec:
531
+ files:
532
+ - account:/Add-ons/svcOverrideTest
533
+ secretFiles: []
534
+ \"\"\")
535
+ ```
536
+
537
+ ## Import
538
+
539
+ Import list of account level service overrides using the env id associated with them
540
+
541
+ ```sh
542
+ $ pulumi import harness:platform/environmentServiceOverrides:EnvironmentServiceOverrides example <env_id>
543
+ ```
544
+
545
+ Import list of org level service overrides using the env id associated with them
546
+
547
+ ```sh
548
+ $ pulumi import harness:platform/environmentServiceOverrides:EnvironmentServiceOverrides example <org_id>/<env_id>
549
+ ```
550
+
551
+ Import list of project level service overrides using the env id associated with them
552
+
553
+ ```sh
554
+ $ pulumi import harness:platform/environmentServiceOverrides:EnvironmentServiceOverrides example <org_id>/<project_id>/<env_id>
555
+ ```
556
+
557
+ :param str resource_name: The name of the resource.
558
+ :param EnvironmentServiceOverridesArgs args: The arguments to use to populate this resource's properties.
559
+ :param pulumi.ResourceOptions opts: Options for the resource.
560
+ """
561
+ ...
562
+ def __init__(__self__, resource_name: str, *args, **kwargs):
563
+ resource_args, opts = _utilities.get_resource_args_opts(EnvironmentServiceOverridesArgs, pulumi.ResourceOptions, *args, **kwargs)
564
+ if resource_args is not None:
565
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
566
+ else:
567
+ __self__._internal_init(resource_name, *args, **kwargs)
568
+
569
+ def _internal_init(__self__,
570
+ resource_name: str,
571
+ opts: Optional[pulumi.ResourceOptions] = None,
572
+ env_id: Optional[pulumi.Input[str]] = None,
573
+ identifier: Optional[pulumi.Input[str]] = None,
574
+ org_id: Optional[pulumi.Input[str]] = None,
575
+ project_id: Optional[pulumi.Input[str]] = None,
576
+ service_id: Optional[pulumi.Input[str]] = None,
577
+ yaml: Optional[pulumi.Input[str]] = None,
578
+ __props__=None):
579
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
580
+ if not isinstance(opts, pulumi.ResourceOptions):
581
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
582
+ if opts.id is None:
583
+ if __props__ is not None:
584
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
585
+ __props__ = EnvironmentServiceOverridesArgs.__new__(EnvironmentServiceOverridesArgs)
586
+
587
+ if env_id is None and not opts.urn:
588
+ raise TypeError("Missing required property 'env_id'")
589
+ __props__.__dict__["env_id"] = env_id
590
+ __props__.__dict__["identifier"] = identifier
591
+ __props__.__dict__["org_id"] = org_id
592
+ __props__.__dict__["project_id"] = project_id
593
+ if service_id is None and not opts.urn:
594
+ raise TypeError("Missing required property 'service_id'")
595
+ __props__.__dict__["service_id"] = service_id
596
+ if yaml is None and not opts.urn:
597
+ raise TypeError("Missing required property 'yaml'")
598
+ __props__.__dict__["yaml"] = yaml
599
+ super(EnvironmentServiceOverrides, __self__).__init__(
600
+ 'harness:platform/environmentServiceOverrides:EnvironmentServiceOverrides',
601
+ resource_name,
602
+ __props__,
603
+ opts)
604
+
605
+ @staticmethod
606
+ def get(resource_name: str,
607
+ id: pulumi.Input[str],
608
+ opts: Optional[pulumi.ResourceOptions] = None,
609
+ env_id: Optional[pulumi.Input[str]] = None,
610
+ identifier: Optional[pulumi.Input[str]] = None,
611
+ org_id: Optional[pulumi.Input[str]] = None,
612
+ project_id: Optional[pulumi.Input[str]] = None,
613
+ service_id: Optional[pulumi.Input[str]] = None,
614
+ yaml: Optional[pulumi.Input[str]] = None) -> 'EnvironmentServiceOverrides':
615
+ """
616
+ Get an existing EnvironmentServiceOverrides resource's state with the given name, id, and optional extra
617
+ properties used to qualify the lookup.
618
+
619
+ :param str resource_name: The unique name of the resulting resource.
620
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
621
+ :param pulumi.ResourceOptions opts: Options for the resource.
622
+ :param pulumi.Input[str] env_id: The env Id associated with the overrides. To reference an environment at the organization scope, prefix 'org' to the expression: org.{env*id}. To reference an environment at the account scope, prefix 'account' to the expression: account.{env*id}).
623
+ :param pulumi.Input[str] identifier: identifier of the service overrides.
624
+ :param pulumi.Input[str] org_id: Unique identifier of the organization.
625
+ :param pulumi.Input[str] project_id: Unique identifier of the project.
626
+ :param pulumi.Input[str] service_id: The service Id associated with the overrides. To reference a service at the organization scope, prefix 'org' to the expression: org.{service*id}. To reference a service at the account scope, prefix 'account' to the expression: account.{service*id}).
627
+ :param pulumi.Input[str] yaml: Environment Service Overrides YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
628
+ """
629
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
630
+
631
+ __props__ = _EnvironmentServiceOverridesState.__new__(_EnvironmentServiceOverridesState)
632
+
633
+ __props__.__dict__["env_id"] = env_id
634
+ __props__.__dict__["identifier"] = identifier
635
+ __props__.__dict__["org_id"] = org_id
636
+ __props__.__dict__["project_id"] = project_id
637
+ __props__.__dict__["service_id"] = service_id
638
+ __props__.__dict__["yaml"] = yaml
639
+ return EnvironmentServiceOverrides(resource_name, opts=opts, __props__=__props__)
640
+
641
+ @property
642
+ @pulumi.getter(name="envId")
643
+ def env_id(self) -> pulumi.Output[str]:
644
+ """
645
+ The env Id associated with the overrides. To reference an environment at the organization scope, prefix 'org' to the expression: org.{env*id}. To reference an environment at the account scope, prefix 'account' to the expression: account.{env*id}).
646
+ """
647
+ return pulumi.get(self, "env_id")
648
+
649
+ @property
650
+ @pulumi.getter
651
+ def identifier(self) -> pulumi.Output[str]:
652
+ """
653
+ identifier of the service overrides.
654
+ """
655
+ return pulumi.get(self, "identifier")
656
+
657
+ @property
658
+ @pulumi.getter(name="orgId")
659
+ def org_id(self) -> pulumi.Output[Optional[str]]:
660
+ """
661
+ Unique identifier of the organization.
662
+ """
663
+ return pulumi.get(self, "org_id")
664
+
665
+ @property
666
+ @pulumi.getter(name="projectId")
667
+ def project_id(self) -> pulumi.Output[Optional[str]]:
668
+ """
669
+ Unique identifier of the project.
670
+ """
671
+ return pulumi.get(self, "project_id")
672
+
673
+ @property
674
+ @pulumi.getter(name="serviceId")
675
+ def service_id(self) -> pulumi.Output[str]:
676
+ """
677
+ The service Id associated with the overrides. To reference a service at the organization scope, prefix 'org' to the expression: org.{service*id}. To reference a service at the account scope, prefix 'account' to the expression: account.{service*id}).
678
+ """
679
+ return pulumi.get(self, "service_id")
680
+
681
+ @property
682
+ @pulumi.getter
683
+ def yaml(self) -> pulumi.Output[str]:
684
+ """
685
+ Environment Service Overrides YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
686
+ """
687
+ return pulumi.get(self, "yaml")
688
+