pulumi-harness 0.8.0a1755712204__py3-none-any.whl → 0.9.0a1755842147__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 (223) hide show
  1. pulumi_harness/__init__.py +67 -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/_inputs.py +537 -469
  40. pulumi_harness/platform/app_dynamics_connector.py +4 -0
  41. pulumi_harness/platform/artifactory_connector.py +4 -0
  42. pulumi_harness/platform/aws_cc_connector.py +4 -0
  43. pulumi_harness/platform/aws_connector.py +11 -7
  44. pulumi_harness/platform/aws_kms_connector.py +70 -20
  45. pulumi_harness/platform/aws_secret_manager_connector.py +13 -9
  46. pulumi_harness/platform/azure_cloud_cost_connector.py +51 -0
  47. pulumi_harness/platform/azure_cloud_provider_connector.py +4 -0
  48. pulumi_harness/platform/azure_key_vault_connector.py +8 -0
  49. pulumi_harness/platform/bitbucket_connector.py +4 -0
  50. pulumi_harness/platform/connector_azure_artifacts.py +4 -2
  51. pulumi_harness/platform/connector_azure_repo.py +11 -16
  52. pulumi_harness/platform/connector_custom_secret_manager.py +51 -156
  53. pulumi_harness/platform/connector_customhealthsource.py +4 -0
  54. pulumi_harness/platform/connector_gcp_kms.py +4 -0
  55. pulumi_harness/platform/connector_jdbc.py +4 -0
  56. pulumi_harness/platform/connector_pdc.py +13 -13
  57. pulumi_harness/platform/connector_rancher.py +4 -0
  58. pulumi_harness/platform/dashboard_folders.py +2 -2
  59. pulumi_harness/platform/dashboards.py +10 -14
  60. pulumi_harness/platform/datadog_connector.py +4 -0
  61. pulumi_harness/platform/db_instance.py +4 -0
  62. pulumi_harness/platform/db_schema.py +25 -21
  63. pulumi_harness/platform/docker_connector.py +4 -4
  64. pulumi_harness/platform/dynatrace_connector.py +4 -0
  65. pulumi_harness/platform/elasticsearch_connector.py +19 -15
  66. pulumi_harness/platform/environment.py +25 -530
  67. pulumi_harness/platform/environment_clusters_mapping.py +8 -0
  68. pulumi_harness/platform/environment_group.py +13 -100
  69. pulumi_harness/platform/environment_service_overrides.py +20 -186
  70. pulumi_harness/platform/feature_flag_target_group.py +8 -8
  71. pulumi_harness/platform/file_store_file.py +11 -7
  72. pulumi_harness/platform/file_store_folder.py +11 -7
  73. pulumi_harness/platform/filters.py +8 -0
  74. pulumi_harness/platform/gcp_cloud_cost_connector.py +4 -0
  75. pulumi_harness/platform/gcp_connector.py +4 -0
  76. pulumi_harness/platform/gcp_secret_manager_connector.py +6 -92
  77. pulumi_harness/platform/get_api_key.py +8 -38
  78. pulumi_harness/platform/get_aws_kms_connector.py +16 -1
  79. pulumi_harness/platform/get_aws_secret_manager_connector.py +7 -3
  80. pulumi_harness/platform/get_azure_cloud_cost_connector.py +12 -1
  81. pulumi_harness/platform/get_connector_azure_repo.py +53 -2
  82. pulumi_harness/platform/get_connector_custom_secret_manager.py +28 -32
  83. pulumi_harness/platform/get_connector_pdc.py +3 -3
  84. pulumi_harness/platform/get_current_account.py +2 -20
  85. pulumi_harness/platform/get_dashboard_folders.py +16 -5
  86. pulumi_harness/platform/get_dashboards.py +15 -7
  87. pulumi_harness/platform/get_db_instance.py +5 -0
  88. pulumi_harness/platform/get_db_schema.py +12 -15
  89. pulumi_harness/platform/get_environment.py +5 -0
  90. pulumi_harness/platform/get_environment_list.py +12 -58
  91. pulumi_harness/platform/get_environment_service_overrides.py +6 -6
  92. pulumi_harness/platform/get_filters.py +4 -0
  93. pulumi_harness/platform/get_gcp_secret_manager_connector.py +4 -0
  94. pulumi_harness/platform/get_github_connector.py +3 -0
  95. pulumi_harness/platform/get_gitops_applications.py +8 -0
  96. pulumi_harness/platform/get_gitops_filters.py +25 -10
  97. pulumi_harness/platform/get_gitx_webhook.py +3 -3
  98. pulumi_harness/platform/get_har_registry.py +46 -10
  99. pulumi_harness/platform/get_iacm_default_pipeline.py +24 -0
  100. pulumi_harness/platform/get_infra_variable_set.py +34 -25
  101. pulumi_harness/platform/get_infrastructure.py +5 -0
  102. pulumi_harness/platform/get_manual_freeze.py +0 -24
  103. pulumi_harness/platform/get_monitored_service.py +22 -0
  104. pulumi_harness/platform/get_organization.py +4 -0
  105. pulumi_harness/platform/get_overrides.py +66 -2
  106. pulumi_harness/platform/get_pagerduty_connector.py +4 -0
  107. pulumi_harness/platform/get_pipeline_list.py +18 -63
  108. pulumi_harness/platform/get_project.py +4 -0
  109. pulumi_harness/platform/get_project_list.py +18 -63
  110. pulumi_harness/platform/get_provider.py +11 -2
  111. pulumi_harness/platform/get_resource_group.py +4 -0
  112. pulumi_harness/platform/get_role_assignments.py +6 -2
  113. pulumi_harness/platform/get_roles.py +4 -0
  114. pulumi_harness/platform/get_secret_file.py +4 -0
  115. pulumi_harness/platform/get_secret_sshkey.py +4 -0
  116. pulumi_harness/platform/get_service.py +5 -0
  117. pulumi_harness/platform/get_service_account.py +4 -0
  118. pulumi_harness/platform/get_service_list.py +22 -58
  119. pulumi_harness/platform/get_service_overrides_v2.py +42 -0
  120. pulumi_harness/platform/get_slo.py +22 -0
  121. pulumi_harness/platform/get_token.py +2 -0
  122. pulumi_harness/platform/get_user.py +4 -0
  123. pulumi_harness/platform/get_usergroup.py +4 -0
  124. pulumi_harness/platform/get_variables.py +4 -0
  125. pulumi_harness/platform/get_vault_connector.py +5 -1
  126. pulumi_harness/platform/get_workspace.py +8 -3
  127. pulumi_harness/platform/git_connector.py +4 -0
  128. pulumi_harness/platform/git_ops_agent.py +4 -0
  129. pulumi_harness/platform/git_ops_applications.py +4 -0
  130. pulumi_harness/platform/git_ops_cluster.py +51 -0
  131. pulumi_harness/platform/git_ops_gnupg.py +4 -0
  132. pulumi_harness/platform/git_ops_repo_cert.py +4 -0
  133. pulumi_harness/platform/git_ops_repo_cred.py +4 -0
  134. pulumi_harness/platform/git_ops_repository.py +4 -0
  135. pulumi_harness/platform/github_connector.py +11 -7
  136. pulumi_harness/platform/gitlab_connector.py +4 -0
  137. pulumi_harness/platform/gitops_app_project.py +4 -0
  138. pulumi_harness/platform/gitops_app_project_mapping.py +4 -0
  139. pulumi_harness/platform/gitops_applicationset.py +96 -0
  140. pulumi_harness/platform/gitops_filters.py +51 -179
  141. pulumi_harness/platform/gitx_webhook.py +4 -0
  142. pulumi_harness/platform/har_registry.py +42 -43
  143. pulumi_harness/platform/helm_connector.py +4 -0
  144. pulumi_harness/platform/iacm_default_pipeline.py +28 -0
  145. pulumi_harness/platform/infra_module.py +6 -2
  146. pulumi_harness/platform/infra_variable_set.py +38 -22
  147. pulumi_harness/platform/infrastructure.py +18 -240
  148. pulumi_harness/platform/input_set.py +4 -0
  149. pulumi_harness/platform/jenkins_connector.py +8 -0
  150. pulumi_harness/platform/jira_connector.py +4 -2
  151. pulumi_harness/platform/kubernetes_cloud_cost_connector.py +35 -11
  152. pulumi_harness/platform/kubernetes_connector.py +4 -0
  153. pulumi_harness/platform/manual_freeze.py +6 -154
  154. pulumi_harness/platform/monitored_service.py +16 -12
  155. pulumi_harness/platform/newrelic_connector.py +4 -0
  156. pulumi_harness/platform/nexus_connector.py +4 -4
  157. pulumi_harness/platform/notification_rule.py +4 -0
  158. pulumi_harness/platform/oci_helm_connector.py +4 -0
  159. pulumi_harness/platform/organization.py +8 -0
  160. pulumi_harness/platform/outputs.py +481 -219
  161. pulumi_harness/platform/overrides.py +48 -2
  162. pulumi_harness/platform/pagerduty_connector.py +8 -0
  163. pulumi_harness/platform/pipeline.py +18 -2
  164. pulumi_harness/platform/pipeline_filters.py +4 -0
  165. pulumi_harness/platform/policy.py +6 -26
  166. pulumi_harness/platform/policy_set.py +4 -0
  167. pulumi_harness/platform/project.py +8 -0
  168. pulumi_harness/platform/prometheus_connector.py +4 -0
  169. pulumi_harness/platform/provider.py +4 -2
  170. pulumi_harness/platform/repo.py +40 -0
  171. pulumi_harness/platform/resource_group.py +15 -7
  172. pulumi_harness/platform/role_assignments.py +20 -16
  173. pulumi_harness/platform/roles.py +8 -0
  174. pulumi_harness/platform/secret_file.py +8 -0
  175. pulumi_harness/platform/secret_sshkey.py +6 -2
  176. pulumi_harness/platform/secret_text.py +78 -0
  177. pulumi_harness/platform/service.py +13 -494
  178. pulumi_harness/platform/service_account.py +8 -0
  179. pulumi_harness/platform/service_now_connector.py +4 -2
  180. pulumi_harness/platform/service_overrides_v2.py +4 -204
  181. pulumi_harness/platform/slo.py +12 -18
  182. pulumi_harness/platform/splunk_connector.py +4 -0
  183. pulumi_harness/platform/spot_connector.py +4 -0
  184. pulumi_harness/platform/sumologic_connector.py +4 -0
  185. pulumi_harness/platform/tas_connector.py +4 -0
  186. pulumi_harness/platform/template.py +25 -21
  187. pulumi_harness/platform/template_filters.py +4 -0
  188. pulumi_harness/platform/terraform_cloud_connector.py +4 -0
  189. pulumi_harness/platform/token.py +6 -2
  190. pulumi_harness/platform/triggers.py +8 -0
  191. pulumi_harness/platform/user.py +13 -9
  192. pulumi_harness/platform/usergroup.py +71 -7
  193. pulumi_harness/platform/variables.py +8 -0
  194. pulumi_harness/platform/vault_connector.py +15 -7
  195. pulumi_harness/platform/workspace.py +19 -7
  196. pulumi_harness/platform_api_key.py +6 -66
  197. pulumi_harness/platform_ccm_filters.py +11 -7
  198. pulumi_harness/pulumi-plugin.json +1 -1
  199. pulumi_harness/service/__init__.py +4 -0
  200. pulumi_harness/service/_inputs.py +1729 -0
  201. pulumi_harness/service/ami.py +4 -0
  202. pulumi_harness/service/codedeploy.py +4 -0
  203. pulumi_harness/service/discovery_agent.py +1211 -0
  204. pulumi_harness/service/discovery_setting.py +384 -0
  205. pulumi_harness/service/ecs.py +4 -0
  206. pulumi_harness/service/get_discovery_agent.py +443 -0
  207. pulumi_harness/service/get_discovery_setting.py +199 -0
  208. pulumi_harness/service/helm.py +4 -0
  209. pulumi_harness/service/kubernetes.py +4 -0
  210. pulumi_harness/service/lambda_.py +4 -0
  211. pulumi_harness/service/outputs.py +2367 -117
  212. pulumi_harness/service/ssh.py +4 -0
  213. pulumi_harness/service/tanzu.py +4 -0
  214. pulumi_harness/service/winrm.py +4 -0
  215. pulumi_harness/ssh_credential.py +4 -0
  216. pulumi_harness/user.py +4 -0
  217. pulumi_harness/user_group.py +4 -0
  218. pulumi_harness/yaml_config.py +4 -0
  219. {pulumi_harness-0.8.0a1755712204.dist-info → pulumi_harness-0.9.0a1755842147.dist-info}/METADATA +1 -1
  220. pulumi_harness-0.9.0a1755842147.dist-info/RECORD +355 -0
  221. pulumi_harness-0.8.0a1755712204.dist-info/RECORD +0 -337
  222. {pulumi_harness-0.8.0a1755712204.dist-info → pulumi_harness-0.9.0a1755842147.dist-info}/WHEEL +0 -0
  223. {pulumi_harness-0.8.0a1755712204.dist-info → pulumi_harness-0.9.0a1755842147.dist-info}/top_level.txt +0 -0
@@ -53,7 +53,7 @@ class GetEnvironmentServiceOverridesResult:
53
53
  @pulumi.getter(name="envId")
54
54
  def env_id(self) -> _builtins.str:
55
55
  """
56
- 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}).
56
+ The env ID to which the overrides associated.
57
57
  """
58
58
  return pulumi.get(self, "env_id")
59
59
 
@@ -93,7 +93,7 @@ class GetEnvironmentServiceOverridesResult:
93
93
  @pulumi.getter(name="serviceId")
94
94
  def service_id(self) -> Optional[_builtins.str]:
95
95
  """
96
- 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}).
96
+ The service ID to which the overrides applies.
97
97
  """
98
98
  return pulumi.get(self, "service_id")
99
99
 
@@ -143,11 +143,11 @@ def get_environment_service_overrides(env_id: Optional[_builtins.str] = None,
143
143
  ```
144
144
 
145
145
 
146
- :param _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}).
146
+ :param _builtins.str env_id: The env ID to which the overrides associated.
147
147
  :param _builtins.str identifier: identifier of the service overrides.
148
148
  :param _builtins.str org_id: Unique identifier of the organization.
149
149
  :param _builtins.str project_id: Unique identifier of the project.
150
- :param _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}).
150
+ :param _builtins.str service_id: The service ID to which the overrides applies.
151
151
  """
152
152
  __args__ = dict()
153
153
  __args__['envId'] = env_id
@@ -188,11 +188,11 @@ def get_environment_service_overrides_output(env_id: Optional[pulumi.Input[_buil
188
188
  ```
189
189
 
190
190
 
191
- :param _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}).
191
+ :param _builtins.str env_id: The env ID to which the overrides associated.
192
192
  :param _builtins.str identifier: identifier of the service overrides.
193
193
  :param _builtins.str org_id: Unique identifier of the organization.
194
194
  :param _builtins.str project_id: Unique identifier of the project.
195
- :param _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}).
195
+ :param _builtins.str service_id: The service ID to which the overrides applies.
196
196
  """
197
197
  __args__ = dict()
198
198
  __args__['envId'] = env_id
@@ -140,6 +140,8 @@ def get_filters(identifier: Optional[_builtins.str] = None,
140
140
  type: Optional[_builtins.str] = None,
141
141
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFiltersResult:
142
142
  """
143
+ Data source for retrieving a Harness Filter. This data source allows you to fetch filters of the following types: {Connector, DelegateProfile, Delegate, EnvironmentGroup, FileStore, Environment}
144
+
143
145
  ## Example Usage
144
146
 
145
147
  ```python
@@ -181,6 +183,8 @@ def get_filters_output(identifier: Optional[pulumi.Input[_builtins.str]] = None,
181
183
  type: Optional[pulumi.Input[_builtins.str]] = None,
182
184
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFiltersResult]:
183
185
  """
186
+ Data source for retrieving a Harness Filter. This data source allows you to fetch filters of the following types: {Connector, DelegateProfile, Delegate, EnvironmentGroup, FileStore, Environment}
187
+
184
188
  ## Example Usage
185
189
 
186
190
  ```python
@@ -200,6 +200,8 @@ def get_gcp_secret_manager_connector(identifier: Optional[_builtins.str] = None,
200
200
  project_id: Optional[_builtins.str] = None,
201
201
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetGcpSecretManagerConnectorResult:
202
202
  """
203
+ Datasource for looking up GCP Secret Manager connector.
204
+
203
205
  ## Example Usage
204
206
 
205
207
  ```python
@@ -243,6 +245,8 @@ def get_gcp_secret_manager_connector_output(identifier: Optional[pulumi.Input[_b
243
245
  project_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
244
246
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetGcpSecretManagerConnectorResult]:
245
247
  """
248
+ Datasource for looking up GCP Secret Manager connector.
249
+
246
250
  ## Example Usage
247
251
 
248
252
  ```python
@@ -114,6 +114,9 @@ class GetGithubConnectorResult:
114
114
  @_builtins.property
115
115
  @pulumi.getter(name="executeOnDelegate")
116
116
  def execute_on_delegate(self) -> _builtins.bool:
117
+ """
118
+ Execute on delegate or not.
119
+ """
117
120
  return pulumi.get(self, "execute_on_delegate")
118
121
 
119
122
  @_builtins.property
@@ -90,6 +90,9 @@ class GetGitopsApplicationsResult:
90
90
  @pulumi.getter(name="accountId")
91
91
  @_utilities.deprecated("""This field is deprecated and will be removed in a future release.""")
92
92
  def account_id(self) -> _builtins.str:
93
+ """
94
+ Account identifier of the GitOps application.
95
+ """
93
96
  return pulumi.get(self, "account_id")
94
97
 
95
98
  @_builtins.property
@@ -192,6 +195,9 @@ class GetGitopsApplicationsResult:
192
195
  @_builtins.property
193
196
  @pulumi.getter(name="repoIds")
194
197
  def repo_ids(self) -> Sequence[_builtins.str]:
198
+ """
199
+ List of repository identifiers of the GitOps for Multi-Source application. Not required if skipRepoValidation is set to true.
200
+ """
195
201
  return pulumi.get(self, "repo_ids")
196
202
 
197
203
  @_builtins.property
@@ -273,6 +279,7 @@ def get_gitops_applications(account_id: Optional[_builtins.str] = None,
273
279
  Datasource for fetching a Harness GitOps Application.
274
280
 
275
281
 
282
+ :param _builtins.str account_id: Account identifier of the GitOps application.
276
283
  :param _builtins.str agent_id: Agent identifier of the GitOps application.
277
284
  :param _builtins.str identifier: Identifier of the GitOps application.
278
285
  :param _builtins.str name: Name of the GitOps application.
@@ -320,6 +327,7 @@ def get_gitops_applications_output(account_id: Optional[pulumi.Input[Optional[_b
320
327
  Datasource for fetching a Harness GitOps Application.
321
328
 
322
329
 
330
+ :param _builtins.str account_id: Account identifier of the GitOps application.
323
331
  :param _builtins.str agent_id: Agent identifier of the GitOps application.
324
332
  :param _builtins.str identifier: Identifier of the GitOps application.
325
333
  :param _builtins.str name: Name of the GitOps application.
@@ -56,13 +56,16 @@ class GetGitopsFiltersResult:
56
56
  @pulumi.getter(name="filterProperties")
57
57
  def filter_properties(self) -> _builtins.str:
58
58
  """
59
- Properties of the filter entity defined in Harness as a JSON string. This contains filter criteria such as health status, sync status, agent identifiers, clusters, namespaces, and repositories.
59
+ Properties of the filters entity defined in Harness as a JSON string. All values should be arrays of strings. Example: jsonencode({"healthStatus": ["Healthy", "Degraded"], "syncStatus": ["Synced"]})
60
60
  """
61
61
  return pulumi.get(self, "filter_properties")
62
62
 
63
63
  @_builtins.property
64
64
  @pulumi.getter(name="filterVisibility")
65
65
  def filter_visibility(self) -> _builtins.str:
66
+ """
67
+ This indicates visibility of filters, by default it is Everyone.
68
+ """
66
69
  return pulumi.get(self, "filter_visibility")
67
70
 
68
71
  @_builtins.property
@@ -76,29 +79,41 @@ class GetGitopsFiltersResult:
76
79
  @_builtins.property
77
80
  @pulumi.getter
78
81
  def identifier(self) -> _builtins.str:
82
+ """
83
+ Unique identifier of the resource.
84
+ """
79
85
  return pulumi.get(self, "identifier")
80
86
 
81
87
  @_builtins.property
82
88
  @pulumi.getter
83
89
  def name(self) -> _builtins.str:
84
90
  """
85
- Name of the GitOps filter.
91
+ Name of the Filter.
86
92
  """
87
93
  return pulumi.get(self, "name")
88
94
 
89
95
  @_builtins.property
90
96
  @pulumi.getter(name="orgId")
91
97
  def org_id(self) -> _builtins.str:
98
+ """
99
+ Organization Identifier for the Entity.
100
+ """
92
101
  return pulumi.get(self, "org_id")
93
102
 
94
103
  @_builtins.property
95
104
  @pulumi.getter(name="projectId")
96
105
  def project_id(self) -> _builtins.str:
106
+ """
107
+ Project Identifier for the Entity.
108
+ """
97
109
  return pulumi.get(self, "project_id")
98
110
 
99
111
  @_builtins.property
100
112
  @pulumi.getter
101
113
  def type(self) -> _builtins.str:
114
+ """
115
+ Type of filter.
116
+ """
102
117
  return pulumi.get(self, "type")
103
118
 
104
119
 
@@ -127,10 +142,10 @@ def get_gitops_filters(identifier: Optional[_builtins.str] = None,
127
142
  Data source for retrieving a Harness GitOps Filter.
128
143
 
129
144
 
130
- :param _builtins.str identifier: Unique identifier of the GitOps filter to retrieve.
131
- :param _builtins.str org_id: Organization identifier for the GitOps filter.
132
- :param _builtins.str project_id: Project identifier for the GitOps filter.
133
- :param _builtins.str type: Type of GitOps filter. Currently, only "APPLICATION" is supported.
145
+ :param _builtins.str identifier: Unique identifier of the resource.
146
+ :param _builtins.str org_id: Organization Identifier for the Entity.
147
+ :param _builtins.str project_id: Project Identifier for the Entity.
148
+ :param _builtins.str type: Type of filter.
134
149
  """
135
150
  __args__ = dict()
136
151
  __args__['identifier'] = identifier
@@ -158,10 +173,10 @@ def get_gitops_filters_output(identifier: Optional[pulumi.Input[_builtins.str]]
158
173
  Data source for retrieving a Harness GitOps Filter.
159
174
 
160
175
 
161
- :param _builtins.str identifier: Unique identifier of the GitOps filter to retrieve.
162
- :param _builtins.str org_id: Organization identifier for the GitOps filter.
163
- :param _builtins.str project_id: Project identifier for the GitOps filter.
164
- :param _builtins.str type: Type of GitOps filter. Currently, only "APPLICATION" is supported.
176
+ :param _builtins.str identifier: Unique identifier of the resource.
177
+ :param _builtins.str org_id: Organization Identifier for the Entity.
178
+ :param _builtins.str project_id: Project Identifier for the Entity.
179
+ :param _builtins.str type: Type of filter.
165
180
  """
166
181
  __args__ = dict()
167
182
  __args__['identifier'] = identifier
@@ -101,7 +101,7 @@ class GetGitxWebhookResult:
101
101
  @pulumi.getter
102
102
  def tags(self) -> Optional[Sequence[_builtins.str]]:
103
103
  """
104
- Tags to associate with the resource. These should match the tag value passed in the YAML; if this parameter is null or not passed, the tags specified in YAML should also be null.
104
+ Tags to associate with the resource.
105
105
  """
106
106
  return pulumi.get(self, "tags")
107
107
 
@@ -137,7 +137,7 @@ def get_gitx_webhook(description: Optional[_builtins.str] = None,
137
137
  :param _builtins.str name: Name of the resource.
138
138
  :param _builtins.str org_id: Unique identifier of the organization.
139
139
  :param _builtins.str project_id: Unique identifier of the project.
140
- :param Sequence[_builtins.str] tags: Tags to associate with the resource. These should match the tag value passed in the YAML; if this parameter is null or not passed, the tags specified in YAML should also be null.
140
+ :param Sequence[_builtins.str] tags: Tags to associate with the resource.
141
141
  """
142
142
  __args__ = dict()
143
143
  __args__['description'] = description
@@ -173,7 +173,7 @@ def get_gitx_webhook_output(description: Optional[pulumi.Input[Optional[_builtin
173
173
  :param _builtins.str name: Name of the resource.
174
174
  :param _builtins.str org_id: Unique identifier of the organization.
175
175
  :param _builtins.str project_id: Unique identifier of the project.
176
- :param Sequence[_builtins.str] tags: Tags to associate with the resource. These should match the tag value passed in the YAML; if this parameter is null or not passed, the tags specified in YAML should also be null.
176
+ :param Sequence[_builtins.str] tags: Tags to associate with the resource.
177
177
  """
178
178
  __args__ = dict()
179
179
  __args__['description'] = description
@@ -66,26 +66,41 @@ class GetHarRegistryResult:
66
66
  @_builtins.property
67
67
  @pulumi.getter(name="allowedPatterns")
68
68
  def allowed_patterns(self) -> Optional[Sequence[_builtins.str]]:
69
+ """
70
+ Allowed artifact patterns
71
+ """
69
72
  return pulumi.get(self, "allowed_patterns")
70
73
 
71
74
  @_builtins.property
72
75
  @pulumi.getter(name="blockedPatterns")
73
76
  def blocked_patterns(self) -> Optional[Sequence[_builtins.str]]:
77
+ """
78
+ Blocked artifact patterns
79
+ """
74
80
  return pulumi.get(self, "blocked_patterns")
75
81
 
76
82
  @_builtins.property
77
83
  @pulumi.getter
78
84
  def configs(self) -> Optional[Sequence['outputs.GetHarRegistryConfigResult']]:
85
+ """
86
+ Configuration for the registry
87
+ """
79
88
  return pulumi.get(self, "configs")
80
89
 
81
90
  @_builtins.property
82
91
  @pulumi.getter(name="createdAt")
83
92
  def created_at(self) -> _builtins.str:
93
+ """
94
+ Creation timestamp
95
+ """
84
96
  return pulumi.get(self, "created_at")
85
97
 
86
98
  @_builtins.property
87
99
  @pulumi.getter
88
100
  def description(self) -> Optional[_builtins.str]:
101
+ """
102
+ Description of the registry
103
+ """
89
104
  return pulumi.get(self, "description")
90
105
 
91
106
  @_builtins.property
@@ -100,31 +115,40 @@ class GetHarRegistryResult:
100
115
  @pulumi.getter
101
116
  def identifier(self) -> _builtins.str:
102
117
  """
103
- Unique identifier of the resource.
118
+ Unique identifier of the registry
104
119
  """
105
120
  return pulumi.get(self, "identifier")
106
121
 
107
122
  @_builtins.property
108
123
  @pulumi.getter(name="packageType")
109
124
  def package_type(self) -> Optional[_builtins.str]:
125
+ """
126
+ Type of package (DOCKER, HELM, MAVEN, etc.)
127
+ """
110
128
  return pulumi.get(self, "package_type")
111
129
 
112
130
  @_builtins.property
113
131
  @pulumi.getter(name="parentRef")
114
132
  def parent_ref(self) -> Optional[_builtins.str]:
133
+ """
134
+ Parent reference for the registry
135
+ """
115
136
  return pulumi.get(self, "parent_ref")
116
137
 
117
138
  @_builtins.property
118
139
  @pulumi.getter(name="spaceRef")
119
- def space_ref(self) -> _builtins.str:
140
+ def space_ref(self) -> Optional[_builtins.str]:
120
141
  """
121
- Reference of the space.
142
+ Space reference for the registry
122
143
  """
123
144
  return pulumi.get(self, "space_ref")
124
145
 
125
146
  @_builtins.property
126
147
  @pulumi.getter
127
148
  def url(self) -> _builtins.str:
149
+ """
150
+ URL of the registry
151
+ """
128
152
  return pulumi.get(self, "url")
129
153
 
130
154
 
@@ -157,7 +181,7 @@ def get_har_registry(allowed_patterns: Optional[Sequence[_builtins.str]] = None,
157
181
  space_ref: Optional[_builtins.str] = None,
158
182
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetHarRegistryResult:
159
183
  """
160
- Data Source for retrieving a Harness Artifact registry
184
+ Resource for creating and managing Harness Registries.
161
185
 
162
186
  ## Example Usage
163
187
 
@@ -170,8 +194,14 @@ def get_har_registry(allowed_patterns: Optional[Sequence[_builtins.str]] = None,
170
194
  ```
171
195
 
172
196
 
173
- :param _builtins.str identifier: Unique identifier of the resource.
174
- :param _builtins.str space_ref: Reference of the space.
197
+ :param Sequence[_builtins.str] allowed_patterns: Allowed artifact patterns
198
+ :param Sequence[_builtins.str] blocked_patterns: Blocked artifact patterns
199
+ :param Sequence[Union['GetHarRegistryConfigArgs', 'GetHarRegistryConfigArgsDict']] configs: Configuration for the registry
200
+ :param _builtins.str description: Description of the registry
201
+ :param _builtins.str identifier: Unique identifier of the registry
202
+ :param _builtins.str package_type: Type of package (DOCKER, HELM, MAVEN, etc.)
203
+ :param _builtins.str parent_ref: Parent reference for the registry
204
+ :param _builtins.str space_ref: Space reference for the registry
175
205
  """
176
206
  __args__ = dict()
177
207
  __args__['allowedPatterns'] = allowed_patterns
@@ -204,10 +234,10 @@ def get_har_registry_output(allowed_patterns: Optional[pulumi.Input[Optional[Seq
204
234
  identifier: Optional[pulumi.Input[_builtins.str]] = None,
205
235
  package_type: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
206
236
  parent_ref: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
207
- space_ref: Optional[pulumi.Input[_builtins.str]] = None,
237
+ space_ref: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
208
238
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetHarRegistryResult]:
209
239
  """
210
- Data Source for retrieving a Harness Artifact registry
240
+ Resource for creating and managing Harness Registries.
211
241
 
212
242
  ## Example Usage
213
243
 
@@ -220,8 +250,14 @@ def get_har_registry_output(allowed_patterns: Optional[pulumi.Input[Optional[Seq
220
250
  ```
221
251
 
222
252
 
223
- :param _builtins.str identifier: Unique identifier of the resource.
224
- :param _builtins.str space_ref: Reference of the space.
253
+ :param Sequence[_builtins.str] allowed_patterns: Allowed artifact patterns
254
+ :param Sequence[_builtins.str] blocked_patterns: Blocked artifact patterns
255
+ :param Sequence[Union['GetHarRegistryConfigArgs', 'GetHarRegistryConfigArgsDict']] configs: Configuration for the registry
256
+ :param _builtins.str description: Description of the registry
257
+ :param _builtins.str identifier: Unique identifier of the registry
258
+ :param _builtins.str package_type: Type of package (DOCKER, HELM, MAVEN, etc.)
259
+ :param _builtins.str parent_ref: Parent reference for the registry
260
+ :param _builtins.str space_ref: Space reference for the registry
225
261
  """
226
262
  __args__ = dict()
227
263
  __args__['allowedPatterns'] = allowed_patterns
@@ -117,6 +117,18 @@ def get_iacm_default_pipeline(operation: Optional[_builtins.str] = None,
117
117
  """
118
118
  Data source for retrieving IACM default pipelines.
119
119
 
120
+ ## Example Usage
121
+
122
+ ```python
123
+ import pulumi
124
+ import pulumi_harness as harness
125
+
126
+ example = harness.platform.get_iacm_default_pipeline(org_id=test["id"],
127
+ project_id=test_harness_platform_project["id"],
128
+ provisioner_type="terraform",
129
+ operation="plan")
130
+ ```
131
+
120
132
 
121
133
  :param _builtins.str operation: The operation associated with this default.
122
134
  :param _builtins.str org_id: Organization identifier of the organization the default pipelines resides in.
@@ -146,6 +158,18 @@ def get_iacm_default_pipeline_output(operation: Optional[pulumi.Input[_builtins.
146
158
  """
147
159
  Data source for retrieving IACM default pipelines.
148
160
 
161
+ ## Example Usage
162
+
163
+ ```python
164
+ import pulumi
165
+ import pulumi_harness as harness
166
+
167
+ example = harness.platform.get_iacm_default_pipeline(org_id=test["id"],
168
+ project_id=test_harness_platform_project["id"],
169
+ provisioner_type="terraform",
170
+ operation="plan")
171
+ ```
172
+
149
173
 
150
174
  :param _builtins.str operation: The operation associated with this default.
151
175
  :param _builtins.str org_id: Organization identifier of the organization the default pipelines resides in.
@@ -67,7 +67,7 @@ class GetInfraVariableSetResult:
67
67
  @pulumi.getter
68
68
  def connectors(self) -> Sequence['outputs.GetInfraVariableSetConnectorResult']:
69
69
  """
70
- Provider connector configured on the variable set
70
+ Provider connectors configured on the Variable Set. Only one connector of a type is supported
71
71
  """
72
72
  return pulumi.get(self, "connectors")
73
73
 
@@ -75,7 +75,7 @@ class GetInfraVariableSetResult:
75
75
  @pulumi.getter
76
76
  def description(self) -> _builtins.str:
77
77
  """
78
- Description of the Variable Set
78
+ Description of the resource.
79
79
  """
80
80
  return pulumi.get(self, "description")
81
81
 
@@ -83,7 +83,7 @@ class GetInfraVariableSetResult:
83
83
  @pulumi.getter(name="environmentVariables")
84
84
  def environment_variables(self) -> Sequence['outputs.GetInfraVariableSetEnvironmentVariableResult']:
85
85
  """
86
- Environment variables configured on the variable set
86
+ Environment variables configured on the Variable Set
87
87
  """
88
88
  return pulumi.get(self, "environment_variables")
89
89
 
@@ -99,7 +99,7 @@ class GetInfraVariableSetResult:
99
99
  @pulumi.getter
100
100
  def identifier(self) -> _builtins.str:
101
101
  """
102
- Identifier of the Variable Set
102
+ Unique identifier of the resource.
103
103
  """
104
104
  return pulumi.get(self, "identifier")
105
105
 
@@ -107,7 +107,7 @@ class GetInfraVariableSetResult:
107
107
  @pulumi.getter
108
108
  def name(self) -> Optional[_builtins.str]:
109
109
  """
110
- Name of the Variable Set
110
+ Name of the resource.
111
111
  """
112
112
  return pulumi.get(self, "name")
113
113
 
@@ -115,7 +115,7 @@ class GetInfraVariableSetResult:
115
115
  @pulumi.getter(name="orgId")
116
116
  def org_id(self) -> Optional[_builtins.str]:
117
117
  """
118
- Organization Identifier
118
+ Unique identifier of the organization.
119
119
  """
120
120
  return pulumi.get(self, "org_id")
121
121
 
@@ -123,13 +123,16 @@ class GetInfraVariableSetResult:
123
123
  @pulumi.getter(name="projectId")
124
124
  def project_id(self) -> Optional[_builtins.str]:
125
125
  """
126
- Project Identifier
126
+ Unique identifier of the project.
127
127
  """
128
128
  return pulumi.get(self, "project_id")
129
129
 
130
130
  @_builtins.property
131
131
  @pulumi.getter
132
132
  def tags(self) -> Sequence[_builtins.str]:
133
+ """
134
+ Tags to associate with the resource.
135
+ """
133
136
  return pulumi.get(self, "tags")
134
137
 
135
138
  @_builtins.property
@@ -180,18 +183,21 @@ def get_infra_variable_set(connectors: Optional[Sequence[Union['GetInfraVariable
180
183
  import pulumi
181
184
  import pulumi_harness as harness
182
185
 
183
- test = harness.platform.get_infra_variable_set(identifier="identifier",
184
- org_id="org_id",
185
- project_id="project_id")
186
+ test = harness.platform.get_infra_variable_set(identifier="identifier")
187
+ testorg = harness.platform.get_infra_variable_set(identifier="identifier",
188
+ org_id="someorg")
189
+ testproj = harness.platform.get_infra_variable_set(identifier="identifier",
190
+ org_id="someorg",
191
+ project_id="someproj")
186
192
  ```
187
193
 
188
194
 
189
- :param Sequence[Union['GetInfraVariableSetConnectorArgs', 'GetInfraVariableSetConnectorArgsDict']] connectors: Provider connector configured on the variable set
190
- :param Sequence[Union['GetInfraVariableSetEnvironmentVariableArgs', 'GetInfraVariableSetEnvironmentVariableArgsDict']] environment_variables: Environment variables configured on the variable set
191
- :param _builtins.str identifier: Identifier of the Variable Set
192
- :param _builtins.str name: Name of the Variable Set
193
- :param _builtins.str org_id: Organization Identifier
194
- :param _builtins.str project_id: Project Identifier
195
+ :param Sequence[Union['GetInfraVariableSetConnectorArgs', 'GetInfraVariableSetConnectorArgsDict']] connectors: Provider connectors configured on the Variable Set. Only one connector of a type is supported
196
+ :param Sequence[Union['GetInfraVariableSetEnvironmentVariableArgs', 'GetInfraVariableSetEnvironmentVariableArgsDict']] environment_variables: Environment variables configured on the Variable Set
197
+ :param _builtins.str identifier: Unique identifier of the resource.
198
+ :param _builtins.str name: Name of the resource.
199
+ :param _builtins.str org_id: Unique identifier of the organization.
200
+ :param _builtins.str project_id: Unique identifier of the project.
195
201
  """
196
202
  __args__ = dict()
197
203
  __args__['connectors'] = connectors
@@ -235,18 +241,21 @@ def get_infra_variable_set_output(connectors: Optional[pulumi.Input[Optional[Seq
235
241
  import pulumi
236
242
  import pulumi_harness as harness
237
243
 
238
- test = harness.platform.get_infra_variable_set(identifier="identifier",
239
- org_id="org_id",
240
- project_id="project_id")
244
+ test = harness.platform.get_infra_variable_set(identifier="identifier")
245
+ testorg = harness.platform.get_infra_variable_set(identifier="identifier",
246
+ org_id="someorg")
247
+ testproj = harness.platform.get_infra_variable_set(identifier="identifier",
248
+ org_id="someorg",
249
+ project_id="someproj")
241
250
  ```
242
251
 
243
252
 
244
- :param Sequence[Union['GetInfraVariableSetConnectorArgs', 'GetInfraVariableSetConnectorArgsDict']] connectors: Provider connector configured on the variable set
245
- :param Sequence[Union['GetInfraVariableSetEnvironmentVariableArgs', 'GetInfraVariableSetEnvironmentVariableArgsDict']] environment_variables: Environment variables configured on the variable set
246
- :param _builtins.str identifier: Identifier of the Variable Set
247
- :param _builtins.str name: Name of the Variable Set
248
- :param _builtins.str org_id: Organization Identifier
249
- :param _builtins.str project_id: Project Identifier
253
+ :param Sequence[Union['GetInfraVariableSetConnectorArgs', 'GetInfraVariableSetConnectorArgsDict']] connectors: Provider connectors configured on the Variable Set. Only one connector of a type is supported
254
+ :param Sequence[Union['GetInfraVariableSetEnvironmentVariableArgs', 'GetInfraVariableSetEnvironmentVariableArgsDict']] environment_variables: Environment variables configured on the Variable Set
255
+ :param _builtins.str identifier: Unique identifier of the resource.
256
+ :param _builtins.str name: Name of the resource.
257
+ :param _builtins.str org_id: Unique identifier of the organization.
258
+ :param _builtins.str project_id: Unique identifier of the project.
250
259
  """
251
260
  __args__ = dict()
252
261
  __args__['connectors'] = connectors
@@ -93,6 +93,9 @@ class GetInfrastructureResult:
93
93
  @_builtins.property
94
94
  @pulumi.getter(name="gitDetails")
95
95
  def git_details(self) -> 'outputs.GetInfrastructureGitDetailsResult':
96
+ """
97
+ Contains parameters related to Git Experience for remote entities
98
+ """
96
99
  return pulumi.get(self, "git_details")
97
100
 
98
101
  @_builtins.property
@@ -205,6 +208,7 @@ def get_infrastructure(env_id: Optional[_builtins.str] = None,
205
208
 
206
209
 
207
210
  :param _builtins.str env_id: environment identifier.
211
+ :param Union['GetInfrastructureGitDetailsArgs', 'GetInfrastructureGitDetailsArgsDict'] git_details: Contains parameters related to Git Experience for remote entities
208
212
  :param _builtins.str identifier: Unique identifier of the resource.
209
213
  :param _builtins.str name: Name of the resource.
210
214
  :param _builtins.str org_id: Unique identifier of the organization.
@@ -258,6 +262,7 @@ def get_infrastructure_output(env_id: Optional[pulumi.Input[_builtins.str]] = No
258
262
 
259
263
 
260
264
  :param _builtins.str env_id: environment identifier.
265
+ :param Union['GetInfrastructureGitDetailsArgs', 'GetInfrastructureGitDetailsArgsDict'] git_details: Contains parameters related to Git Experience for remote entities
261
266
  :param _builtins.str identifier: Unique identifier of the resource.
262
267
  :param _builtins.str name: Name of the resource.
263
268
  :param _builtins.str org_id: Unique identifier of the organization.
@@ -214,18 +214,6 @@ def get_manual_freeze(account_id: Optional[_builtins.str] = None,
214
214
  """
215
215
  DataSource for deployment freeze in harness.
216
216
 
217
- ## Example Usage
218
-
219
- ```python
220
- import pulumi
221
- import pulumi_harness as harness
222
-
223
- example = harness.platform.get_manual_freeze(identifier="identifier",
224
- org_id="org_id",
225
- project_id="project_id",
226
- account_id="account_id")
227
- ```
228
-
229
217
 
230
218
  :param _builtins.str account_id: Account Identifier of the freeze
231
219
  :param _builtins.str identifier: Identifier of the freeze
@@ -263,18 +251,6 @@ def get_manual_freeze_output(account_id: Optional[pulumi.Input[_builtins.str]] =
263
251
  """
264
252
  DataSource for deployment freeze in harness.
265
253
 
266
- ## Example Usage
267
-
268
- ```python
269
- import pulumi
270
- import pulumi_harness as harness
271
-
272
- example = harness.platform.get_manual_freeze(identifier="identifier",
273
- org_id="org_id",
274
- project_id="project_id",
275
- account_id="account_id")
276
- ```
277
-
278
254
 
279
255
  :param _builtins.str account_id: Account Identifier of the freeze
280
256
  :param _builtins.str identifier: Identifier of the freeze