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
@@ -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
@@ -92,6 +92,17 @@ def get_monitored_service(identifier: Optional[_builtins.str] = None,
92
92
  """
93
93
  Data source for retrieving a monitored service.
94
94
 
95
+ ## Example Usage
96
+
97
+ ```python
98
+ import pulumi
99
+ import pulumi_harness as harness
100
+
101
+ example = harness.platform.get_monitored_service(identifier="identifier",
102
+ org_id="org_id",
103
+ project_id="project_id")
104
+ ```
105
+
95
106
 
96
107
  :param _builtins.str identifier: Identifier of the monitored service.
97
108
  :param _builtins.str org_id: Identifier of the organization in which the monitored service is configured.
@@ -116,6 +127,17 @@ def get_monitored_service_output(identifier: Optional[pulumi.Input[_builtins.str
116
127
  """
117
128
  Data source for retrieving a monitored service.
118
129
 
130
+ ## Example Usage
131
+
132
+ ```python
133
+ import pulumi
134
+ import pulumi_harness as harness
135
+
136
+ example = harness.platform.get_monitored_service(identifier="identifier",
137
+ org_id="org_id",
138
+ project_id="project_id")
139
+ ```
140
+
119
141
 
120
142
  :param _builtins.str identifier: Identifier of the monitored service.
121
143
  :param _builtins.str org_id: Identifier of the organization in which the monitored service is configured.
@@ -101,6 +101,8 @@ def get_organization(identifier: Optional[_builtins.str] = None,
101
101
  name: Optional[_builtins.str] = None,
102
102
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOrganizationResult:
103
103
  """
104
+ Data source for retrieving a Harness organization
105
+
104
106
  ## Example Usage
105
107
 
106
108
  ```python
@@ -130,6 +132,8 @@ def get_organization_output(identifier: Optional[pulumi.Input[Optional[_builtins
130
132
  name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
131
133
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOrganizationResult]:
132
134
  """
135
+ Data source for retrieving a Harness organization
136
+
133
137
  ## Example Usage
134
138
 
135
139
  ```python
@@ -66,16 +66,25 @@ class GetOverridesResult:
66
66
  @_builtins.property
67
67
  @pulumi.getter(name="clusterId")
68
68
  def cluster_id(self) -> _builtins.str:
69
+ """
70
+ The cluster ID to which the override entity is associated.
71
+ """
69
72
  return pulumi.get(self, "cluster_id")
70
73
 
71
74
  @_builtins.property
72
75
  @pulumi.getter(name="envId")
73
76
  def env_id(self) -> _builtins.str:
77
+ """
78
+ The environment ID to which the override entity is associated.
79
+ """
74
80
  return pulumi.get(self, "env_id")
75
81
 
76
82
  @_builtins.property
77
83
  @pulumi.getter(name="gitDetails")
78
84
  def git_details(self) -> 'outputs.GetOverridesGitDetailsResult':
85
+ """
86
+ Contains parameters related to Git Experience for remote overrides
87
+ """
79
88
  return pulumi.get(self, "git_details")
80
89
 
81
90
  @_builtins.property
@@ -89,36 +98,57 @@ class GetOverridesResult:
89
98
  @_builtins.property
90
99
  @pulumi.getter
91
100
  def identifier(self) -> _builtins.str:
101
+ """
102
+ The identifier of the override entity.
103
+ """
92
104
  return pulumi.get(self, "identifier")
93
105
 
94
106
  @_builtins.property
95
107
  @pulumi.getter(name="infraId")
96
108
  def infra_id(self) -> _builtins.str:
109
+ """
110
+ The infrastructure ID to which the override entity is associated.
111
+ """
97
112
  return pulumi.get(self, "infra_id")
98
113
 
99
114
  @_builtins.property
100
115
  @pulumi.getter(name="orgId")
101
116
  def org_id(self) -> Optional[_builtins.str]:
117
+ """
118
+ Unique identifier of the organization.
119
+ """
102
120
  return pulumi.get(self, "org_id")
103
121
 
104
122
  @_builtins.property
105
123
  @pulumi.getter(name="projectId")
106
124
  def project_id(self) -> Optional[_builtins.str]:
125
+ """
126
+ Unique identifier of the project.
127
+ """
107
128
  return pulumi.get(self, "project_id")
108
129
 
109
130
  @_builtins.property
110
131
  @pulumi.getter(name="serviceId")
111
132
  def service_id(self) -> _builtins.str:
133
+ """
134
+ The service ID to which the override entity is associated.
135
+ """
112
136
  return pulumi.get(self, "service_id")
113
137
 
114
138
  @_builtins.property
115
139
  @pulumi.getter
116
140
  def type(self) -> _builtins.str:
141
+ """
142
+ The type of the override entity.
143
+ """
117
144
  return pulumi.get(self, "type")
118
145
 
119
146
  @_builtins.property
120
147
  @pulumi.getter
121
148
  def yaml(self) -> _builtins.str:
149
+ """
150
+ The yaml of the override entity.
151
+ """
122
152
  return pulumi.get(self, "yaml")
123
153
 
124
154
 
@@ -147,7 +177,24 @@ def get_overrides(git_details: Optional[Union['GetOverridesGitDetailsArgs', 'Get
147
177
  project_id: Optional[_builtins.str] = None,
148
178
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOverridesResult:
149
179
  """
150
- Use this data source to access information about an existing resource.
180
+ Data source for Harness Overrides V2.
181
+
182
+ ## Example Usage
183
+
184
+ ```python
185
+ import pulumi
186
+ import pulumi_harness as harness
187
+
188
+ test = harness.platform.get_overrides(identifier="identifier",
189
+ org_id="orgIdentifier",
190
+ project_id="projectIdentifier")
191
+ ```
192
+
193
+
194
+ :param Union['GetOverridesGitDetailsArgs', 'GetOverridesGitDetailsArgsDict'] git_details: Contains parameters related to Git Experience for remote overrides
195
+ :param _builtins.str identifier: The identifier of the override entity.
196
+ :param _builtins.str org_id: Unique identifier of the organization.
197
+ :param _builtins.str project_id: Unique identifier of the project.
151
198
  """
152
199
  __args__ = dict()
153
200
  __args__['gitDetails'] = git_details
@@ -175,7 +222,24 @@ def get_overrides_output(git_details: Optional[pulumi.Input[Optional[Union['GetO
175
222
  project_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
176
223
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOverridesResult]:
177
224
  """
178
- Use this data source to access information about an existing resource.
225
+ Data source for Harness Overrides V2.
226
+
227
+ ## Example Usage
228
+
229
+ ```python
230
+ import pulumi
231
+ import pulumi_harness as harness
232
+
233
+ test = harness.platform.get_overrides(identifier="identifier",
234
+ org_id="orgIdentifier",
235
+ project_id="projectIdentifier")
236
+ ```
237
+
238
+
239
+ :param Union['GetOverridesGitDetailsArgs', 'GetOverridesGitDetailsArgsDict'] git_details: Contains parameters related to Git Experience for remote overrides
240
+ :param _builtins.str identifier: The identifier of the override entity.
241
+ :param _builtins.str org_id: Unique identifier of the organization.
242
+ :param _builtins.str project_id: Unique identifier of the project.
179
243
  """
180
244
  __args__ = dict()
181
245
  __args__['gitDetails'] = git_details
@@ -151,6 +151,8 @@ def get_pagerduty_connector(identifier: Optional[_builtins.str] = None,
151
151
  project_id: Optional[_builtins.str] = None,
152
152
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPagerdutyConnectorResult:
153
153
  """
154
+ Datasource for looking up a PagerDuty connector.
155
+
154
156
  ## Example Usage
155
157
 
156
158
  ```python
@@ -190,6 +192,8 @@ def get_pagerduty_connector_output(identifier: Optional[pulumi.Input[_builtins.s
190
192
  project_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
191
193
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPagerdutyConnectorResult]:
192
194
  """
195
+ Datasource for looking up a PagerDuty connector.
196
+
193
197
  ## Example Usage
194
198
 
195
199
  ```python