pulumi-harness 0.8.0a1755712204__py3-none-any.whl → 0.8.0a1755714852__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.8.0a1755714852.dist-info}/METADATA +1 -1
  220. pulumi_harness-0.8.0a1755714852.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.8.0a1755714852.dist-info}/WHEEL +0 -0
  223. {pulumi_harness-0.8.0a1755712204.dist-info → pulumi_harness-0.8.0a1755714852.dist-info}/top_level.txt +0 -0
@@ -92,7 +92,7 @@ class GetConnectorCustomSecretManagerResult:
92
92
  @pulumi.getter
93
93
  def description(self) -> _builtins.str:
94
94
  """
95
- : A brief description of what the resource does or is used for.
95
+ Description of the resource.
96
96
  """
97
97
  return pulumi.get(self, "description")
98
98
 
@@ -108,7 +108,7 @@ class GetConnectorCustomSecretManagerResult:
108
108
  @pulumi.getter
109
109
  def identifier(self) -> _builtins.str:
110
110
  """
111
- : Unique identifier of the resource.
111
+ Unique identifier of the resource.
112
112
  """
113
113
  return pulumi.get(self, "identifier")
114
114
 
@@ -116,7 +116,7 @@ class GetConnectorCustomSecretManagerResult:
116
116
  @pulumi.getter
117
117
  def name(self) -> Optional[_builtins.str]:
118
118
  """
119
- : Name of the resource.
119
+ Name of the resource.
120
120
  """
121
121
  return pulumi.get(self, "name")
122
122
 
@@ -124,25 +124,31 @@ class GetConnectorCustomSecretManagerResult:
124
124
  @pulumi.getter(name="onDelegate")
125
125
  def on_delegate(self) -> _builtins.bool:
126
126
  """
127
- : Specifies whether the secrets manager runs on a Harness delegate.
127
+ Specifies whether the secrets manager runs on a Harness delegate.
128
128
  """
129
129
  return pulumi.get(self, "on_delegate")
130
130
 
131
131
  @_builtins.property
132
132
  @pulumi.getter(name="orgId")
133
133
  def org_id(self) -> Optional[_builtins.str]:
134
+ """
135
+ Unique identifier of the organization.
136
+ """
134
137
  return pulumi.get(self, "org_id")
135
138
 
136
139
  @_builtins.property
137
140
  @pulumi.getter(name="projectId")
138
141
  def project_id(self) -> Optional[_builtins.str]:
142
+ """
143
+ Unique identifier of the project.
144
+ """
139
145
  return pulumi.get(self, "project_id")
140
146
 
141
147
  @_builtins.property
142
148
  @pulumi.getter(name="sshSecretRef")
143
149
  def ssh_secret_ref(self) -> _builtins.str:
144
150
  """
145
- : Reference to the Harness secret containing SSH credentials for the target host. Required if `on_delegate` is set to false.
151
+ SSH secret reference for the custom secrets manager, Computed if 'on_delegate' is false.
146
152
  """
147
153
  return pulumi.get(self, "ssh_secret_ref")
148
154
 
@@ -150,7 +156,7 @@ class GetConnectorCustomSecretManagerResult:
150
156
  @pulumi.getter
151
157
  def tags(self) -> Sequence[_builtins.str]:
152
158
  """
153
- : Tags to associate with the resource.
159
+ Tags to associate with the resource.
154
160
  """
155
161
  return pulumi.get(self, "tags")
156
162
 
@@ -158,7 +164,7 @@ class GetConnectorCustomSecretManagerResult:
158
164
  @pulumi.getter(name="targetHost")
159
165
  def target_host(self) -> _builtins.str:
160
166
  """
161
- : Host address where secrets will be managed. Required if `on_delegate` is set to false.
167
+ Host where the custom secrets manager is located, Computed if 'on_delegate' is false.
162
168
  """
163
169
  return pulumi.get(self, "target_host")
164
170
 
@@ -171,7 +177,7 @@ class GetConnectorCustomSecretManagerResult:
171
177
  @pulumi.getter(name="templateRef")
172
178
  def template_ref(self) -> _builtins.str:
173
179
  """
174
- : Reference to the template used for managing secrets.
180
+ Reference to the template used for managing secrets.
175
181
  """
176
182
  return pulumi.get(self, "template_ref")
177
183
 
@@ -179,7 +185,7 @@ class GetConnectorCustomSecretManagerResult:
179
185
  @pulumi.getter
180
186
  def timeout(self) -> _builtins.int:
181
187
  """
182
- : Timeout in seconds for secrets management operations.
188
+ Timeout in seconds for secrets management operations.
183
189
  """
184
190
  return pulumi.get(self, "timeout")
185
191
 
@@ -187,7 +193,7 @@ class GetConnectorCustomSecretManagerResult:
187
193
  @pulumi.getter
188
194
  def type(self) -> _builtins.str:
189
195
  """
190
- : Type of the custom secrets manager, typically set to `CustomSecretManager`.
196
+ Type of the custom secrets manager, typically set to 'CustomSecretManager'.
191
197
  """
192
198
  return pulumi.get(self, "type")
193
199
 
@@ -195,7 +201,7 @@ class GetConnectorCustomSecretManagerResult:
195
201
  @pulumi.getter(name="versionLabel")
196
202
  def version_label(self) -> _builtins.str:
197
203
  """
198
- : Version identifier of the secrets management template.
204
+ Version identifier of the secrets management template.
199
205
  """
200
206
  return pulumi.get(self, "version_label")
201
207
 
@@ -203,7 +209,7 @@ class GetConnectorCustomSecretManagerResult:
203
209
  @pulumi.getter(name="workingDirectory")
204
210
  def working_directory(self) -> _builtins.str:
205
211
  """
206
- : Directory path on the target host where secrets management tasks are performed. Required if `on_delegate` is set to false.
212
+ The working directory for operations, Computed if 'on_delegate' is false.
207
213
  """
208
214
  return pulumi.get(self, "working_directory")
209
215
 
@@ -240,19 +246,14 @@ def get_connector_custom_secret_manager(delegate_selectors: Optional[Sequence[_b
240
246
  project_id: Optional[_builtins.str] = None,
241
247
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetConnectorCustomSecretManagerResult:
242
248
  """
243
- ## Example Usage
244
-
245
- ```python
246
- import pulumi
247
- import pulumi_harness as harness
248
-
249
- example = harness.platform.get_connector_custom_secret_manager(identifier="identifier")
250
- ```
249
+ Datasource for looking up a Custom Secret Manager connector.
251
250
 
252
251
 
253
252
  :param Sequence[_builtins.str] delegate_selectors: Tags to filter delegates for connection.
254
- :param _builtins.str identifier: : Unique identifier of the resource.
255
- :param _builtins.str name: : Name of the resource.
253
+ :param _builtins.str identifier: Unique identifier of the resource.
254
+ :param _builtins.str name: Name of the resource.
255
+ :param _builtins.str org_id: Unique identifier of the organization.
256
+ :param _builtins.str project_id: Unique identifier of the project.
256
257
  """
257
258
  __args__ = dict()
258
259
  __args__['delegateSelectors'] = delegate_selectors
@@ -288,19 +289,14 @@ def get_connector_custom_secret_manager_output(delegate_selectors: Optional[pulu
288
289
  project_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
289
290
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetConnectorCustomSecretManagerResult]:
290
291
  """
291
- ## Example Usage
292
-
293
- ```python
294
- import pulumi
295
- import pulumi_harness as harness
296
-
297
- example = harness.platform.get_connector_custom_secret_manager(identifier="identifier")
298
- ```
292
+ Datasource for looking up a Custom Secret Manager connector.
299
293
 
300
294
 
301
295
  :param Sequence[_builtins.str] delegate_selectors: Tags to filter delegates for connection.
302
- :param _builtins.str identifier: : Unique identifier of the resource.
303
- :param _builtins.str name: : Name of the resource.
296
+ :param _builtins.str identifier: Unique identifier of the resource.
297
+ :param _builtins.str name: Name of the resource.
298
+ :param _builtins.str org_id: Unique identifier of the organization.
299
+ :param _builtins.str project_id: Unique identifier of the project.
304
300
  """
305
301
  __args__ = dict()
306
302
  __args__['delegateSelectors'] = delegate_selectors
@@ -76,7 +76,7 @@ class GetConnectorPdcResult:
76
76
  @pulumi.getter
77
77
  def hosts(self) -> Sequence['outputs.GetConnectorPdcHostResult']:
78
78
  """
79
- Hosts to be provided.
79
+ Host of the Physical data centers.
80
80
  """
81
81
  return pulumi.get(self, "hosts")
82
82
 
@@ -152,7 +152,7 @@ def get_connector_pdc(identifier: Optional[_builtins.str] = None,
152
152
  project_id: Optional[_builtins.str] = None,
153
153
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetConnectorPdcResult:
154
154
  """
155
- Datasource for looking up a Physical data center connector.
155
+ Datasource for looking up a Pdc connector.
156
156
 
157
157
  ## Example Usage
158
158
 
@@ -193,7 +193,7 @@ def get_connector_pdc_output(identifier: Optional[pulumi.Input[_builtins.str]] =
193
193
  project_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
194
194
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetConnectorPdcResult]:
195
195
  """
196
- Datasource for looking up a Physical data center connector.
196
+ Datasource for looking up a Pdc connector.
197
197
 
198
198
  ## Example Usage
199
199
 
@@ -76,16 +76,7 @@ class AwaitableGetCurrentAccountResult(GetCurrentAccountResult):
76
76
  def get_current_account(id: Optional[_builtins.str] = None,
77
77
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCurrentAccountResult:
78
78
  """
79
- Data source for retrieving information on the current Harness account.
80
-
81
- ## Example Usage
82
-
83
- ```python
84
- import pulumi
85
- import pulumi_harness as harness
86
-
87
- current = harness.platform.get_current_account()
88
- ```
79
+ Data source for retrieving information about the current Harness account
89
80
 
90
81
 
91
82
  :param _builtins.str id: Id of the account.
@@ -102,16 +93,7 @@ def get_current_account(id: Optional[_builtins.str] = None,
102
93
  def get_current_account_output(id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
103
94
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCurrentAccountResult]:
104
95
  """
105
- Data source for retrieving information on the current Harness account.
106
-
107
- ## Example Usage
108
-
109
- ```python
110
- import pulumi
111
- import pulumi_harness as harness
112
-
113
- current = harness.platform.get_current_account()
114
- ```
96
+ Data source for retrieving information about the current Harness account
115
97
 
116
98
 
117
99
  :param _builtins.str id: Id of the account.
@@ -57,6 +57,9 @@ class GetDashboardFoldersResult:
57
57
  @_builtins.property
58
58
  @pulumi.getter
59
59
  def description(self) -> _builtins.str:
60
+ """
61
+ Description of the resource.
62
+ """
60
63
  return pulumi.get(self, "description")
61
64
 
62
65
  @_builtins.property
@@ -70,19 +73,25 @@ class GetDashboardFoldersResult:
70
73
  @_builtins.property
71
74
  @pulumi.getter
72
75
  def identifier(self) -> Optional[_builtins.str]:
76
+ """
77
+ Unique identifier of the resource.
78
+ """
73
79
  return pulumi.get(self, "identifier")
74
80
 
75
81
  @_builtins.property
76
82
  @pulumi.getter
77
83
  def name(self) -> Optional[_builtins.str]:
78
84
  """
79
- Name of the folder.
85
+ Name of the resource.
80
86
  """
81
87
  return pulumi.get(self, "name")
82
88
 
83
89
  @_builtins.property
84
90
  @pulumi.getter
85
91
  def tags(self) -> Sequence[_builtins.str]:
92
+ """
93
+ Tags to associate with the resource.
94
+ """
86
95
  return pulumi.get(self, "tags")
87
96
 
88
97
 
@@ -113,12 +122,13 @@ def get_dashboard_folders(id: Optional[_builtins.str] = None,
113
122
  import pulumi
114
123
  import pulumi_harness as harness
115
124
 
116
- example = harness.platform.get_dashboard_folders(id="your_folder_id")
125
+ folder = harness.platform.get_dashboard_folders(id="id")
117
126
  ```
118
127
 
119
128
 
120
129
  :param _builtins.str id: Identifier of the folder.
121
- :param _builtins.str name: Name of the folder.
130
+ :param _builtins.str identifier: Unique identifier of the resource.
131
+ :param _builtins.str name: Name of the resource.
122
132
  """
123
133
  __args__ = dict()
124
134
  __args__['id'] = id
@@ -147,12 +157,13 @@ def get_dashboard_folders_output(id: Optional[pulumi.Input[_builtins.str]] = Non
147
157
  import pulumi
148
158
  import pulumi_harness as harness
149
159
 
150
- example = harness.platform.get_dashboard_folders(id="your_folder_id")
160
+ folder = harness.platform.get_dashboard_folders(id="id")
151
161
  ```
152
162
 
153
163
 
154
164
  :param _builtins.str id: Identifier of the folder.
155
- :param _builtins.str name: Name of the folder.
165
+ :param _builtins.str identifier: Unique identifier of the resource.
166
+ :param _builtins.str name: Name of the resource.
156
167
  """
157
168
  __args__ = dict()
158
169
  __args__['id'] = id
@@ -98,7 +98,7 @@ class GetDashboardsResult:
98
98
  @pulumi.getter
99
99
  def description(self) -> _builtins.str:
100
100
  """
101
- Description of the Dashboard.
101
+ Description of the resource.
102
102
  """
103
103
  return pulumi.get(self, "description")
104
104
 
@@ -121,6 +121,9 @@ class GetDashboardsResult:
121
121
  @_builtins.property
122
122
  @pulumi.getter
123
123
  def identifier(self) -> Optional[_builtins.str]:
124
+ """
125
+ Unique identifier of the resource.
126
+ """
124
127
  return pulumi.get(self, "identifier")
125
128
 
126
129
  @_builtins.property
@@ -135,7 +138,7 @@ class GetDashboardsResult:
135
138
  @pulumi.getter
136
139
  def name(self) -> Optional[_builtins.str]:
137
140
  """
138
- Name of the Dashboard.
141
+ Name of the resource.
139
142
  """
140
143
  return pulumi.get(self, "name")
141
144
 
@@ -150,6 +153,9 @@ class GetDashboardsResult:
150
153
  @_builtins.property
151
154
  @pulumi.getter
152
155
  def tags(self) -> Sequence[_builtins.str]:
156
+ """
157
+ Tags to associate with the resource.
158
+ """
153
159
  return pulumi.get(self, "tags")
154
160
 
155
161
  @_builtins.property
@@ -164,7 +170,7 @@ class GetDashboardsResult:
164
170
  @pulumi.getter
165
171
  def type(self) -> _builtins.str:
166
172
  """
167
- Type of the dashboard.
173
+ Resource identifier of the dashboard.
168
174
  """
169
175
  return pulumi.get(self, "type")
170
176
 
@@ -212,12 +218,13 @@ def get_dashboards(id: Optional[_builtins.str] = None,
212
218
  import pulumi
213
219
  import pulumi_harness as harness
214
220
 
215
- example = harness.platform.get_dashboards(id="48525")
221
+ dashboard = harness.platform.get_dashboards(id="id")
216
222
  ```
217
223
 
218
224
 
219
225
  :param _builtins.str id: Identifier of the dashboard.
220
- :param _builtins.str name: Name of the Dashboard.
226
+ :param _builtins.str identifier: Unique identifier of the resource.
227
+ :param _builtins.str name: Name of the resource.
221
228
  """
222
229
  __args__ = dict()
223
230
  __args__['id'] = id
@@ -254,12 +261,13 @@ def get_dashboards_output(id: Optional[pulumi.Input[_builtins.str]] = None,
254
261
  import pulumi
255
262
  import pulumi_harness as harness
256
263
 
257
- example = harness.platform.get_dashboards(id="48525")
264
+ dashboard = harness.platform.get_dashboards(id="id")
258
265
  ```
259
266
 
260
267
 
261
268
  :param _builtins.str id: Identifier of the dashboard.
262
- :param _builtins.str name: Name of the Dashboard.
269
+ :param _builtins.str identifier: Unique identifier of the resource.
270
+ :param _builtins.str name: Name of the resource.
263
271
  """
264
272
  __args__ = dict()
265
273
  __args__['id'] = id
@@ -115,6 +115,9 @@ class GetDbInstanceResult:
115
115
  @_builtins.property
116
116
  @pulumi.getter(name="liquibaseSubstituteProperties")
117
117
  def liquibase_substitute_properties(self) -> Optional[Mapping[str, _builtins.str]]:
118
+ """
119
+ The properties to substitute in liquibase changelog
120
+ """
118
121
  return pulumi.get(self, "liquibase_substitute_properties")
119
122
 
120
123
  @_builtins.property
@@ -202,6 +205,7 @@ def get_db_instance(identifier: Optional[_builtins.str] = None,
202
205
 
203
206
 
204
207
  :param _builtins.str identifier: Unique identifier of the resource.
208
+ :param Mapping[str, _builtins.str] liquibase_substitute_properties: The properties to substitute in liquibase changelog
205
209
  :param _builtins.str name: Name of the resource.
206
210
  :param _builtins.str org_id: Unique identifier of the organization.
207
211
  :param _builtins.str project_id: Unique identifier of the project.
@@ -254,6 +258,7 @@ def get_db_instance_output(identifier: Optional[pulumi.Input[_builtins.str]] = N
254
258
 
255
259
 
256
260
  :param _builtins.str identifier: Unique identifier of the resource.
261
+ :param Mapping[str, _builtins.str] liquibase_substitute_properties: The properties to substitute in liquibase changelog
257
262
  :param _builtins.str name: Name of the resource.
258
263
  :param _builtins.str org_id: Unique identifier of the organization.
259
264
  :param _builtins.str project_id: Unique identifier of the project.
@@ -14,7 +14,6 @@ else:
14
14
  from typing_extensions import NotRequired, TypedDict, TypeAlias
15
15
  from .. import _utilities
16
16
  from . import outputs
17
- from ._inputs import *
18
17
 
19
18
  __all__ = [
20
19
  'GetDbSchemaResult',
@@ -65,7 +64,10 @@ class GetDbSchemaResult:
65
64
 
66
65
  @_builtins.property
67
66
  @pulumi.getter(name="changelogScript")
68
- def changelog_script(self) -> Optional['outputs.GetDbSchemaChangelogScriptResult']:
67
+ def changelog_script(self) -> 'outputs.GetDbSchemaChangelogScriptResult':
68
+ """
69
+ Configuration to clone changeSets using script
70
+ """
69
71
  return pulumi.get(self, "changelog_script")
70
72
 
71
73
  @_builtins.property
@@ -118,7 +120,7 @@ class GetDbSchemaResult:
118
120
 
119
121
  @_builtins.property
120
122
  @pulumi.getter(name="schemaSources")
121
- def schema_sources(self) -> Optional[Sequence['outputs.GetDbSchemaSchemaSourceResult']]:
123
+ def schema_sources(self) -> Sequence['outputs.GetDbSchemaSchemaSourceResult']:
122
124
  """
123
125
  Provides a connector and path at which to find the database schema representation
124
126
  """
@@ -143,6 +145,9 @@ class GetDbSchemaResult:
143
145
  @_builtins.property
144
146
  @pulumi.getter
145
147
  def type(self) -> Optional[_builtins.str]:
148
+ """
149
+ Type of the database schema. Valid values are: Repository, Script
150
+ """
146
151
  return pulumi.get(self, "type")
147
152
 
148
153
 
@@ -165,12 +170,10 @@ class AwaitableGetDbSchemaResult(GetDbSchemaResult):
165
170
  type=self.type)
166
171
 
167
172
 
168
- def get_db_schema(changelog_script: Optional[Union['GetDbSchemaChangelogScriptArgs', 'GetDbSchemaChangelogScriptArgsDict']] = None,
169
- identifier: Optional[_builtins.str] = None,
173
+ def get_db_schema(identifier: Optional[_builtins.str] = None,
170
174
  name: Optional[_builtins.str] = None,
171
175
  org_id: Optional[_builtins.str] = None,
172
176
  project_id: Optional[_builtins.str] = None,
173
- schema_sources: Optional[Sequence[Union['GetDbSchemaSchemaSourceArgs', 'GetDbSchemaSchemaSourceArgsDict']]] = None,
174
177
  type: Optional[_builtins.str] = None,
175
178
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDbSchemaResult:
176
179
  """
@@ -192,15 +195,13 @@ def get_db_schema(changelog_script: Optional[Union['GetDbSchemaChangelogScriptAr
192
195
  :param _builtins.str name: Name of the resource.
193
196
  :param _builtins.str org_id: Unique identifier of the organization.
194
197
  :param _builtins.str project_id: Unique identifier of the project.
195
- :param Sequence[Union['GetDbSchemaSchemaSourceArgs', 'GetDbSchemaSchemaSourceArgsDict']] schema_sources: Provides a connector and path at which to find the database schema representation
198
+ :param _builtins.str type: Type of the database schema. Valid values are: Repository, Script
196
199
  """
197
200
  __args__ = dict()
198
- __args__['changelogScript'] = changelog_script
199
201
  __args__['identifier'] = identifier
200
202
  __args__['name'] = name
201
203
  __args__['orgId'] = org_id
202
204
  __args__['projectId'] = project_id
203
- __args__['schemaSources'] = schema_sources
204
205
  __args__['type'] = type
205
206
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
206
207
  __ret__ = pulumi.runtime.invoke('harness:platform/getDbSchema:getDbSchema', __args__, opts=opts, typ=GetDbSchemaResult).value
@@ -217,12 +218,10 @@ def get_db_schema(changelog_script: Optional[Union['GetDbSchemaChangelogScriptAr
217
218
  service=pulumi.get(__ret__, 'service'),
218
219
  tags=pulumi.get(__ret__, 'tags'),
219
220
  type=pulumi.get(__ret__, 'type'))
220
- def get_db_schema_output(changelog_script: Optional[pulumi.Input[Optional[Union['GetDbSchemaChangelogScriptArgs', 'GetDbSchemaChangelogScriptArgsDict']]]] = None,
221
- identifier: Optional[pulumi.Input[_builtins.str]] = None,
221
+ def get_db_schema_output(identifier: Optional[pulumi.Input[_builtins.str]] = None,
222
222
  name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
223
223
  org_id: Optional[pulumi.Input[_builtins.str]] = None,
224
224
  project_id: Optional[pulumi.Input[_builtins.str]] = None,
225
- schema_sources: Optional[pulumi.Input[Optional[Sequence[Union['GetDbSchemaSchemaSourceArgs', 'GetDbSchemaSchemaSourceArgsDict']]]]] = None,
226
225
  type: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
227
226
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDbSchemaResult]:
228
227
  """
@@ -244,15 +243,13 @@ def get_db_schema_output(changelog_script: Optional[pulumi.Input[Optional[Union[
244
243
  :param _builtins.str name: Name of the resource.
245
244
  :param _builtins.str org_id: Unique identifier of the organization.
246
245
  :param _builtins.str project_id: Unique identifier of the project.
247
- :param Sequence[Union['GetDbSchemaSchemaSourceArgs', 'GetDbSchemaSchemaSourceArgsDict']] schema_sources: Provides a connector and path at which to find the database schema representation
246
+ :param _builtins.str type: Type of the database schema. Valid values are: Repository, Script
248
247
  """
249
248
  __args__ = dict()
250
- __args__['changelogScript'] = changelog_script
251
249
  __args__['identifier'] = identifier
252
250
  __args__['name'] = name
253
251
  __args__['orgId'] = org_id
254
252
  __args__['projectId'] = project_id
255
- __args__['schemaSources'] = schema_sources
256
253
  __args__['type'] = type
257
254
  opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
258
255
  __ret__ = pulumi.runtime.invoke_output('harness:platform/getDbSchema:getDbSchema', __args__, opts=opts, typ=GetDbSchemaResult)
@@ -82,6 +82,9 @@ class GetEnvironmentResult:
82
82
  @_builtins.property
83
83
  @pulumi.getter(name="gitDetails")
84
84
  def git_details(self) -> 'outputs.GetEnvironmentGitDetailsResult':
85
+ """
86
+ Contains parameters related to Git Experience for remote entities
87
+ """
85
88
  return pulumi.get(self, "git_details")
86
89
 
87
90
  @_builtins.property
@@ -189,6 +192,7 @@ def get_environment(git_details: Optional[Union['GetEnvironmentGitDetailsArgs',
189
192
  ```
190
193
 
191
194
 
195
+ :param Union['GetEnvironmentGitDetailsArgs', 'GetEnvironmentGitDetailsArgsDict'] git_details: Contains parameters related to Git Experience for remote entities
192
196
  :param _builtins.str identifier: Unique identifier of the resource.
193
197
  :param _builtins.str name: Name of the resource.
194
198
  :param _builtins.str org_id: Unique identifier of the organization.
@@ -236,6 +240,7 @@ def get_environment_output(git_details: Optional[pulumi.Input[Optional[Union['Ge
236
240
  ```
237
241
 
238
242
 
243
+ :param Union['GetEnvironmentGitDetailsArgs', 'GetEnvironmentGitDetailsArgsDict'] git_details: Contains parameters related to Git Experience for remote entities
239
244
  :param _builtins.str identifier: Unique identifier of the resource.
240
245
  :param _builtins.str name: Name of the resource.
241
246
  :param _builtins.str org_id: Unique identifier of the organization.
@@ -57,11 +57,17 @@ class GetEnvironmentListResult:
57
57
  @_builtins.property
58
58
  @pulumi.getter(name="orgId")
59
59
  def org_id(self) -> Optional[_builtins.str]:
60
+ """
61
+ Unique identifier of the organization.
62
+ """
60
63
  return pulumi.get(self, "org_id")
61
64
 
62
65
  @_builtins.property
63
66
  @pulumi.getter(name="projectId")
64
67
  def project_id(self) -> Optional[_builtins.str]:
68
+ """
69
+ Unique identifier of the project.
70
+ """
65
71
  return pulumi.get(self, "project_id")
66
72
 
67
73
 
@@ -81,37 +87,11 @@ def get_environment_list(org_id: Optional[_builtins.str] = None,
81
87
  project_id: Optional[_builtins.str] = None,
82
88
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetEnvironmentListResult:
83
89
  """
84
- Data source for retrieving Harness environment list.
85
-
86
- ## Example Usage
87
-
88
- ### Project Level Environment List
89
-
90
- ```python
91
- import pulumi
92
- import pulumi_harness as harness
93
-
94
- example = harness.platform.get_environment_list(org_id="org_id",
95
- project_id="project_id")
96
- ```
97
-
98
- ### Organisation Level Environment List
99
-
100
- ```python
101
- import pulumi
102
- import pulumi_harness as harness
90
+ Data source for retrieving a Harness environment List.
103
91
 
104
- example = harness.platform.get_environment_list(org_id="org_id")
105
- ```
106
92
 
107
- ### Account Level Environment List
108
-
109
- ```python
110
- import pulumi
111
- import pulumi_harness as harness
112
-
113
- example = harness.platform.get_environment_list()
114
- ```
93
+ :param _builtins.str org_id: Unique identifier of the organization.
94
+ :param _builtins.str project_id: Unique identifier of the project.
115
95
  """
116
96
  __args__ = dict()
117
97
  __args__['orgId'] = org_id
@@ -128,37 +108,11 @@ def get_environment_list_output(org_id: Optional[pulumi.Input[Optional[_builtins
128
108
  project_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
129
109
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetEnvironmentListResult]:
130
110
  """
131
- Data source for retrieving Harness environment list.
132
-
133
- ## Example Usage
134
-
135
- ### Project Level Environment List
136
-
137
- ```python
138
- import pulumi
139
- import pulumi_harness as harness
140
-
141
- example = harness.platform.get_environment_list(org_id="org_id",
142
- project_id="project_id")
143
- ```
144
-
145
- ### Organisation Level Environment List
146
-
147
- ```python
148
- import pulumi
149
- import pulumi_harness as harness
150
-
151
- example = harness.platform.get_environment_list(org_id="org_id")
152
- ```
153
-
154
- ### Account Level Environment List
111
+ Data source for retrieving a Harness environment List.
155
112
 
156
- ```python
157
- import pulumi
158
- import pulumi_harness as harness
159
113
 
160
- example = harness.platform.get_environment_list()
161
- ```
114
+ :param _builtins.str org_id: Unique identifier of the organization.
115
+ :param _builtins.str project_id: Unique identifier of the project.
162
116
  """
163
117
  __args__ = dict()
164
118
  __args__['orgId'] = org_id