pulumi-harness 0.8.0a1755712204__py3-none-any.whl → 0.8.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (226) hide show
  1. pulumi_harness/__init__.py +75 -0
  2. pulumi_harness/add_user_to_group.py +4 -0
  3. pulumi_harness/application.py +4 -0
  4. pulumi_harness/application_git_sync.py +4 -0
  5. pulumi_harness/chaos/__init__.py +21 -0
  6. pulumi_harness/chaos/_inputs.py +2702 -0
  7. pulumi_harness/chaos/get_hub.py +324 -0
  8. pulumi_harness/chaos/get_image_registry.py +339 -0
  9. pulumi_harness/chaos/get_infrastructure_v2.py +684 -0
  10. pulumi_harness/chaos/get_security_governance_condition.py +261 -0
  11. pulumi_harness/chaos/get_security_governance_rule.py +261 -0
  12. pulumi_harness/chaos/hub.py +806 -0
  13. pulumi_harness/chaos/hub_sync.py +274 -0
  14. pulumi_harness/chaos/image_registry.py +730 -0
  15. pulumi_harness/chaos/infrastructure_v2.py +1670 -0
  16. pulumi_harness/chaos/outputs.py +2276 -0
  17. pulumi_harness/chaos/security_governance_condition.py +795 -0
  18. pulumi_harness/chaos/security_governance_rule.py +688 -0
  19. pulumi_harness/chaos_infrastructure.py +10 -4
  20. pulumi_harness/cloudprovider/aws.py +4 -0
  21. pulumi_harness/cloudprovider/azure.py +4 -0
  22. pulumi_harness/cloudprovider/datacenter.py +4 -0
  23. pulumi_harness/cloudprovider/kubernetes.py +4 -0
  24. pulumi_harness/cloudprovider/spot.py +4 -0
  25. pulumi_harness/cloudprovider/tanzu.py +4 -0
  26. pulumi_harness/cluster/_inputs.py +540 -0
  27. pulumi_harness/cluster/get_orchestrator_config.py +46 -6
  28. pulumi_harness/cluster/orchestrator.py +0 -16
  29. pulumi_harness/cluster/orchestrator_config.py +253 -5
  30. pulumi_harness/cluster/outputs.py +394 -0
  31. pulumi_harness/delegate_approval.py +4 -0
  32. pulumi_harness/encrypted_text.py +4 -0
  33. pulumi_harness/environment.py +4 -0
  34. pulumi_harness/get_current_account.py +3 -3
  35. pulumi_harness/git_connector.py +4 -0
  36. pulumi_harness/governance/rule.py +4 -0
  37. pulumi_harness/governance/rule_enforcement.py +4 -0
  38. pulumi_harness/infrastructure_definition.py +4 -0
  39. pulumi_harness/platform/__init__.py +2 -0
  40. pulumi_harness/platform/_inputs.py +2780 -416
  41. pulumi_harness/platform/app_dynamics_connector.py +4 -0
  42. pulumi_harness/platform/artifactory_connector.py +4 -0
  43. pulumi_harness/platform/aws_cc_connector.py +4 -0
  44. pulumi_harness/platform/aws_connector.py +11 -7
  45. pulumi_harness/platform/aws_kms_connector.py +70 -20
  46. pulumi_harness/platform/aws_secret_manager_connector.py +13 -9
  47. pulumi_harness/platform/azure_cloud_cost_connector.py +69 -0
  48. pulumi_harness/platform/azure_cloud_provider_connector.py +4 -0
  49. pulumi_harness/platform/azure_key_vault_connector.py +8 -0
  50. pulumi_harness/platform/bitbucket_connector.py +4 -0
  51. pulumi_harness/platform/connector_azure_artifacts.py +4 -2
  52. pulumi_harness/platform/connector_azure_repo.py +11 -16
  53. pulumi_harness/platform/connector_custom_secret_manager.py +51 -156
  54. pulumi_harness/platform/connector_customhealthsource.py +4 -0
  55. pulumi_harness/platform/connector_gcp_kms.py +4 -0
  56. pulumi_harness/platform/connector_jdbc.py +4 -0
  57. pulumi_harness/platform/connector_pdc.py +13 -13
  58. pulumi_harness/platform/connector_rancher.py +4 -0
  59. pulumi_harness/platform/dashboard_folders.py +2 -2
  60. pulumi_harness/platform/dashboards.py +10 -14
  61. pulumi_harness/platform/datadog_connector.py +4 -0
  62. pulumi_harness/platform/db_instance.py +4 -0
  63. pulumi_harness/platform/db_schema.py +25 -21
  64. pulumi_harness/platform/default_notification_template_set.py +495 -0
  65. pulumi_harness/platform/docker_connector.py +4 -4
  66. pulumi_harness/platform/dynatrace_connector.py +4 -0
  67. pulumi_harness/platform/elasticsearch_connector.py +19 -15
  68. pulumi_harness/platform/environment.py +25 -530
  69. pulumi_harness/platform/environment_clusters_mapping.py +8 -0
  70. pulumi_harness/platform/environment_group.py +13 -100
  71. pulumi_harness/platform/environment_service_overrides.py +20 -186
  72. pulumi_harness/platform/feature_flag_target_group.py +8 -8
  73. pulumi_harness/platform/file_store_file.py +11 -7
  74. pulumi_harness/platform/file_store_folder.py +11 -7
  75. pulumi_harness/platform/filters.py +8 -0
  76. pulumi_harness/platform/gcp_cloud_cost_connector.py +4 -0
  77. pulumi_harness/platform/gcp_connector.py +4 -0
  78. pulumi_harness/platform/gcp_secret_manager_connector.py +6 -92
  79. pulumi_harness/platform/get_api_key.py +8 -38
  80. pulumi_harness/platform/get_aws_kms_connector.py +16 -1
  81. pulumi_harness/platform/get_aws_secret_manager_connector.py +7 -3
  82. pulumi_harness/platform/get_azure_cloud_cost_connector.py +15 -1
  83. pulumi_harness/platform/get_connector_azure_repo.py +53 -2
  84. pulumi_harness/platform/get_connector_custom_secret_manager.py +28 -32
  85. pulumi_harness/platform/get_connector_pdc.py +3 -3
  86. pulumi_harness/platform/get_current_account.py +2 -20
  87. pulumi_harness/platform/get_dashboard_folders.py +16 -5
  88. pulumi_harness/platform/get_dashboards.py +15 -7
  89. pulumi_harness/platform/get_db_instance.py +5 -0
  90. pulumi_harness/platform/get_db_schema.py +12 -15
  91. pulumi_harness/platform/get_default_notification_template_set.py +244 -0
  92. pulumi_harness/platform/get_environment.py +5 -0
  93. pulumi_harness/platform/get_environment_list.py +12 -58
  94. pulumi_harness/platform/get_environment_service_overrides.py +6 -6
  95. pulumi_harness/platform/get_filters.py +4 -0
  96. pulumi_harness/platform/get_gcp_secret_manager_connector.py +4 -0
  97. pulumi_harness/platform/get_github_connector.py +3 -0
  98. pulumi_harness/platform/get_gitops_applications.py +8 -0
  99. pulumi_harness/platform/get_gitops_filters.py +25 -10
  100. pulumi_harness/platform/get_gitx_webhook.py +3 -3
  101. pulumi_harness/platform/get_har_registry.py +46 -10
  102. pulumi_harness/platform/get_iacm_default_pipeline.py +24 -0
  103. pulumi_harness/platform/get_infra_variable_set.py +34 -25
  104. pulumi_harness/platform/get_infrastructure.py +5 -0
  105. pulumi_harness/platform/get_manual_freeze.py +0 -24
  106. pulumi_harness/platform/get_monitored_service.py +22 -0
  107. pulumi_harness/platform/get_organization.py +4 -0
  108. pulumi_harness/platform/get_overrides.py +66 -2
  109. pulumi_harness/platform/get_pagerduty_connector.py +4 -0
  110. pulumi_harness/platform/get_pipeline_list.py +18 -63
  111. pulumi_harness/platform/get_project.py +4 -0
  112. pulumi_harness/platform/get_project_list.py +18 -63
  113. pulumi_harness/platform/get_provider.py +11 -2
  114. pulumi_harness/platform/get_resource_group.py +4 -0
  115. pulumi_harness/platform/get_role_assignments.py +6 -2
  116. pulumi_harness/platform/get_roles.py +4 -0
  117. pulumi_harness/platform/get_secret_file.py +4 -0
  118. pulumi_harness/platform/get_secret_sshkey.py +4 -0
  119. pulumi_harness/platform/get_service.py +5 -0
  120. pulumi_harness/platform/get_service_account.py +4 -0
  121. pulumi_harness/platform/get_service_list.py +22 -58
  122. pulumi_harness/platform/get_service_overrides_v2.py +42 -0
  123. pulumi_harness/platform/get_slo.py +22 -0
  124. pulumi_harness/platform/get_token.py +2 -0
  125. pulumi_harness/platform/get_user.py +4 -0
  126. pulumi_harness/platform/get_usergroup.py +4 -0
  127. pulumi_harness/platform/get_variables.py +4 -0
  128. pulumi_harness/platform/get_vault_connector.py +5 -1
  129. pulumi_harness/platform/get_workspace.py +8 -3
  130. pulumi_harness/platform/git_connector.py +4 -0
  131. pulumi_harness/platform/git_ops_agent.py +4 -0
  132. pulumi_harness/platform/git_ops_applications.py +4 -0
  133. pulumi_harness/platform/git_ops_cluster.py +51 -0
  134. pulumi_harness/platform/git_ops_gnupg.py +4 -0
  135. pulumi_harness/platform/git_ops_repo_cert.py +4 -0
  136. pulumi_harness/platform/git_ops_repo_cred.py +4 -0
  137. pulumi_harness/platform/git_ops_repository.py +4 -0
  138. pulumi_harness/platform/github_connector.py +11 -7
  139. pulumi_harness/platform/gitlab_connector.py +4 -0
  140. pulumi_harness/platform/gitops_app_project.py +4 -0
  141. pulumi_harness/platform/gitops_app_project_mapping.py +4 -0
  142. pulumi_harness/platform/gitops_applicationset.py +98 -0
  143. pulumi_harness/platform/gitops_filters.py +51 -179
  144. pulumi_harness/platform/gitx_webhook.py +4 -0
  145. pulumi_harness/platform/har_registry.py +42 -43
  146. pulumi_harness/platform/helm_connector.py +4 -0
  147. pulumi_harness/platform/iacm_default_pipeline.py +28 -0
  148. pulumi_harness/platform/infra_module.py +6 -2
  149. pulumi_harness/platform/infra_variable_set.py +38 -22
  150. pulumi_harness/platform/infrastructure.py +18 -240
  151. pulumi_harness/platform/input_set.py +4 -0
  152. pulumi_harness/platform/jenkins_connector.py +8 -0
  153. pulumi_harness/platform/jira_connector.py +4 -2
  154. pulumi_harness/platform/kubernetes_cloud_cost_connector.py +35 -11
  155. pulumi_harness/platform/kubernetes_connector.py +4 -0
  156. pulumi_harness/platform/manual_freeze.py +6 -154
  157. pulumi_harness/platform/monitored_service.py +16 -12
  158. pulumi_harness/platform/newrelic_connector.py +4 -0
  159. pulumi_harness/platform/nexus_connector.py +4 -4
  160. pulumi_harness/platform/notification_rule.py +4 -0
  161. pulumi_harness/platform/oci_helm_connector.py +4 -0
  162. pulumi_harness/platform/organization.py +8 -0
  163. pulumi_harness/platform/outputs.py +2085 -219
  164. pulumi_harness/platform/overrides.py +48 -2
  165. pulumi_harness/platform/pagerduty_connector.py +8 -0
  166. pulumi_harness/platform/pipeline.py +18 -2
  167. pulumi_harness/platform/pipeline_filters.py +4 -0
  168. pulumi_harness/platform/policy.py +6 -26
  169. pulumi_harness/platform/policy_set.py +4 -0
  170. pulumi_harness/platform/project.py +8 -0
  171. pulumi_harness/platform/prometheus_connector.py +4 -0
  172. pulumi_harness/platform/provider.py +4 -2
  173. pulumi_harness/platform/repo.py +40 -0
  174. pulumi_harness/platform/resource_group.py +15 -7
  175. pulumi_harness/platform/role_assignments.py +20 -16
  176. pulumi_harness/platform/roles.py +8 -0
  177. pulumi_harness/platform/secret_file.py +8 -0
  178. pulumi_harness/platform/secret_sshkey.py +6 -2
  179. pulumi_harness/platform/secret_text.py +78 -0
  180. pulumi_harness/platform/service.py +13 -494
  181. pulumi_harness/platform/service_account.py +8 -0
  182. pulumi_harness/platform/service_now_connector.py +4 -2
  183. pulumi_harness/platform/service_overrides_v2.py +4 -204
  184. pulumi_harness/platform/slo.py +12 -18
  185. pulumi_harness/platform/splunk_connector.py +4 -0
  186. pulumi_harness/platform/spot_connector.py +4 -0
  187. pulumi_harness/platform/sumologic_connector.py +4 -0
  188. pulumi_harness/platform/tas_connector.py +4 -0
  189. pulumi_harness/platform/template.py +25 -21
  190. pulumi_harness/platform/template_filters.py +4 -0
  191. pulumi_harness/platform/terraform_cloud_connector.py +4 -0
  192. pulumi_harness/platform/token.py +6 -2
  193. pulumi_harness/platform/triggers.py +8 -0
  194. pulumi_harness/platform/user.py +13 -9
  195. pulumi_harness/platform/usergroup.py +71 -7
  196. pulumi_harness/platform/variables.py +8 -0
  197. pulumi_harness/platform/vault_connector.py +15 -7
  198. pulumi_harness/platform/workspace.py +19 -7
  199. pulumi_harness/platform_api_key.py +6 -66
  200. pulumi_harness/platform_ccm_filters.py +11 -7
  201. pulumi_harness/pulumi-plugin.json +1 -1
  202. pulumi_harness/service/__init__.py +4 -0
  203. pulumi_harness/service/_inputs.py +1729 -0
  204. pulumi_harness/service/ami.py +4 -0
  205. pulumi_harness/service/codedeploy.py +4 -0
  206. pulumi_harness/service/discovery_agent.py +1211 -0
  207. pulumi_harness/service/discovery_setting.py +384 -0
  208. pulumi_harness/service/ecs.py +4 -0
  209. pulumi_harness/service/get_discovery_agent.py +443 -0
  210. pulumi_harness/service/get_discovery_setting.py +199 -0
  211. pulumi_harness/service/helm.py +4 -0
  212. pulumi_harness/service/kubernetes.py +4 -0
  213. pulumi_harness/service/lambda_.py +4 -0
  214. pulumi_harness/service/outputs.py +2367 -117
  215. pulumi_harness/service/ssh.py +4 -0
  216. pulumi_harness/service/tanzu.py +4 -0
  217. pulumi_harness/service/winrm.py +4 -0
  218. pulumi_harness/ssh_credential.py +4 -0
  219. pulumi_harness/user.py +4 -0
  220. pulumi_harness/user_group.py +4 -0
  221. pulumi_harness/yaml_config.py +4 -0
  222. {pulumi_harness-0.8.0a1755712204.dist-info → pulumi_harness-0.8.1.dist-info}/METADATA +1 -1
  223. pulumi_harness-0.8.1.dist-info/RECORD +357 -0
  224. pulumi_harness-0.8.0a1755712204.dist-info/RECORD +0 -337
  225. {pulumi_harness-0.8.0a1755712204.dist-info → pulumi_harness-0.8.1.dist-info}/WHEEL +0 -0
  226. {pulumi_harness-0.8.0a1755712204.dist-info → pulumi_harness-0.8.1.dist-info}/top_level.txt +0 -0
@@ -261,6 +261,10 @@ class EnvironmentClustersMapping(pulumi.CustomResource):
261
261
  ])
262
262
  ```
263
263
 
264
+ ## Import
265
+
266
+ The `pulumi import` command can be used, for example:
267
+
264
268
  :param str resource_name: The name of the resource.
265
269
  :param pulumi.ResourceOptions opts: Options for the resource.
266
270
  :param pulumi.Input[Sequence[pulumi.Input[Union['EnvironmentClustersMappingClusterArgs', 'EnvironmentClustersMappingClusterArgsDict']]]] clusters: list of cluster identifiers and names
@@ -316,6 +320,10 @@ class EnvironmentClustersMapping(pulumi.CustomResource):
316
320
  ])
317
321
  ```
318
322
 
323
+ ## Import
324
+
325
+ The `pulumi import` command can be used, for example:
326
+
319
327
  :param str resource_name: The name of the resource.
320
328
  :param EnvironmentClustersMappingArgs args: The arguments to use to populate this resource's properties.
321
329
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -28,10 +28,7 @@ class EnvironmentGroupArgs:
28
28
  """
29
29
  The set of arguments for constructing a EnvironmentGroup resource.
30
30
  :param pulumi.Input[_builtins.str] identifier: identifier of the environment group.
31
- :param pulumi.Input[_builtins.str] yaml: Env group YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression:
32
- org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}.
33
- For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as
34
- connectorRef: org.connectorId.
31
+ :param pulumi.Input[_builtins.str] yaml: Env group 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.
35
32
  :param pulumi.Input[_builtins.str] color: Color of the environment group.
36
33
  :param pulumi.Input[_builtins.bool] force_delete: Enable this flag for force deletion of environment group
37
34
  :param pulumi.Input[_builtins.str] org_id: org_id of the environment group.
@@ -64,10 +61,7 @@ class EnvironmentGroupArgs:
64
61
  @pulumi.getter
65
62
  def yaml(self) -> pulumi.Input[_builtins.str]:
66
63
  """
67
- Env group YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression:
68
- org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}.
69
- For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as
70
- connectorRef: org.connectorId.
64
+ Env group 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.
71
65
  """
72
66
  return pulumi.get(self, "yaml")
73
67
 
@@ -140,10 +134,7 @@ class _EnvironmentGroupState:
140
134
  :param pulumi.Input[_builtins.str] identifier: identifier of the environment group.
141
135
  :param pulumi.Input[_builtins.str] org_id: org_id of the environment group.
142
136
  :param pulumi.Input[_builtins.str] project_id: project_id of the environment group.
143
- :param pulumi.Input[_builtins.str] yaml: Env group YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression:
144
- org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}.
145
- For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as
146
- connectorRef: org.connectorId.
137
+ :param pulumi.Input[_builtins.str] yaml: Env group 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.
147
138
  """
148
139
  if color is not None:
149
140
  pulumi.set(__self__, "color", color)
@@ -222,10 +213,7 @@ class _EnvironmentGroupState:
222
213
  @pulumi.getter
223
214
  def yaml(self) -> Optional[pulumi.Input[_builtins.str]]:
224
215
  """
225
- Env group YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression:
226
- org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}.
227
- For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as
228
- connectorRef: org.connectorId.
216
+ Env group 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.
229
217
  """
230
218
  return pulumi.get(self, "yaml")
231
219
 
@@ -250,43 +238,8 @@ class EnvironmentGroup(pulumi.CustomResource):
250
238
  """
251
239
  Resource for creating a Harness environment group.
252
240
 
253
- ## Example to create Environment Group at different levels (Org, Project, Account)
241
+ ## Example Usage
254
242
 
255
- ### Account Level
256
- ```python
257
- import pulumi
258
- import pulumi_harness as harness
259
-
260
- example = harness.platform.EnvironmentGroup("example",
261
- identifier="identifier",
262
- color="#0063F7",
263
- yaml=\"\"\"environmentGroup:
264
- name: "name"
265
- identifier: "identifier"
266
- description: "temp"
267
- envIdentifiers: []
268
- \"\"\")
269
- ```
270
-
271
- ### Org Level
272
- ```python
273
- import pulumi
274
- import pulumi_harness as harness
275
-
276
- example = harness.platform.EnvironmentGroup("example",
277
- identifier="identifier",
278
- org_id="orgIdentifer",
279
- color="#0063F7",
280
- yaml=\"\"\"environmentGroup:
281
- name: "name"
282
- identifier: "identifier"
283
- description: "temp"
284
- orgIdentifier: "orgIdentifer"
285
- envIdentifiers: []
286
- \"\"\")
287
- ```
288
-
289
- ### Project Level
290
243
  ```python
291
244
  import pulumi
292
245
  import pulumi_harness as harness
@@ -308,6 +261,8 @@ class EnvironmentGroup(pulumi.CustomResource):
308
261
 
309
262
  ## Import
310
263
 
264
+ The `pulumi import` command can be used, for example:
265
+
311
266
  Import account level environment group.
312
267
 
313
268
  ```sh
@@ -333,10 +288,7 @@ class EnvironmentGroup(pulumi.CustomResource):
333
288
  :param pulumi.Input[_builtins.str] identifier: identifier of the environment group.
334
289
  :param pulumi.Input[_builtins.str] org_id: org_id of the environment group.
335
290
  :param pulumi.Input[_builtins.str] project_id: project_id of the environment group.
336
- :param pulumi.Input[_builtins.str] yaml: Env group YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression:
337
- org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}.
338
- For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as
339
- connectorRef: org.connectorId.
291
+ :param pulumi.Input[_builtins.str] yaml: Env group 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.
340
292
  """
341
293
  ...
342
294
  @overload
@@ -347,43 +299,8 @@ class EnvironmentGroup(pulumi.CustomResource):
347
299
  """
348
300
  Resource for creating a Harness environment group.
349
301
 
350
- ## Example to create Environment Group at different levels (Org, Project, Account)
302
+ ## Example Usage
351
303
 
352
- ### Account Level
353
- ```python
354
- import pulumi
355
- import pulumi_harness as harness
356
-
357
- example = harness.platform.EnvironmentGroup("example",
358
- identifier="identifier",
359
- color="#0063F7",
360
- yaml=\"\"\"environmentGroup:
361
- name: "name"
362
- identifier: "identifier"
363
- description: "temp"
364
- envIdentifiers: []
365
- \"\"\")
366
- ```
367
-
368
- ### Org Level
369
- ```python
370
- import pulumi
371
- import pulumi_harness as harness
372
-
373
- example = harness.platform.EnvironmentGroup("example",
374
- identifier="identifier",
375
- org_id="orgIdentifer",
376
- color="#0063F7",
377
- yaml=\"\"\"environmentGroup:
378
- name: "name"
379
- identifier: "identifier"
380
- description: "temp"
381
- orgIdentifier: "orgIdentifer"
382
- envIdentifiers: []
383
- \"\"\")
384
- ```
385
-
386
- ### Project Level
387
304
  ```python
388
305
  import pulumi
389
306
  import pulumi_harness as harness
@@ -405,6 +322,8 @@ class EnvironmentGroup(pulumi.CustomResource):
405
322
 
406
323
  ## Import
407
324
 
325
+ The `pulumi import` command can be used, for example:
326
+
408
327
  Import account level environment group.
409
328
 
410
329
  ```sh
@@ -491,10 +410,7 @@ class EnvironmentGroup(pulumi.CustomResource):
491
410
  :param pulumi.Input[_builtins.str] identifier: identifier of the environment group.
492
411
  :param pulumi.Input[_builtins.str] org_id: org_id of the environment group.
493
412
  :param pulumi.Input[_builtins.str] project_id: project_id of the environment group.
494
- :param pulumi.Input[_builtins.str] yaml: Env group YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression:
495
- org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}.
496
- For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as
497
- connectorRef: org.connectorId.
413
+ :param pulumi.Input[_builtins.str] yaml: Env group 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.
498
414
  """
499
415
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
500
416
 
@@ -552,10 +468,7 @@ class EnvironmentGroup(pulumi.CustomResource):
552
468
  @pulumi.getter
553
469
  def yaml(self) -> pulumi.Output[_builtins.str]:
554
470
  """
555
- Env group YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression:
556
- org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}.
557
- For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as
558
- connectorRef: org.connectorId.
471
+ Env group 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.
559
472
  """
560
473
  return pulumi.get(self, "yaml")
561
474
 
@@ -27,8 +27,8 @@ class EnvironmentServiceOverridesArgs:
27
27
  project_id: Optional[pulumi.Input[_builtins.str]] = None):
28
28
  """
29
29
  The set of arguments for constructing a EnvironmentServiceOverrides resource.
30
- :param pulumi.Input[_builtins.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[_builtins.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}).
30
+ :param pulumi.Input[_builtins.str] env_id: The env ID to which the overrides associated.
31
+ :param pulumi.Input[_builtins.str] service_id: The service ID to which the overrides applies.
32
32
  :param pulumi.Input[_builtins.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
33
  :param pulumi.Input[_builtins.str] identifier: identifier of the service overrides.
34
34
  :param pulumi.Input[_builtins.str] org_id: Unique identifier of the organization.
@@ -48,7 +48,7 @@ class EnvironmentServiceOverridesArgs:
48
48
  @pulumi.getter(name="envId")
49
49
  def env_id(self) -> pulumi.Input[_builtins.str]:
50
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}).
51
+ The env ID to which the overrides associated.
52
52
  """
53
53
  return pulumi.get(self, "env_id")
54
54
 
@@ -60,7 +60,7 @@ class EnvironmentServiceOverridesArgs:
60
60
  @pulumi.getter(name="serviceId")
61
61
  def service_id(self) -> pulumi.Input[_builtins.str]:
62
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}).
63
+ The service ID to which the overrides applies.
64
64
  """
65
65
  return pulumi.get(self, "service_id")
66
66
 
@@ -128,11 +128,11 @@ class _EnvironmentServiceOverridesState:
128
128
  yaml: Optional[pulumi.Input[_builtins.str]] = None):
129
129
  """
130
130
  Input properties used for looking up and filtering EnvironmentServiceOverrides resources.
131
- :param pulumi.Input[_builtins.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}).
131
+ :param pulumi.Input[_builtins.str] env_id: The env ID to which the overrides associated.
132
132
  :param pulumi.Input[_builtins.str] identifier: identifier of the service overrides.
133
133
  :param pulumi.Input[_builtins.str] org_id: Unique identifier of the organization.
134
134
  :param pulumi.Input[_builtins.str] project_id: Unique identifier of the project.
135
- :param pulumi.Input[_builtins.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}).
135
+ :param pulumi.Input[_builtins.str] service_id: The service ID to which the overrides applies.
136
136
  :param pulumi.Input[_builtins.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
137
  """
138
138
  if env_id is not None:
@@ -152,7 +152,7 @@ class _EnvironmentServiceOverridesState:
152
152
  @pulumi.getter(name="envId")
153
153
  def env_id(self) -> Optional[pulumi.Input[_builtins.str]]:
154
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}).
155
+ The env ID to which the overrides associated.
156
156
  """
157
157
  return pulumi.get(self, "env_id")
158
158
 
@@ -200,7 +200,7 @@ class _EnvironmentServiceOverridesState:
200
200
  @pulumi.getter(name="serviceId")
201
201
  def service_id(self) -> Optional[pulumi.Input[_builtins.str]]:
202
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}).
203
+ The service ID to which the overrides applies.
204
204
  """
205
205
  return pulumi.get(self, "service_id")
206
206
 
@@ -236,94 +236,9 @@ class EnvironmentServiceOverrides(pulumi.CustomResource):
236
236
  __props__=None):
237
237
  """
238
238
  Resource for creating a Harness environment service overrides.
239
- ## Example to create Environment Service Override at different levels (Org, Project, Account)
240
239
 
241
- ### Account Level
242
- ```python
243
- import pulumi
244
- import pulumi_harness as harness
245
-
246
- example = harness.platform.EnvironmentServiceOverrides("example",
247
- env_id="environmentIdentifier",
248
- service_id="serviceIdentifier",
249
- yaml=\"\"\"serviceOverrides:
250
- environmentRef: environmentIdentifier
251
- serviceRef: serviceIdentifier
252
- variables:
253
- - name: asda
254
- type: String
255
- value: asddad
256
- manifests:
257
- - manifest:
258
- identifier: manifestEnv
259
- type: Values
260
- spec:
261
- store:
262
- type: Git
263
- spec:
264
- connectorRef: <+input>
265
- gitFetchType: Branch
266
- paths:
267
- - file1
268
- repoName: <+input>
269
- branch: master
270
- configFiles:
271
- - configFile:
272
- identifier: configFileEnv
273
- spec:
274
- store:
275
- type: Harness
276
- spec:
277
- files:
278
- - account:/Add-ons/svcOverrideTest
279
- secretFiles: []
280
- \"\"\")
281
- ```
240
+ ## Example Usage
282
241
 
283
- ### Org Level
284
- ```python
285
- import pulumi
286
- import pulumi_harness as harness
287
-
288
- example = harness.platform.EnvironmentServiceOverrides("example",
289
- org_id="orgIdentifier",
290
- env_id="environmentIdentifier",
291
- service_id="serviceIdentifier",
292
- yaml=\"\"\"serviceOverrides:
293
- environmentRef: environmentIdentifier
294
- serviceRef: serviceIdentifier
295
- variables:
296
- - name: asda
297
- type: String
298
- value: asddad
299
- manifests:
300
- - manifest:
301
- identifier: manifestEnv
302
- type: Values
303
- spec:
304
- store:
305
- type: Git
306
- spec:
307
- connectorRef: <+input>
308
- gitFetchType: Branch
309
- paths:
310
- - file1
311
- repoName: <+input>
312
- branch: master
313
- configFiles:
314
- - configFile:
315
- identifier: configFileEnv
316
- spec:
317
- store:
318
- type: Harness
319
- spec:
320
- files:
321
- - account:/Add-ons/svcOverrideTest
322
- secretFiles: []
323
- \"\"\")
324
- ```
325
-
326
- ### Project Level
327
242
  ```python
328
243
  import pulumi
329
244
  import pulumi_harness as harness
@@ -369,6 +284,8 @@ class EnvironmentServiceOverrides(pulumi.CustomResource):
369
284
 
370
285
  ## Import
371
286
 
287
+ The `pulumi import` command can be used, for example:
288
+
372
289
  Import list of account level service overrides using the env id associated with them
373
290
 
374
291
  ```sh
@@ -389,11 +306,11 @@ class EnvironmentServiceOverrides(pulumi.CustomResource):
389
306
 
390
307
  :param str resource_name: The name of the resource.
391
308
  :param pulumi.ResourceOptions opts: Options for the resource.
392
- :param pulumi.Input[_builtins.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}).
309
+ :param pulumi.Input[_builtins.str] env_id: The env ID to which the overrides associated.
393
310
  :param pulumi.Input[_builtins.str] identifier: identifier of the service overrides.
394
311
  :param pulumi.Input[_builtins.str] org_id: Unique identifier of the organization.
395
312
  :param pulumi.Input[_builtins.str] project_id: Unique identifier of the project.
396
- :param pulumi.Input[_builtins.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}).
313
+ :param pulumi.Input[_builtins.str] service_id: The service ID to which the overrides applies.
397
314
  :param pulumi.Input[_builtins.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.
398
315
  """
399
316
  ...
@@ -404,94 +321,9 @@ class EnvironmentServiceOverrides(pulumi.CustomResource):
404
321
  opts: Optional[pulumi.ResourceOptions] = None):
405
322
  """
406
323
  Resource for creating a Harness environment service overrides.
407
- ## Example to create Environment Service Override at different levels (Org, Project, Account)
408
324
 
409
- ### Account Level
410
- ```python
411
- import pulumi
412
- import pulumi_harness as harness
413
-
414
- example = harness.platform.EnvironmentServiceOverrides("example",
415
- env_id="environmentIdentifier",
416
- service_id="serviceIdentifier",
417
- yaml=\"\"\"serviceOverrides:
418
- environmentRef: environmentIdentifier
419
- serviceRef: serviceIdentifier
420
- variables:
421
- - name: asda
422
- type: String
423
- value: asddad
424
- manifests:
425
- - manifest:
426
- identifier: manifestEnv
427
- type: Values
428
- spec:
429
- store:
430
- type: Git
431
- spec:
432
- connectorRef: <+input>
433
- gitFetchType: Branch
434
- paths:
435
- - file1
436
- repoName: <+input>
437
- branch: master
438
- configFiles:
439
- - configFile:
440
- identifier: configFileEnv
441
- spec:
442
- store:
443
- type: Harness
444
- spec:
445
- files:
446
- - account:/Add-ons/svcOverrideTest
447
- secretFiles: []
448
- \"\"\")
449
- ```
325
+ ## Example Usage
450
326
 
451
- ### Org Level
452
- ```python
453
- import pulumi
454
- import pulumi_harness as harness
455
-
456
- example = harness.platform.EnvironmentServiceOverrides("example",
457
- org_id="orgIdentifier",
458
- env_id="environmentIdentifier",
459
- service_id="serviceIdentifier",
460
- yaml=\"\"\"serviceOverrides:
461
- environmentRef: environmentIdentifier
462
- serviceRef: serviceIdentifier
463
- variables:
464
- - name: asda
465
- type: String
466
- value: asddad
467
- manifests:
468
- - manifest:
469
- identifier: manifestEnv
470
- type: Values
471
- spec:
472
- store:
473
- type: Git
474
- spec:
475
- connectorRef: <+input>
476
- gitFetchType: Branch
477
- paths:
478
- - file1
479
- repoName: <+input>
480
- branch: master
481
- configFiles:
482
- - configFile:
483
- identifier: configFileEnv
484
- spec:
485
- store:
486
- type: Harness
487
- spec:
488
- files:
489
- - account:/Add-ons/svcOverrideTest
490
- secretFiles: []
491
- \"\"\")
492
- ```
493
-
494
- ### Project Level
495
327
  ```python
496
328
  import pulumi
497
329
  import pulumi_harness as harness
@@ -537,6 +369,8 @@ class EnvironmentServiceOverrides(pulumi.CustomResource):
537
369
 
538
370
  ## Import
539
371
 
372
+ The `pulumi import` command can be used, for example:
373
+
540
374
  Import list of account level service overrides using the env id associated with them
541
375
 
542
376
  ```sh
@@ -620,11 +454,11 @@ class EnvironmentServiceOverrides(pulumi.CustomResource):
620
454
  :param str resource_name: The unique name of the resulting resource.
621
455
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
622
456
  :param pulumi.ResourceOptions opts: Options for the resource.
623
- :param pulumi.Input[_builtins.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}).
457
+ :param pulumi.Input[_builtins.str] env_id: The env ID to which the overrides associated.
624
458
  :param pulumi.Input[_builtins.str] identifier: identifier of the service overrides.
625
459
  :param pulumi.Input[_builtins.str] org_id: Unique identifier of the organization.
626
460
  :param pulumi.Input[_builtins.str] project_id: Unique identifier of the project.
627
- :param pulumi.Input[_builtins.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}).
461
+ :param pulumi.Input[_builtins.str] service_id: The service ID to which the overrides applies.
628
462
  :param pulumi.Input[_builtins.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.
629
463
  """
630
464
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -643,7 +477,7 @@ class EnvironmentServiceOverrides(pulumi.CustomResource):
643
477
  @pulumi.getter(name="envId")
644
478
  def env_id(self) -> pulumi.Output[_builtins.str]:
645
479
  """
646
- 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}).
480
+ The env ID to which the overrides associated.
647
481
  """
648
482
  return pulumi.get(self, "env_id")
649
483
 
@@ -675,7 +509,7 @@ class EnvironmentServiceOverrides(pulumi.CustomResource):
675
509
  @pulumi.getter(name="serviceId")
676
510
  def service_id(self) -> pulumi.Output[_builtins.str]:
677
511
  """
678
- 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}).
512
+ The service ID to which the overrides applies.
679
513
  """
680
514
  return pulumi.get(self, "service_id")
681
515
 
@@ -351,11 +351,11 @@ class FeatureFlagTargetGroup(pulumi.CustomResource):
351
351
  account_id="MY_ACCOUNT_ID",
352
352
  includeds=["target_id_1"],
353
353
  excludeds=["target_id_2"],
354
- rules=[{
354
+ rules={
355
355
  "attribute": "MY_ATTRIBUTE",
356
- "op": "equal",
357
- "values": ["MY_VALUE"],
358
- }])
356
+ "operator": "equal",
357
+ "value": "MY_VALUE",
358
+ })
359
359
  ```
360
360
 
361
361
  :param str resource_name: The name of the resource.
@@ -394,11 +394,11 @@ class FeatureFlagTargetGroup(pulumi.CustomResource):
394
394
  account_id="MY_ACCOUNT_ID",
395
395
  includeds=["target_id_1"],
396
396
  excludeds=["target_id_2"],
397
- rules=[{
397
+ rules={
398
398
  "attribute": "MY_ATTRIBUTE",
399
- "op": "equal",
400
- "values": ["MY_VALUE"],
401
- }])
399
+ "operator": "equal",
400
+ "value": "MY_VALUE",
401
+ })
402
402
  ```
403
403
 
404
404
  :param str resource_name: The name of the resource.
@@ -35,7 +35,7 @@ class FileStoreFileArgs:
35
35
  """
36
36
  The set of arguments for constructing a FileStoreFile resource.
37
37
  :param pulumi.Input[_builtins.str] identifier: Unique identifier of the resource.
38
- :param pulumi.Input[_builtins.str] parent_identifier: File parent identifier on Harness File Store. If the folder is at the root level, the parent_identifier will be `Root`.
38
+ :param pulumi.Input[_builtins.str] parent_identifier: File parent identifier on Harness File Store
39
39
  :param pulumi.Input[_builtins.str] content: File content stored on Harness File Store
40
40
  :param pulumi.Input[_builtins.str] description: Description of the resource.
41
41
  :param pulumi.Input[_builtins.str] file_content_path: File content path to be upladed on Harness File Store
@@ -83,7 +83,7 @@ class FileStoreFileArgs:
83
83
  @pulumi.getter(name="parentIdentifier")
84
84
  def parent_identifier(self) -> pulumi.Input[_builtins.str]:
85
85
  """
86
- File parent identifier on Harness File Store. If the folder is at the root level, the parent_identifier will be `Root`.
86
+ File parent identifier on Harness File Store
87
87
  """
88
88
  return pulumi.get(self, "parent_identifier")
89
89
 
@@ -231,7 +231,7 @@ class _FileStoreFileState:
231
231
  :param pulumi.Input[_builtins.str] mime_type: File mime type
232
232
  :param pulumi.Input[_builtins.str] name: Name of the resource.
233
233
  :param pulumi.Input[_builtins.str] org_id: Unique identifier of the organization.
234
- :param pulumi.Input[_builtins.str] parent_identifier: File parent identifier on Harness File Store. If the folder is at the root level, the parent_identifier will be `Root`.
234
+ :param pulumi.Input[_builtins.str] parent_identifier: File parent identifier on Harness File Store
235
235
  :param pulumi.Input[_builtins.str] path: Harness File Store file path
236
236
  :param pulumi.Input[_builtins.str] project_id: Unique identifier of the project.
237
237
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: Tags to associate with the resource.
@@ -403,7 +403,7 @@ class _FileStoreFileState:
403
403
  @pulumi.getter(name="parentIdentifier")
404
404
  def parent_identifier(self) -> Optional[pulumi.Input[_builtins.str]]:
405
405
  """
406
- File parent identifier on Harness File Store. If the folder is at the root level, the parent_identifier will be `Root`.
406
+ File parent identifier on Harness File Store
407
407
  """
408
408
  return pulumi.get(self, "parent_identifier")
409
409
 
@@ -494,6 +494,8 @@ class FileStoreFile(pulumi.CustomResource):
494
494
 
495
495
  ## Import
496
496
 
497
+ The `pulumi import` command can be used, for example:
498
+
497
499
  Import account level file
498
500
 
499
501
  ```sh
@@ -522,7 +524,7 @@ class FileStoreFile(pulumi.CustomResource):
522
524
  :param pulumi.Input[_builtins.str] mime_type: File mime type
523
525
  :param pulumi.Input[_builtins.str] name: Name of the resource.
524
526
  :param pulumi.Input[_builtins.str] org_id: Unique identifier of the organization.
525
- :param pulumi.Input[_builtins.str] parent_identifier: File parent identifier on Harness File Store. If the folder is at the root level, the parent_identifier will be `Root`.
527
+ :param pulumi.Input[_builtins.str] parent_identifier: File parent identifier on Harness File Store
526
528
  :param pulumi.Input[_builtins.str] project_id: Unique identifier of the project.
527
529
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: Tags to associate with the resource.
528
530
  """
@@ -560,6 +562,8 @@ class FileStoreFile(pulumi.CustomResource):
560
562
 
561
563
  ## Import
562
564
 
565
+ The `pulumi import` command can be used, for example:
566
+
563
567
  Import account level file
564
568
 
565
569
  ```sh
@@ -675,7 +679,7 @@ class FileStoreFile(pulumi.CustomResource):
675
679
  :param pulumi.Input[_builtins.str] mime_type: File mime type
676
680
  :param pulumi.Input[_builtins.str] name: Name of the resource.
677
681
  :param pulumi.Input[_builtins.str] org_id: Unique identifier of the organization.
678
- :param pulumi.Input[_builtins.str] parent_identifier: File parent identifier on Harness File Store. If the folder is at the root level, the parent_identifier will be `Root`.
682
+ :param pulumi.Input[_builtins.str] parent_identifier: File parent identifier on Harness File Store
679
683
  :param pulumi.Input[_builtins.str] path: Harness File Store file path
680
684
  :param pulumi.Input[_builtins.str] project_id: Unique identifier of the project.
681
685
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: Tags to associate with the resource.
@@ -793,7 +797,7 @@ class FileStoreFile(pulumi.CustomResource):
793
797
  @pulumi.getter(name="parentIdentifier")
794
798
  def parent_identifier(self) -> pulumi.Output[_builtins.str]:
795
799
  """
796
- File parent identifier on Harness File Store. If the folder is at the root level, the parent_identifier will be `Root`.
800
+ File parent identifier on Harness File Store
797
801
  """
798
802
  return pulumi.get(self, "parent_identifier")
799
803