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
@@ -31,7 +31,7 @@ class FileStoreFolderArgs:
31
31
  """
32
32
  The set of arguments for constructing a FileStoreFolder resource.
33
33
  :param pulumi.Input[_builtins.str] identifier: Unique identifier of the resource.
34
- :param pulumi.Input[_builtins.str] parent_identifier: Folder parent identifier on Harness File Store. If the file is at the root level, the parent_identifier will be `Root`.
34
+ :param pulumi.Input[_builtins.str] parent_identifier: Folder parent identifier on Harness File Store
35
35
  :param pulumi.Input[_builtins.str] description: Description of the resource.
36
36
  :param pulumi.Input[_builtins.str] name: Name of the resource.
37
37
  :param pulumi.Input[_builtins.str] org_id: Unique identifier of the organization.
@@ -67,7 +67,7 @@ class FileStoreFolderArgs:
67
67
  @pulumi.getter(name="parentIdentifier")
68
68
  def parent_identifier(self) -> pulumi.Input[_builtins.str]:
69
69
  """
70
- Folder parent identifier on Harness File Store. If the file is at the root level, the parent_identifier will be `Root`.
70
+ Folder parent identifier on Harness File Store
71
71
  """
72
72
  return pulumi.get(self, "parent_identifier")
73
73
 
@@ -159,7 +159,7 @@ class _FileStoreFolderState:
159
159
  :param pulumi.Input[Sequence[pulumi.Input['FileStoreFolderLastModifiedByArgs']]] last_modified_bies: Last modified by
160
160
  :param pulumi.Input[_builtins.str] name: Name of the resource.
161
161
  :param pulumi.Input[_builtins.str] org_id: Unique identifier of the organization.
162
- :param pulumi.Input[_builtins.str] parent_identifier: Folder parent identifier on Harness File Store. If the file is at the root level, the parent_identifier will be `Root`.
162
+ :param pulumi.Input[_builtins.str] parent_identifier: Folder parent identifier on Harness File Store
163
163
  :param pulumi.Input[_builtins.str] path: Harness File Store folder path
164
164
  :param pulumi.Input[_builtins.str] project_id: Unique identifier of the project.
165
165
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: Tags to associate with the resource.
@@ -275,7 +275,7 @@ class _FileStoreFolderState:
275
275
  @pulumi.getter(name="parentIdentifier")
276
276
  def parent_identifier(self) -> Optional[pulumi.Input[_builtins.str]]:
277
277
  """
278
- Folder parent identifier on Harness File Store. If the file is at the root level, the parent_identifier will be `Root`.
278
+ Folder parent identifier on Harness File Store
279
279
  """
280
280
  return pulumi.get(self, "parent_identifier")
281
281
 
@@ -359,6 +359,8 @@ class FileStoreFolder(pulumi.CustomResource):
359
359
 
360
360
  ## Import
361
361
 
362
+ The `pulumi import` command can be used, for example:
363
+
362
364
  Import account level folder
363
365
 
364
366
  ```sh
@@ -383,7 +385,7 @@ class FileStoreFolder(pulumi.CustomResource):
383
385
  :param pulumi.Input[_builtins.str] identifier: Unique identifier of the resource.
384
386
  :param pulumi.Input[_builtins.str] name: Name of the resource.
385
387
  :param pulumi.Input[_builtins.str] org_id: Unique identifier of the organization.
386
- :param pulumi.Input[_builtins.str] parent_identifier: Folder parent identifier on Harness File Store. If the file is at the root level, the parent_identifier will be `Root`.
388
+ :param pulumi.Input[_builtins.str] parent_identifier: Folder parent identifier on Harness File Store
387
389
  :param pulumi.Input[_builtins.str] project_id: Unique identifier of the project.
388
390
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: Tags to associate with the resource.
389
391
  """
@@ -418,6 +420,8 @@ class FileStoreFolder(pulumi.CustomResource):
418
420
 
419
421
  ## Import
420
422
 
423
+ The `pulumi import` command can be used, for example:
424
+
421
425
  Import account level folder
422
426
 
423
427
  ```sh
@@ -517,7 +521,7 @@ class FileStoreFolder(pulumi.CustomResource):
517
521
  :param pulumi.Input[Sequence[pulumi.Input[Union['FileStoreFolderLastModifiedByArgs', 'FileStoreFolderLastModifiedByArgsDict']]]] last_modified_bies: Last modified by
518
522
  :param pulumi.Input[_builtins.str] name: Name of the resource.
519
523
  :param pulumi.Input[_builtins.str] org_id: Unique identifier of the organization.
520
- :param pulumi.Input[_builtins.str] parent_identifier: Folder parent identifier on Harness File Store. If the file is at the root level, the parent_identifier will be `Root`.
524
+ :param pulumi.Input[_builtins.str] parent_identifier: Folder parent identifier on Harness File Store
521
525
  :param pulumi.Input[_builtins.str] path: Harness File Store folder path
522
526
  :param pulumi.Input[_builtins.str] project_id: Unique identifier of the project.
523
527
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: Tags to associate with the resource.
@@ -599,7 +603,7 @@ class FileStoreFolder(pulumi.CustomResource):
599
603
  @pulumi.getter(name="parentIdentifier")
600
604
  def parent_identifier(self) -> pulumi.Output[_builtins.str]:
601
605
  """
602
- Folder parent identifier on Harness File Store. If the file is at the root level, the parent_identifier will be `Root`.
606
+ Folder parent identifier on Harness File Store
603
607
  """
604
608
  return pulumi.get(self, "parent_identifier")
605
609
 
@@ -270,6 +270,8 @@ class Filters(pulumi.CustomResource):
270
270
  type: Optional[pulumi.Input[_builtins.str]] = None,
271
271
  __props__=None):
272
272
  """
273
+ Resource for creating a Harness Filter. This resource support filters of types {Connector, DelegateProfile, Delegate, EnvironmentGroup, FileStore, Environment}
274
+
273
275
  ## Example Usage
274
276
 
275
277
  ```python
@@ -291,6 +293,8 @@ class Filters(pulumi.CustomResource):
291
293
 
292
294
  ## Import
293
295
 
296
+ The `pulumi import` command can be used, for example:
297
+
294
298
  Import account level filter
295
299
 
296
300
  ```sh
@@ -326,6 +330,8 @@ class Filters(pulumi.CustomResource):
326
330
  args: FiltersArgs,
327
331
  opts: Optional[pulumi.ResourceOptions] = None):
328
332
  """
333
+ Resource for creating a Harness Filter. This resource support filters of types {Connector, DelegateProfile, Delegate, EnvironmentGroup, FileStore, Environment}
334
+
329
335
  ## Example Usage
330
336
 
331
337
  ```python
@@ -347,6 +353,8 @@ class Filters(pulumi.CustomResource):
347
353
 
348
354
  ## Import
349
355
 
356
+ The `pulumi import` command can be used, for example:
357
+
350
358
  Import account level filter
351
359
 
352
360
  ```sh
@@ -397,6 +397,8 @@ class GcpCloudCostConnector(pulumi.CustomResource):
397
397
 
398
398
  ## Import
399
399
 
400
+ The `pulumi import` command can be used, for example:
401
+
400
402
  Import account level gcp cloud cost connector
401
403
 
402
404
  ```sh
@@ -464,6 +466,8 @@ class GcpCloudCostConnector(pulumi.CustomResource):
464
466
 
465
467
  ## Import
466
468
 
469
+ The `pulumi import` command can be used, for example:
470
+
467
471
  Import account level gcp cloud cost connector
468
472
 
469
473
  ```sh
@@ -408,6 +408,8 @@ class GcpConnector(pulumi.CustomResource):
408
408
 
409
409
  ## Import
410
410
 
411
+ The `pulumi import` command can be used, for example:
412
+
411
413
  Import account level gcp connector
412
414
 
413
415
  ```sh
@@ -451,6 +453,8 @@ class GcpConnector(pulumi.CustomResource):
451
453
 
452
454
  ## Import
453
455
 
456
+ The `pulumi import` command can be used, for example:
457
+
454
458
  Import account level gcp connector
455
459
 
456
460
  ```sh
@@ -437,55 +437,12 @@ class GcpSecretManagerConnector(pulumi.CustomResource):
437
437
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
438
438
  __props__=None):
439
439
  """
440
- ## Example Usage
441
-
442
- ```python
443
- import pulumi
444
- import pulumi_harness as harness
445
-
446
- gcp_sm_manual = harness.platform.GcpSecretManagerConnector("gcp_sm_manual",
447
- identifier="identifier",
448
- name="name",
449
- description="test",
450
- tags=["foo:bar"],
451
- delegate_selectors=["harness-delegate"],
452
- credentials_ref=f"account.{test['id']}")
453
- gcp_sm_inherit = harness.platform.GcpSecretManagerConnector("gcp_sm_inherit",
454
- identifier="identifier",
455
- name="name",
456
- description="test",
457
- tags=["foo:bar"],
458
- delegate_selectors=["harness-delegate"],
459
- inherit_from_delegate=True)
460
- gcp_sm_oidc_platform = harness.platform.GcpSecretManagerConnector("gcp_sm_oidc_platform",
461
- identifier="identifier",
462
- name="name",
463
- description="test",
464
- tags=["foo:bar"],
465
- execute_on_delegate=False,
466
- oidc_authentications=[{
467
- "workload_pool_id": "harness-pool-test",
468
- "provider_id": "harness",
469
- "gcp_project_id": "1234567",
470
- "service_account_email": "harness.sample@iam.gserviceaccount.com",
471
- }])
472
- gcp_sm_oidc_delegate = harness.platform.GcpSecretManagerConnector("gcp_sm_oidc_delegate",
473
- identifier="identifier",
474
- name="name",
475
- description="test",
476
- tags=["foo:bar"],
477
- is_default=True,
478
- delegate_selectors=["harness-delegate"],
479
- oidc_authentications=[{
480
- "workload_pool_id": "harness-pool-test",
481
- "provider_id": "harness",
482
- "gcp_project_id": "1234567",
483
- "service_account_email": "harness.sample@iam.gserviceaccount.com",
484
- }])
485
- ```
440
+ Resource for creating a GCP Secret Manager connector.
486
441
 
487
442
  ## Import
488
443
 
444
+ The `pulumi import` command can be used, for example:
445
+
489
446
  Import account level gcp secret manager connector
490
447
 
491
448
  ```sh
@@ -526,55 +483,12 @@ class GcpSecretManagerConnector(pulumi.CustomResource):
526
483
  args: GcpSecretManagerConnectorArgs,
527
484
  opts: Optional[pulumi.ResourceOptions] = None):
528
485
  """
529
- ## Example Usage
530
-
531
- ```python
532
- import pulumi
533
- import pulumi_harness as harness
534
-
535
- gcp_sm_manual = harness.platform.GcpSecretManagerConnector("gcp_sm_manual",
536
- identifier="identifier",
537
- name="name",
538
- description="test",
539
- tags=["foo:bar"],
540
- delegate_selectors=["harness-delegate"],
541
- credentials_ref=f"account.{test['id']}")
542
- gcp_sm_inherit = harness.platform.GcpSecretManagerConnector("gcp_sm_inherit",
543
- identifier="identifier",
544
- name="name",
545
- description="test",
546
- tags=["foo:bar"],
547
- delegate_selectors=["harness-delegate"],
548
- inherit_from_delegate=True)
549
- gcp_sm_oidc_platform = harness.platform.GcpSecretManagerConnector("gcp_sm_oidc_platform",
550
- identifier="identifier",
551
- name="name",
552
- description="test",
553
- tags=["foo:bar"],
554
- execute_on_delegate=False,
555
- oidc_authentications=[{
556
- "workload_pool_id": "harness-pool-test",
557
- "provider_id": "harness",
558
- "gcp_project_id": "1234567",
559
- "service_account_email": "harness.sample@iam.gserviceaccount.com",
560
- }])
561
- gcp_sm_oidc_delegate = harness.platform.GcpSecretManagerConnector("gcp_sm_oidc_delegate",
562
- identifier="identifier",
563
- name="name",
564
- description="test",
565
- tags=["foo:bar"],
566
- is_default=True,
567
- delegate_selectors=["harness-delegate"],
568
- oidc_authentications=[{
569
- "workload_pool_id": "harness-pool-test",
570
- "provider_id": "harness",
571
- "gcp_project_id": "1234567",
572
- "service_account_email": "harness.sample@iam.gserviceaccount.com",
573
- }])
574
- ```
486
+ Resource for creating a GCP Secret Manager connector.
575
487
 
576
488
  ## Import
577
489
 
490
+ The `pulumi import` command can be used, for example:
491
+
578
492
  Import account level gcp secret manager connector
579
493
 
580
494
  ```sh
@@ -81,7 +81,7 @@ class GetApiKeyResult:
81
81
  @pulumi.getter(name="defaultTimeToExpireToken")
82
82
  def default_time_to_expire_token(self) -> Optional[_builtins.int]:
83
83
  """
84
- Default expiration time of the Token within API Key
84
+ Expiry time of the apiKey
85
85
  """
86
86
  return pulumi.get(self, "default_time_to_expire_token")
87
87
 
@@ -129,7 +129,7 @@ class GetApiKeyResult:
129
129
  @pulumi.getter(name="parentId")
130
130
  def parent_id(self) -> _builtins.str:
131
131
  """
132
- Parent Entity Identifier of the API Key
132
+ Parent Identifier for the Entity
133
133
  """
134
134
  return pulumi.get(self, "parent_id")
135
135
 
@@ -179,31 +179,16 @@ def get_api_key(account_id: Optional[_builtins.str] = None,
179
179
  project_id: Optional[_builtins.str] = None,
180
180
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetApiKeyResult:
181
181
  """
182
- Use this data source to retrieve information about a Harness API Key. API Keys are used to authenticate and authorize access to Harness Platform resources.
183
-
184
- ## Example Usage
185
-
186
- ```python
187
- import pulumi
188
- import pulumi_harness as harness
189
-
190
- test = harness.platform.get_api_key(identifier="test_apikey",
191
- name="test_apikey",
192
- parent_id="parent_id",
193
- apikey_type="USER",
194
- account_id="account_id",
195
- org_id="org_id",
196
- project_id="project_id")
197
- ```
182
+ Data source for retrieving a Harness ApiKey.
198
183
 
199
184
 
200
185
  :param _builtins.str account_id: Account Identifier for the Entity
201
186
  :param _builtins.str apikey_type: Type of the API Key
202
- :param _builtins.int default_time_to_expire_token: Default expiration time of the Token within API Key
187
+ :param _builtins.int default_time_to_expire_token: Expiry time of the apiKey
203
188
  :param _builtins.str identifier: Unique identifier of the resource.
204
189
  :param _builtins.str name: Name of the resource.
205
190
  :param _builtins.str org_id: Unique identifier of the organization.
206
- :param _builtins.str parent_id: Parent Entity Identifier of the API Key
191
+ :param _builtins.str parent_id: Parent Identifier for the Entity
207
192
  :param _builtins.str project_id: Unique identifier of the project.
208
193
  """
209
194
  __args__ = dict()
@@ -240,31 +225,16 @@ def get_api_key_output(account_id: Optional[pulumi.Input[_builtins.str]] = None,
240
225
  project_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
241
226
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetApiKeyResult]:
242
227
  """
243
- Use this data source to retrieve information about a Harness API Key. API Keys are used to authenticate and authorize access to Harness Platform resources.
244
-
245
- ## Example Usage
246
-
247
- ```python
248
- import pulumi
249
- import pulumi_harness as harness
250
-
251
- test = harness.platform.get_api_key(identifier="test_apikey",
252
- name="test_apikey",
253
- parent_id="parent_id",
254
- apikey_type="USER",
255
- account_id="account_id",
256
- org_id="org_id",
257
- project_id="project_id")
258
- ```
228
+ Data source for retrieving a Harness ApiKey.
259
229
 
260
230
 
261
231
  :param _builtins.str account_id: Account Identifier for the Entity
262
232
  :param _builtins.str apikey_type: Type of the API Key
263
- :param _builtins.int default_time_to_expire_token: Default expiration time of the Token within API Key
233
+ :param _builtins.int default_time_to_expire_token: Expiry time of the apiKey
264
234
  :param _builtins.str identifier: Unique identifier of the resource.
265
235
  :param _builtins.str name: Name of the resource.
266
236
  :param _builtins.str org_id: Unique identifier of the organization.
267
- :param _builtins.str parent_id: Parent Entity Identifier of the API Key
237
+ :param _builtins.str parent_id: Parent Identifier for the Entity
268
238
  :param _builtins.str project_id: Unique identifier of the project.
269
239
  """
270
240
  __args__ = dict()
@@ -27,7 +27,10 @@ class GetAwsKmsConnectorResult:
27
27
  """
28
28
  A collection of values returned by getAwsKmsConnector.
29
29
  """
30
- def __init__(__self__, arn_ref=None, credentials=None, default=None, delegate_selectors=None, description=None, execute_on_delegate=None, id=None, identifier=None, name=None, org_id=None, project_id=None, region=None, tags=None):
30
+ def __init__(__self__, arn_plaintext=None, arn_ref=None, credentials=None, default=None, delegate_selectors=None, description=None, execute_on_delegate=None, id=None, identifier=None, name=None, org_id=None, project_id=None, region=None, tags=None):
31
+ if arn_plaintext and not isinstance(arn_plaintext, str):
32
+ raise TypeError("Expected argument 'arn_plaintext' to be a str")
33
+ pulumi.set(__self__, "arn_plaintext", arn_plaintext)
31
34
  if arn_ref and not isinstance(arn_ref, str):
32
35
  raise TypeError("Expected argument 'arn_ref' to be a str")
33
36
  pulumi.set(__self__, "arn_ref", arn_ref)
@@ -68,6 +71,11 @@ class GetAwsKmsConnectorResult:
68
71
  raise TypeError("Expected argument 'tags' to be a list")
69
72
  pulumi.set(__self__, "tags", tags)
70
73
 
74
+ @_builtins.property
75
+ @pulumi.getter(name="arnPlaintext")
76
+ def arn_plaintext(self) -> _builtins.str:
77
+ return pulumi.get(self, "arn_plaintext")
78
+
71
79
  @_builtins.property
72
80
  @pulumi.getter(name="arnRef")
73
81
  def arn_ref(self) -> _builtins.str:
@@ -179,6 +187,7 @@ class AwaitableGetAwsKmsConnectorResult(GetAwsKmsConnectorResult):
179
187
  if False:
180
188
  yield self
181
189
  return GetAwsKmsConnectorResult(
190
+ arn_plaintext=self.arn_plaintext,
182
191
  arn_ref=self.arn_ref,
183
192
  credentials=self.credentials,
184
193
  default=self.default,
@@ -200,6 +209,8 @@ def get_aws_kms_connector(identifier: Optional[_builtins.str] = None,
200
209
  project_id: Optional[_builtins.str] = None,
201
210
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAwsKmsConnectorResult:
202
211
  """
212
+ Datasource for looking up an AWS KMS connector.
213
+
203
214
  ## Example Usage
204
215
 
205
216
  ```python
@@ -224,6 +235,7 @@ def get_aws_kms_connector(identifier: Optional[_builtins.str] = None,
224
235
  __ret__ = pulumi.runtime.invoke('harness:platform/getAwsKmsConnector:getAwsKmsConnector', __args__, opts=opts, typ=GetAwsKmsConnectorResult).value
225
236
 
226
237
  return AwaitableGetAwsKmsConnectorResult(
238
+ arn_plaintext=pulumi.get(__ret__, 'arn_plaintext'),
227
239
  arn_ref=pulumi.get(__ret__, 'arn_ref'),
228
240
  credentials=pulumi.get(__ret__, 'credentials'),
229
241
  default=pulumi.get(__ret__, 'default'),
@@ -243,6 +255,8 @@ def get_aws_kms_connector_output(identifier: Optional[pulumi.Input[_builtins.str
243
255
  project_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
244
256
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAwsKmsConnectorResult]:
245
257
  """
258
+ Datasource for looking up an AWS KMS connector.
259
+
246
260
  ## Example Usage
247
261
 
248
262
  ```python
@@ -266,6 +280,7 @@ def get_aws_kms_connector_output(identifier: Optional[pulumi.Input[_builtins.str
266
280
  opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
267
281
  __ret__ = pulumi.runtime.invoke_output('harness:platform/getAwsKmsConnector:getAwsKmsConnector', __args__, opts=opts, typ=GetAwsKmsConnectorResult)
268
282
  return __ret__.apply(lambda __response__: GetAwsKmsConnectorResult(
283
+ arn_plaintext=pulumi.get(__response__, 'arn_plaintext'),
269
284
  arn_ref=pulumi.get(__response__, 'arn_ref'),
270
285
  credentials=pulumi.get(__response__, 'credentials'),
271
286
  default=pulumi.get(__response__, 'default'),
@@ -169,7 +169,7 @@ class GetAwsSecretManagerConnectorResult:
169
169
  @pulumi.getter(name="recoveryWindowInDays")
170
170
  def recovery_window_in_days(self) -> Optional[_builtins.int]:
171
171
  """
172
- recovery duration in days in AWS Secrets Manager.
172
+ Recovery duration in days in AWS Secrets Manager.
173
173
  """
174
174
  return pulumi.get(self, "recovery_window_in_days")
175
175
 
@@ -238,6 +238,8 @@ def get_aws_secret_manager_connector(force_delete_without_recovery: Optional[_bu
238
238
  recovery_window_in_days: Optional[_builtins.int] = None,
239
239
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAwsSecretManagerConnectorResult:
240
240
  """
241
+ Datasource for looking up an AWS Secret Manager connector.
242
+
241
243
  ## Example Usage
242
244
 
243
245
  ```python
@@ -253,7 +255,7 @@ def get_aws_secret_manager_connector(force_delete_without_recovery: Optional[_bu
253
255
  :param _builtins.str name: Name of the resource.
254
256
  :param _builtins.str org_id: Unique identifier of the organization.
255
257
  :param _builtins.str project_id: Unique identifier of the project.
256
- :param _builtins.int recovery_window_in_days: recovery duration in days in AWS Secrets Manager.
258
+ :param _builtins.int recovery_window_in_days: Recovery duration in days in AWS Secrets Manager.
257
259
  """
258
260
  __args__ = dict()
259
261
  __args__['forceDeleteWithoutRecovery'] = force_delete_without_recovery
@@ -290,6 +292,8 @@ def get_aws_secret_manager_connector_output(force_delete_without_recovery: Optio
290
292
  recovery_window_in_days: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
291
293
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAwsSecretManagerConnectorResult]:
292
294
  """
295
+ Datasource for looking up an AWS Secret Manager connector.
296
+
293
297
  ## Example Usage
294
298
 
295
299
  ```python
@@ -305,7 +309,7 @@ def get_aws_secret_manager_connector_output(force_delete_without_recovery: Optio
305
309
  :param _builtins.str name: Name of the resource.
306
310
  :param _builtins.str org_id: Unique identifier of the organization.
307
311
  :param _builtins.str project_id: Unique identifier of the project.
308
- :param _builtins.int recovery_window_in_days: recovery duration in days in AWS Secrets Manager.
312
+ :param _builtins.int recovery_window_in_days: Recovery duration in days in AWS Secrets Manager.
309
313
  """
310
314
  __args__ = dict()
311
315
  __args__['forceDeleteWithoutRecovery'] = force_delete_without_recovery
@@ -27,7 +27,10 @@ class GetAzureCloudCostConnectorResult:
27
27
  """
28
28
  A collection of values returned by getAzureCloudCostConnector.
29
29
  """
30
- def __init__(__self__, billing_export_specs=None, description=None, features_enableds=None, id=None, identifier=None, name=None, org_id=None, project_id=None, subscription_id=None, tags=None, tenant_id=None):
30
+ def __init__(__self__, billing_export_spec2s=None, billing_export_specs=None, description=None, features_enableds=None, id=None, identifier=None, name=None, org_id=None, project_id=None, subscription_id=None, tags=None, tenant_id=None):
31
+ if billing_export_spec2s and not isinstance(billing_export_spec2s, list):
32
+ raise TypeError("Expected argument 'billing_export_spec2s' to be a list")
33
+ pulumi.set(__self__, "billing_export_spec2s", billing_export_spec2s)
31
34
  if billing_export_specs and not isinstance(billing_export_specs, list):
32
35
  raise TypeError("Expected argument 'billing_export_specs' to be a list")
33
36
  pulumi.set(__self__, "billing_export_specs", billing_export_specs)
@@ -62,6 +65,14 @@ class GetAzureCloudCostConnectorResult:
62
65
  raise TypeError("Expected argument 'tenant_id' to be a str")
63
66
  pulumi.set(__self__, "tenant_id", tenant_id)
64
67
 
68
+ @_builtins.property
69
+ @pulumi.getter(name="billingExportSpec2s")
70
+ def billing_export_spec2s(self) -> Sequence['outputs.GetAzureCloudCostConnectorBillingExportSpec2Result']:
71
+ """
72
+ Returns billing details for the Azure account.
73
+ """
74
+ return pulumi.get(self, "billing_export_spec2s")
75
+
65
76
  @_builtins.property
66
77
  @pulumi.getter(name="billingExportSpecs")
67
78
  def billing_export_specs(self) -> Sequence['outputs.GetAzureCloudCostConnectorBillingExportSpecResult']:
@@ -157,6 +168,7 @@ class AwaitableGetAzureCloudCostConnectorResult(GetAzureCloudCostConnectorResult
157
168
  if False:
158
169
  yield self
159
170
  return GetAzureCloudCostConnectorResult(
171
+ billing_export_spec2s=self.billing_export_spec2s,
160
172
  billing_export_specs=self.billing_export_specs,
161
173
  description=self.description,
162
174
  features_enableds=self.features_enableds,
@@ -202,6 +214,7 @@ def get_azure_cloud_cost_connector(identifier: Optional[_builtins.str] = None,
202
214
  __ret__ = pulumi.runtime.invoke('harness:platform/getAzureCloudCostConnector:getAzureCloudCostConnector', __args__, opts=opts, typ=GetAzureCloudCostConnectorResult).value
203
215
 
204
216
  return AwaitableGetAzureCloudCostConnectorResult(
217
+ billing_export_spec2s=pulumi.get(__ret__, 'billing_export_spec2s'),
205
218
  billing_export_specs=pulumi.get(__ret__, 'billing_export_specs'),
206
219
  description=pulumi.get(__ret__, 'description'),
207
220
  features_enableds=pulumi.get(__ret__, 'features_enableds'),
@@ -244,6 +257,7 @@ def get_azure_cloud_cost_connector_output(identifier: Optional[pulumi.Input[_bui
244
257
  opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
245
258
  __ret__ = pulumi.runtime.invoke_output('harness:platform/getAzureCloudCostConnector:getAzureCloudCostConnector', __args__, opts=opts, typ=GetAzureCloudCostConnectorResult)
246
259
  return __ret__.apply(lambda __response__: GetAzureCloudCostConnectorResult(
260
+ billing_export_spec2s=pulumi.get(__response__, 'billing_export_spec2s'),
247
261
  billing_export_specs=pulumi.get(__response__, 'billing_export_specs'),
248
262
  description=pulumi.get(__response__, 'description'),
249
263
  features_enableds=pulumi.get(__response__, 'features_enableds'),
@@ -74,31 +74,49 @@ class GetConnectorAzureRepoResult:
74
74
  @_builtins.property
75
75
  @pulumi.getter(name="apiAuthentications")
76
76
  def api_authentications(self) -> Sequence['outputs.GetConnectorAzureRepoApiAuthenticationResult']:
77
+ """
78
+ Configuration for using the azure repo api. API Access is Computed for using “Git Experience”, for creation of Git based triggers, Webhooks management and updating Git statuses.
79
+ """
77
80
  return pulumi.get(self, "api_authentications")
78
81
 
79
82
  @_builtins.property
80
83
  @pulumi.getter(name="connectionType")
81
84
  def connection_type(self) -> _builtins.str:
85
+ """
86
+ Whether the connection we're making is to a azure repository or a azure account. Valid values are Project, Repo.
87
+ """
82
88
  return pulumi.get(self, "connection_type")
83
89
 
84
90
  @_builtins.property
85
91
  @pulumi.getter
86
92
  def credentials(self) -> Sequence['outputs.GetConnectorAzureRepoCredentialResult']:
93
+ """
94
+ Credentials to use for the connection.
95
+ """
87
96
  return pulumi.get(self, "credentials")
88
97
 
89
98
  @_builtins.property
90
99
  @pulumi.getter(name="delegateSelectors")
91
100
  def delegate_selectors(self) -> Sequence[_builtins.str]:
101
+ """
102
+ Tags to filter delegates for connection.
103
+ """
92
104
  return pulumi.get(self, "delegate_selectors")
93
105
 
94
106
  @_builtins.property
95
107
  @pulumi.getter
96
108
  def description(self) -> _builtins.str:
109
+ """
110
+ Description of the resource.
111
+ """
97
112
  return pulumi.get(self, "description")
98
113
 
99
114
  @_builtins.property
100
115
  @pulumi.getter(name="executeOnDelegate")
101
116
  def execute_on_delegate(self) -> _builtins.bool:
117
+ """
118
+ Execute on delegate or not.
119
+ """
102
120
  return pulumi.get(self, "execute_on_delegate")
103
121
 
104
122
  @_builtins.property
@@ -112,36 +130,57 @@ class GetConnectorAzureRepoResult:
112
130
  @_builtins.property
113
131
  @pulumi.getter
114
132
  def identifier(self) -> _builtins.str:
133
+ """
134
+ Unique identifier of the resource.
135
+ """
115
136
  return pulumi.get(self, "identifier")
116
137
 
117
138
  @_builtins.property
118
139
  @pulumi.getter
119
140
  def name(self) -> Optional[_builtins.str]:
141
+ """
142
+ Name of the resource.
143
+ """
120
144
  return pulumi.get(self, "name")
121
145
 
122
146
  @_builtins.property
123
147
  @pulumi.getter(name="orgId")
124
148
  def org_id(self) -> Optional[_builtins.str]:
149
+ """
150
+ Unique identifier of the organization.
151
+ """
125
152
  return pulumi.get(self, "org_id")
126
153
 
127
154
  @_builtins.property
128
155
  @pulumi.getter(name="projectId")
129
156
  def project_id(self) -> Optional[_builtins.str]:
157
+ """
158
+ Unique identifier of the project.
159
+ """
130
160
  return pulumi.get(self, "project_id")
131
161
 
132
162
  @_builtins.property
133
163
  @pulumi.getter
134
164
  def tags(self) -> Sequence[_builtins.str]:
165
+ """
166
+ Tags to associate with the resource.
167
+ """
135
168
  return pulumi.get(self, "tags")
136
169
 
137
170
  @_builtins.property
138
171
  @pulumi.getter
139
172
  def url(self) -> _builtins.str:
173
+ """
174
+ URL of the azure repo repository or account.
175
+ """
140
176
  return pulumi.get(self, "url")
141
177
 
142
178
  @_builtins.property
143
179
  @pulumi.getter(name="validationRepo")
144
180
  def validation_repo(self) -> _builtins.str:
181
+ """
182
+ Repository to test the connection with. This is only used when `connection_type` is `Account`.
183
+ """
145
184
  return pulumi.get(self, "validation_repo")
146
185
 
147
186
 
@@ -173,7 +212,13 @@ def get_connector_azure_repo(identifier: Optional[_builtins.str] = None,
173
212
  project_id: Optional[_builtins.str] = None,
174
213
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetConnectorAzureRepoResult:
175
214
  """
176
- Use this data source to access information about an existing resource.
215
+ Datasource for looking up a Azure Repo connector.
216
+
217
+
218
+ :param _builtins.str identifier: Unique identifier of the resource.
219
+ :param _builtins.str name: Name of the resource.
220
+ :param _builtins.str org_id: Unique identifier of the organization.
221
+ :param _builtins.str project_id: Unique identifier of the project.
177
222
  """
178
223
  __args__ = dict()
179
224
  __args__['identifier'] = identifier
@@ -204,7 +249,13 @@ def get_connector_azure_repo_output(identifier: Optional[pulumi.Input[_builtins.
204
249
  project_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
205
250
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetConnectorAzureRepoResult]:
206
251
  """
207
- Use this data source to access information about an existing resource.
252
+ Datasource for looking up a Azure Repo connector.
253
+
254
+
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.
208
259
  """
209
260
  __args__ = dict()
210
261
  __args__['identifier'] = identifier